From b7527eacbae55285bba4b797c900c8112edff4dd Mon Sep 17 00:00:00 2001 From: Joey Sabey Date: Mon, 25 Feb 2019 14:53:50 +0000 Subject: [PATCH 01/76] Setting variables and pulling the arc-theme source --- solarize.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/solarize.sh b/solarize.sh index be225fb..ca6fe7b 100755 --- a/solarize.sh +++ b/solarize.sh @@ -1,5 +1,19 @@ #!/bin/bash +# Github release to base from +ARCVERSION="20170302" + +# Directory to spit the clean themes out to +BUILDDIR="`pwd`/build" + +# Theme types to actually build (or rather, not build =P) +AUTOGENFLAGS="--prefix=${BUILDDIR}/usr --disable-transparency --disable-light --disable-darker --disable-cinnamon --disable-gnome-shell --disable-metacity --disable-unity --with-gnome=3.22" + +# Pull the Arc source +wget "https://github.com/horst3180/arc-theme/archive/${ARCVERSION}.tar.gz" +tar -xzf "${ARCVERSION}.tar.gz" +rm "${ARCVERSION}.tar.gz" + # Arc colors ## SCSS A_BASE="404552" From d57ff1340763e0fc46589c21c048a6ddd223cb3a Mon Sep 17 00:00:00 2001 From: Joey Sabey Date: Mon, 25 Feb 2019 14:54:52 +0000 Subject: [PATCH 02/76] Change $CWD to the downloaded source dir --- solarize.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solarize.sh b/solarize.sh index ca6fe7b..7b63e0d 100755 --- a/solarize.sh +++ b/solarize.sh @@ -91,7 +91,7 @@ FILETYPES=('scss' 'svg' 'xpm' 'xml' 'rc') ARC_COLORS=( "$A_BASE" "$A_TEXT" "$A_BG" "$A_FG" "$A_SELECTED_FG" "$A_SELECTED_BG" "$A_WARNING" "$A_ERROR" "$A_SUCCESS" "$A_DESTRUCTIVE" "$A_SUGGESTED" "$A_DROP_TARGET" "$A_WM_BUTTON_CLOSE_BG" "$A_WM_BUTTON_CLOSE_HOVER_BG" "$A_WM_BUTTON_CLOSE_ACTIVE_BG" "$A_WM_ICON_CLOSE_BG" "$A_WM_BUTTON_HOVER_BG" "$A_WM_BUTTON_ACTIVE_BG" "$A_WM_BUTTON_HOVER_BORDER" "$A_WM_ICON_BG" "$A_WM_ICON_UNFOCUSED_BG" "$A_WM_ICON_HOVER_BG" "$A_WM_ICON_ACTIVE_BG" "$A_WINDOW_BG" "$A_DARK_SIDEBAR_FG" "$A_ENTRY_BORDER" "$A_BLUE" "$A_WHITE" "$A_GREY" "$A_DARK" "$A_DARKEST" "$A_DARKEST2" "$A_DARK_BUTTON" "$A_LIGHT_BUTTON" "$A_OTHER_LIGHT_BUTTON" "$A_MODAL" "$A_ASSET_DARK" "$A_ASSET_DARK2" "$A_ASSET_GREY" "$A_ASSET_BORDER" "$A_ASSET_LIGHTER_BG" "$A_ASSET_VARIOUS_DARK1" "$A_ASSET_VARIOUS_DARK2" "$A_ASSET_VARIOUS_DARK3" "$A_GNOME_PANEL_BG" "$A_GNOME_PANEL_BORDER" "$A_GTK2_TOOLBAR" "$A_GTK2_TOOLBAR_DARK" "$A_CLOSE_BUTTON_GREY") SOLARIZED_COLORS=("$S_BASE02" "$S_BASE00" "$S_BASE03" "$S_BASE00" "$S_BASE3" "$S_BLUE" "$S_ORANGE" "$S_RED" "$S_GREEN" "$S_RED" "$S_CYAN" "$S_YELLOW" "$S_RED" "$S_ORANGE" "$S_RED" "$S_BASE03" "$S_BASE00" "$S_BLUE" "$S_BASE03" "$S_BASE1" "$S_BASE00" "$S_BASE1" "$S_BASE3" "$S_BASE02" "$S_BASE00" "$S_BASE00" "$S_BLUE" "$S_BASE3" "$S_BASE2" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE02" "$S_BASE02" "$S_BASE03" "$S_BASE03" "$S_BASE02" "$S_BASE00" "$S_BASE00" "$S_BASE02" "$S_BASE00" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE0" "$S_BASE00" "$S_BASE02") -CWD=`pwd` +CWD="`pwd`/arc-theme-${ARCVERSION}" echo "### Replacing arc colors with solarized colors" for filetype in "${FILETYPES[@]}" From 1f07a26c7e2c611d4c4e12422c08cf10ded1f832 Mon Sep 17 00:00:00 2001 From: Joey Sabey Date: Mon, 25 Feb 2019 14:56:31 +0000 Subject: [PATCH 03/76] Clear pre-rendered dark xfwm4 assets so they regenerate correctly --- solarize.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/solarize.sh b/solarize.sh index 7b63e0d..1a9ea9a 100755 --- a/solarize.sh +++ b/solarize.sh @@ -119,6 +119,7 @@ do done rm -f common/gtk-2.0/assets-dark/*.png rm -f common/gtk-2.0/menubar-toolbar/*.png +rm -f common/xfwm4/assets-dark/*.png echo "## Writing new assets" for folder in "${ASSET_FOLDERS[@]}" From 2dff15114c4f27b7ea48ad3537bd1f57f7ed07fd Mon Sep 17 00:00:00 2001 From: Joey Sabey Date: Mon, 25 Feb 2019 14:59:32 +0000 Subject: [PATCH 04/76] Removed render-dark-assets.sh call for gtk2 - is handled by render-assets.sh --- solarize.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/solarize.sh b/solarize.sh index 1a9ea9a..b0461ea 100755 --- a/solarize.sh +++ b/solarize.sh @@ -130,11 +130,6 @@ do cd "${CWD}" done -echo "# Writing assets for gtk-2.0 dark" -cd common/gtk-2.0 -./render-dark-assets.sh > /dev/null -cd "${CWD}" - echo "# Copying assets for gtk-2.0 menubar and toolbar" cp common/gtk-2.0/assets-dark/button.png common/gtk-2.0/menubar-toolbar/button.png cp common/gtk-2.0/assets-dark/button-hover.png common/gtk-2.0/menubar-toolbar/button-hover.png From d8e2587b580a740286334d29a20745334a4b376b Mon Sep 17 00:00:00 2001 From: Joey Sabey Date: Mon, 25 Feb 2019 15:03:28 +0000 Subject: [PATCH 05/76] Removed autogen flag specifiying gnome version --- solarize.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solarize.sh b/solarize.sh index b0461ea..7e3ce9e 100755 --- a/solarize.sh +++ b/solarize.sh @@ -7,7 +7,7 @@ ARCVERSION="20170302" BUILDDIR="`pwd`/build" # Theme types to actually build (or rather, not build =P) -AUTOGENFLAGS="--prefix=${BUILDDIR}/usr --disable-transparency --disable-light --disable-darker --disable-cinnamon --disable-gnome-shell --disable-metacity --disable-unity --with-gnome=3.22" +AUTOGENFLAGS="--prefix=${BUILDDIR}/usr --disable-transparency --disable-light --disable-darker --disable-cinnamon --disable-gnome-shell --disable-metacity --disable-unity" # Pull the Arc source wget "https://github.com/horst3180/arc-theme/archive/${ARCVERSION}.tar.gz" From fe0af796a1fe0de547e9ced1457f08e7184b35f9 Mon Sep 17 00:00:00 2001 From: Joey Sabey Date: Mon, 25 Feb 2019 15:04:13 +0000 Subject: [PATCH 06/76] Swapped some colours to improve contrast --- solarize.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solarize.sh b/solarize.sh index 7e3ce9e..7a0e947 100755 --- a/solarize.sh +++ b/solarize.sh @@ -88,8 +88,8 @@ S_BASE2="eee8d5" S_BASE3="fdf6e3" FILETYPES=('scss' 'svg' 'xpm' 'xml' 'rc') -ARC_COLORS=( "$A_BASE" "$A_TEXT" "$A_BG" "$A_FG" "$A_SELECTED_FG" "$A_SELECTED_BG" "$A_WARNING" "$A_ERROR" "$A_SUCCESS" "$A_DESTRUCTIVE" "$A_SUGGESTED" "$A_DROP_TARGET" "$A_WM_BUTTON_CLOSE_BG" "$A_WM_BUTTON_CLOSE_HOVER_BG" "$A_WM_BUTTON_CLOSE_ACTIVE_BG" "$A_WM_ICON_CLOSE_BG" "$A_WM_BUTTON_HOVER_BG" "$A_WM_BUTTON_ACTIVE_BG" "$A_WM_BUTTON_HOVER_BORDER" "$A_WM_ICON_BG" "$A_WM_ICON_UNFOCUSED_BG" "$A_WM_ICON_HOVER_BG" "$A_WM_ICON_ACTIVE_BG" "$A_WINDOW_BG" "$A_DARK_SIDEBAR_FG" "$A_ENTRY_BORDER" "$A_BLUE" "$A_WHITE" "$A_GREY" "$A_DARK" "$A_DARKEST" "$A_DARKEST2" "$A_DARK_BUTTON" "$A_LIGHT_BUTTON" "$A_OTHER_LIGHT_BUTTON" "$A_MODAL" "$A_ASSET_DARK" "$A_ASSET_DARK2" "$A_ASSET_GREY" "$A_ASSET_BORDER" "$A_ASSET_LIGHTER_BG" "$A_ASSET_VARIOUS_DARK1" "$A_ASSET_VARIOUS_DARK2" "$A_ASSET_VARIOUS_DARK3" "$A_GNOME_PANEL_BG" "$A_GNOME_PANEL_BORDER" "$A_GTK2_TOOLBAR" "$A_GTK2_TOOLBAR_DARK" "$A_CLOSE_BUTTON_GREY") -SOLARIZED_COLORS=("$S_BASE02" "$S_BASE00" "$S_BASE03" "$S_BASE00" "$S_BASE3" "$S_BLUE" "$S_ORANGE" "$S_RED" "$S_GREEN" "$S_RED" "$S_CYAN" "$S_YELLOW" "$S_RED" "$S_ORANGE" "$S_RED" "$S_BASE03" "$S_BASE00" "$S_BLUE" "$S_BASE03" "$S_BASE1" "$S_BASE00" "$S_BASE1" "$S_BASE3" "$S_BASE02" "$S_BASE00" "$S_BASE00" "$S_BLUE" "$S_BASE3" "$S_BASE2" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE02" "$S_BASE02" "$S_BASE03" "$S_BASE03" "$S_BASE02" "$S_BASE00" "$S_BASE00" "$S_BASE02" "$S_BASE00" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE0" "$S_BASE00" "$S_BASE02") +ARC_COLORS=( "$A_BASE" "$A_TEXT" "$A_BG" "$A_FG" "$A_SELECTED_FG" "$A_SELECTED_BG" "$A_WARNING" "$A_ERROR" "$A_SUCCESS" "$A_DESTRUCTIVE" "$A_SUGGESTED" "$A_DROP_TARGET" "$A_WM_BUTTON_CLOSE_BG" "$A_WM_BUTTON_CLOSE_HOVER_BG" "$A_WM_BUTTON_CLOSE_ACTIVE_BG" "$A_WM_ICON_CLOSE_BG" "$A_WM_BUTTON_HOVER_BG" "$A_WM_BUTTON_ACTIVE_BG" "$A_WM_BUTTON_HOVER_BORDER" "$A_WM_ICON_BG" "$A_WM_ICON_UNFOCUSED_BG" "$A_WM_ICON_HOVER_BG" "$A_WM_ICON_ACTIVE_BG" "$A_WINDOW_BG" "$A_DARK_SIDEBAR_FG" "$A_ENTRY_BORDER" "$A_BLUE" "$A_WHITE" "$A_GREY" "$A_DARK" "$A_DARKEST" "$A_DARKEST2" "$A_DARK_BUTTON" "$A_LIGHT_BUTTON" "$A_OTHER_LIGHT_BUTTON" "$A_MODAL" "$A_ASSET_DARK" "$A_ASSET_DARK2" "$A_ASSET_GREY" "$A_ASSET_BORDER" "$A_ASSET_LIGHTER_BG" "$A_ASSET_VARIOUS_DARK1" "$A_ASSET_VARIOUS_DARK2" "$A_ASSET_VARIOUS_DARK3" "$A_GNOME_PANEL_BG" "$A_GNOME_PANEL_BORDER" "$A_GTK2_TOOLBAR" "$A_GTK2_TOOLBAR_DARK" "$A_CLOSE_BUTTON_GREY") +SOLARIZED_COLORS=("$S_BASE03" "$S_BASE0" "$S_BASE02" "$S_BASE0" "$S_BASE3" "$S_BLUE" "$S_ORANGE" "$S_RED" "$S_GREEN" "$S_RED" "$S_CYAN" "$S_YELLOW" "$S_RED" "$S_ORANGE" "$S_RED" "$S_BASE03" "$S_BASE00" "$S_BLUE" "$S_BASE03" "$S_BASE1" "$S_BASE00" "$S_BASE1" "$S_BASE3" "$S_BASE02" "$S_BASE00" "$S_BASE00" "$S_BLUE" "$S_BASE3" "$S_BASE2" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE02" "$S_BASE02" "$S_BASE03" "$S_BASE03" "$S_BASE02" "$S_BASE00" "$S_BASE00" "$S_BASE02" "$S_BASE00" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE0" "$S_BASE00" "$S_BASE02") CWD="`pwd`/arc-theme-${ARCVERSION}" From 0a61f97180d83a7fc61c4d8f05a0578bbfaa6dd3 Mon Sep 17 00:00:00 2001 From: Joey Sabey Date: Mon, 25 Feb 2019 15:05:40 +0000 Subject: [PATCH 07/76] Install required node modules into the project --- solarize.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/solarize.sh b/solarize.sh index 7a0e947..343a91f 100755 --- a/solarize.sh +++ b/solarize.sh @@ -146,5 +146,7 @@ cp common/gtk-2.0/assets-dark/menubar.png common/gtk-2.0/menubar-toolbar/menubar cp common/gtk-2.0/assets/menubar_button.png common/gtk-2.0/menubar-toolbar/menubar_button.png cp common/gtk-2.0/assets-dark/menubar_button.png common/gtk-2.0/menubar-toolbar/menubar_button-dark.png +npm install gulp gulp-sass gulp-rename # NOTE: gulp below requires these node modules + echo "### Regenerating css" gulp From e719d000f4af1873bc2d55a13c89a3e81223203a Mon Sep 17 00:00:00 2001 From: Joey Sabey Date: Mon, 25 Feb 2019 15:09:08 +0000 Subject: [PATCH 08/76] Removed generation of old gtk3 version assets for time; added generation of xfwm4 assets --- solarize.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solarize.sh b/solarize.sh index 343a91f..e45908d 100755 --- a/solarize.sh +++ b/solarize.sh @@ -110,7 +110,7 @@ done echo "" echo "### Regenerating assets" -ASSET_FOLDERS=("gtk-2.0" "gtk-3.0/3.14" "gtk-3.0/3.16" "gtk-3.0/3.18" "gtk-3.0/3.20") +ASSET_FOLDERS=("gtk-2.0" "gtk-3.0/3.20" "xfwm4") # NOTE: Skipping old gtk3 versions for build time echo "## Deleting old assets" cd "${CWD}" for folder in "${ASSET_FOLDERS[@]}" From 17e7aabf8d9ff05f5d15022564c0da1090d1a772 Mon Sep 17 00:00:00 2001 From: Joey Sabey Date: Mon, 25 Feb 2019 15:46:44 +0000 Subject: [PATCH 09/76] autogen & make install --- solarize.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/solarize.sh b/solarize.sh index e45908d..64319fc 100755 --- a/solarize.sh +++ b/solarize.sh @@ -150,3 +150,9 @@ npm install gulp gulp-sass gulp-rename # NOTE: gulp below requires these node mo echo "### Regenerating css" gulp + +# Configure, installing to build dir +./autogen.sh "${AUTOGENFLAGS}" + +# Make & install to build dir for packaging, etc. +make install From e4e6f142d65f29a86ad53e802c22d16baf1ca0c3 Mon Sep 17 00:00:00 2001 From: Joey Sabey Date: Mon, 25 Feb 2019 17:46:19 +0000 Subject: [PATCH 10/76] Remove disable building light and darker theme from autogen flags --- solarize.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solarize.sh b/solarize.sh index 64319fc..5eb495a 100755 --- a/solarize.sh +++ b/solarize.sh @@ -7,7 +7,7 @@ ARCVERSION="20170302" BUILDDIR="`pwd`/build" # Theme types to actually build (or rather, not build =P) -AUTOGENFLAGS="--prefix=${BUILDDIR}/usr --disable-transparency --disable-light --disable-darker --disable-cinnamon --disable-gnome-shell --disable-metacity --disable-unity" +AUTOGENFLAGS="--prefix=${BUILDDIR}/usr --disable-transparency --disable-cinnamon --disable-gnome-shell --disable-metacity --disable-unity" # Pull the Arc source wget "https://github.com/horst3180/arc-theme/archive/${ARCVERSION}.tar.gz" From d97ce9665624521b26a5e5cbd05bdcb9b119b366 Mon Sep 17 00:00:00 2001 From: Joey Sabey Date: Mon, 25 Feb 2019 19:32:15 +0000 Subject: [PATCH 11/76] Added GTK3VER variable to control output --- solarize.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/solarize.sh b/solarize.sh index 5eb495a..5249cce 100755 --- a/solarize.sh +++ b/solarize.sh @@ -6,8 +6,11 @@ ARCVERSION="20170302" # Directory to spit the clean themes out to BUILDDIR="`pwd`/build" +# 3.22 has to be used to target 3.24 +GTK3VER="3.22" + # Theme types to actually build (or rather, not build =P) -AUTOGENFLAGS="--prefix=${BUILDDIR}/usr --disable-transparency --disable-cinnamon --disable-gnome-shell --disable-metacity --disable-unity" +AUTOGENFLAGS="--prefix=${BUILDDIR}/usr --with-gnome=${GTK3VER} --disable-transparency --disable-cinnamon --disable-gnome-shell --disable-metacity --disable-unity" # Pull the Arc source wget "https://github.com/horst3180/arc-theme/archive/${ARCVERSION}.tar.gz" @@ -110,7 +113,7 @@ done echo "" echo "### Regenerating assets" -ASSET_FOLDERS=("gtk-2.0" "gtk-3.0/3.20" "xfwm4") # NOTE: Skipping old gtk3 versions for build time +ASSET_FOLDERS=("gtk-2.0" "gtk-3.0/${GTK3VER}" "xfwm4") # NOTE: Skipping old gtk3 versions for build time echo "## Deleting old assets" cd "${CWD}" for folder in "${ASSET_FOLDERS[@]}" From 7248c3747ae42bf79c1801a67fd7fc60940ba382 Mon Sep 17 00:00:00 2001 From: Joey Sabey Date: Mon, 25 Feb 2019 20:16:09 +0000 Subject: [PATCH 12/76] Now corrects metadata in built themes --- solarize.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/solarize.sh b/solarize.sh index 5249cce..68439d7 100755 --- a/solarize.sh +++ b/solarize.sh @@ -159,3 +159,6 @@ gulp # Make & install to build dir for packaging, etc. make install + +# Correct metadata in built themes +find "${BUILDDIR}" -name "index.theme" -exec sed -i "s/Arc/SolArc/g" {} \; From f939426e7f8c6b572f02e06d90073a828310aa5e Mon Sep 17 00:00:00 2001 From: Joey Sabey Date: Mon, 25 Feb 2019 20:16:57 +0000 Subject: [PATCH 13/76] Corrected light version background colour --- solarize.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/solarize.sh b/solarize.sh index 68439d7..6a56013 100755 --- a/solarize.sh +++ b/solarize.sh @@ -69,6 +69,7 @@ A_GNOME_PANEL_BORDER="0f1116" A_GTK2_TOOLBAR="70788d" A_GTK2_TOOLBAR_DARK="afb8c5" A_CLOSE_BUTTON_GREY="f8f8f9" +A_LIGHT_BG="f5f6f7" # Solarized colors ## Common @@ -91,8 +92,8 @@ S_BASE2="eee8d5" S_BASE3="fdf6e3" FILETYPES=('scss' 'svg' 'xpm' 'xml' 'rc') -ARC_COLORS=( "$A_BASE" "$A_TEXT" "$A_BG" "$A_FG" "$A_SELECTED_FG" "$A_SELECTED_BG" "$A_WARNING" "$A_ERROR" "$A_SUCCESS" "$A_DESTRUCTIVE" "$A_SUGGESTED" "$A_DROP_TARGET" "$A_WM_BUTTON_CLOSE_BG" "$A_WM_BUTTON_CLOSE_HOVER_BG" "$A_WM_BUTTON_CLOSE_ACTIVE_BG" "$A_WM_ICON_CLOSE_BG" "$A_WM_BUTTON_HOVER_BG" "$A_WM_BUTTON_ACTIVE_BG" "$A_WM_BUTTON_HOVER_BORDER" "$A_WM_ICON_BG" "$A_WM_ICON_UNFOCUSED_BG" "$A_WM_ICON_HOVER_BG" "$A_WM_ICON_ACTIVE_BG" "$A_WINDOW_BG" "$A_DARK_SIDEBAR_FG" "$A_ENTRY_BORDER" "$A_BLUE" "$A_WHITE" "$A_GREY" "$A_DARK" "$A_DARKEST" "$A_DARKEST2" "$A_DARK_BUTTON" "$A_LIGHT_BUTTON" "$A_OTHER_LIGHT_BUTTON" "$A_MODAL" "$A_ASSET_DARK" "$A_ASSET_DARK2" "$A_ASSET_GREY" "$A_ASSET_BORDER" "$A_ASSET_LIGHTER_BG" "$A_ASSET_VARIOUS_DARK1" "$A_ASSET_VARIOUS_DARK2" "$A_ASSET_VARIOUS_DARK3" "$A_GNOME_PANEL_BG" "$A_GNOME_PANEL_BORDER" "$A_GTK2_TOOLBAR" "$A_GTK2_TOOLBAR_DARK" "$A_CLOSE_BUTTON_GREY") -SOLARIZED_COLORS=("$S_BASE03" "$S_BASE0" "$S_BASE02" "$S_BASE0" "$S_BASE3" "$S_BLUE" "$S_ORANGE" "$S_RED" "$S_GREEN" "$S_RED" "$S_CYAN" "$S_YELLOW" "$S_RED" "$S_ORANGE" "$S_RED" "$S_BASE03" "$S_BASE00" "$S_BLUE" "$S_BASE03" "$S_BASE1" "$S_BASE00" "$S_BASE1" "$S_BASE3" "$S_BASE02" "$S_BASE00" "$S_BASE00" "$S_BLUE" "$S_BASE3" "$S_BASE2" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE02" "$S_BASE02" "$S_BASE03" "$S_BASE03" "$S_BASE02" "$S_BASE00" "$S_BASE00" "$S_BASE02" "$S_BASE00" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE0" "$S_BASE00" "$S_BASE02") +ARC_COLORS=( "$A_BASE" "$A_TEXT" "$A_BG" "$A_FG" "$A_SELECTED_FG" "$A_SELECTED_BG" "$A_WARNING" "$A_ERROR" "$A_SUCCESS" "$A_DESTRUCTIVE" "$A_SUGGESTED" "$A_DROP_TARGET" "$A_WM_BUTTON_CLOSE_BG" "$A_WM_BUTTON_CLOSE_HOVER_BG" "$A_WM_BUTTON_CLOSE_ACTIVE_BG" "$A_WM_ICON_CLOSE_BG" "$A_WM_BUTTON_HOVER_BG" "$A_WM_BUTTON_ACTIVE_BG" "$A_WM_BUTTON_HOVER_BORDER" "$A_WM_ICON_BG" "$A_WM_ICON_UNFOCUSED_BG" "$A_WM_ICON_HOVER_BG" "$A_WM_ICON_ACTIVE_BG" "$A_WINDOW_BG" "$A_DARK_SIDEBAR_FG" "$A_ENTRY_BORDER" "$A_BLUE" "$A_WHITE" "$A_GREY" "$A_DARK" "$A_DARKEST" "$A_DARKEST2" "$A_DARK_BUTTON" "$A_LIGHT_BUTTON" "$A_OTHER_LIGHT_BUTTON" "$A_MODAL" "$A_ASSET_DARK" "$A_ASSET_DARK2" "$A_ASSET_GREY" "$A_ASSET_BORDER" "$A_ASSET_LIGHTER_BG" "$A_ASSET_VARIOUS_DARK1" "$A_ASSET_VARIOUS_DARK2" "$A_ASSET_VARIOUS_DARK3" "$A_GNOME_PANEL_BG" "$A_GNOME_PANEL_BORDER" "$A_GTK2_TOOLBAR" "$A_GTK2_TOOLBAR_DARK" "$A_CLOSE_BUTTON_GREY" "$A_LIGHT_BG") +SOLARIZED_COLORS=("$S_BASE03" "$S_BASE0" "$S_BASE02" "$S_BASE0" "$S_BASE3" "$S_BLUE" "$S_ORANGE" "$S_RED" "$S_GREEN" "$S_RED" "$S_CYAN" "$S_YELLOW" "$S_RED" "$S_ORANGE" "$S_RED" "$S_BASE03" "$S_BASE00" "$S_BLUE" "$S_BASE03" "$S_BASE1" "$S_BASE00" "$S_BASE1" "$S_BASE3" "$S_BASE02" "$S_BASE00" "$S_BASE00" "$S_BLUE" "$S_BASE3" "$S_BASE2" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE02" "$S_BASE02" "$S_BASE03" "$S_BASE03" "$S_BASE02" "$S_BASE00" "$S_BASE00" "$S_BASE02" "$S_BASE00" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE0" "$S_BASE00" "$S_BASE02" "$S_BASE2") CWD="`pwd`/arc-theme-${ARCVERSION}" From 5be9f3b775344ec2ffdadf033dc7fd4ca2c81e4c Mon Sep 17 00:00:00 2001 From: Joey Sabey Date: Mon, 25 Feb 2019 22:45:39 +0000 Subject: [PATCH 14/76] cd into source dir /before/ patching --- solarize.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/solarize.sh b/solarize.sh index 6a56013..159b4a5 100755 --- a/solarize.sh +++ b/solarize.sh @@ -96,6 +96,7 @@ ARC_COLORS=( "$A_BASE" "$A_TEXT" "$A_BG" "$A_FG" "$A_SELECTED_FG" SOLARIZED_COLORS=("$S_BASE03" "$S_BASE0" "$S_BASE02" "$S_BASE0" "$S_BASE3" "$S_BLUE" "$S_ORANGE" "$S_RED" "$S_GREEN" "$S_RED" "$S_CYAN" "$S_YELLOW" "$S_RED" "$S_ORANGE" "$S_RED" "$S_BASE03" "$S_BASE00" "$S_BLUE" "$S_BASE03" "$S_BASE1" "$S_BASE00" "$S_BASE1" "$S_BASE3" "$S_BASE02" "$S_BASE00" "$S_BASE00" "$S_BLUE" "$S_BASE3" "$S_BASE2" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE02" "$S_BASE02" "$S_BASE03" "$S_BASE03" "$S_BASE02" "$S_BASE00" "$S_BASE00" "$S_BASE02" "$S_BASE00" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE0" "$S_BASE00" "$S_BASE02" "$S_BASE2") CWD="`pwd`/arc-theme-${ARCVERSION}" +cd "${CWD}" echo "### Replacing arc colors with solarized colors" for filetype in "${FILETYPES[@]}" @@ -116,7 +117,7 @@ echo "" echo "### Regenerating assets" ASSET_FOLDERS=("gtk-2.0" "gtk-3.0/${GTK3VER}" "xfwm4") # NOTE: Skipping old gtk3 versions for build time echo "## Deleting old assets" -cd "${CWD}" + for folder in "${ASSET_FOLDERS[@]}" do rm -f common/${folder}/assets/*.png From c55fd453bc4881b00f2ab4a6f1dada82e12538e5 Mon Sep 17 00:00:00 2001 From: Joey Sabey Date: Mon, 25 Feb 2019 22:46:29 +0000 Subject: [PATCH 15/76] Correct directory names for built themes --- solarize.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/solarize.sh b/solarize.sh index 159b4a5..568dcc3 100755 --- a/solarize.sh +++ b/solarize.sh @@ -164,3 +164,10 @@ make install # Correct metadata in built themes find "${BUILDDIR}" -name "index.theme" -exec sed -i "s/Arc/SolArc/g" {} \; + +# Correct directory names for built themes +for THEME in "Arc" "Arc-Darker" "Arc-Dark"; do + if [ -d "${BUILDDIR}/usr/share/themes/${THEME}" ]; then + mv "${BUILDDIR}/usr/share/themes/${THEME}" "${BUILDDIR}/usr/share/themes/Sol${THEME}" + fi +done From f52b0f0e29b765c369797e4afc6ea462da428cb7 Mon Sep 17 00:00:00 2001 From: Joey Sabey Date: Tue, 26 Feb 2019 13:45:12 +0000 Subject: [PATCH 16/76] Moved logic correcting index.theme files & output directory names to before autogen/make --- solarize.sh | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/solarize.sh b/solarize.sh index 568dcc3..75401bb 100755 --- a/solarize.sh +++ b/solarize.sh @@ -151,6 +151,11 @@ cp common/gtk-2.0/assets-dark/menubar.png common/gtk-2.0/menubar-toolbar/menubar cp common/gtk-2.0/assets/menubar_button.png common/gtk-2.0/menubar-toolbar/menubar_button.png cp common/gtk-2.0/assets-dark/menubar_button.png common/gtk-2.0/menubar-toolbar/menubar_button-dark.png +# Correct index.theme metadata & output directories +for PATTERN in "Makefile.am" "index.theme*" "metacity-theme-*.xml"; do + find "${CWD}/common" -name "${PATTERN}" -exec sed -i "s/Arc/SolArc/g" {} \; +done + npm install gulp gulp-sass gulp-rename # NOTE: gulp below requires these node modules echo "### Regenerating css" @@ -162,12 +167,3 @@ gulp # Make & install to build dir for packaging, etc. make install -# Correct metadata in built themes -find "${BUILDDIR}" -name "index.theme" -exec sed -i "s/Arc/SolArc/g" {} \; - -# Correct directory names for built themes -for THEME in "Arc" "Arc-Darker" "Arc-Dark"; do - if [ -d "${BUILDDIR}/usr/share/themes/${THEME}" ]; then - mv "${BUILDDIR}/usr/share/themes/${THEME}" "${BUILDDIR}/usr/share/themes/Sol${THEME}" - fi -done From 18b5e4ce24eba6d2f8ce968286b7400f67e84507 Mon Sep 17 00:00:00 2001 From: Joey Sabey Date: Tue, 26 Feb 2019 14:20:50 +0000 Subject: [PATCH 17/76] Removed files which are now pulled clean by solarize.sh --- AUTHORS | 2 - HACKING.md | 45 - Makefile.am | 11 - autogen.sh | 13 - common/Makefile.am | 318 - common/cinnamon/cinnamon-dark.css | 1423 ---- common/cinnamon/cinnamon.css | 1423 ---- .../common-assets/menu/menu-hover.svg | 104 - .../common-assets/menu/menu-separator.svg | 60 - .../misc/add-workspace-active.svg | 154 - .../misc/add-workspace-hover.svg | 117 - .../common-assets/misc/add-workspace.svg | 117 - common/cinnamon/common-assets/misc/bg.svg | 127 - .../misc/calendar-arrow-left-hover.svg | 172 - .../misc/calendar-arrow-left.svg | 152 - .../misc/calendar-arrow-right-hover.svg | 172 - .../misc/calendar-arrow-right.svg | 152 - .../common-assets/misc/close-active.svg | 100 - .../common-assets/misc/close-hover.svg | 100 - common/cinnamon/common-assets/misc/close.svg | 100 - .../common-assets/misc/corner-ripple.svg | 85 - .../common-assets/misc/desklet-header.svg | 158 - .../cinnamon/common-assets/misc/desklet.svg | 152 - common/cinnamon/common-assets/misc/osd.svg | 127 - .../common-assets/misc/overview-hover.png | Bin 838 -> 0 bytes .../cinnamon/common-assets/misc/overview.png | Bin 680 -> 0 bytes .../common-assets/misc/trash-icon.svg | 97 - .../common-assets/panel/activities-active.svg | 178 - .../common-assets/panel/activities.svg | 158 - .../common-assets/panel/panel-bottom.svg | 79 - .../common-assets/panel/panel-left.svg | 79 - .../common-assets/panel/panel-right.svg | 79 - .../common-assets/panel/panel-top.svg | 75 - .../panel/window-list-active-bottom.svg | 162 - .../panel/window-list-active-left.svg | 164 - .../panel/window-list-active-right.svg | 164 - .../panel/window-list-active-top.svg | 162 - .../switch/switch-off-selected.svg | 229 - .../switch/switch-on-selected.svg | 274 - .../checkbox/checkbox-checked-focused.svg | 214 - .../dark-assets/checkbox/checkbox-checked.svg | 214 - .../checkbox/checkbox-unchecked-focused.svg | 160 - .../checkbox/checkbox-unchecked.svg | 141 - common/cinnamon/dark-assets/menu/menu.svg | 127 - common/cinnamon/dark-assets/menu/submenu.svg | 117 - .../cinnamon/dark-assets/misc/button-box.svg | 101 - common/cinnamon/dark-assets/misc/message.svg | 96 - common/cinnamon/dark-assets/misc/modal.svg | 143 - .../dark-assets/switch/switch-off.svg | 201 - .../cinnamon/dark-assets/switch/switch-on.svg | 239 - .../checkbox/checkbox-checked-focused.svg | 268 - .../checkbox/checkbox-checked.svg | 268 - .../checkbox/checkbox-unchecked-focused.svg | 160 - .../checkbox/checkbox-unchecked.svg | 141 - common/cinnamon/light-assets/menu/menu.svg | 127 - common/cinnamon/light-assets/menu/submenu.svg | 117 - .../cinnamon/light-assets/misc/button-box.svg | 92 - common/cinnamon/light-assets/misc/message.svg | 103 - common/cinnamon/light-assets/misc/modal.svg | 143 - .../light-assets/switch/switch-off.svg | 201 - .../light-assets/switch/switch-on.svg | 274 - common/cinnamon/sass/_colors.scss | 101 - common/cinnamon/sass/_common.scss | 1688 ----- common/cinnamon/sass/_drawing.scss | 167 - common/cinnamon/sass/cinnamon-dark.scss | 7 - common/cinnamon/sass/cinnamon.scss | 7 - common/cinnamon/thumbnail-dark.png | Bin 34849 -> 0 bytes common/cinnamon/thumbnail.png | Bin 33914 -> 0 bytes .../dash/button-active-bottom.svg | 162 - .../dash/button-active-right.svg | 160 - .../common-assets/dash/button-active-top.svg | 162 - .../3.14/common-assets/dash/button-active.svg | 159 - .../dash/button-hover-bottom.svg | 152 - .../common-assets/dash/button-hover-right.svg | 151 - .../common-assets/dash/button-hover-top.svg | 152 - .../3.14/common-assets/dash/button-hover.svg | 149 - .../dash/button-running-active-bottom.svg | 160 - .../dash/button-running-active-right.svg | 160 - .../dash/button-running-active-top.svg | 160 - .../dash/button-running-active.svg | 160 - .../dash/button-running-bottom.svg | 151 - .../dash/button-running-hover-bottom.svg | 160 - .../dash/button-running-hover-right.svg | 160 - .../dash/button-running-hover-top.svg | 160 - .../dash/button-running-hover.svg | 160 - .../dash/button-running-right.svg | 151 - .../common-assets/dash/button-running-top.svg | 151 - .../common-assets/dash/button-running.svg | 150 - .../3.14/common-assets/dash/dash-left.svg | 72 - .../common-assets/dash/dash-placeholder.svg | 84 - .../3.14/common-assets/dash/dash-right.svg | 77 - .../3.14/common-assets/dash/running1.svg | 162 - .../3.14/common-assets/dash/running2.svg | 169 - .../3.14/common-assets/dash/running3.svg | 176 - .../3.14/common-assets/dash/running4.svg | 183 - .../3.14/common-assets/menu/menu-hover.svg | 104 - .../common-assets/menu/menu-separator.svg | 60 - .../3.14/common-assets/misc/bg.svg | 127 - .../3.14/common-assets/misc/close-active.svg | 100 - .../3.14/common-assets/misc/close-hover.svg | 100 - .../3.14/common-assets/misc/close.svg | 100 - .../common-assets/misc/corner-ripple-ltr.svg | 125 - .../common-assets/misc/corner-ripple-rtl.svg | 75 - .../3.14/common-assets/misc/more-results.svg | 167 - .../3.14/common-assets/misc/notification.svg | 146 - .../3.14/common-assets/misc/null.svg | 92 - .../3.14/common-assets/misc/osd.svg | 127 - .../misc/page-indicator-active.svg | 87 - .../misc/page-indicator-checked.svg | 67 - .../misc/page-indicator-hover.svg | 67 - .../misc/page-indicator-inactive.svg | 67 - .../common-assets/misc/process-working.svg | 287 - .../common-assets/misc/summary-counter.svg | 115 - .../misc/ws-switch-arrow-down.png | Bin 879 -> 0 bytes .../common-assets/misc/ws-switch-arrow-up.png | Bin 853 -> 0 bytes .../common-assets/panel/activities-active.svg | 178 - .../3.14/common-assets/panel/activities.svg | 158 - .../common-assets/panel/panel-overview.svg | 75 - .../3.14/common-assets/panel/panel.svg | 75 - .../switch/switch-off-selected.svg | 229 - .../switch/switch-on-selected.svg | 274 - .../checkbox/checkbox-checked-focused.svg | 214 - .../dark-assets/checkbox/checkbox-checked.svg | 214 - .../checkbox/checkbox-unchecked-focused.svg | 160 - .../checkbox/checkbox-unchecked.svg | 141 - .../3.14/dark-assets/menu/menu.svg | 127 - .../3.14/dark-assets/menu/submenu-open.svg | 109 - .../3.14/dark-assets/menu/submenu.svg | 109 - .../3.14/dark-assets/misc/button-box.svg | 101 - .../misc/calendar-arrow-left-hover.svg | 172 - .../dark-assets/misc/calendar-arrow-left.svg | 169 - .../misc/calendar-arrow-right-hover.svg | 172 - .../dark-assets/misc/calendar-arrow-right.svg | 171 - .../3.14/dark-assets/misc/message-active.svg | 90 - .../dark-assets/misc/message-close-active.svg | 155 - .../dark-assets/misc/message-close-hover.svg | 138 - .../3.14/dark-assets/misc/message-close.svg | 118 - .../3.14/dark-assets/misc/message-hover.svg | 96 - .../3.14/dark-assets/misc/message.svg | 96 - .../3.14/dark-assets/misc/modal.svg | 143 - .../3.14/dark-assets/switch/switch-off.svg | 201 - .../3.14/dark-assets/switch/switch-on.svg | 239 - common/gnome-shell/3.14/gnome-shell-dark.css | 2091 ------ common/gnome-shell/3.14/gnome-shell.css | 2091 ------ .../checkbox/checkbox-checked-focused.svg | 268 - .../checkbox/checkbox-checked.svg | 268 - .../checkbox/checkbox-unchecked-focused.svg | 160 - .../checkbox/checkbox-unchecked.svg | 141 - .../3.14/light-assets/menu/menu.svg | 127 - .../3.14/light-assets/menu/submenu-open.svg | 109 - .../3.14/light-assets/menu/submenu.svg | 109 - .../3.14/light-assets/misc/button-box.svg | 92 - .../misc/calendar-arrow-left-hover.svg | 172 - .../light-assets/misc/calendar-arrow-left.svg | 169 - .../misc/calendar-arrow-right-hover.svg | 172 - .../misc/calendar-arrow-right.svg | 171 - .../3.14/light-assets/misc/message-active.svg | 90 - .../misc/message-close-active.svg | 155 - .../light-assets/misc/message-close-hover.svg | 138 - .../3.14/light-assets/misc/message-close.svg | 118 - .../3.14/light-assets/misc/message-hover.svg | 112 - .../3.14/light-assets/misc/message.svg | 103 - .../3.14/light-assets/misc/modal.svg | 143 - .../3.14/light-assets/switch/switch-off.svg | 201 - .../3.14/light-assets/switch/switch-on.svg | 274 - common/gnome-shell/3.14/sass/_colors.scss | 101 - common/gnome-shell/3.14/sass/_common.scss | 2499 ------- common/gnome-shell/3.14/sass/_drawing.scss | 167 - .../3.14/sass/gnome-shell-dark.scss | 7 - common/gnome-shell/3.14/sass/gnome-shell.scss | 7 - .../3.16/common-assets/dash/dash-left.svg | 72 - .../common-assets/dash/dash-placeholder.svg | 84 - .../3.16/common-assets/dash/dash-right.svg | 77 - .../3.16/common-assets/dash/running1.svg | 162 - .../3.16/common-assets/dash/running2.svg | 169 - .../3.16/common-assets/dash/running3.svg | 176 - .../3.16/common-assets/dash/running4.svg | 183 - .../3.16/common-assets/menu/menu-hover.svg | 104 - .../common-assets/menu/menu-separator.svg | 60 - .../3.16/common-assets/misc/bg.svg | 127 - .../3.16/common-assets/misc/close-active.svg | 100 - .../3.16/common-assets/misc/close-hover.svg | 100 - .../3.16/common-assets/misc/close.svg | 100 - .../common-assets/misc/corner-ripple-ltr.svg | 125 - .../common-assets/misc/corner-ripple-rtl.svg | 75 - .../3.16/common-assets/misc/more-results.svg | 167 - .../3.16/common-assets/misc/osd.svg | 127 - .../misc/page-indicator-active.svg | 87 - .../misc/page-indicator-checked.svg | 67 - .../misc/page-indicator-hover.svg | 67 - .../misc/page-indicator-inactive.svg | 67 - .../common-assets/misc/process-working.svg | 287 - .../misc/ws-switch-arrow-down.png | Bin 879 -> 0 bytes .../common-assets/misc/ws-switch-arrow-up.png | Bin 853 -> 0 bytes .../common-assets/panel/activities-active.svg | 178 - .../3.16/common-assets/panel/activities.svg | 158 - .../common-assets/panel/panel-overview.svg | 75 - .../3.16/common-assets/panel/panel.svg | 75 - .../switch/switch-off-selected.svg | 229 - .../switch/switch-on-selected.svg | 274 - .../checkbox/checkbox-checked-focused.svg | 214 - .../dark-assets/checkbox/checkbox-checked.svg | 214 - .../checkbox/checkbox-unchecked-focused.svg | 160 - .../checkbox/checkbox-unchecked.svg | 141 - .../3.16/dark-assets/menu/menu.svg | 127 - .../3.16/dark-assets/menu/submenu-open.svg | 109 - .../3.16/dark-assets/menu/submenu.svg | 109 - .../3.16/dark-assets/misc/button-box.svg | 101 - .../misc/calendar-arrow-left-hover.svg | 172 - .../dark-assets/misc/calendar-arrow-left.svg | 169 - .../misc/calendar-arrow-right-hover.svg | 172 - .../dark-assets/misc/calendar-arrow-right.svg | 171 - .../3.16/dark-assets/misc/message-active.svg | 90 - .../dark-assets/misc/message-close-active.svg | 155 - .../dark-assets/misc/message-close-hover.svg | 138 - .../3.16/dark-assets/misc/message-close.svg | 118 - .../3.16/dark-assets/misc/message-hover.svg | 96 - .../3.16/dark-assets/misc/message.svg | 96 - .../3.16/dark-assets/misc/modal.svg | 143 - .../3.16/dark-assets/switch/switch-off.svg | 201 - .../3.16/dark-assets/switch/switch-on.svg | 239 - common/gnome-shell/3.16/gnome-shell-dark.css | 1921 ----- common/gnome-shell/3.16/gnome-shell.css | 1921 ----- .../checkbox/checkbox-checked-focused.svg | 268 - .../checkbox/checkbox-checked.svg | 268 - .../checkbox/checkbox-unchecked-focused.svg | 160 - .../checkbox/checkbox-unchecked.svg | 141 - .../3.16/light-assets/menu/menu.svg | 127 - .../3.16/light-assets/menu/submenu-open.svg | 109 - .../3.16/light-assets/menu/submenu.svg | 109 - .../3.16/light-assets/misc/button-box.svg | 92 - .../misc/calendar-arrow-left-hover.svg | 172 - .../light-assets/misc/calendar-arrow-left.svg | 169 - .../misc/calendar-arrow-right-hover.svg | 172 - .../misc/calendar-arrow-right.svg | 171 - .../3.16/light-assets/misc/message-active.svg | 90 - .../misc/message-close-active.svg | 155 - .../light-assets/misc/message-close-hover.svg | 138 - .../3.16/light-assets/misc/message-close.svg | 118 - .../3.16/light-assets/misc/message-hover.svg | 112 - .../3.16/light-assets/misc/message.svg | 103 - .../3.16/light-assets/misc/modal.svg | 143 - .../3.16/light-assets/switch/switch-off.svg | 201 - .../3.16/light-assets/switch/switch-on.svg | 274 - common/gnome-shell/3.16/sass/_colors.scss | 101 - common/gnome-shell/3.16/sass/_common.scss | 2256 ------ common/gnome-shell/3.16/sass/_drawing.scss | 171 - .../3.16/sass/gnome-shell-dark.scss | 7 - common/gnome-shell/3.16/sass/gnome-shell.scss | 7 - .../3.18/common-assets/dash/dash-left.svg | 72 - .../common-assets/dash/dash-placeholder.svg | 84 - .../3.18/common-assets/dash/dash-right.svg | 77 - .../3.18/common-assets/dash/running1.svg | 162 - .../3.18/common-assets/dash/running2.svg | 169 - .../3.18/common-assets/dash/running3.svg | 176 - .../3.18/common-assets/dash/running4.svg | 183 - .../3.18/common-assets/menu/menu-hover.svg | 104 - .../common-assets/menu/menu-separator.svg | 60 - .../3.18/common-assets/misc/bg.svg | 127 - .../common-assets/misc/calendar-today.svg | 205 - .../3.18/common-assets/misc/close-active.svg | 100 - .../3.18/common-assets/misc/close-hover.svg | 100 - .../3.18/common-assets/misc/close.svg | 100 - .../common-assets/misc/corner-ripple-ltr.svg | 125 - .../common-assets/misc/corner-ripple-rtl.svg | 75 - .../3.18/common-assets/misc/more-results.svg | 167 - .../3.18/common-assets/misc/osd.svg | 127 - .../misc/page-indicator-active.svg | 87 - .../misc/page-indicator-checked.svg | 67 - .../misc/page-indicator-hover.svg | 67 - .../misc/page-indicator-inactive.svg | 67 - .../common-assets/misc/process-working.svg | 409 -- .../misc/ws-switch-arrow-down.png | Bin 879 -> 0 bytes .../common-assets/misc/ws-switch-arrow-up.png | Bin 853 -> 0 bytes .../common-assets/panel/activities-active.svg | 178 - .../3.18/common-assets/panel/activities.svg | 158 - .../common-assets/panel/panel-overview.svg | 75 - .../3.18/common-assets/panel/panel.svg | 75 - .../switch/switch-off-selected.svg | 229 - .../switch/switch-on-selected.svg | 274 - .../checkbox/checkbox-checked-focused.svg | 214 - .../dark-assets/checkbox/checkbox-checked.svg | 214 - .../checkbox/checkbox-unchecked-focused.svg | 160 - .../checkbox/checkbox-unchecked.svg | 141 - .../3.18/dark-assets/menu/menu.svg | 127 - .../3.18/dark-assets/menu/submenu-open.svg | 109 - .../3.18/dark-assets/menu/submenu.svg | 109 - .../misc/calendar-arrow-left-hover.svg | 172 - .../dark-assets/misc/calendar-arrow-left.svg | 169 - .../misc/calendar-arrow-right-hover.svg | 172 - .../dark-assets/misc/calendar-arrow-right.svg | 171 - .../3.18/dark-assets/misc/message-active.svg | 90 - .../dark-assets/misc/message-close-active.svg | 155 - .../dark-assets/misc/message-close-hover.svg | 138 - .../3.18/dark-assets/misc/message-close.svg | 118 - .../3.18/dark-assets/misc/message-hover.svg | 96 - .../3.18/dark-assets/misc/message.svg | 96 - .../3.18/dark-assets/misc/modal.svg | 143 - .../3.18/dark-assets/switch/switch-off.svg | 201 - .../3.18/dark-assets/switch/switch-on.svg | 239 - common/gnome-shell/3.18/gnome-shell-dark.css | 2061 ------ common/gnome-shell/3.18/gnome-shell.css | 2061 ------ .../checkbox/checkbox-checked-focused.svg | 268 - .../checkbox/checkbox-checked.svg | 268 - .../checkbox/checkbox-unchecked-focused.svg | 160 - .../checkbox/checkbox-unchecked.svg | 141 - .../3.18/light-assets/menu/menu.svg | 127 - .../3.18/light-assets/menu/submenu-open.svg | 109 - .../3.18/light-assets/menu/submenu.svg | 109 - .../misc/calendar-arrow-left-hover.svg | 172 - .../light-assets/misc/calendar-arrow-left.svg | 169 - .../misc/calendar-arrow-right-hover.svg | 172 - .../misc/calendar-arrow-right.svg | 171 - .../3.18/light-assets/misc/message-active.svg | 90 - .../misc/message-close-active.svg | 155 - .../light-assets/misc/message-close-hover.svg | 138 - .../3.18/light-assets/misc/message-close.svg | 118 - .../3.18/light-assets/misc/message-hover.svg | 112 - .../3.18/light-assets/misc/message.svg | 103 - .../3.18/light-assets/misc/modal.svg | 143 - .../3.18/light-assets/switch/switch-off.svg | 201 - .../3.18/light-assets/switch/switch-on.svg | 274 - common/gnome-shell/3.18/sass/_colors.scss | 101 - common/gnome-shell/3.18/sass/_common.scss | 2465 ------- common/gnome-shell/3.18/sass/_drawing.scss | 171 - .../3.18/sass/gnome-shell-dark.scss | 7 - common/gnome-shell/3.18/sass/gnome-shell.scss | 7 - common/gnome-shell/3.20 | 1 - common/gnome-shell/3.22 | 1 - common/gnome-shell/3.24 | 1 - common/gtk-2.0/apps.rc | 157 - common/gtk-2.0/assets-dark.svg | 6128 ---------------- .../gtk-2.0/assets-dark/arrow-down-insens.png | Bin 315 -> 0 bytes .../assets-dark/arrow-down-prelight.png | Bin 308 -> 0 bytes .../assets-dark/arrow-down-small-insens.png | Bin 289 -> 0 bytes .../assets-dark/arrow-down-small-prelight.png | Bin 275 -> 0 bytes .../gtk-2.0/assets-dark/arrow-down-small.png | Bin 282 -> 0 bytes common/gtk-2.0/assets-dark/arrow-down.png | Bin 316 -> 0 bytes .../gtk-2.0/assets-dark/arrow-left-insens.png | Bin 324 -> 0 bytes .../assets-dark/arrow-left-prelight.png | Bin 323 -> 0 bytes common/gtk-2.0/assets-dark/arrow-left.png | Bin 316 -> 0 bytes .../assets-dark/arrow-right-insens.png | Bin 320 -> 0 bytes .../assets-dark/arrow-right-prelight.png | Bin 312 -> 0 bytes common/gtk-2.0/assets-dark/arrow-right.png | Bin 316 -> 0 bytes .../gtk-2.0/assets-dark/arrow-up-insens.png | Bin 325 -> 0 bytes .../gtk-2.0/assets-dark/arrow-up-prelight.png | Bin 323 -> 0 bytes .../assets-dark/arrow-up-small-insens.png | Bin 278 -> 0 bytes .../assets-dark/arrow-up-small-prelight.png | Bin 280 -> 0 bytes common/gtk-2.0/assets-dark/arrow-up-small.png | Bin 280 -> 0 bytes common/gtk-2.0/assets-dark/arrow-up.png | Bin 320 -> 0 bytes common/gtk-2.0/assets-dark/button-active.png | Bin 271 -> 0 bytes common/gtk-2.0/assets-dark/button-hover.png | Bin 262 -> 0 bytes .../assets-dark/button-insensitive.png | Bin 260 -> 0 bytes common/gtk-2.0/assets-dark/button.png | Bin 265 -> 0 bytes .../checkbox-checked-insensitive.png | Bin 356 -> 0 bytes .../gtk-2.0/assets-dark/checkbox-checked.png | Bin 360 -> 0 bytes .../checkbox-unchecked-insensitive.png | Bin 267 -> 0 bytes .../assets-dark/checkbox-unchecked.png | Bin 265 -> 0 bytes .../combo-entry-border-focus-rtl.png | Bin 253 -> 0 bytes .../assets-dark/combo-entry-border-focus.png | Bin 248 -> 0 bytes .../assets-dark/combo-entry-border-rtl.png | Bin 255 -> 0 bytes .../assets-dark/combo-entry-border.png | Bin 249 -> 0 bytes .../combo-entry-button-active-rtl.png | Bin 241 -> 0 bytes .../assets-dark/combo-entry-button-active.png | Bin 232 -> 0 bytes .../combo-entry-button-insensitive-rtl.png | Bin 240 -> 0 bytes .../combo-entry-button-insensitive.png | Bin 231 -> 0 bytes .../assets-dark/combo-entry-button-rtl.png | Bin 240 -> 0 bytes .../assets-dark/combo-entry-button.png | Bin 234 -> 0 bytes .../combo-entry-focus-notebook-rtl.png | Bin 223 -> 0 bytes .../combo-entry-focus-notebook.png | Bin 220 -> 0 bytes .../assets-dark/combo-entry-focus-rtl.png | Bin 230 -> 0 bytes .../gtk-2.0/assets-dark/combo-entry-focus.png | Bin 230 -> 0 bytes .../combo-entry-insensitive-notebook-rtl.png | Bin 231 -> 0 bytes .../combo-entry-insensitive-notebook.png | Bin 230 -> 0 bytes .../combo-entry-insensitive-rtl.png | Bin 232 -> 0 bytes .../assets-dark/combo-entry-insensitive.png | Bin 226 -> 0 bytes .../assets-dark/combo-entry-notebook-rtl.png | Bin 228 -> 0 bytes .../assets-dark/combo-entry-notebook.png | Bin 221 -> 0 bytes .../gtk-2.0/assets-dark/combo-entry-rtl.png | Bin 235 -> 0 bytes common/gtk-2.0/assets-dark/combo-entry.png | Bin 230 -> 0 bytes .../down-background-disable-rtl.png | Bin 200 -> 0 bytes .../assets-dark/down-background-disable.png | Bin 209 -> 0 bytes .../assets-dark/down-background-rtl.png | Bin 202 -> 0 bytes .../gtk-2.0/assets-dark/down-background.png | Bin 210 -> 0 bytes .../gtk-2.0/assets-dark/entry-active-bg.png | Bin 294 -> 0 bytes .../assets-dark/entry-active-notebook.png | Bin 248 -> 0 bytes .../assets-dark/entry-active-toolbar.png | Bin 252 -> 0 bytes .../assets-dark/entry-background-disabled.png | Bin 154 -> 0 bytes .../gtk-2.0/assets-dark/entry-background.png | Bin 154 -> 0 bytes common/gtk-2.0/assets-dark/entry-bg.png | Bin 297 -> 0 bytes .../assets-dark/entry-border-active-bg.png | Bin 305 -> 0 bytes .../gtk-2.0/assets-dark/entry-border-bg.png | Bin 295 -> 0 bytes .../gtk-2.0/assets-dark/entry-disabled-bg.png | Bin 248 -> 0 bytes .../assets-dark/entry-disabled-notebook.png | Bin 250 -> 0 bytes .../assets-dark/entry-disabled-toolbar.png | Bin 268 -> 0 bytes common/gtk-2.0/assets-dark/entry-notebook.png | Bin 246 -> 0 bytes common/gtk-2.0/assets-dark/entry-toolbar.png | Bin 249 -> 0 bytes common/gtk-2.0/assets-dark/focus-line.png | Bin 164 -> 0 bytes common/gtk-2.0/assets-dark/frame-gap-end.png | Bin 148 -> 0 bytes .../gtk-2.0/assets-dark/frame-gap-start.png | Bin 148 -> 0 bytes common/gtk-2.0/assets-dark/frame.png | Bin 166 -> 0 bytes common/gtk-2.0/assets-dark/handle-h.png | Bin 160 -> 0 bytes common/gtk-2.0/assets-dark/handle-v.png | Bin 157 -> 0 bytes common/gtk-2.0/assets-dark/inline-toolbar.png | Bin 166 -> 0 bytes common/gtk-2.0/assets-dark/line-h.png | Bin 151 -> 0 bytes common/gtk-2.0/assets-dark/line-v.png | Bin 151 -> 0 bytes .../assets-dark/menu-arrow-prelight.png | Bin 237 -> 0 bytes common/gtk-2.0/assets-dark/menu-arrow.png | Bin 247 -> 0 bytes .../menu-checkbox-checked-insensitive.png | Bin 337 -> 0 bytes .../menu-checkbox-checked-selected.png | Bin 330 -> 0 bytes .../assets-dark/menu-checkbox-checked.png | Bin 330 -> 0 bytes .../menu-checkbox-unchecked-insensitive.png | Bin 234 -> 0 bytes .../menu-checkbox-unchecked-selected.png | Bin 243 -> 0 bytes .../assets-dark/menu-checkbox-unchecked.png | Bin 232 -> 0 bytes .../menu-radio-checked-insensitive.png | Bin 360 -> 0 bytes .../menu-radio-checked-selected.png | Bin 387 -> 0 bytes .../assets-dark/menu-radio-checked.png | Bin 384 -> 0 bytes .../menu-radio-unchecked-insensitive.png | Bin 434 -> 0 bytes .../menu-radio-unchecked-selected.png | Bin 443 -> 0 bytes .../assets-dark/menu-radio-unchecked.png | Bin 459 -> 0 bytes common/gtk-2.0/assets-dark/menubar.png | Bin 156 -> 0 bytes common/gtk-2.0/assets-dark/menubar_button.png | Bin 156 -> 0 bytes common/gtk-2.0/assets-dark/menuitem.png | Bin 156 -> 0 bytes common/gtk-2.0/assets-dark/minus.png | Bin 267 -> 0 bytes .../assets-dark/notebook-gap-horiz.png | Bin 160 -> 0 bytes .../gtk-2.0/assets-dark/notebook-gap-vert.png | Bin 155 -> 0 bytes common/gtk-2.0/assets-dark/notebook.png | Bin 166 -> 0 bytes common/gtk-2.0/assets-dark/null.png | Bin 148 -> 0 bytes common/gtk-2.0/assets-dark/plus.png | Bin 254 -> 0 bytes common/gtk-2.0/assets-dark/progressbar.png | Bin 267 -> 0 bytes common/gtk-2.0/assets-dark/progressbar_v.png | Bin 265 -> 0 bytes .../assets-dark/radio-checked-insensitive.png | Bin 394 -> 0 bytes common/gtk-2.0/assets-dark/radio-checked.png | Bin 373 -> 0 bytes .../radio-unchecked-insensitive.png | Bin 396 -> 0 bytes .../gtk-2.0/assets-dark/radio-unchecked.png | Bin 414 -> 0 bytes .../assets-dark/slider-horiz-active.png | Bin 253 -> 0 bytes .../assets-dark/slider-horiz-insens.png | Bin 253 -> 0 bytes .../assets-dark/slider-horiz-prelight.png | Bin 253 -> 0 bytes common/gtk-2.0/assets-dark/slider-horiz.png | Bin 253 -> 0 bytes .../assets-dark/slider-insensitive.png | Bin 390 -> 0 bytes .../gtk-2.0/assets-dark/slider-prelight.png | Bin 398 -> 0 bytes .../assets-dark/slider-vert-active.png | Bin 248 -> 0 bytes .../assets-dark/slider-vert-insens.png | Bin 248 -> 0 bytes .../assets-dark/slider-vert-prelight.png | Bin 248 -> 0 bytes common/gtk-2.0/assets-dark/slider-vert.png | Bin 248 -> 0 bytes common/gtk-2.0/assets-dark/slider.png | Bin 412 -> 0 bytes .../gtk-2.0/assets-dark/tab-bottom-active.png | Bin 168 -> 0 bytes .../gtk-2.0/assets-dark/tab-left-active.png | Bin 170 -> 0 bytes .../gtk-2.0/assets-dark/tab-right-active.png | Bin 169 -> 0 bytes common/gtk-2.0/assets-dark/tab-top-active.png | Bin 168 -> 0 bytes common/gtk-2.0/assets-dark/toolbar.png | Bin 162 -> 0 bytes common/gtk-2.0/assets-dark/tree_header.png | Bin 162 -> 0 bytes .../assets-dark/trough-horizontal-active.png | Bin 252 -> 0 bytes .../gtk-2.0/assets-dark/trough-horizontal.png | Bin 252 -> 0 bytes .../assets-dark/trough-progressbar.png | Bin 275 -> 0 bytes .../assets-dark/trough-progressbar_v.png | Bin 276 -> 0 bytes .../assets-dark/trough-scrollbar-horiz.png | Bin 164 -> 0 bytes .../assets-dark/trough-scrollbar-vert.png | Bin 161 -> 0 bytes .../assets-dark/trough-vertical-active.png | Bin 257 -> 0 bytes .../gtk-2.0/assets-dark/trough-vertical.png | Bin 257 -> 0 bytes .../assets-dark/up-background-disable-rtl.png | Bin 210 -> 0 bytes .../assets-dark/up-background-disable.png | Bin 212 -> 0 bytes .../gtk-2.0/assets-dark/up-background-rtl.png | Bin 208 -> 0 bytes common/gtk-2.0/assets-dark/up-background.png | Bin 215 -> 0 bytes common/gtk-2.0/assets.svg | 6235 ----------------- common/gtk-2.0/assets.txt | 132 - common/gtk-2.0/assets/arrow-down-insens.png | Bin 320 -> 0 bytes common/gtk-2.0/assets/arrow-down-prelight.png | Bin 306 -> 0 bytes .../assets/arrow-down-small-insens.png | Bin 287 -> 0 bytes .../assets/arrow-down-small-prelight.png | Bin 285 -> 0 bytes common/gtk-2.0/assets/arrow-down-small.png | Bin 285 -> 0 bytes common/gtk-2.0/assets/arrow-down.png | Bin 319 -> 0 bytes common/gtk-2.0/assets/arrow-left-insens.png | Bin 326 -> 0 bytes common/gtk-2.0/assets/arrow-left-prelight.png | Bin 319 -> 0 bytes common/gtk-2.0/assets/arrow-left.png | Bin 316 -> 0 bytes common/gtk-2.0/assets/arrow-right-insens.png | Bin 321 -> 0 bytes .../gtk-2.0/assets/arrow-right-prelight.png | Bin 314 -> 0 bytes common/gtk-2.0/assets/arrow-right.png | Bin 316 -> 0 bytes common/gtk-2.0/assets/arrow-up-insens.png | Bin 325 -> 0 bytes common/gtk-2.0/assets/arrow-up-prelight.png | Bin 319 -> 0 bytes .../gtk-2.0/assets/arrow-up-small-insens.png | Bin 288 -> 0 bytes .../assets/arrow-up-small-prelight.png | Bin 280 -> 0 bytes common/gtk-2.0/assets/arrow-up-small.png | Bin 277 -> 0 bytes common/gtk-2.0/assets/arrow-up.png | Bin 320 -> 0 bytes common/gtk-2.0/assets/button-active.png | Bin 266 -> 0 bytes common/gtk-2.0/assets/button-hover.png | Bin 265 -> 0 bytes common/gtk-2.0/assets/button-insensitive.png | Bin 257 -> 0 bytes common/gtk-2.0/assets/button.png | Bin 265 -> 0 bytes .../assets/checkbox-checked-insensitive.png | Bin 367 -> 0 bytes common/gtk-2.0/assets/checkbox-checked.png | Bin 357 -> 0 bytes .../assets/checkbox-unchecked-insensitive.png | Bin 255 -> 0 bytes common/gtk-2.0/assets/checkbox-unchecked.png | Bin 265 -> 0 bytes .../assets/combo-entry-border-focus-rtl.png | Bin 256 -> 0 bytes .../assets/combo-entry-border-focus.png | Bin 252 -> 0 bytes .../gtk-2.0/assets/combo-entry-border-rtl.png | Bin 260 -> 0 bytes common/gtk-2.0/assets/combo-entry-border.png | Bin 256 -> 0 bytes .../assets/combo-entry-button-active-rtl.png | Bin 237 -> 0 bytes .../assets/combo-entry-button-active.png | Bin 235 -> 0 bytes .../combo-entry-button-insensitive-rtl.png | Bin 236 -> 0 bytes .../assets/combo-entry-button-insensitive.png | Bin 231 -> 0 bytes .../gtk-2.0/assets/combo-entry-button-rtl.png | Bin 240 -> 0 bytes common/gtk-2.0/assets/combo-entry-button.png | Bin 234 -> 0 bytes .../assets/combo-entry-focus-notebook-rtl.png | Bin 235 -> 0 bytes .../assets/combo-entry-focus-notebook.png | Bin 225 -> 0 bytes .../gtk-2.0/assets/combo-entry-focus-rtl.png | Bin 238 -> 0 bytes common/gtk-2.0/assets/combo-entry-focus.png | Bin 228 -> 0 bytes .../combo-entry-insensitive-notebook-rtl.png | Bin 251 -> 0 bytes .../combo-entry-insensitive-notebook.png | Bin 231 -> 0 bytes .../assets/combo-entry-insensitive-rtl.png | Bin 224 -> 0 bytes .../assets/combo-entry-insensitive.png | Bin 218 -> 0 bytes .../assets/combo-entry-notebook-rtl.png | Bin 232 -> 0 bytes .../gtk-2.0/assets/combo-entry-notebook.png | Bin 225 -> 0 bytes common/gtk-2.0/assets/combo-entry-rtl.png | Bin 238 -> 0 bytes common/gtk-2.0/assets/combo-entry.png | Bin 231 -> 0 bytes .../assets/down-background-disable-rtl.png | Bin 204 -> 0 bytes .../assets/down-background-disable.png | Bin 207 -> 0 bytes common/gtk-2.0/assets/down-background-rtl.png | Bin 203 -> 0 bytes common/gtk-2.0/assets/down-background.png | Bin 208 -> 0 bytes common/gtk-2.0/assets/entry-active-bg.png | Bin 280 -> 0 bytes .../gtk-2.0/assets/entry-active-notebook.png | Bin 266 -> 0 bytes .../gtk-2.0/assets/entry-active-toolbar.png | Bin 266 -> 0 bytes .../assets/entry-background-disabled.png | Bin 155 -> 0 bytes common/gtk-2.0/assets/entry-background.png | Bin 155 -> 0 bytes common/gtk-2.0/assets/entry-bg.png | Bin 276 -> 0 bytes .../gtk-2.0/assets/entry-border-active-bg.png | Bin 318 -> 0 bytes common/gtk-2.0/assets/entry-border-bg.png | Bin 318 -> 0 bytes common/gtk-2.0/assets/entry-disabled-bg.png | Bin 226 -> 0 bytes .../assets/entry-disabled-notebook.png | Bin 276 -> 0 bytes .../gtk-2.0/assets/entry-disabled-toolbar.png | Bin 275 -> 0 bytes common/gtk-2.0/assets/entry-notebook.png | Bin 250 -> 0 bytes common/gtk-2.0/assets/entry-toolbar.png | Bin 281 -> 0 bytes common/gtk-2.0/assets/focus-line.png | Bin 164 -> 0 bytes common/gtk-2.0/assets/frame-gap-end.png | Bin 142 -> 0 bytes common/gtk-2.0/assets/frame-gap-start.png | Bin 142 -> 0 bytes common/gtk-2.0/assets/frame.png | Bin 165 -> 0 bytes common/gtk-2.0/assets/handle-h.png | Bin 160 -> 0 bytes common/gtk-2.0/assets/handle-v.png | Bin 157 -> 0 bytes common/gtk-2.0/assets/inline-toolbar.png | Bin 165 -> 0 bytes common/gtk-2.0/assets/line-h.png | Bin 152 -> 0 bytes common/gtk-2.0/assets/line-v.png | Bin 152 -> 0 bytes common/gtk-2.0/assets/menu-arrow-prelight.png | Bin 237 -> 0 bytes common/gtk-2.0/assets/menu-arrow.png | Bin 265 -> 0 bytes .../menu-checkbox-checked-insensitive.png | Bin 355 -> 0 bytes .../assets/menu-checkbox-checked-selected.png | Bin 330 -> 0 bytes .../gtk-2.0/assets/menu-checkbox-checked.png | Bin 330 -> 0 bytes .../menu-checkbox-unchecked-insensitive.png | Bin 238 -> 0 bytes .../menu-checkbox-unchecked-selected.png | Bin 243 -> 0 bytes .../assets/menu-checkbox-unchecked.png | Bin 236 -> 0 bytes .../assets/menu-radio-checked-insensitive.png | Bin 370 -> 0 bytes .../assets/menu-radio-checked-selected.png | Bin 387 -> 0 bytes common/gtk-2.0/assets/menu-radio-checked.png | Bin 387 -> 0 bytes .../menu-radio-unchecked-insensitive.png | Bin 430 -> 0 bytes .../assets/menu-radio-unchecked-selected.png | Bin 443 -> 0 bytes .../gtk-2.0/assets/menu-radio-unchecked.png | Bin 472 -> 0 bytes common/gtk-2.0/assets/menubar.png | Bin 165 -> 0 bytes common/gtk-2.0/assets/menubar_button.png | Bin 156 -> 0 bytes common/gtk-2.0/assets/menuitem.png | Bin 156 -> 0 bytes common/gtk-2.0/assets/minus.png | Bin 276 -> 0 bytes common/gtk-2.0/assets/notebook-gap-horiz.png | Bin 160 -> 0 bytes common/gtk-2.0/assets/notebook-gap-vert.png | Bin 155 -> 0 bytes common/gtk-2.0/assets/notebook.png | Bin 165 -> 0 bytes common/gtk-2.0/assets/null.png | Bin 148 -> 0 bytes common/gtk-2.0/assets/plus.png | Bin 258 -> 0 bytes common/gtk-2.0/assets/progressbar.png | Bin 267 -> 0 bytes common/gtk-2.0/assets/progressbar_v.png | Bin 265 -> 0 bytes .../assets/radio-checked-insensitive.png | Bin 393 -> 0 bytes common/gtk-2.0/assets/radio-checked.png | Bin 373 -> 0 bytes .../assets/radio-unchecked-insensitive.png | Bin 415 -> 0 bytes common/gtk-2.0/assets/radio-unchecked.png | Bin 419 -> 0 bytes common/gtk-2.0/assets/slider-horiz-active.png | Bin 253 -> 0 bytes common/gtk-2.0/assets/slider-horiz-insens.png | Bin 253 -> 0 bytes .../gtk-2.0/assets/slider-horiz-prelight.png | Bin 253 -> 0 bytes common/gtk-2.0/assets/slider-horiz.png | Bin 253 -> 0 bytes common/gtk-2.0/assets/slider-insensitive.png | Bin 413 -> 0 bytes common/gtk-2.0/assets/slider-prelight.png | Bin 398 -> 0 bytes common/gtk-2.0/assets/slider-vert-active.png | Bin 248 -> 0 bytes common/gtk-2.0/assets/slider-vert-insens.png | Bin 248 -> 0 bytes .../gtk-2.0/assets/slider-vert-prelight.png | Bin 248 -> 0 bytes common/gtk-2.0/assets/slider-vert.png | Bin 248 -> 0 bytes common/gtk-2.0/assets/slider.png | Bin 440 -> 0 bytes common/gtk-2.0/assets/tab-bottom-active.png | Bin 166 -> 0 bytes common/gtk-2.0/assets/tab-left-active.png | Bin 167 -> 0 bytes common/gtk-2.0/assets/tab-right-active.png | Bin 168 -> 0 bytes common/gtk-2.0/assets/tab-top-active.png | Bin 166 -> 0 bytes common/gtk-2.0/assets/toolbar.png | Bin 165 -> 0 bytes common/gtk-2.0/assets/tree_header.png | Bin 162 -> 0 bytes .../assets/trough-horizontal-active.png | Bin 252 -> 0 bytes common/gtk-2.0/assets/trough-horizontal.png | Bin 252 -> 0 bytes common/gtk-2.0/assets/trough-progressbar.png | Bin 275 -> 0 bytes .../gtk-2.0/assets/trough-progressbar_v.png | Bin 276 -> 0 bytes .../gtk-2.0/assets/trough-scrollbar-horiz.png | Bin 164 -> 0 bytes .../gtk-2.0/assets/trough-scrollbar-vert.png | Bin 162 -> 0 bytes .../gtk-2.0/assets/trough-vertical-active.png | Bin 257 -> 0 bytes common/gtk-2.0/assets/trough-vertical.png | Bin 257 -> 0 bytes .../assets/up-background-disable-rtl.png | Bin 204 -> 0 bytes .../gtk-2.0/assets/up-background-disable.png | Bin 212 -> 0 bytes common/gtk-2.0/assets/up-background-rtl.png | Bin 209 -> 0 bytes common/gtk-2.0/assets/up-background.png | Bin 215 -> 0 bytes common/gtk-2.0/gtkrc | 24 - common/gtk-2.0/gtkrc-dark | 24 - common/gtk-2.0/gtkrc-darker | 24 - common/gtk-2.0/main.rc | 2349 ------- .../gtk-2.0/menubar-toolbar/button-active.png | Bin 271 -> 0 bytes .../gtk-2.0/menubar-toolbar/button-hover.png | Bin 262 -> 0 bytes .../menubar-toolbar/button-insensitive.png | Bin 260 -> 0 bytes common/gtk-2.0/menubar-toolbar/button.png | Bin 265 -> 0 bytes .../entry-active-toolbar-dark.png | Bin 252 -> 0 bytes .../menubar-toolbar/entry-active-toolbar.png | Bin 266 -> 0 bytes .../entry-disabled-toolbar-dark.png | Bin 268 -> 0 bytes .../entry-disabled-toolbar.png | Bin 275 -> 0 bytes .../menubar-toolbar/entry-toolbar-dark.png | Bin 249 -> 0 bytes .../gtk-2.0/menubar-toolbar/entry-toolbar.png | Bin 281 -> 0 bytes .../gtk-2.0/menubar-toolbar/menubar-dark.png | Bin 156 -> 0 bytes .../menubar-toolbar/menubar-toolbar-dark.rc | 222 - .../menubar-toolbar/menubar-toolbar.rc | 162 - common/gtk-2.0/menubar-toolbar/menubar.png | Bin 165 -> 0 bytes .../menubar-toolbar/menubar_button-dark.png | Bin 156 -> 0 bytes .../menubar-toolbar/menubar_button.png | Bin 156 -> 0 bytes common/gtk-2.0/panel.rc | 160 - common/gtk-2.0/render-assets.sh | 60 - common/gtk-2.0/xfce-notify.rc | 74 - common/gtk-3.0/3.14/assets.svg | 5965 ---------------- common/gtk-3.0/3.14/assets.txt | 84 - .../3.14/assets/checkbox-checked-dark.png | Bin 360 -> 0 bytes .../3.14/assets/checkbox-checked-dark@2.png | Bin 487 -> 0 bytes .../checkbox-checked-insensitive-dark.png | Bin 369 -> 0 bytes .../checkbox-checked-insensitive-dark@2.png | Bin 502 -> 0 bytes .../checkbox-checked-insensitive-selected.png | Bin 386 -> 0 bytes ...heckbox-checked-insensitive-selected@2.png | Bin 490 -> 0 bytes .../assets/checkbox-checked-insensitive.png | Bin 365 -> 0 bytes .../assets/checkbox-checked-insensitive@2.png | Bin 502 -> 0 bytes .../3.14/assets/checkbox-checked-selected.png | Bin 363 -> 0 bytes .../assets/checkbox-checked-selected@2.png | Bin 490 -> 0 bytes .../checkbox-checked-selectionmode-dark.png | Bin 464 -> 0 bytes .../checkbox-checked-selectionmode-dark@2.png | Bin 680 -> 0 bytes .../assets/checkbox-checked-selectionmode.png | Bin 478 -> 0 bytes .../checkbox-checked-selectionmode@2.png | Bin 685 -> 0 bytes .../gtk-3.0/3.14/assets/checkbox-checked.png | Bin 357 -> 0 bytes .../3.14/assets/checkbox-checked@2.png | Bin 486 -> 0 bytes .../3.14/assets/checkbox-mixed-dark.png | Bin 235 -> 0 bytes .../3.14/assets/checkbox-mixed-dark@2.png | Bin 328 -> 0 bytes .../checkbox-mixed-insensitive-dark.png | Bin 232 -> 0 bytes .../checkbox-mixed-insensitive-dark@2.png | Bin 333 -> 0 bytes .../checkbox-mixed-insensitive-selected.png | Bin 237 -> 0 bytes .../checkbox-mixed-insensitive-selected@2.png | Bin 322 -> 0 bytes .../assets/checkbox-mixed-insensitive.png | Bin 232 -> 0 bytes .../assets/checkbox-mixed-insensitive@2.png | Bin 333 -> 0 bytes .../3.14/assets/checkbox-mixed-selected.png | Bin 235 -> 0 bytes .../3.14/assets/checkbox-mixed-selected@2.png | Bin 328 -> 0 bytes common/gtk-3.0/3.14/assets/checkbox-mixed.png | Bin 235 -> 0 bytes .../gtk-3.0/3.14/assets/checkbox-mixed@2.png | Bin 328 -> 0 bytes .../assets/checkbox-selectionmode-dark.png | Bin 493 -> 0 bytes .../assets/checkbox-selectionmode-dark@2.png | Bin 737 -> 0 bytes .../3.14/assets/checkbox-selectionmode.png | Bin 522 -> 0 bytes .../3.14/assets/checkbox-selectionmode@2.png | Bin 736 -> 0 bytes .../3.14/assets/checkbox-unchecked-dark.png | Bin 268 -> 0 bytes .../3.14/assets/checkbox-unchecked-dark@2.png | Bin 397 -> 0 bytes .../checkbox-unchecked-insensitive-dark.png | Bin 272 -> 0 bytes .../checkbox-unchecked-insensitive-dark@2.png | Bin 394 -> 0 bytes ...heckbox-unchecked-insensitive-selected.png | Bin 272 -> 0 bytes ...ckbox-unchecked-insensitive-selected@2.png | Bin 356 -> 0 bytes .../assets/checkbox-unchecked-insensitive.png | Bin 272 -> 0 bytes .../checkbox-unchecked-insensitive@2.png | Bin 406 -> 0 bytes .../assets/checkbox-unchecked-selected.png | Bin 272 -> 0 bytes .../assets/checkbox-unchecked-selected@2.png | Bin 395 -> 0 bytes .../3.14/assets/checkbox-unchecked.png | Bin 285 -> 0 bytes .../3.14/assets/checkbox-unchecked@2.png | Bin 408 -> 0 bytes .../3.14/assets/radio-checked-dark.png | Bin 373 -> 0 bytes .../3.14/assets/radio-checked-dark@2.png | Bin 611 -> 0 bytes .../assets/radio-checked-insensitive-dark.png | Bin 378 -> 0 bytes .../radio-checked-insensitive-dark@2.png | Bin 596 -> 0 bytes .../radio-checked-insensitive-selected.png | Bin 383 -> 0 bytes .../radio-checked-insensitive-selected@2.png | Bin 602 -> 0 bytes .../3.14/assets/radio-checked-insensitive.png | Bin 378 -> 0 bytes .../assets/radio-checked-insensitive@2.png | Bin 604 -> 0 bytes .../3.14/assets/radio-checked-selected.png | Bin 375 -> 0 bytes .../3.14/assets/radio-checked-selected@2.png | Bin 616 -> 0 bytes common/gtk-3.0/3.14/assets/radio-checked.png | Bin 373 -> 0 bytes .../gtk-3.0/3.14/assets/radio-checked@2.png | Bin 616 -> 0 bytes .../gtk-3.0/3.14/assets/radio-mixed-dark.png | Bin 342 -> 0 bytes .../3.14/assets/radio-mixed-dark@2.png | Bin 564 -> 0 bytes .../assets/radio-mixed-insensitive-dark.png | Bin 344 -> 0 bytes .../assets/radio-mixed-insensitive-dark@2.png | Bin 558 -> 0 bytes .../radio-mixed-insensitive-selected.png | Bin 344 -> 0 bytes .../radio-mixed-insensitive-selected@2.png | Bin 558 -> 0 bytes .../3.14/assets/radio-mixed-insensitive.png | Bin 344 -> 0 bytes .../3.14/assets/radio-mixed-insensitive@2.png | Bin 558 -> 0 bytes .../3.14/assets/radio-mixed-selected.png | Bin 342 -> 0 bytes .../3.14/assets/radio-mixed-selected@2.png | Bin 564 -> 0 bytes common/gtk-3.0/3.14/assets/radio-mixed.png | Bin 342 -> 0 bytes common/gtk-3.0/3.14/assets/radio-mixed@2.png | Bin 564 -> 0 bytes .../3.14/assets/radio-unchecked-dark.png | Bin 445 -> 0 bytes .../3.14/assets/radio-unchecked-dark@2.png | Bin 933 -> 0 bytes .../radio-unchecked-insensitive-dark.png | Bin 423 -> 0 bytes .../radio-unchecked-insensitive-dark@2.png | Bin 915 -> 0 bytes .../radio-unchecked-insensitive-selected.png | Bin 395 -> 0 bytes ...radio-unchecked-insensitive-selected@2.png | Bin 810 -> 0 bytes .../assets/radio-unchecked-insensitive.png | Bin 432 -> 0 bytes .../assets/radio-unchecked-insensitive@2.png | Bin 904 -> 0 bytes .../3.14/assets/radio-unchecked-selected.png | Bin 428 -> 0 bytes .../assets/radio-unchecked-selected@2.png | Bin 909 -> 0 bytes .../gtk-3.0/3.14/assets/radio-unchecked.png | Bin 463 -> 0 bytes .../gtk-3.0/3.14/assets/radio-unchecked@2.png | Bin 937 -> 0 bytes .../3.14/assets/switch-active-dark.png | Bin 803 -> 0 bytes .../3.14/assets/switch-active-dark@2.png | Bin 1541 -> 0 bytes .../3.14/assets/switch-active-header-dark.png | Bin 807 -> 0 bytes .../assets/switch-active-header-dark@2.png | Bin 1529 -> 0 bytes .../3.14/assets/switch-active-header.png | Bin 807 -> 0 bytes .../3.14/assets/switch-active-header@2.png | Bin 1552 -> 0 bytes .../assets/switch-active-insensitive-dark.png | Bin 802 -> 0 bytes .../switch-active-insensitive-dark@2.png | Bin 1488 -> 0 bytes .../switch-active-insensitive-header-dark.png | Bin 788 -> 0 bytes ...witch-active-insensitive-header-dark@2.png | Bin 1471 -> 0 bytes .../switch-active-insensitive-header.png | Bin 811 -> 0 bytes .../switch-active-insensitive-header@2.png | Bin 1558 -> 0 bytes .../switch-active-insensitive-selected.png | Bin 826 -> 0 bytes .../switch-active-insensitive-selected@2.png | Bin 1586 -> 0 bytes .../3.14/assets/switch-active-insensitive.png | Bin 811 -> 0 bytes .../assets/switch-active-insensitive@2.png | Bin 1558 -> 0 bytes .../3.14/assets/switch-active-selected.png | Bin 814 -> 0 bytes .../3.14/assets/switch-active-selected@2.png | Bin 1552 -> 0 bytes common/gtk-3.0/3.14/assets/switch-active.png | Bin 807 -> 0 bytes .../gtk-3.0/3.14/assets/switch-active@2.png | Bin 1552 -> 0 bytes common/gtk-3.0/3.14/assets/switch-dark.png | Bin 782 -> 0 bytes common/gtk-3.0/3.14/assets/switch-dark@2.png | Bin 1526 -> 0 bytes .../3.14/assets/switch-header-dark.png | Bin 767 -> 0 bytes .../3.14/assets/switch-header-dark@2.png | Bin 1515 -> 0 bytes common/gtk-3.0/3.14/assets/switch-header.png | Bin 840 -> 0 bytes .../gtk-3.0/3.14/assets/switch-header@2.png | Bin 1822 -> 0 bytes .../3.14/assets/switch-insensitive-dark.png | Bin 774 -> 0 bytes .../3.14/assets/switch-insensitive-dark@2.png | Bin 1471 -> 0 bytes .../assets/switch-insensitive-header-dark.png | Bin 769 -> 0 bytes .../switch-insensitive-header-dark@2.png | Bin 1443 -> 0 bytes .../3.14/assets/switch-insensitive-header.png | Bin 809 -> 0 bytes .../assets/switch-insensitive-header@2.png | Bin 1658 -> 0 bytes .../assets/switch-insensitive-selected.png | Bin 678 -> 0 bytes .../assets/switch-insensitive-selected@2.png | Bin 1398 -> 0 bytes .../3.14/assets/switch-insensitive.png | Bin 775 -> 0 bytes .../3.14/assets/switch-insensitive@2.png | Bin 1578 -> 0 bytes .../gtk-3.0/3.14/assets/switch-selected.png | Bin 726 -> 0 bytes .../gtk-3.0/3.14/assets/switch-selected@2.png | Bin 1523 -> 0 bytes common/gtk-3.0/3.14/assets/switch.png | Bin 788 -> 0 bytes common/gtk-3.0/3.14/assets/switch@2.png | Bin 1604 -> 0 bytes .../assets/titlebutton-close-active-dark.png | Bin 446 -> 0 bytes .../titlebutton-close-active-dark@2.png | Bin 655 -> 0 bytes .../3.14/assets/titlebutton-close-active.png | Bin 441 -> 0 bytes .../assets/titlebutton-close-active@2.png | Bin 679 -> 0 bytes .../titlebutton-close-backdrop-dark.png | Bin 421 -> 0 bytes .../titlebutton-close-backdrop-dark@2.png | Bin 615 -> 0 bytes .../assets/titlebutton-close-backdrop.png | Bin 414 -> 0 bytes .../assets/titlebutton-close-backdrop@2.png | Bin 629 -> 0 bytes .../3.14/assets/titlebutton-close-dark.png | Bin 446 -> 0 bytes .../3.14/assets/titlebutton-close-dark@2.png | Bin 655 -> 0 bytes .../assets/titlebutton-close-hover-dark.png | Bin 446 -> 0 bytes .../assets/titlebutton-close-hover-dark@2.png | Bin 655 -> 0 bytes .../3.14/assets/titlebutton-close-hover.png | Bin 469 -> 0 bytes .../3.14/assets/titlebutton-close-hover@2.png | Bin 708 -> 0 bytes .../gtk-3.0/3.14/assets/titlebutton-close.png | Bin 465 -> 0 bytes .../3.14/assets/titlebutton-close@2.png | Bin 721 -> 0 bytes .../titlebutton-maximize-active-dark.png | Bin 391 -> 0 bytes .../titlebutton-maximize-active-dark@2.png | Bin 611 -> 0 bytes .../assets/titlebutton-maximize-active.png | Bin 391 -> 0 bytes .../assets/titlebutton-maximize-active@2.png | Bin 611 -> 0 bytes .../titlebutton-maximize-backdrop-dark.png | Bin 241 -> 0 bytes .../titlebutton-maximize-backdrop-dark@2.png | Bin 333 -> 0 bytes .../assets/titlebutton-maximize-backdrop.png | Bin 241 -> 0 bytes .../titlebutton-maximize-backdrop@2.png | Bin 333 -> 0 bytes .../3.14/assets/titlebutton-maximize-dark.png | Bin 241 -> 0 bytes .../assets/titlebutton-maximize-dark@2.png | Bin 336 -> 0 bytes .../titlebutton-maximize-hover-dark.png | Bin 413 -> 0 bytes .../titlebutton-maximize-hover-dark@2.png | Bin 772 -> 0 bytes .../assets/titlebutton-maximize-hover.png | Bin 422 -> 0 bytes .../assets/titlebutton-maximize-hover@2.png | Bin 815 -> 0 bytes .../3.14/assets/titlebutton-maximize.png | Bin 241 -> 0 bytes .../3.14/assets/titlebutton-maximize@2.png | Bin 336 -> 0 bytes .../titlebutton-minimize-active-dark.png | Bin 343 -> 0 bytes .../titlebutton-minimize-active-dark@2.png | Bin 489 -> 0 bytes .../assets/titlebutton-minimize-active.png | Bin 343 -> 0 bytes .../assets/titlebutton-minimize-active@2.png | Bin 489 -> 0 bytes .../titlebutton-minimize-backdrop-dark.png | Bin 168 -> 0 bytes .../titlebutton-minimize-backdrop-dark@2.png | Bin 203 -> 0 bytes .../assets/titlebutton-minimize-backdrop.png | Bin 167 -> 0 bytes .../titlebutton-minimize-backdrop@2.png | Bin 203 -> 0 bytes .../3.14/assets/titlebutton-minimize-dark.png | Bin 168 -> 0 bytes .../assets/titlebutton-minimize-dark@2.png | Bin 203 -> 0 bytes .../titlebutton-minimize-hover-dark.png | Bin 363 -> 0 bytes .../titlebutton-minimize-hover-dark@2.png | Bin 637 -> 0 bytes .../assets/titlebutton-minimize-hover.png | Bin 368 -> 0 bytes .../assets/titlebutton-minimize-hover@2.png | Bin 678 -> 0 bytes .../3.14/assets/titlebutton-minimize.png | Bin 168 -> 0 bytes .../3.14/assets/titlebutton-minimize@2.png | Bin 203 -> 0 bytes common/gtk-3.0/3.14/gtk-dark.css | 4064 ----------- common/gtk-3.0/3.14/gtk-darker.css | 4057 ----------- common/gtk-3.0/3.14/gtk-solid-dark.css | 4064 ----------- common/gtk-3.0/3.14/gtk-solid-darker.css | 4057 ----------- common/gtk-3.0/3.14/gtk-solid.css | 4057 ----------- common/gtk-3.0/3.14/gtk.css | 4057 ----------- common/gtk-3.0/3.14/render-assets.sh | 34 - common/gtk-3.0/3.14/sass/_applications.scss | 699 -- common/gtk-3.0/3.14/sass/_colors-public.scss | 71 - common/gtk-3.0/3.14/sass/_colors.scss | 101 - common/gtk-3.0/3.14/sass/_common.scss | 2786 -------- common/gtk-3.0/3.14/sass/_drawing.scss | 366 - common/gtk-3.0/3.14/sass/_granite.scss | 218 - common/gtk-3.0/3.14/sass/_lightdm.scss | 113 - .../3.14/sass/_transparent_widgets.scss | 249 - common/gtk-3.0/3.14/sass/_unity.scss | 159 - common/gtk-3.0/3.14/sass/gtk-dark.scss | 13 - common/gtk-3.0/3.14/sass/gtk-darker.scss | 13 - common/gtk-3.0/3.14/sass/gtk-solid-dark.scss | 13 - .../gtk-3.0/3.14/sass/gtk-solid-darker.scss | 13 - common/gtk-3.0/3.14/sass/gtk-solid.scss | 13 - common/gtk-3.0/3.14/sass/gtk.scss | 13 - common/gtk-3.0/3.16/assets.svg | 5965 ---------------- common/gtk-3.0/3.16/assets.txt | 84 - .../3.16/assets/checkbox-checked-dark.png | Bin 360 -> 0 bytes .../3.16/assets/checkbox-checked-dark@2.png | Bin 487 -> 0 bytes .../checkbox-checked-insensitive-dark.png | Bin 369 -> 0 bytes .../checkbox-checked-insensitive-dark@2.png | Bin 502 -> 0 bytes .../checkbox-checked-insensitive-selected.png | Bin 386 -> 0 bytes ...heckbox-checked-insensitive-selected@2.png | Bin 490 -> 0 bytes .../assets/checkbox-checked-insensitive.png | Bin 365 -> 0 bytes .../assets/checkbox-checked-insensitive@2.png | Bin 502 -> 0 bytes .../3.16/assets/checkbox-checked-selected.png | Bin 363 -> 0 bytes .../assets/checkbox-checked-selected@2.png | Bin 490 -> 0 bytes .../checkbox-checked-selectionmode-dark.png | Bin 464 -> 0 bytes .../checkbox-checked-selectionmode-dark@2.png | Bin 680 -> 0 bytes .../assets/checkbox-checked-selectionmode.png | Bin 478 -> 0 bytes .../checkbox-checked-selectionmode@2.png | Bin 685 -> 0 bytes .../gtk-3.0/3.16/assets/checkbox-checked.png | Bin 357 -> 0 bytes .../3.16/assets/checkbox-checked@2.png | Bin 486 -> 0 bytes .../3.16/assets/checkbox-mixed-dark.png | Bin 235 -> 0 bytes .../3.16/assets/checkbox-mixed-dark@2.png | Bin 328 -> 0 bytes .../checkbox-mixed-insensitive-dark.png | Bin 232 -> 0 bytes .../checkbox-mixed-insensitive-dark@2.png | Bin 333 -> 0 bytes .../checkbox-mixed-insensitive-selected.png | Bin 237 -> 0 bytes .../checkbox-mixed-insensitive-selected@2.png | Bin 322 -> 0 bytes .../assets/checkbox-mixed-insensitive.png | Bin 232 -> 0 bytes .../assets/checkbox-mixed-insensitive@2.png | Bin 333 -> 0 bytes .../3.16/assets/checkbox-mixed-selected.png | Bin 235 -> 0 bytes .../3.16/assets/checkbox-mixed-selected@2.png | Bin 328 -> 0 bytes common/gtk-3.0/3.16/assets/checkbox-mixed.png | Bin 235 -> 0 bytes .../gtk-3.0/3.16/assets/checkbox-mixed@2.png | Bin 328 -> 0 bytes .../assets/checkbox-selectionmode-dark.png | Bin 493 -> 0 bytes .../assets/checkbox-selectionmode-dark@2.png | Bin 737 -> 0 bytes .../3.16/assets/checkbox-selectionmode.png | Bin 522 -> 0 bytes .../3.16/assets/checkbox-selectionmode@2.png | Bin 736 -> 0 bytes .../3.16/assets/checkbox-unchecked-dark.png | Bin 268 -> 0 bytes .../3.16/assets/checkbox-unchecked-dark@2.png | Bin 397 -> 0 bytes .../checkbox-unchecked-insensitive-dark.png | Bin 272 -> 0 bytes .../checkbox-unchecked-insensitive-dark@2.png | Bin 394 -> 0 bytes ...heckbox-unchecked-insensitive-selected.png | Bin 272 -> 0 bytes ...ckbox-unchecked-insensitive-selected@2.png | Bin 356 -> 0 bytes .../assets/checkbox-unchecked-insensitive.png | Bin 272 -> 0 bytes .../checkbox-unchecked-insensitive@2.png | Bin 406 -> 0 bytes .../assets/checkbox-unchecked-selected.png | Bin 272 -> 0 bytes .../assets/checkbox-unchecked-selected@2.png | Bin 395 -> 0 bytes .../3.16/assets/checkbox-unchecked.png | Bin 285 -> 0 bytes .../3.16/assets/checkbox-unchecked@2.png | Bin 408 -> 0 bytes .../3.16/assets/radio-checked-dark.png | Bin 373 -> 0 bytes .../3.16/assets/radio-checked-dark@2.png | Bin 611 -> 0 bytes .../assets/radio-checked-insensitive-dark.png | Bin 378 -> 0 bytes .../radio-checked-insensitive-dark@2.png | Bin 596 -> 0 bytes .../radio-checked-insensitive-selected.png | Bin 383 -> 0 bytes .../radio-checked-insensitive-selected@2.png | Bin 602 -> 0 bytes .../3.16/assets/radio-checked-insensitive.png | Bin 378 -> 0 bytes .../assets/radio-checked-insensitive@2.png | Bin 604 -> 0 bytes .../3.16/assets/radio-checked-selected.png | Bin 375 -> 0 bytes .../3.16/assets/radio-checked-selected@2.png | Bin 616 -> 0 bytes common/gtk-3.0/3.16/assets/radio-checked.png | Bin 373 -> 0 bytes .../gtk-3.0/3.16/assets/radio-checked@2.png | Bin 616 -> 0 bytes .../gtk-3.0/3.16/assets/radio-mixed-dark.png | Bin 342 -> 0 bytes .../3.16/assets/radio-mixed-dark@2.png | Bin 564 -> 0 bytes .../assets/radio-mixed-insensitive-dark.png | Bin 344 -> 0 bytes .../assets/radio-mixed-insensitive-dark@2.png | Bin 558 -> 0 bytes .../radio-mixed-insensitive-selected.png | Bin 344 -> 0 bytes .../radio-mixed-insensitive-selected@2.png | Bin 558 -> 0 bytes .../3.16/assets/radio-mixed-insensitive.png | Bin 344 -> 0 bytes .../3.16/assets/radio-mixed-insensitive@2.png | Bin 558 -> 0 bytes .../3.16/assets/radio-mixed-selected.png | Bin 342 -> 0 bytes .../3.16/assets/radio-mixed-selected@2.png | Bin 564 -> 0 bytes common/gtk-3.0/3.16/assets/radio-mixed.png | Bin 342 -> 0 bytes common/gtk-3.0/3.16/assets/radio-mixed@2.png | Bin 564 -> 0 bytes .../3.16/assets/radio-unchecked-dark.png | Bin 445 -> 0 bytes .../3.16/assets/radio-unchecked-dark@2.png | Bin 933 -> 0 bytes .../radio-unchecked-insensitive-dark.png | Bin 423 -> 0 bytes .../radio-unchecked-insensitive-dark@2.png | Bin 915 -> 0 bytes .../radio-unchecked-insensitive-selected.png | Bin 395 -> 0 bytes ...radio-unchecked-insensitive-selected@2.png | Bin 810 -> 0 bytes .../assets/radio-unchecked-insensitive.png | Bin 432 -> 0 bytes .../assets/radio-unchecked-insensitive@2.png | Bin 904 -> 0 bytes .../3.16/assets/radio-unchecked-selected.png | Bin 428 -> 0 bytes .../assets/radio-unchecked-selected@2.png | Bin 909 -> 0 bytes .../gtk-3.0/3.16/assets/radio-unchecked.png | Bin 463 -> 0 bytes .../gtk-3.0/3.16/assets/radio-unchecked@2.png | Bin 937 -> 0 bytes .../3.16/assets/switch-active-dark.png | Bin 803 -> 0 bytes .../3.16/assets/switch-active-dark@2.png | Bin 1541 -> 0 bytes .../3.16/assets/switch-active-header-dark.png | Bin 807 -> 0 bytes .../assets/switch-active-header-dark@2.png | Bin 1529 -> 0 bytes .../3.16/assets/switch-active-header.png | Bin 807 -> 0 bytes .../3.16/assets/switch-active-header@2.png | Bin 1552 -> 0 bytes .../assets/switch-active-insensitive-dark.png | Bin 802 -> 0 bytes .../switch-active-insensitive-dark@2.png | Bin 1488 -> 0 bytes .../switch-active-insensitive-header-dark.png | Bin 788 -> 0 bytes ...witch-active-insensitive-header-dark@2.png | Bin 1471 -> 0 bytes .../switch-active-insensitive-header.png | Bin 811 -> 0 bytes .../switch-active-insensitive-header@2.png | Bin 1558 -> 0 bytes .../switch-active-insensitive-selected.png | Bin 826 -> 0 bytes .../switch-active-insensitive-selected@2.png | Bin 1586 -> 0 bytes .../3.16/assets/switch-active-insensitive.png | Bin 811 -> 0 bytes .../assets/switch-active-insensitive@2.png | Bin 1558 -> 0 bytes .../3.16/assets/switch-active-selected.png | Bin 814 -> 0 bytes .../3.16/assets/switch-active-selected@2.png | Bin 1552 -> 0 bytes common/gtk-3.0/3.16/assets/switch-active.png | Bin 807 -> 0 bytes .../gtk-3.0/3.16/assets/switch-active@2.png | Bin 1552 -> 0 bytes common/gtk-3.0/3.16/assets/switch-dark.png | Bin 782 -> 0 bytes common/gtk-3.0/3.16/assets/switch-dark@2.png | Bin 1526 -> 0 bytes .../3.16/assets/switch-header-dark.png | Bin 767 -> 0 bytes .../3.16/assets/switch-header-dark@2.png | Bin 1515 -> 0 bytes common/gtk-3.0/3.16/assets/switch-header.png | Bin 840 -> 0 bytes .../gtk-3.0/3.16/assets/switch-header@2.png | Bin 1822 -> 0 bytes .../3.16/assets/switch-insensitive-dark.png | Bin 774 -> 0 bytes .../3.16/assets/switch-insensitive-dark@2.png | Bin 1471 -> 0 bytes .../assets/switch-insensitive-header-dark.png | Bin 769 -> 0 bytes .../switch-insensitive-header-dark@2.png | Bin 1443 -> 0 bytes .../3.16/assets/switch-insensitive-header.png | Bin 809 -> 0 bytes .../assets/switch-insensitive-header@2.png | Bin 1658 -> 0 bytes .../assets/switch-insensitive-selected.png | Bin 678 -> 0 bytes .../assets/switch-insensitive-selected@2.png | Bin 1398 -> 0 bytes .../3.16/assets/switch-insensitive.png | Bin 775 -> 0 bytes .../3.16/assets/switch-insensitive@2.png | Bin 1578 -> 0 bytes .../gtk-3.0/3.16/assets/switch-selected.png | Bin 726 -> 0 bytes .../gtk-3.0/3.16/assets/switch-selected@2.png | Bin 1523 -> 0 bytes common/gtk-3.0/3.16/assets/switch.png | Bin 788 -> 0 bytes common/gtk-3.0/3.16/assets/switch@2.png | Bin 1604 -> 0 bytes .../assets/titlebutton-close-active-dark.png | Bin 446 -> 0 bytes .../titlebutton-close-active-dark@2.png | Bin 655 -> 0 bytes .../3.16/assets/titlebutton-close-active.png | Bin 441 -> 0 bytes .../assets/titlebutton-close-active@2.png | Bin 679 -> 0 bytes .../titlebutton-close-backdrop-dark.png | Bin 421 -> 0 bytes .../titlebutton-close-backdrop-dark@2.png | Bin 615 -> 0 bytes .../assets/titlebutton-close-backdrop.png | Bin 414 -> 0 bytes .../assets/titlebutton-close-backdrop@2.png | Bin 629 -> 0 bytes .../3.16/assets/titlebutton-close-dark.png | Bin 446 -> 0 bytes .../3.16/assets/titlebutton-close-dark@2.png | Bin 655 -> 0 bytes .../assets/titlebutton-close-hover-dark.png | Bin 446 -> 0 bytes .../assets/titlebutton-close-hover-dark@2.png | Bin 655 -> 0 bytes .../3.16/assets/titlebutton-close-hover.png | Bin 469 -> 0 bytes .../3.16/assets/titlebutton-close-hover@2.png | Bin 708 -> 0 bytes .../gtk-3.0/3.16/assets/titlebutton-close.png | Bin 465 -> 0 bytes .../3.16/assets/titlebutton-close@2.png | Bin 721 -> 0 bytes .../titlebutton-maximize-active-dark.png | Bin 391 -> 0 bytes .../titlebutton-maximize-active-dark@2.png | Bin 611 -> 0 bytes .../assets/titlebutton-maximize-active.png | Bin 391 -> 0 bytes .../assets/titlebutton-maximize-active@2.png | Bin 611 -> 0 bytes .../titlebutton-maximize-backdrop-dark.png | Bin 241 -> 0 bytes .../titlebutton-maximize-backdrop-dark@2.png | Bin 333 -> 0 bytes .../assets/titlebutton-maximize-backdrop.png | Bin 241 -> 0 bytes .../titlebutton-maximize-backdrop@2.png | Bin 333 -> 0 bytes .../3.16/assets/titlebutton-maximize-dark.png | Bin 241 -> 0 bytes .../assets/titlebutton-maximize-dark@2.png | Bin 336 -> 0 bytes .../titlebutton-maximize-hover-dark.png | Bin 413 -> 0 bytes .../titlebutton-maximize-hover-dark@2.png | Bin 772 -> 0 bytes .../assets/titlebutton-maximize-hover.png | Bin 422 -> 0 bytes .../assets/titlebutton-maximize-hover@2.png | Bin 815 -> 0 bytes .../3.16/assets/titlebutton-maximize.png | Bin 241 -> 0 bytes .../3.16/assets/titlebutton-maximize@2.png | Bin 336 -> 0 bytes .../titlebutton-minimize-active-dark.png | Bin 343 -> 0 bytes .../titlebutton-minimize-active-dark@2.png | Bin 489 -> 0 bytes .../assets/titlebutton-minimize-active.png | Bin 343 -> 0 bytes .../assets/titlebutton-minimize-active@2.png | Bin 489 -> 0 bytes .../titlebutton-minimize-backdrop-dark.png | Bin 168 -> 0 bytes .../titlebutton-minimize-backdrop-dark@2.png | Bin 203 -> 0 bytes .../assets/titlebutton-minimize-backdrop.png | Bin 167 -> 0 bytes .../titlebutton-minimize-backdrop@2.png | Bin 203 -> 0 bytes .../3.16/assets/titlebutton-minimize-dark.png | Bin 168 -> 0 bytes .../assets/titlebutton-minimize-dark@2.png | Bin 203 -> 0 bytes .../titlebutton-minimize-hover-dark.png | Bin 363 -> 0 bytes .../titlebutton-minimize-hover-dark@2.png | Bin 637 -> 0 bytes .../assets/titlebutton-minimize-hover.png | Bin 368 -> 0 bytes .../assets/titlebutton-minimize-hover@2.png | Bin 678 -> 0 bytes .../3.16/assets/titlebutton-minimize.png | Bin 168 -> 0 bytes .../3.16/assets/titlebutton-minimize@2.png | Bin 203 -> 0 bytes common/gtk-3.0/3.16/gtk-dark.css | 3903 ----------- common/gtk-3.0/3.16/gtk-darker.css | 3896 ---------- common/gtk-3.0/3.16/gtk-solid-dark.css | 3903 ----------- common/gtk-3.0/3.16/gtk-solid-darker.css | 3896 ---------- common/gtk-3.0/3.16/gtk-solid.css | 3896 ---------- common/gtk-3.0/3.16/gtk.css | 3896 ---------- common/gtk-3.0/3.16/render-assets.sh | 34 - common/gtk-3.0/3.16/sass/_applications.scss | 750 -- common/gtk-3.0/3.16/sass/_colors-public.scss | 67 - common/gtk-3.0/3.16/sass/_colors.scss | 101 - common/gtk-3.0/3.16/sass/_common.scss | 2860 -------- common/gtk-3.0/3.16/sass/_drawing.scss | 366 - common/gtk-3.0/3.16/sass/_granite.scss | 218 - common/gtk-3.0/3.16/sass/_lightdm.scss | 113 - .../3.16/sass/_transparent_widgets.scss | 239 - common/gtk-3.0/3.16/sass/_unity.scss | 159 - common/gtk-3.0/3.16/sass/gtk-dark.scss | 13 - common/gtk-3.0/3.16/sass/gtk-darker.scss | 13 - common/gtk-3.0/3.16/sass/gtk-solid-dark.scss | 13 - .../gtk-3.0/3.16/sass/gtk-solid-darker.scss | 13 - common/gtk-3.0/3.16/sass/gtk-solid.scss | 13 - common/gtk-3.0/3.16/sass/gtk.scss | 13 - common/gtk-3.0/3.18/assets.svg | 5965 ---------------- common/gtk-3.0/3.18/assets.txt | 84 - .../3.18/assets/checkbox-checked-dark.png | Bin 360 -> 0 bytes .../3.18/assets/checkbox-checked-dark@2.png | Bin 487 -> 0 bytes .../checkbox-checked-insensitive-dark.png | Bin 369 -> 0 bytes .../checkbox-checked-insensitive-dark@2.png | Bin 502 -> 0 bytes .../checkbox-checked-insensitive-selected.png | Bin 386 -> 0 bytes ...heckbox-checked-insensitive-selected@2.png | Bin 490 -> 0 bytes .../assets/checkbox-checked-insensitive.png | Bin 365 -> 0 bytes .../assets/checkbox-checked-insensitive@2.png | Bin 502 -> 0 bytes .../3.18/assets/checkbox-checked-selected.png | Bin 363 -> 0 bytes .../assets/checkbox-checked-selected@2.png | Bin 490 -> 0 bytes .../checkbox-checked-selectionmode-dark.png | Bin 464 -> 0 bytes .../checkbox-checked-selectionmode-dark@2.png | Bin 680 -> 0 bytes .../assets/checkbox-checked-selectionmode.png | Bin 478 -> 0 bytes .../checkbox-checked-selectionmode@2.png | Bin 685 -> 0 bytes .../gtk-3.0/3.18/assets/checkbox-checked.png | Bin 357 -> 0 bytes .../3.18/assets/checkbox-checked@2.png | Bin 486 -> 0 bytes .../3.18/assets/checkbox-mixed-dark.png | Bin 235 -> 0 bytes .../3.18/assets/checkbox-mixed-dark@2.png | Bin 328 -> 0 bytes .../checkbox-mixed-insensitive-dark.png | Bin 232 -> 0 bytes .../checkbox-mixed-insensitive-dark@2.png | Bin 333 -> 0 bytes .../checkbox-mixed-insensitive-selected.png | Bin 237 -> 0 bytes .../checkbox-mixed-insensitive-selected@2.png | Bin 322 -> 0 bytes .../assets/checkbox-mixed-insensitive.png | Bin 232 -> 0 bytes .../assets/checkbox-mixed-insensitive@2.png | Bin 333 -> 0 bytes .../3.18/assets/checkbox-mixed-selected.png | Bin 235 -> 0 bytes .../3.18/assets/checkbox-mixed-selected@2.png | Bin 328 -> 0 bytes common/gtk-3.0/3.18/assets/checkbox-mixed.png | Bin 235 -> 0 bytes .../gtk-3.0/3.18/assets/checkbox-mixed@2.png | Bin 328 -> 0 bytes .../assets/checkbox-selectionmode-dark.png | Bin 493 -> 0 bytes .../assets/checkbox-selectionmode-dark@2.png | Bin 737 -> 0 bytes .../3.18/assets/checkbox-selectionmode.png | Bin 522 -> 0 bytes .../3.18/assets/checkbox-selectionmode@2.png | Bin 736 -> 0 bytes .../3.18/assets/checkbox-unchecked-dark.png | Bin 268 -> 0 bytes .../3.18/assets/checkbox-unchecked-dark@2.png | Bin 397 -> 0 bytes .../checkbox-unchecked-insensitive-dark.png | Bin 272 -> 0 bytes .../checkbox-unchecked-insensitive-dark@2.png | Bin 394 -> 0 bytes ...heckbox-unchecked-insensitive-selected.png | Bin 272 -> 0 bytes ...ckbox-unchecked-insensitive-selected@2.png | Bin 356 -> 0 bytes .../assets/checkbox-unchecked-insensitive.png | Bin 272 -> 0 bytes .../checkbox-unchecked-insensitive@2.png | Bin 406 -> 0 bytes .../assets/checkbox-unchecked-selected.png | Bin 272 -> 0 bytes .../assets/checkbox-unchecked-selected@2.png | Bin 395 -> 0 bytes .../3.18/assets/checkbox-unchecked.png | Bin 285 -> 0 bytes .../3.18/assets/checkbox-unchecked@2.png | Bin 408 -> 0 bytes .../3.18/assets/radio-checked-dark.png | Bin 373 -> 0 bytes .../3.18/assets/radio-checked-dark@2.png | Bin 611 -> 0 bytes .../assets/radio-checked-insensitive-dark.png | Bin 378 -> 0 bytes .../radio-checked-insensitive-dark@2.png | Bin 596 -> 0 bytes .../radio-checked-insensitive-selected.png | Bin 383 -> 0 bytes .../radio-checked-insensitive-selected@2.png | Bin 602 -> 0 bytes .../3.18/assets/radio-checked-insensitive.png | Bin 378 -> 0 bytes .../assets/radio-checked-insensitive@2.png | Bin 604 -> 0 bytes .../3.18/assets/radio-checked-selected.png | Bin 375 -> 0 bytes .../3.18/assets/radio-checked-selected@2.png | Bin 616 -> 0 bytes common/gtk-3.0/3.18/assets/radio-checked.png | Bin 373 -> 0 bytes .../gtk-3.0/3.18/assets/radio-checked@2.png | Bin 616 -> 0 bytes .../gtk-3.0/3.18/assets/radio-mixed-dark.png | Bin 342 -> 0 bytes .../3.18/assets/radio-mixed-dark@2.png | Bin 564 -> 0 bytes .../assets/radio-mixed-insensitive-dark.png | Bin 344 -> 0 bytes .../assets/radio-mixed-insensitive-dark@2.png | Bin 558 -> 0 bytes .../radio-mixed-insensitive-selected.png | Bin 344 -> 0 bytes .../radio-mixed-insensitive-selected@2.png | Bin 558 -> 0 bytes .../3.18/assets/radio-mixed-insensitive.png | Bin 344 -> 0 bytes .../3.18/assets/radio-mixed-insensitive@2.png | Bin 558 -> 0 bytes .../3.18/assets/radio-mixed-selected.png | Bin 342 -> 0 bytes .../3.18/assets/radio-mixed-selected@2.png | Bin 564 -> 0 bytes common/gtk-3.0/3.18/assets/radio-mixed.png | Bin 342 -> 0 bytes common/gtk-3.0/3.18/assets/radio-mixed@2.png | Bin 564 -> 0 bytes .../3.18/assets/radio-unchecked-dark.png | Bin 445 -> 0 bytes .../3.18/assets/radio-unchecked-dark@2.png | Bin 933 -> 0 bytes .../radio-unchecked-insensitive-dark.png | Bin 423 -> 0 bytes .../radio-unchecked-insensitive-dark@2.png | Bin 915 -> 0 bytes .../radio-unchecked-insensitive-selected.png | Bin 395 -> 0 bytes ...radio-unchecked-insensitive-selected@2.png | Bin 810 -> 0 bytes .../assets/radio-unchecked-insensitive.png | Bin 432 -> 0 bytes .../assets/radio-unchecked-insensitive@2.png | Bin 904 -> 0 bytes .../3.18/assets/radio-unchecked-selected.png | Bin 428 -> 0 bytes .../assets/radio-unchecked-selected@2.png | Bin 909 -> 0 bytes .../gtk-3.0/3.18/assets/radio-unchecked.png | Bin 463 -> 0 bytes .../gtk-3.0/3.18/assets/radio-unchecked@2.png | Bin 937 -> 0 bytes .../3.18/assets/switch-active-dark.png | Bin 803 -> 0 bytes .../3.18/assets/switch-active-dark@2.png | Bin 1541 -> 0 bytes .../3.18/assets/switch-active-header-dark.png | Bin 807 -> 0 bytes .../assets/switch-active-header-dark@2.png | Bin 1529 -> 0 bytes .../3.18/assets/switch-active-header.png | Bin 807 -> 0 bytes .../3.18/assets/switch-active-header@2.png | Bin 1552 -> 0 bytes .../assets/switch-active-insensitive-dark.png | Bin 802 -> 0 bytes .../switch-active-insensitive-dark@2.png | Bin 1488 -> 0 bytes .../switch-active-insensitive-header-dark.png | Bin 788 -> 0 bytes ...witch-active-insensitive-header-dark@2.png | Bin 1471 -> 0 bytes .../switch-active-insensitive-header.png | Bin 811 -> 0 bytes .../switch-active-insensitive-header@2.png | Bin 1558 -> 0 bytes .../switch-active-insensitive-selected.png | Bin 826 -> 0 bytes .../switch-active-insensitive-selected@2.png | Bin 1586 -> 0 bytes .../3.18/assets/switch-active-insensitive.png | Bin 811 -> 0 bytes .../assets/switch-active-insensitive@2.png | Bin 1558 -> 0 bytes .../3.18/assets/switch-active-selected.png | Bin 814 -> 0 bytes .../3.18/assets/switch-active-selected@2.png | Bin 1552 -> 0 bytes common/gtk-3.0/3.18/assets/switch-active.png | Bin 807 -> 0 bytes .../gtk-3.0/3.18/assets/switch-active@2.png | Bin 1552 -> 0 bytes common/gtk-3.0/3.18/assets/switch-dark.png | Bin 782 -> 0 bytes common/gtk-3.0/3.18/assets/switch-dark@2.png | Bin 1526 -> 0 bytes .../3.18/assets/switch-header-dark.png | Bin 767 -> 0 bytes .../3.18/assets/switch-header-dark@2.png | Bin 1515 -> 0 bytes common/gtk-3.0/3.18/assets/switch-header.png | Bin 840 -> 0 bytes .../gtk-3.0/3.18/assets/switch-header@2.png | Bin 1822 -> 0 bytes .../3.18/assets/switch-insensitive-dark.png | Bin 774 -> 0 bytes .../3.18/assets/switch-insensitive-dark@2.png | Bin 1471 -> 0 bytes .../assets/switch-insensitive-header-dark.png | Bin 769 -> 0 bytes .../switch-insensitive-header-dark@2.png | Bin 1443 -> 0 bytes .../3.18/assets/switch-insensitive-header.png | Bin 809 -> 0 bytes .../assets/switch-insensitive-header@2.png | Bin 1658 -> 0 bytes .../assets/switch-insensitive-selected.png | Bin 678 -> 0 bytes .../assets/switch-insensitive-selected@2.png | Bin 1398 -> 0 bytes .../3.18/assets/switch-insensitive.png | Bin 775 -> 0 bytes .../3.18/assets/switch-insensitive@2.png | Bin 1578 -> 0 bytes .../gtk-3.0/3.18/assets/switch-selected.png | Bin 726 -> 0 bytes .../gtk-3.0/3.18/assets/switch-selected@2.png | Bin 1523 -> 0 bytes common/gtk-3.0/3.18/assets/switch.png | Bin 788 -> 0 bytes common/gtk-3.0/3.18/assets/switch@2.png | Bin 1604 -> 0 bytes .../assets/titlebutton-close-active-dark.png | Bin 446 -> 0 bytes .../titlebutton-close-active-dark@2.png | Bin 655 -> 0 bytes .../3.18/assets/titlebutton-close-active.png | Bin 441 -> 0 bytes .../assets/titlebutton-close-active@2.png | Bin 679 -> 0 bytes .../titlebutton-close-backdrop-dark.png | Bin 421 -> 0 bytes .../titlebutton-close-backdrop-dark@2.png | Bin 615 -> 0 bytes .../assets/titlebutton-close-backdrop.png | Bin 414 -> 0 bytes .../assets/titlebutton-close-backdrop@2.png | Bin 629 -> 0 bytes .../3.18/assets/titlebutton-close-dark.png | Bin 446 -> 0 bytes .../3.18/assets/titlebutton-close-dark@2.png | Bin 655 -> 0 bytes .../assets/titlebutton-close-hover-dark.png | Bin 446 -> 0 bytes .../assets/titlebutton-close-hover-dark@2.png | Bin 655 -> 0 bytes .../3.18/assets/titlebutton-close-hover.png | Bin 469 -> 0 bytes .../3.18/assets/titlebutton-close-hover@2.png | Bin 708 -> 0 bytes .../gtk-3.0/3.18/assets/titlebutton-close.png | Bin 465 -> 0 bytes .../3.18/assets/titlebutton-close@2.png | Bin 721 -> 0 bytes .../titlebutton-maximize-active-dark.png | Bin 391 -> 0 bytes .../titlebutton-maximize-active-dark@2.png | Bin 611 -> 0 bytes .../assets/titlebutton-maximize-active.png | Bin 391 -> 0 bytes .../assets/titlebutton-maximize-active@2.png | Bin 611 -> 0 bytes .../titlebutton-maximize-backdrop-dark.png | Bin 241 -> 0 bytes .../titlebutton-maximize-backdrop-dark@2.png | Bin 333 -> 0 bytes .../assets/titlebutton-maximize-backdrop.png | Bin 241 -> 0 bytes .../titlebutton-maximize-backdrop@2.png | Bin 333 -> 0 bytes .../3.18/assets/titlebutton-maximize-dark.png | Bin 241 -> 0 bytes .../assets/titlebutton-maximize-dark@2.png | Bin 336 -> 0 bytes .../titlebutton-maximize-hover-dark.png | Bin 413 -> 0 bytes .../titlebutton-maximize-hover-dark@2.png | Bin 772 -> 0 bytes .../assets/titlebutton-maximize-hover.png | Bin 422 -> 0 bytes .../assets/titlebutton-maximize-hover@2.png | Bin 815 -> 0 bytes .../3.18/assets/titlebutton-maximize.png | Bin 241 -> 0 bytes .../3.18/assets/titlebutton-maximize@2.png | Bin 336 -> 0 bytes .../titlebutton-minimize-active-dark.png | Bin 343 -> 0 bytes .../titlebutton-minimize-active-dark@2.png | Bin 489 -> 0 bytes .../assets/titlebutton-minimize-active.png | Bin 343 -> 0 bytes .../assets/titlebutton-minimize-active@2.png | Bin 489 -> 0 bytes .../titlebutton-minimize-backdrop-dark.png | Bin 168 -> 0 bytes .../titlebutton-minimize-backdrop-dark@2.png | Bin 203 -> 0 bytes .../assets/titlebutton-minimize-backdrop.png | Bin 167 -> 0 bytes .../titlebutton-minimize-backdrop@2.png | Bin 203 -> 0 bytes .../3.18/assets/titlebutton-minimize-dark.png | Bin 168 -> 0 bytes .../assets/titlebutton-minimize-dark@2.png | Bin 203 -> 0 bytes .../titlebutton-minimize-hover-dark.png | Bin 363 -> 0 bytes .../titlebutton-minimize-hover-dark@2.png | Bin 637 -> 0 bytes .../assets/titlebutton-minimize-hover.png | Bin 368 -> 0 bytes .../assets/titlebutton-minimize-hover@2.png | Bin 678 -> 0 bytes .../3.18/assets/titlebutton-minimize.png | Bin 168 -> 0 bytes .../3.18/assets/titlebutton-minimize@2.png | Bin 203 -> 0 bytes common/gtk-3.0/3.18/gtk-dark.css | 4084 ----------- common/gtk-3.0/3.18/gtk-darker.css | 4080 ----------- common/gtk-3.0/3.18/gtk-solid-dark.css | 4084 ----------- common/gtk-3.0/3.18/gtk-solid-darker.css | 4080 ----------- common/gtk-3.0/3.18/gtk-solid.css | 4084 ----------- common/gtk-3.0/3.18/gtk.css | 4084 ----------- common/gtk-3.0/3.18/render-assets.sh | 34 - common/gtk-3.0/3.18/sass/_applications.scss | 807 --- common/gtk-3.0/3.18/sass/_colors-public.scss | 67 - common/gtk-3.0/3.18/sass/_colors.scss | 101 - common/gtk-3.0/3.18/sass/_common.scss | 2875 -------- common/gtk-3.0/3.18/sass/_drawing.scss | 366 - common/gtk-3.0/3.18/sass/_granite.scss | 225 - common/gtk-3.0/3.18/sass/_lightdm.scss | 113 - .../3.18/sass/_transparent_widgets.scss | 285 - common/gtk-3.0/3.18/sass/_unity.scss | 159 - common/gtk-3.0/3.18/sass/gtk-dark.scss | 13 - common/gtk-3.0/3.18/sass/gtk-darker.scss | 13 - common/gtk-3.0/3.18/sass/gtk-solid-dark.scss | 13 - .../gtk-3.0/3.18/sass/gtk-solid-darker.scss | 13 - common/gtk-3.0/3.18/sass/gtk-solid.scss | 13 - common/gtk-3.0/3.18/sass/gtk.scss | 13 - common/gtk-3.0/3.20/assets.svg | 5965 ---------------- common/gtk-3.0/3.20/assets.txt | 84 - .../3.20/assets/checkbox-checked-dark.png | Bin 360 -> 0 bytes .../3.20/assets/checkbox-checked-dark@2.png | Bin 487 -> 0 bytes .../checkbox-checked-insensitive-dark.png | Bin 369 -> 0 bytes .../checkbox-checked-insensitive-dark@2.png | Bin 502 -> 0 bytes .../checkbox-checked-insensitive-selected.png | Bin 386 -> 0 bytes ...heckbox-checked-insensitive-selected@2.png | Bin 490 -> 0 bytes .../assets/checkbox-checked-insensitive.png | Bin 365 -> 0 bytes .../assets/checkbox-checked-insensitive@2.png | Bin 502 -> 0 bytes .../3.20/assets/checkbox-checked-selected.png | Bin 363 -> 0 bytes .../assets/checkbox-checked-selected@2.png | Bin 490 -> 0 bytes .../checkbox-checked-selectionmode-dark.png | Bin 464 -> 0 bytes .../checkbox-checked-selectionmode-dark@2.png | Bin 680 -> 0 bytes .../assets/checkbox-checked-selectionmode.png | Bin 478 -> 0 bytes .../checkbox-checked-selectionmode@2.png | Bin 685 -> 0 bytes .../gtk-3.0/3.20/assets/checkbox-checked.png | Bin 357 -> 0 bytes .../3.20/assets/checkbox-checked@2.png | Bin 486 -> 0 bytes .../3.20/assets/checkbox-mixed-dark.png | Bin 235 -> 0 bytes .../3.20/assets/checkbox-mixed-dark@2.png | Bin 328 -> 0 bytes .../checkbox-mixed-insensitive-dark.png | Bin 232 -> 0 bytes .../checkbox-mixed-insensitive-dark@2.png | Bin 333 -> 0 bytes .../checkbox-mixed-insensitive-selected.png | Bin 237 -> 0 bytes .../checkbox-mixed-insensitive-selected@2.png | Bin 322 -> 0 bytes .../assets/checkbox-mixed-insensitive.png | Bin 232 -> 0 bytes .../assets/checkbox-mixed-insensitive@2.png | Bin 333 -> 0 bytes .../3.20/assets/checkbox-mixed-selected.png | Bin 235 -> 0 bytes .../3.20/assets/checkbox-mixed-selected@2.png | Bin 328 -> 0 bytes common/gtk-3.0/3.20/assets/checkbox-mixed.png | Bin 235 -> 0 bytes .../gtk-3.0/3.20/assets/checkbox-mixed@2.png | Bin 328 -> 0 bytes .../assets/checkbox-selectionmode-dark.png | Bin 493 -> 0 bytes .../assets/checkbox-selectionmode-dark@2.png | Bin 737 -> 0 bytes .../3.20/assets/checkbox-selectionmode.png | Bin 522 -> 0 bytes .../3.20/assets/checkbox-selectionmode@2.png | Bin 736 -> 0 bytes .../3.20/assets/checkbox-unchecked-dark.png | Bin 268 -> 0 bytes .../3.20/assets/checkbox-unchecked-dark@2.png | Bin 397 -> 0 bytes .../checkbox-unchecked-insensitive-dark.png | Bin 272 -> 0 bytes .../checkbox-unchecked-insensitive-dark@2.png | Bin 394 -> 0 bytes ...heckbox-unchecked-insensitive-selected.png | Bin 272 -> 0 bytes ...ckbox-unchecked-insensitive-selected@2.png | Bin 356 -> 0 bytes .../assets/checkbox-unchecked-insensitive.png | Bin 272 -> 0 bytes .../checkbox-unchecked-insensitive@2.png | Bin 406 -> 0 bytes .../assets/checkbox-unchecked-selected.png | Bin 272 -> 0 bytes .../assets/checkbox-unchecked-selected@2.png | Bin 395 -> 0 bytes .../3.20/assets/checkbox-unchecked.png | Bin 285 -> 0 bytes .../3.20/assets/checkbox-unchecked@2.png | Bin 408 -> 0 bytes .../3.20/assets/radio-checked-dark.png | Bin 373 -> 0 bytes .../3.20/assets/radio-checked-dark@2.png | Bin 611 -> 0 bytes .../assets/radio-checked-insensitive-dark.png | Bin 378 -> 0 bytes .../radio-checked-insensitive-dark@2.png | Bin 596 -> 0 bytes .../radio-checked-insensitive-selected.png | Bin 383 -> 0 bytes .../radio-checked-insensitive-selected@2.png | Bin 602 -> 0 bytes .../3.20/assets/radio-checked-insensitive.png | Bin 378 -> 0 bytes .../assets/radio-checked-insensitive@2.png | Bin 604 -> 0 bytes .../3.20/assets/radio-checked-selected.png | Bin 375 -> 0 bytes .../3.20/assets/radio-checked-selected@2.png | Bin 616 -> 0 bytes common/gtk-3.0/3.20/assets/radio-checked.png | Bin 373 -> 0 bytes .../gtk-3.0/3.20/assets/radio-checked@2.png | Bin 616 -> 0 bytes .../gtk-3.0/3.20/assets/radio-mixed-dark.png | Bin 342 -> 0 bytes .../3.20/assets/radio-mixed-dark@2.png | Bin 564 -> 0 bytes .../assets/radio-mixed-insensitive-dark.png | Bin 344 -> 0 bytes .../assets/radio-mixed-insensitive-dark@2.png | Bin 558 -> 0 bytes .../radio-mixed-insensitive-selected.png | Bin 344 -> 0 bytes .../radio-mixed-insensitive-selected@2.png | Bin 558 -> 0 bytes .../3.20/assets/radio-mixed-insensitive.png | Bin 344 -> 0 bytes .../3.20/assets/radio-mixed-insensitive@2.png | Bin 558 -> 0 bytes .../3.20/assets/radio-mixed-selected.png | Bin 342 -> 0 bytes .../3.20/assets/radio-mixed-selected@2.png | Bin 564 -> 0 bytes common/gtk-3.0/3.20/assets/radio-mixed.png | Bin 342 -> 0 bytes common/gtk-3.0/3.20/assets/radio-mixed@2.png | Bin 564 -> 0 bytes .../3.20/assets/radio-unchecked-dark.png | Bin 445 -> 0 bytes .../3.20/assets/radio-unchecked-dark@2.png | Bin 933 -> 0 bytes .../radio-unchecked-insensitive-dark.png | Bin 423 -> 0 bytes .../radio-unchecked-insensitive-dark@2.png | Bin 915 -> 0 bytes .../radio-unchecked-insensitive-selected.png | Bin 395 -> 0 bytes ...radio-unchecked-insensitive-selected@2.png | Bin 810 -> 0 bytes .../assets/radio-unchecked-insensitive.png | Bin 432 -> 0 bytes .../assets/radio-unchecked-insensitive@2.png | Bin 904 -> 0 bytes .../3.20/assets/radio-unchecked-selected.png | Bin 428 -> 0 bytes .../assets/radio-unchecked-selected@2.png | Bin 909 -> 0 bytes .../gtk-3.0/3.20/assets/radio-unchecked.png | Bin 463 -> 0 bytes .../gtk-3.0/3.20/assets/radio-unchecked@2.png | Bin 937 -> 0 bytes .../3.20/assets/switch-active-dark.png | Bin 803 -> 0 bytes .../3.20/assets/switch-active-dark@2.png | Bin 1541 -> 0 bytes .../3.20/assets/switch-active-header-dark.png | Bin 807 -> 0 bytes .../assets/switch-active-header-dark@2.png | Bin 1529 -> 0 bytes .../3.20/assets/switch-active-header.png | Bin 807 -> 0 bytes .../3.20/assets/switch-active-header@2.png | Bin 1552 -> 0 bytes .../assets/switch-active-insensitive-dark.png | Bin 802 -> 0 bytes .../switch-active-insensitive-dark@2.png | Bin 1488 -> 0 bytes .../switch-active-insensitive-header-dark.png | Bin 788 -> 0 bytes ...witch-active-insensitive-header-dark@2.png | Bin 1471 -> 0 bytes .../switch-active-insensitive-header.png | Bin 811 -> 0 bytes .../switch-active-insensitive-header@2.png | Bin 1558 -> 0 bytes .../switch-active-insensitive-selected.png | Bin 826 -> 0 bytes .../switch-active-insensitive-selected@2.png | Bin 1586 -> 0 bytes .../3.20/assets/switch-active-insensitive.png | Bin 811 -> 0 bytes .../assets/switch-active-insensitive@2.png | Bin 1558 -> 0 bytes .../3.20/assets/switch-active-selected.png | Bin 814 -> 0 bytes .../3.20/assets/switch-active-selected@2.png | Bin 1552 -> 0 bytes common/gtk-3.0/3.20/assets/switch-active.png | Bin 807 -> 0 bytes .../gtk-3.0/3.20/assets/switch-active@2.png | Bin 1552 -> 0 bytes common/gtk-3.0/3.20/assets/switch-dark.png | Bin 782 -> 0 bytes common/gtk-3.0/3.20/assets/switch-dark@2.png | Bin 1526 -> 0 bytes .../3.20/assets/switch-header-dark.png | Bin 767 -> 0 bytes .../3.20/assets/switch-header-dark@2.png | Bin 1515 -> 0 bytes common/gtk-3.0/3.20/assets/switch-header.png | Bin 840 -> 0 bytes .../gtk-3.0/3.20/assets/switch-header@2.png | Bin 1822 -> 0 bytes .../3.20/assets/switch-insensitive-dark.png | Bin 774 -> 0 bytes .../3.20/assets/switch-insensitive-dark@2.png | Bin 1471 -> 0 bytes .../assets/switch-insensitive-header-dark.png | Bin 769 -> 0 bytes .../switch-insensitive-header-dark@2.png | Bin 1443 -> 0 bytes .../3.20/assets/switch-insensitive-header.png | Bin 809 -> 0 bytes .../assets/switch-insensitive-header@2.png | Bin 1658 -> 0 bytes .../assets/switch-insensitive-selected.png | Bin 678 -> 0 bytes .../assets/switch-insensitive-selected@2.png | Bin 1398 -> 0 bytes .../3.20/assets/switch-insensitive.png | Bin 775 -> 0 bytes .../3.20/assets/switch-insensitive@2.png | Bin 1578 -> 0 bytes .../gtk-3.0/3.20/assets/switch-selected.png | Bin 726 -> 0 bytes .../gtk-3.0/3.20/assets/switch-selected@2.png | Bin 1523 -> 0 bytes common/gtk-3.0/3.20/assets/switch.png | Bin 788 -> 0 bytes common/gtk-3.0/3.20/assets/switch@2.png | Bin 1604 -> 0 bytes .../assets/titlebutton-close-active-dark.png | Bin 446 -> 0 bytes .../titlebutton-close-active-dark@2.png | Bin 655 -> 0 bytes .../3.20/assets/titlebutton-close-active.png | Bin 441 -> 0 bytes .../assets/titlebutton-close-active@2.png | Bin 679 -> 0 bytes .../titlebutton-close-backdrop-dark.png | Bin 421 -> 0 bytes .../titlebutton-close-backdrop-dark@2.png | Bin 615 -> 0 bytes .../assets/titlebutton-close-backdrop.png | Bin 414 -> 0 bytes .../assets/titlebutton-close-backdrop@2.png | Bin 629 -> 0 bytes .../3.20/assets/titlebutton-close-dark.png | Bin 446 -> 0 bytes .../3.20/assets/titlebutton-close-dark@2.png | Bin 655 -> 0 bytes .../assets/titlebutton-close-hover-dark.png | Bin 446 -> 0 bytes .../assets/titlebutton-close-hover-dark@2.png | Bin 655 -> 0 bytes .../3.20/assets/titlebutton-close-hover.png | Bin 469 -> 0 bytes .../3.20/assets/titlebutton-close-hover@2.png | Bin 708 -> 0 bytes .../gtk-3.0/3.20/assets/titlebutton-close.png | Bin 465 -> 0 bytes .../3.20/assets/titlebutton-close@2.png | Bin 721 -> 0 bytes .../titlebutton-maximize-active-dark.png | Bin 391 -> 0 bytes .../titlebutton-maximize-active-dark@2.png | Bin 611 -> 0 bytes .../assets/titlebutton-maximize-active.png | Bin 391 -> 0 bytes .../assets/titlebutton-maximize-active@2.png | Bin 611 -> 0 bytes .../titlebutton-maximize-backdrop-dark.png | Bin 241 -> 0 bytes .../titlebutton-maximize-backdrop-dark@2.png | Bin 333 -> 0 bytes .../assets/titlebutton-maximize-backdrop.png | Bin 241 -> 0 bytes .../titlebutton-maximize-backdrop@2.png | Bin 333 -> 0 bytes .../3.20/assets/titlebutton-maximize-dark.png | Bin 241 -> 0 bytes .../assets/titlebutton-maximize-dark@2.png | Bin 336 -> 0 bytes .../titlebutton-maximize-hover-dark.png | Bin 413 -> 0 bytes .../titlebutton-maximize-hover-dark@2.png | Bin 772 -> 0 bytes .../assets/titlebutton-maximize-hover.png | Bin 422 -> 0 bytes .../assets/titlebutton-maximize-hover@2.png | Bin 815 -> 0 bytes .../3.20/assets/titlebutton-maximize.png | Bin 241 -> 0 bytes .../3.20/assets/titlebutton-maximize@2.png | Bin 336 -> 0 bytes .../titlebutton-minimize-active-dark.png | Bin 343 -> 0 bytes .../titlebutton-minimize-active-dark@2.png | Bin 489 -> 0 bytes .../assets/titlebutton-minimize-active.png | Bin 343 -> 0 bytes .../assets/titlebutton-minimize-active@2.png | Bin 489 -> 0 bytes .../titlebutton-minimize-backdrop-dark.png | Bin 168 -> 0 bytes .../titlebutton-minimize-backdrop-dark@2.png | Bin 203 -> 0 bytes .../assets/titlebutton-minimize-backdrop.png | Bin 167 -> 0 bytes .../titlebutton-minimize-backdrop@2.png | Bin 203 -> 0 bytes .../3.20/assets/titlebutton-minimize-dark.png | Bin 168 -> 0 bytes .../assets/titlebutton-minimize-dark@2.png | Bin 203 -> 0 bytes .../titlebutton-minimize-hover-dark.png | Bin 363 -> 0 bytes .../titlebutton-minimize-hover-dark@2.png | Bin 637 -> 0 bytes .../assets/titlebutton-minimize-hover.png | Bin 368 -> 0 bytes .../assets/titlebutton-minimize-hover@2.png | Bin 678 -> 0 bytes .../3.20/assets/titlebutton-minimize.png | Bin 168 -> 0 bytes .../3.20/assets/titlebutton-minimize@2.png | Bin 203 -> 0 bytes common/gtk-3.0/3.20/gtk-dark.css | 4305 ------------ common/gtk-3.0/3.20/gtk-darker.css | 4308 ------------ common/gtk-3.0/3.20/gtk-solid-dark.css | 4305 ------------ common/gtk-3.0/3.20/gtk-solid-darker.css | 4308 ------------ common/gtk-3.0/3.20/gtk-solid.css | 4312 ------------ common/gtk-3.0/3.20/gtk.css | 4312 ------------ common/gtk-3.0/3.20/render-assets.sh | 34 - common/gtk-3.0/3.20/sass/_applications.scss | 869 --- common/gtk-3.0/3.20/sass/_colors-public.scss | 67 - common/gtk-3.0/3.20/sass/_colors.scss | 101 - common/gtk-3.0/3.20/sass/_common.scss | 3184 --------- common/gtk-3.0/3.20/sass/_drawing.scss | 354 - common/gtk-3.0/3.20/sass/_granite.scss | 218 - common/gtk-3.0/3.20/sass/_lightdm.scss | 109 - .../3.20/sass/_transparent_widgets.scss | 216 - common/gtk-3.0/3.20/sass/_unity.scss | 159 - common/gtk-3.0/3.20/sass/gtk-dark.scss | 13 - common/gtk-3.0/3.20/sass/gtk-darker.scss | 13 - common/gtk-3.0/3.20/sass/gtk-solid-dark.scss | 13 - .../gtk-3.0/3.20/sass/gtk-solid-darker.scss | 13 - common/gtk-3.0/3.20/sass/gtk-solid.scss | 13 - common/gtk-3.0/3.20/sass/gtk.scss | 13 - common/gtk-3.0/3.22 | 1 - common/gtk-3.0/3.24 | 1 - common/gtk-3.0/thumbnail-dark.png | Bin 1508 -> 0 bytes common/gtk-3.0/thumbnail.png | Bin 1472 -> 0 bytes common/index.theme | 12 - common/index.theme-dark | 12 - common/index.theme-darker | 12 - common/metacity-1/button-bg.svg | 105 - common/metacity-1/button-border.svg | 107 - common/metacity-1/close-icon.svg | 104 - common/metacity-1/max-icon.svg | 75 - common/metacity-1/metacity-theme-1-dark.xml | 762 -- common/metacity-1/metacity-theme-1.xml | 762 -- common/metacity-1/metacity-theme-2-dark.xml | 762 -- common/metacity-1/metacity-theme-2.xml | 762 -- common/metacity-1/metacity-theme-3.xml | 1016 --- common/metacity-1/min-icon.svg | 75 - common/metacity-1/thumbnail-dark.png | Bin 772 -> 0 bytes common/metacity-1/thumbnail.png | Bin 755 -> 0 bytes common/unity/close.svg | 219 - common/unity/close_dash.svg | 214 - common/unity/close_dash_disabled.svg | 214 - common/unity/close_dash_prelight.svg | 214 - common/unity/close_dash_pressed.svg | 214 - common/unity/close_focused_normal.svg | 219 - common/unity/close_focused_prelight.svg | 219 - common/unity/close_focused_pressed.svg | 220 - common/unity/close_unfocused.svg | 219 - common/unity/close_unfocused_prelight.svg | 219 - common/unity/close_unfocused_pressed.svg | 220 - common/unity/dash/close_dash.svg | 214 - common/unity/dash/close_dash_disabled.svg | 214 - common/unity/dash/close_dash_prelight.svg | 214 - common/unity/dash/close_dash_pressed.svg | 214 - common/unity/dash/maximize_dash.svg | 170 - common/unity/dash/maximize_dash_disabled.svg | 170 - common/unity/dash/maximize_dash_prelight.svg | 224 - common/unity/dash/maximize_dash_pressed.svg | 247 - common/unity/dash/minimize_dash.svg | 170 - common/unity/dash/minimize_dash_disabled.svg | 170 - common/unity/dash/minimize_dash_prelight.svg | 224 - common/unity/dash/minimize_dash_pressed.svg | 247 - common/unity/launcher_arrow_ltr_19.svg | 101 - common/unity/launcher_arrow_ltr_37.svg | 102 - .../unity/launcher_arrow_outline_ltr_19.svg | 101 - .../unity/launcher_arrow_outline_ltr_37.svg | 102 - .../unity/launcher_arrow_outline_rtl_19.svg | 102 - .../unity/launcher_arrow_outline_rtl_37.svg | 102 - common/unity/launcher_arrow_rtl_19.svg | 101 - common/unity/launcher_arrow_rtl_37.svg | 102 - common/unity/launcher_icon_back_150.svg | 61 - common/unity/launcher_icon_back_54.svg | 55 - common/unity/launcher_icon_edge_150.svg | 75 - common/unity/launcher_icon_edge_54.svg | 65 - common/unity/launcher_icon_glow_200.svg | 7 - common/unity/launcher_icon_glow_62.svg | 7 - .../unity/launcher_icon_selected_back_150.svg | 96 - .../unity/launcher_icon_selected_back_54.svg | 82 - common/unity/launcher_icon_shadow_200.svg | 7 - common/unity/launcher_icon_shadow_62.svg | 61 - common/unity/launcher_icon_shine_150.svg | 59 - common/unity/launcher_icon_shine_54.svg | 83 - common/unity/launcher_pip_ltr_19.svg | 101 - common/unity/launcher_pip_ltr_37.svg | 103 - common/unity/launcher_pip_rtl_19.svg | 102 - common/unity/launcher_pip_rtl_37.svg | 103 - common/unity/maximize.svg | 170 - common/unity/maximize_dash.svg | 170 - common/unity/maximize_dash_disabled.svg | 170 - common/unity/maximize_dash_prelight.svg | 224 - common/unity/maximize_dash_pressed.svg | 247 - common/unity/maximize_focused_normal.svg | 170 - common/unity/maximize_focused_prelight.svg | 224 - common/unity/maximize_focused_pressed.svg | 347 - common/unity/maximize_unfocused.svg | 170 - common/unity/maximize_unfocused_prelight.svg | 224 - common/unity/maximize_unfocused_pressed.svg | 347 - common/unity/minimize.svg | 170 - common/unity/minimize_dash.svg | 170 - common/unity/minimize_dash_disabled.svg | 170 - common/unity/minimize_dash_prelight.svg | 224 - common/unity/minimize_dash_pressed.svg | 247 - common/unity/minimize_focused_normal.svg | 170 - common/unity/minimize_focused_prelight.svg | 224 - common/unity/minimize_focused_pressed.svg | 260 - common/unity/minimize_unfocused.svg | 170 - common/unity/minimize_unfocused_prelight.svg | 224 - common/unity/minimize_unfocused_pressed.svg | 260 - common/unity/sheet_style_close_focused.svg | 219 - .../sheet_style_close_focused_prelight.svg | 219 - .../sheet_style_close_focused_pressed.svg | 219 - common/unity/unmaximize.svg | 170 - common/unity/unmaximize_dash.svg | 170 - common/unity/unmaximize_dash_disabled.svg | 170 - common/unity/unmaximize_dash_prelight.svg | 224 - common/unity/unmaximize_dash_pressed.svg | 247 - common/unity/unmaximize_focused_normal.svg | 170 - common/unity/unmaximize_focused_prelight.svg | 224 - common/unity/unmaximize_focused_pressed.svg | 347 - common/unity/unmaximize_unfocused.svg | 170 - .../unity/unmaximize_unfocused_prelight.svg | 224 - common/unity/unmaximize_unfocused_pressed.svg | 347 - common/unity/window-buttons-dark/close.svg | 214 - .../window-buttons-dark/close_prelight.svg | 214 - .../window-buttons-dark/close_pressed.svg | 214 - .../window-buttons-dark/close_unfocused.svg | 214 - common/unity/window-buttons-dark/maximize.svg | 170 - .../window-buttons-dark/maximize_prelight.svg | 224 - .../window-buttons-dark/maximize_pressed.svg | 347 - .../maximize_unfocused.svg | 170 - common/unity/window-buttons-dark/minimize.svg | 166 - .../window-buttons-dark/minimize_prelight.svg | 220 - .../window-buttons-dark/minimize_pressed.svg | 260 - .../minimize_unfocused.svg | 166 - common/unity/window-buttons/close.svg | 219 - .../unity/window-buttons/close_prelight.svg | 219 - common/unity/window-buttons/close_pressed.svg | 220 - .../unity/window-buttons/close_unfocused.svg | 219 - common/unity/window-buttons/maximize.svg | 170 - .../window-buttons/maximize_prelight.svg | 224 - .../unity/window-buttons/maximize_pressed.svg | 347 - .../window-buttons/maximize_unfocused.svg | 170 - common/unity/window-buttons/minimize.svg | 170 - .../window-buttons/minimize_prelight.svg | 224 - .../unity/window-buttons/minimize_pressed.svg | 260 - .../window-buttons/minimize_unfocused.svg | 170 - common/xfwm4-dark/close-active.xpm | 70 - common/xfwm4-dark/close-inactive.xpm | 65 - common/xfwm4-dark/close-prelight.xpm | 71 - common/xfwm4-dark/close-pressed.xpm | 71 - common/xfwm4-dark/hide-active.xpm | 36 - common/xfwm4-dark/hide-inactive.xpm | 36 - common/xfwm4-dark/hide-prelight.xpm | 53 - common/xfwm4-dark/hide-pressed.xpm | 56 - common/xfwm4-dark/maximize-active.xpm | 43 - common/xfwm4-dark/maximize-inactive.xpm | 43 - common/xfwm4-dark/maximize-prelight.xpm | 62 - common/xfwm4-dark/maximize-pressed.xpm | 65 - common/xfwm4-dark/menu-active.xpm | 21 - common/xfwm4-dark/menu-inactive.xpm | 21 - common/xfwm4-dark/menu-pressed.xpm | 21 - common/xfwm4-dark/shade-active.xpm | 36 - common/xfwm4-dark/shade-inactive.xpm | 36 - common/xfwm4-dark/shade-pressed.xpm | 36 - common/xfwm4-dark/stick-active.xpm | 36 - common/xfwm4-dark/stick-inactive.xpm | 36 - common/xfwm4-dark/stick-pressed.xpm | 36 - common/xfwm4-dark/title-1-active.xpm | 35 - common/xfwm4-dark/title-1-inactive.xpm | 35 - common/xfwm4-dark/title-2-active.xpm | 35 - common/xfwm4-dark/title-2-inactive.xpm | 35 - common/xfwm4-dark/title-3-active.xpm | 35 - common/xfwm4-dark/title-3-inactive.xpm | 35 - common/xfwm4-dark/title-4-active.xpm | 35 - common/xfwm4-dark/title-4-inactive.xpm | 35 - common/xfwm4-dark/title-5-active.xpm | 35 - common/xfwm4-dark/title-5-inactive.xpm | 35 - common/xfwm4-dark/top-left-active.xpm | 35 - common/xfwm4-dark/top-left-inactive.xpm | 35 - common/xfwm4-dark/top-right-active.xpm | 35 - common/xfwm4-dark/top-right-inactive.xpm | 35 - common/xfwm4/assets-dark.svg | 1764 ----- common/xfwm4/assets-dark/bottom-active.png | Bin 153 -> 0 bytes common/xfwm4/assets-dark/bottom-inactive.png | Bin 153 -> 0 bytes .../xfwm4/assets-dark/bottom-left-active.png | Bin 157 -> 0 bytes .../assets-dark/bottom-left-inactive.png | Bin 157 -> 0 bytes .../xfwm4/assets-dark/bottom-right-active.png | Bin 156 -> 0 bytes .../assets-dark/bottom-right-inactive.png | Bin 156 -> 0 bytes common/xfwm4/assets-dark/close-active.png | Bin 413 -> 0 bytes common/xfwm4/assets-dark/close-inactive.png | Bin 392 -> 0 bytes common/xfwm4/assets-dark/close-prelight.png | Bin 421 -> 0 bytes common/xfwm4/assets-dark/close-pressed.png | Bin 410 -> 0 bytes common/xfwm4/assets-dark/hide-active.png | Bin 182 -> 0 bytes common/xfwm4/assets-dark/hide-inactive.png | Bin 182 -> 0 bytes common/xfwm4/assets-dark/hide-prelight.png | Bin 342 -> 0 bytes common/xfwm4/assets-dark/hide-pressed.png | Bin 330 -> 0 bytes common/xfwm4/assets-dark/left-active.png | Bin 151 -> 0 bytes common/xfwm4/assets-dark/left-inactive.png | Bin 151 -> 0 bytes common/xfwm4/assets-dark/maximize-active.png | Bin 233 -> 0 bytes .../xfwm4/assets-dark/maximize-inactive.png | Bin 233 -> 0 bytes .../xfwm4/assets-dark/maximize-prelight.png | Bin 390 -> 0 bytes common/xfwm4/assets-dark/maximize-pressed.png | Bin 391 -> 0 bytes common/xfwm4/assets-dark/menu-active.png | Bin 156 -> 0 bytes common/xfwm4/assets-dark/menu-inactive.png | Bin 156 -> 0 bytes common/xfwm4/assets-dark/menu-pressed.png | Bin 156 -> 0 bytes common/xfwm4/assets-dark/right-active.png | Bin 151 -> 0 bytes common/xfwm4/assets-dark/right-inactive.png | Bin 151 -> 0 bytes common/xfwm4/assets-dark/shade-active.png | Bin 259 -> 0 bytes common/xfwm4/assets-dark/shade-inactive.png | Bin 262 -> 0 bytes common/xfwm4/assets-dark/shade-pressed.png | Bin 262 -> 0 bytes common/xfwm4/assets-dark/stick-active.png | Bin 189 -> 0 bytes common/xfwm4/assets-dark/stick-inactive.png | Bin 189 -> 0 bytes common/xfwm4/assets-dark/stick-pressed.png | Bin 189 -> 0 bytes common/xfwm4/assets-dark/title-1-active.png | Bin 167 -> 0 bytes common/xfwm4/assets-dark/title-1-inactive.png | Bin 167 -> 0 bytes common/xfwm4/assets-dark/title-2-active.png | Bin 167 -> 0 bytes common/xfwm4/assets-dark/title-2-inactive.png | Bin 167 -> 0 bytes common/xfwm4/assets-dark/title-3-active.png | Bin 167 -> 0 bytes common/xfwm4/assets-dark/title-3-inactive.png | Bin 167 -> 0 bytes common/xfwm4/assets-dark/title-4-active.png | Bin 167 -> 0 bytes common/xfwm4/assets-dark/title-4-inactive.png | Bin 167 -> 0 bytes common/xfwm4/assets-dark/title-5-active.png | Bin 167 -> 0 bytes common/xfwm4/assets-dark/title-5-inactive.png | Bin 167 -> 0 bytes common/xfwm4/assets-dark/top-left-active.png | Bin 173 -> 0 bytes .../xfwm4/assets-dark/top-left-inactive.png | Bin 173 -> 0 bytes common/xfwm4/assets-dark/top-right-active.png | Bin 172 -> 0 bytes .../xfwm4/assets-dark/top-right-inactive.png | Bin 172 -> 0 bytes common/xfwm4/assets.svg | 1684 ----- common/xfwm4/assets.txt | 45 - common/xfwm4/assets/bottom-active.png | Bin 153 -> 0 bytes common/xfwm4/assets/bottom-inactive.png | Bin 153 -> 0 bytes common/xfwm4/assets/bottom-left-active.png | Bin 157 -> 0 bytes common/xfwm4/assets/bottom-left-inactive.png | Bin 157 -> 0 bytes common/xfwm4/assets/bottom-right-active.png | Bin 156 -> 0 bytes common/xfwm4/assets/bottom-right-inactive.png | Bin 156 -> 0 bytes common/xfwm4/assets/close-active.png | Bin 410 -> 0 bytes common/xfwm4/assets/close-inactive.png | Bin 384 -> 0 bytes common/xfwm4/assets/close-prelight.png | Bin 379 -> 0 bytes common/xfwm4/assets/close-pressed.png | Bin 388 -> 0 bytes common/xfwm4/assets/hide-active.png | Bin 176 -> 0 bytes common/xfwm4/assets/hide-inactive.png | Bin 176 -> 0 bytes common/xfwm4/assets/hide-prelight.png | Bin 320 -> 0 bytes common/xfwm4/assets/hide-pressed.png | Bin 326 -> 0 bytes common/xfwm4/assets/left-active.png | Bin 151 -> 0 bytes common/xfwm4/assets/left-inactive.png | Bin 151 -> 0 bytes common/xfwm4/assets/maximize-active.png | Bin 231 -> 0 bytes common/xfwm4/assets/maximize-inactive.png | Bin 228 -> 0 bytes common/xfwm4/assets/maximize-prelight.png | Bin 375 -> 0 bytes common/xfwm4/assets/maximize-pressed.png | Bin 381 -> 0 bytes common/xfwm4/assets/menu-active.png | Bin 156 -> 0 bytes common/xfwm4/assets/menu-inactive.png | Bin 156 -> 0 bytes common/xfwm4/assets/menu-pressed.png | Bin 156 -> 0 bytes common/xfwm4/assets/right-active.png | Bin 151 -> 0 bytes common/xfwm4/assets/right-inactive.png | Bin 151 -> 0 bytes common/xfwm4/assets/shade-active.png | Bin 252 -> 0 bytes common/xfwm4/assets/shade-inactive.png | Bin 243 -> 0 bytes common/xfwm4/assets/shade-pressed.png | Bin 256 -> 0 bytes common/xfwm4/assets/stick-active.png | Bin 183 -> 0 bytes common/xfwm4/assets/stick-inactive.png | Bin 183 -> 0 bytes common/xfwm4/assets/stick-pressed.png | Bin 183 -> 0 bytes common/xfwm4/assets/title-1-active.png | Bin 161 -> 0 bytes common/xfwm4/assets/title-1-inactive.png | Bin 161 -> 0 bytes common/xfwm4/assets/title-2-active.png | Bin 161 -> 0 bytes common/xfwm4/assets/title-2-inactive.png | Bin 161 -> 0 bytes common/xfwm4/assets/title-3-active.png | Bin 161 -> 0 bytes common/xfwm4/assets/title-3-inactive.png | Bin 161 -> 0 bytes common/xfwm4/assets/title-4-active.png | Bin 161 -> 0 bytes common/xfwm4/assets/title-4-inactive.png | Bin 161 -> 0 bytes common/xfwm4/assets/title-5-active.png | Bin 161 -> 0 bytes common/xfwm4/assets/title-5-inactive.png | Bin 161 -> 0 bytes common/xfwm4/assets/top-left-active.png | Bin 171 -> 0 bytes common/xfwm4/assets/top-left-inactive.png | Bin 171 -> 0 bytes common/xfwm4/assets/top-right-active.png | Bin 171 -> 0 bytes common/xfwm4/assets/top-right-inactive.png | Bin 171 -> 0 bytes common/xfwm4/close-active.xpm | 70 - common/xfwm4/close-inactive.xpm | 65 - common/xfwm4/close-prelight.xpm | 74 - common/xfwm4/close-pressed.xpm | 77 - common/xfwm4/hide-active.xpm | 35 - common/xfwm4/hide-inactive.xpm | 35 - common/xfwm4/hide-prelight.xpm | 54 - common/xfwm4/hide-pressed.xpm | 55 - common/xfwm4/maximize-active.xpm | 44 - common/xfwm4/maximize-inactive.xpm | 43 - common/xfwm4/maximize-prelight.xpm | 62 - common/xfwm4/maximize-pressed.xpm | 64 - common/xfwm4/menu-active.xpm | 21 - common/xfwm4/menu-inactive.xpm | 21 - common/xfwm4/menu-pressed.xpm | 21 - common/xfwm4/render-assets.sh | 36 - common/xfwm4/shade-active.xpm | 35 - common/xfwm4/shade-inactive.xpm | 35 - common/xfwm4/shade-pressed.xpm | 35 - common/xfwm4/stick-active.xpm | 35 - common/xfwm4/stick-inactive.xpm | 35 - common/xfwm4/stick-pressed.xpm | 35 - common/xfwm4/themerc | 23 - common/xfwm4/themerc-dark | 23 - common/xfwm4/title-1-active.xpm | 34 - common/xfwm4/title-1-inactive.xpm | 34 - common/xfwm4/title-2-active.xpm | 34 - common/xfwm4/title-2-inactive.xpm | 34 - common/xfwm4/title-3-active.xpm | 34 - common/xfwm4/title-3-inactive.xpm | 34 - common/xfwm4/title-4-active.xpm | 34 - common/xfwm4/title-4-inactive.xpm | 34 - common/xfwm4/title-5-active.xpm | 34 - configure.ac | 35 - extra/Chrome/arc-dark-theme.crx | Bin 65060 -> 0 bytes extra/Chrome/arc-darker-theme.crx | Bin 1888 -> 0 bytes .../solarc-dark-theme/images/theme_frame.png | Bin 334 -> 0 bytes .../images/theme_tab_background.png | Bin 230 -> 0 bytes .../images/theme_toolbar.png | Bin 255 -> 0 bytes extra/Chrome/solarc-dark-theme/manifest.json | 40 - .../images/theme_frame.png | Bin 140 -> 0 bytes .../images/theme_toolbar.png | Bin 170 -> 0 bytes .../Chrome/solarc-darker-theme/manifest.json | 39 - extra/Chrome/solarc-theme.crx | Bin 1863 -> 0 bytes .../solarc-theme/images/theme_frame.png | Bin 1107 -> 0 bytes .../solarc-theme/images/theme_toolbar.png | Bin 170 -> 0 bytes extra/Chrome/solarc-theme/manifest.json | 39 - extra/Makefile.am | 2 - extra/SolArc-Plank/dock.theme | 63 - gulpfile.js | 20 - images/preview-complete.png | Bin 703509 -> 0 bytes images/preview-dark.png | Bin 67642 -> 0 bytes images/preview-darker.png | Bin 67621 -> 0 bytes images/preview-light.png | Bin 71202 -> 0 bytes m4/arc-enable.m4 | 19 - m4/arc-gnome.m4 | 38 - package.json | 7 - solarc-theme-upgrade | 148 - 1701 files changed, 256237 deletions(-) delete mode 100644 AUTHORS delete mode 100644 HACKING.md delete mode 100644 Makefile.am delete mode 100755 autogen.sh delete mode 100644 common/Makefile.am delete mode 100644 common/cinnamon/cinnamon-dark.css delete mode 100644 common/cinnamon/cinnamon.css delete mode 100644 common/cinnamon/common-assets/menu/menu-hover.svg delete mode 100644 common/cinnamon/common-assets/menu/menu-separator.svg delete mode 100644 common/cinnamon/common-assets/misc/add-workspace-active.svg delete mode 100644 common/cinnamon/common-assets/misc/add-workspace-hover.svg delete mode 100644 common/cinnamon/common-assets/misc/add-workspace.svg delete mode 100644 common/cinnamon/common-assets/misc/bg.svg delete mode 100644 common/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg delete mode 100644 common/cinnamon/common-assets/misc/calendar-arrow-left.svg delete mode 100644 common/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg delete mode 100644 common/cinnamon/common-assets/misc/calendar-arrow-right.svg delete mode 100644 common/cinnamon/common-assets/misc/close-active.svg delete mode 100644 common/cinnamon/common-assets/misc/close-hover.svg delete mode 100644 common/cinnamon/common-assets/misc/close.svg delete mode 100644 common/cinnamon/common-assets/misc/corner-ripple.svg delete mode 100644 common/cinnamon/common-assets/misc/desklet-header.svg delete mode 100644 common/cinnamon/common-assets/misc/desklet.svg delete mode 100644 common/cinnamon/common-assets/misc/osd.svg delete mode 100644 common/cinnamon/common-assets/misc/overview-hover.png delete mode 100644 common/cinnamon/common-assets/misc/overview.png delete mode 100644 common/cinnamon/common-assets/misc/trash-icon.svg delete mode 100644 common/cinnamon/common-assets/panel/activities-active.svg delete mode 100644 common/cinnamon/common-assets/panel/activities.svg delete mode 100644 common/cinnamon/common-assets/panel/panel-bottom.svg delete mode 100644 common/cinnamon/common-assets/panel/panel-left.svg delete mode 100644 common/cinnamon/common-assets/panel/panel-right.svg delete mode 100644 common/cinnamon/common-assets/panel/panel-top.svg delete mode 100644 common/cinnamon/common-assets/panel/window-list-active-bottom.svg delete mode 100644 common/cinnamon/common-assets/panel/window-list-active-left.svg delete mode 100644 common/cinnamon/common-assets/panel/window-list-active-right.svg delete mode 100644 common/cinnamon/common-assets/panel/window-list-active-top.svg delete mode 100644 common/cinnamon/common-assets/switch/switch-off-selected.svg delete mode 100644 common/cinnamon/common-assets/switch/switch-on-selected.svg delete mode 100644 common/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg delete mode 100644 common/cinnamon/dark-assets/checkbox/checkbox-checked.svg delete mode 100644 common/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg delete mode 100644 common/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg delete mode 100644 common/cinnamon/dark-assets/menu/menu.svg delete mode 100644 common/cinnamon/dark-assets/menu/submenu.svg delete mode 100644 common/cinnamon/dark-assets/misc/button-box.svg delete mode 100644 common/cinnamon/dark-assets/misc/message.svg delete mode 100644 common/cinnamon/dark-assets/misc/modal.svg delete mode 100644 common/cinnamon/dark-assets/switch/switch-off.svg delete mode 100644 common/cinnamon/dark-assets/switch/switch-on.svg delete mode 100644 common/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg delete mode 100644 common/cinnamon/light-assets/checkbox/checkbox-checked.svg delete mode 100644 common/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg delete mode 100644 common/cinnamon/light-assets/checkbox/checkbox-unchecked.svg delete mode 100644 common/cinnamon/light-assets/menu/menu.svg delete mode 100644 common/cinnamon/light-assets/menu/submenu.svg delete mode 100644 common/cinnamon/light-assets/misc/button-box.svg delete mode 100644 common/cinnamon/light-assets/misc/message.svg delete mode 100644 common/cinnamon/light-assets/misc/modal.svg delete mode 100644 common/cinnamon/light-assets/switch/switch-off.svg delete mode 100644 common/cinnamon/light-assets/switch/switch-on.svg delete mode 100644 common/cinnamon/sass/_colors.scss delete mode 100644 common/cinnamon/sass/_common.scss delete mode 100644 common/cinnamon/sass/_drawing.scss delete mode 100644 common/cinnamon/sass/cinnamon-dark.scss delete mode 100644 common/cinnamon/sass/cinnamon.scss delete mode 100644 common/cinnamon/thumbnail-dark.png delete mode 100644 common/cinnamon/thumbnail.png delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-active-bottom.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-active-right.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-active-top.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-active.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-hover-bottom.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-hover-right.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-hover-top.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-hover.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-running-active-bottom.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-running-active-right.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-running-active-top.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-running-active.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-running-bottom.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-running-hover-bottom.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-running-hover-right.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-running-hover-top.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-running-hover.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-running-right.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-running-top.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/button-running.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/dash-left.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/dash-placeholder.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/dash-right.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/running1.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/running2.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/running3.svg delete mode 100644 common/gnome-shell/3.14/common-assets/dash/running4.svg delete mode 100644 common/gnome-shell/3.14/common-assets/menu/menu-hover.svg delete mode 100644 common/gnome-shell/3.14/common-assets/menu/menu-separator.svg delete mode 100644 common/gnome-shell/3.14/common-assets/misc/bg.svg delete mode 100644 common/gnome-shell/3.14/common-assets/misc/close-active.svg delete mode 100644 common/gnome-shell/3.14/common-assets/misc/close-hover.svg delete mode 100644 common/gnome-shell/3.14/common-assets/misc/close.svg delete mode 100644 common/gnome-shell/3.14/common-assets/misc/corner-ripple-ltr.svg delete mode 100644 common/gnome-shell/3.14/common-assets/misc/corner-ripple-rtl.svg delete mode 100644 common/gnome-shell/3.14/common-assets/misc/more-results.svg delete mode 100644 common/gnome-shell/3.14/common-assets/misc/notification.svg delete mode 100644 common/gnome-shell/3.14/common-assets/misc/null.svg delete mode 100644 common/gnome-shell/3.14/common-assets/misc/osd.svg delete mode 100644 common/gnome-shell/3.14/common-assets/misc/page-indicator-active.svg delete mode 100644 common/gnome-shell/3.14/common-assets/misc/page-indicator-checked.svg delete mode 100644 common/gnome-shell/3.14/common-assets/misc/page-indicator-hover.svg delete mode 100644 common/gnome-shell/3.14/common-assets/misc/page-indicator-inactive.svg delete mode 100644 common/gnome-shell/3.14/common-assets/misc/process-working.svg delete mode 100644 common/gnome-shell/3.14/common-assets/misc/summary-counter.svg delete mode 100644 common/gnome-shell/3.14/common-assets/misc/ws-switch-arrow-down.png delete mode 100644 common/gnome-shell/3.14/common-assets/misc/ws-switch-arrow-up.png delete mode 100644 common/gnome-shell/3.14/common-assets/panel/activities-active.svg delete mode 100644 common/gnome-shell/3.14/common-assets/panel/activities.svg delete mode 100644 common/gnome-shell/3.14/common-assets/panel/panel-overview.svg delete mode 100644 common/gnome-shell/3.14/common-assets/panel/panel.svg delete mode 100644 common/gnome-shell/3.14/common-assets/switch/switch-off-selected.svg delete mode 100644 common/gnome-shell/3.14/common-assets/switch/switch-on-selected.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/checkbox/checkbox-checked-focused.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/checkbox/checkbox-checked.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/checkbox/checkbox-unchecked-focused.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/checkbox/checkbox-unchecked.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/menu/menu.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/menu/submenu-open.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/menu/submenu.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/misc/button-box.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/misc/calendar-arrow-left-hover.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/misc/calendar-arrow-left.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/misc/calendar-arrow-right-hover.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/misc/calendar-arrow-right.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/misc/message-active.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/misc/message-close-active.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/misc/message-close-hover.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/misc/message-close.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/misc/message-hover.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/misc/message.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/misc/modal.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/switch/switch-off.svg delete mode 100644 common/gnome-shell/3.14/dark-assets/switch/switch-on.svg delete mode 100644 common/gnome-shell/3.14/gnome-shell-dark.css delete mode 100644 common/gnome-shell/3.14/gnome-shell.css delete mode 100644 common/gnome-shell/3.14/light-assets/checkbox/checkbox-checked-focused.svg delete mode 100644 common/gnome-shell/3.14/light-assets/checkbox/checkbox-checked.svg delete mode 100644 common/gnome-shell/3.14/light-assets/checkbox/checkbox-unchecked-focused.svg delete mode 100644 common/gnome-shell/3.14/light-assets/checkbox/checkbox-unchecked.svg delete mode 100644 common/gnome-shell/3.14/light-assets/menu/menu.svg delete mode 100644 common/gnome-shell/3.14/light-assets/menu/submenu-open.svg delete mode 100644 common/gnome-shell/3.14/light-assets/menu/submenu.svg delete mode 100644 common/gnome-shell/3.14/light-assets/misc/button-box.svg delete mode 100644 common/gnome-shell/3.14/light-assets/misc/calendar-arrow-left-hover.svg delete mode 100644 common/gnome-shell/3.14/light-assets/misc/calendar-arrow-left.svg delete mode 100644 common/gnome-shell/3.14/light-assets/misc/calendar-arrow-right-hover.svg delete mode 100644 common/gnome-shell/3.14/light-assets/misc/calendar-arrow-right.svg delete mode 100644 common/gnome-shell/3.14/light-assets/misc/message-active.svg delete mode 100644 common/gnome-shell/3.14/light-assets/misc/message-close-active.svg delete mode 100644 common/gnome-shell/3.14/light-assets/misc/message-close-hover.svg delete mode 100644 common/gnome-shell/3.14/light-assets/misc/message-close.svg delete mode 100644 common/gnome-shell/3.14/light-assets/misc/message-hover.svg delete mode 100644 common/gnome-shell/3.14/light-assets/misc/message.svg delete mode 100644 common/gnome-shell/3.14/light-assets/misc/modal.svg delete mode 100644 common/gnome-shell/3.14/light-assets/switch/switch-off.svg delete mode 100644 common/gnome-shell/3.14/light-assets/switch/switch-on.svg delete mode 100644 common/gnome-shell/3.14/sass/_colors.scss delete mode 100644 common/gnome-shell/3.14/sass/_common.scss delete mode 100644 common/gnome-shell/3.14/sass/_drawing.scss delete mode 100644 common/gnome-shell/3.14/sass/gnome-shell-dark.scss delete mode 100644 common/gnome-shell/3.14/sass/gnome-shell.scss delete mode 100644 common/gnome-shell/3.16/common-assets/dash/dash-left.svg delete mode 100644 common/gnome-shell/3.16/common-assets/dash/dash-placeholder.svg delete mode 100644 common/gnome-shell/3.16/common-assets/dash/dash-right.svg delete mode 100644 common/gnome-shell/3.16/common-assets/dash/running1.svg delete mode 100644 common/gnome-shell/3.16/common-assets/dash/running2.svg delete mode 100644 common/gnome-shell/3.16/common-assets/dash/running3.svg delete mode 100644 common/gnome-shell/3.16/common-assets/dash/running4.svg delete mode 100644 common/gnome-shell/3.16/common-assets/menu/menu-hover.svg delete mode 100644 common/gnome-shell/3.16/common-assets/menu/menu-separator.svg delete mode 100644 common/gnome-shell/3.16/common-assets/misc/bg.svg delete mode 100644 common/gnome-shell/3.16/common-assets/misc/close-active.svg delete mode 100644 common/gnome-shell/3.16/common-assets/misc/close-hover.svg delete mode 100644 common/gnome-shell/3.16/common-assets/misc/close.svg delete mode 100644 common/gnome-shell/3.16/common-assets/misc/corner-ripple-ltr.svg delete mode 100644 common/gnome-shell/3.16/common-assets/misc/corner-ripple-rtl.svg delete mode 100644 common/gnome-shell/3.16/common-assets/misc/more-results.svg delete mode 100644 common/gnome-shell/3.16/common-assets/misc/osd.svg delete mode 100644 common/gnome-shell/3.16/common-assets/misc/page-indicator-active.svg delete mode 100644 common/gnome-shell/3.16/common-assets/misc/page-indicator-checked.svg delete mode 100644 common/gnome-shell/3.16/common-assets/misc/page-indicator-hover.svg delete mode 100644 common/gnome-shell/3.16/common-assets/misc/page-indicator-inactive.svg delete mode 100644 common/gnome-shell/3.16/common-assets/misc/process-working.svg delete mode 100644 common/gnome-shell/3.16/common-assets/misc/ws-switch-arrow-down.png delete mode 100644 common/gnome-shell/3.16/common-assets/misc/ws-switch-arrow-up.png delete mode 100644 common/gnome-shell/3.16/common-assets/panel/activities-active.svg delete mode 100644 common/gnome-shell/3.16/common-assets/panel/activities.svg delete mode 100644 common/gnome-shell/3.16/common-assets/panel/panel-overview.svg delete mode 100644 common/gnome-shell/3.16/common-assets/panel/panel.svg delete mode 100644 common/gnome-shell/3.16/common-assets/switch/switch-off-selected.svg delete mode 100644 common/gnome-shell/3.16/common-assets/switch/switch-on-selected.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/checkbox/checkbox-checked-focused.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/checkbox/checkbox-checked.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/checkbox/checkbox-unchecked-focused.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/checkbox/checkbox-unchecked.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/menu/menu.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/menu/submenu-open.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/menu/submenu.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/misc/button-box.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/misc/calendar-arrow-left-hover.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/misc/calendar-arrow-left.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/misc/calendar-arrow-right-hover.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/misc/calendar-arrow-right.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/misc/message-active.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/misc/message-close-active.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/misc/message-close-hover.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/misc/message-close.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/misc/message-hover.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/misc/message.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/misc/modal.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/switch/switch-off.svg delete mode 100644 common/gnome-shell/3.16/dark-assets/switch/switch-on.svg delete mode 100644 common/gnome-shell/3.16/gnome-shell-dark.css delete mode 100644 common/gnome-shell/3.16/gnome-shell.css delete mode 100644 common/gnome-shell/3.16/light-assets/checkbox/checkbox-checked-focused.svg delete mode 100644 common/gnome-shell/3.16/light-assets/checkbox/checkbox-checked.svg delete mode 100644 common/gnome-shell/3.16/light-assets/checkbox/checkbox-unchecked-focused.svg delete mode 100644 common/gnome-shell/3.16/light-assets/checkbox/checkbox-unchecked.svg delete mode 100644 common/gnome-shell/3.16/light-assets/menu/menu.svg delete mode 100644 common/gnome-shell/3.16/light-assets/menu/submenu-open.svg delete mode 100644 common/gnome-shell/3.16/light-assets/menu/submenu.svg delete mode 100644 common/gnome-shell/3.16/light-assets/misc/button-box.svg delete mode 100644 common/gnome-shell/3.16/light-assets/misc/calendar-arrow-left-hover.svg delete mode 100644 common/gnome-shell/3.16/light-assets/misc/calendar-arrow-left.svg delete mode 100644 common/gnome-shell/3.16/light-assets/misc/calendar-arrow-right-hover.svg delete mode 100644 common/gnome-shell/3.16/light-assets/misc/calendar-arrow-right.svg delete mode 100644 common/gnome-shell/3.16/light-assets/misc/message-active.svg delete mode 100644 common/gnome-shell/3.16/light-assets/misc/message-close-active.svg delete mode 100644 common/gnome-shell/3.16/light-assets/misc/message-close-hover.svg delete mode 100644 common/gnome-shell/3.16/light-assets/misc/message-close.svg delete mode 100644 common/gnome-shell/3.16/light-assets/misc/message-hover.svg delete mode 100644 common/gnome-shell/3.16/light-assets/misc/message.svg delete mode 100644 common/gnome-shell/3.16/light-assets/misc/modal.svg delete mode 100644 common/gnome-shell/3.16/light-assets/switch/switch-off.svg delete mode 100644 common/gnome-shell/3.16/light-assets/switch/switch-on.svg delete mode 100644 common/gnome-shell/3.16/sass/_colors.scss delete mode 100644 common/gnome-shell/3.16/sass/_common.scss delete mode 100644 common/gnome-shell/3.16/sass/_drawing.scss delete mode 100644 common/gnome-shell/3.16/sass/gnome-shell-dark.scss delete mode 100644 common/gnome-shell/3.16/sass/gnome-shell.scss delete mode 100644 common/gnome-shell/3.18/common-assets/dash/dash-left.svg delete mode 100644 common/gnome-shell/3.18/common-assets/dash/dash-placeholder.svg delete mode 100644 common/gnome-shell/3.18/common-assets/dash/dash-right.svg delete mode 100644 common/gnome-shell/3.18/common-assets/dash/running1.svg delete mode 100644 common/gnome-shell/3.18/common-assets/dash/running2.svg delete mode 100644 common/gnome-shell/3.18/common-assets/dash/running3.svg delete mode 100644 common/gnome-shell/3.18/common-assets/dash/running4.svg delete mode 100644 common/gnome-shell/3.18/common-assets/menu/menu-hover.svg delete mode 100644 common/gnome-shell/3.18/common-assets/menu/menu-separator.svg delete mode 100644 common/gnome-shell/3.18/common-assets/misc/bg.svg delete mode 100644 common/gnome-shell/3.18/common-assets/misc/calendar-today.svg delete mode 100644 common/gnome-shell/3.18/common-assets/misc/close-active.svg delete mode 100644 common/gnome-shell/3.18/common-assets/misc/close-hover.svg delete mode 100644 common/gnome-shell/3.18/common-assets/misc/close.svg delete mode 100644 common/gnome-shell/3.18/common-assets/misc/corner-ripple-ltr.svg delete mode 100644 common/gnome-shell/3.18/common-assets/misc/corner-ripple-rtl.svg delete mode 100644 common/gnome-shell/3.18/common-assets/misc/more-results.svg delete mode 100644 common/gnome-shell/3.18/common-assets/misc/osd.svg delete mode 100644 common/gnome-shell/3.18/common-assets/misc/page-indicator-active.svg delete mode 100644 common/gnome-shell/3.18/common-assets/misc/page-indicator-checked.svg delete mode 100644 common/gnome-shell/3.18/common-assets/misc/page-indicator-hover.svg delete mode 100644 common/gnome-shell/3.18/common-assets/misc/page-indicator-inactive.svg delete mode 100644 common/gnome-shell/3.18/common-assets/misc/process-working.svg delete mode 100644 common/gnome-shell/3.18/common-assets/misc/ws-switch-arrow-down.png delete mode 100644 common/gnome-shell/3.18/common-assets/misc/ws-switch-arrow-up.png delete mode 100644 common/gnome-shell/3.18/common-assets/panel/activities-active.svg delete mode 100644 common/gnome-shell/3.18/common-assets/panel/activities.svg delete mode 100644 common/gnome-shell/3.18/common-assets/panel/panel-overview.svg delete mode 100644 common/gnome-shell/3.18/common-assets/panel/panel.svg delete mode 100644 common/gnome-shell/3.18/common-assets/switch/switch-off-selected.svg delete mode 100644 common/gnome-shell/3.18/common-assets/switch/switch-on-selected.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/checkbox/checkbox-checked-focused.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/checkbox/checkbox-checked.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/checkbox/checkbox-unchecked-focused.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/checkbox/checkbox-unchecked.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/menu/menu.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/menu/submenu-open.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/menu/submenu.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/misc/calendar-arrow-left-hover.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/misc/calendar-arrow-left.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/misc/calendar-arrow-right-hover.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/misc/calendar-arrow-right.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/misc/message-active.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/misc/message-close-active.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/misc/message-close-hover.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/misc/message-close.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/misc/message-hover.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/misc/message.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/misc/modal.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/switch/switch-off.svg delete mode 100644 common/gnome-shell/3.18/dark-assets/switch/switch-on.svg delete mode 100644 common/gnome-shell/3.18/gnome-shell-dark.css delete mode 100644 common/gnome-shell/3.18/gnome-shell.css delete mode 100644 common/gnome-shell/3.18/light-assets/checkbox/checkbox-checked-focused.svg delete mode 100644 common/gnome-shell/3.18/light-assets/checkbox/checkbox-checked.svg delete mode 100644 common/gnome-shell/3.18/light-assets/checkbox/checkbox-unchecked-focused.svg delete mode 100644 common/gnome-shell/3.18/light-assets/checkbox/checkbox-unchecked.svg delete mode 100644 common/gnome-shell/3.18/light-assets/menu/menu.svg delete mode 100644 common/gnome-shell/3.18/light-assets/menu/submenu-open.svg delete mode 100644 common/gnome-shell/3.18/light-assets/menu/submenu.svg delete mode 100644 common/gnome-shell/3.18/light-assets/misc/calendar-arrow-left-hover.svg delete mode 100644 common/gnome-shell/3.18/light-assets/misc/calendar-arrow-left.svg delete mode 100644 common/gnome-shell/3.18/light-assets/misc/calendar-arrow-right-hover.svg delete mode 100644 common/gnome-shell/3.18/light-assets/misc/calendar-arrow-right.svg delete mode 100644 common/gnome-shell/3.18/light-assets/misc/message-active.svg delete mode 100644 common/gnome-shell/3.18/light-assets/misc/message-close-active.svg delete mode 100644 common/gnome-shell/3.18/light-assets/misc/message-close-hover.svg delete mode 100644 common/gnome-shell/3.18/light-assets/misc/message-close.svg delete mode 100644 common/gnome-shell/3.18/light-assets/misc/message-hover.svg delete mode 100644 common/gnome-shell/3.18/light-assets/misc/message.svg delete mode 100644 common/gnome-shell/3.18/light-assets/misc/modal.svg delete mode 100644 common/gnome-shell/3.18/light-assets/switch/switch-off.svg delete mode 100644 common/gnome-shell/3.18/light-assets/switch/switch-on.svg delete mode 100644 common/gnome-shell/3.18/sass/_colors.scss delete mode 100644 common/gnome-shell/3.18/sass/_common.scss delete mode 100644 common/gnome-shell/3.18/sass/_drawing.scss delete mode 100644 common/gnome-shell/3.18/sass/gnome-shell-dark.scss delete mode 100644 common/gnome-shell/3.18/sass/gnome-shell.scss delete mode 120000 common/gnome-shell/3.20 delete mode 120000 common/gnome-shell/3.22 delete mode 120000 common/gnome-shell/3.24 delete mode 100644 common/gtk-2.0/apps.rc delete mode 100644 common/gtk-2.0/assets-dark.svg delete mode 100644 common/gtk-2.0/assets-dark/arrow-down-insens.png delete mode 100644 common/gtk-2.0/assets-dark/arrow-down-prelight.png delete mode 100644 common/gtk-2.0/assets-dark/arrow-down-small-insens.png delete mode 100644 common/gtk-2.0/assets-dark/arrow-down-small-prelight.png delete mode 100644 common/gtk-2.0/assets-dark/arrow-down-small.png delete mode 100644 common/gtk-2.0/assets-dark/arrow-down.png delete mode 100644 common/gtk-2.0/assets-dark/arrow-left-insens.png delete mode 100644 common/gtk-2.0/assets-dark/arrow-left-prelight.png delete mode 100644 common/gtk-2.0/assets-dark/arrow-left.png delete mode 100644 common/gtk-2.0/assets-dark/arrow-right-insens.png delete mode 100644 common/gtk-2.0/assets-dark/arrow-right-prelight.png delete mode 100644 common/gtk-2.0/assets-dark/arrow-right.png delete mode 100644 common/gtk-2.0/assets-dark/arrow-up-insens.png delete mode 100644 common/gtk-2.0/assets-dark/arrow-up-prelight.png delete mode 100644 common/gtk-2.0/assets-dark/arrow-up-small-insens.png delete mode 100644 common/gtk-2.0/assets-dark/arrow-up-small-prelight.png delete mode 100644 common/gtk-2.0/assets-dark/arrow-up-small.png delete mode 100644 common/gtk-2.0/assets-dark/arrow-up.png delete mode 100644 common/gtk-2.0/assets-dark/button-active.png delete mode 100644 common/gtk-2.0/assets-dark/button-hover.png delete mode 100644 common/gtk-2.0/assets-dark/button-insensitive.png delete mode 100644 common/gtk-2.0/assets-dark/button.png delete mode 100644 common/gtk-2.0/assets-dark/checkbox-checked-insensitive.png delete mode 100644 common/gtk-2.0/assets-dark/checkbox-checked.png delete mode 100644 common/gtk-2.0/assets-dark/checkbox-unchecked-insensitive.png delete mode 100644 common/gtk-2.0/assets-dark/checkbox-unchecked.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-border-focus-rtl.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-border-focus.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-border-rtl.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-border.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-button-active-rtl.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-button-active.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-button-insensitive-rtl.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-button-insensitive.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-button-rtl.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-button.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-focus-notebook-rtl.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-focus-notebook.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-focus-rtl.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-focus.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-insensitive-notebook-rtl.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-insensitive-notebook.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-insensitive-rtl.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-insensitive.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-notebook-rtl.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-notebook.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry-rtl.png delete mode 100644 common/gtk-2.0/assets-dark/combo-entry.png delete mode 100644 common/gtk-2.0/assets-dark/down-background-disable-rtl.png delete mode 100644 common/gtk-2.0/assets-dark/down-background-disable.png delete mode 100644 common/gtk-2.0/assets-dark/down-background-rtl.png delete mode 100644 common/gtk-2.0/assets-dark/down-background.png delete mode 100644 common/gtk-2.0/assets-dark/entry-active-bg.png delete mode 100644 common/gtk-2.0/assets-dark/entry-active-notebook.png delete mode 100644 common/gtk-2.0/assets-dark/entry-active-toolbar.png delete mode 100644 common/gtk-2.0/assets-dark/entry-background-disabled.png delete mode 100644 common/gtk-2.0/assets-dark/entry-background.png delete mode 100644 common/gtk-2.0/assets-dark/entry-bg.png delete mode 100644 common/gtk-2.0/assets-dark/entry-border-active-bg.png delete mode 100644 common/gtk-2.0/assets-dark/entry-border-bg.png delete mode 100644 common/gtk-2.0/assets-dark/entry-disabled-bg.png delete mode 100644 common/gtk-2.0/assets-dark/entry-disabled-notebook.png delete mode 100644 common/gtk-2.0/assets-dark/entry-disabled-toolbar.png delete mode 100644 common/gtk-2.0/assets-dark/entry-notebook.png delete mode 100644 common/gtk-2.0/assets-dark/entry-toolbar.png delete mode 100644 common/gtk-2.0/assets-dark/focus-line.png delete mode 100644 common/gtk-2.0/assets-dark/frame-gap-end.png delete mode 100644 common/gtk-2.0/assets-dark/frame-gap-start.png delete mode 100644 common/gtk-2.0/assets-dark/frame.png delete mode 100644 common/gtk-2.0/assets-dark/handle-h.png delete mode 100644 common/gtk-2.0/assets-dark/handle-v.png delete mode 100644 common/gtk-2.0/assets-dark/inline-toolbar.png delete mode 100644 common/gtk-2.0/assets-dark/line-h.png delete mode 100644 common/gtk-2.0/assets-dark/line-v.png delete mode 100644 common/gtk-2.0/assets-dark/menu-arrow-prelight.png delete mode 100644 common/gtk-2.0/assets-dark/menu-arrow.png delete mode 100644 common/gtk-2.0/assets-dark/menu-checkbox-checked-insensitive.png delete mode 100644 common/gtk-2.0/assets-dark/menu-checkbox-checked-selected.png delete mode 100644 common/gtk-2.0/assets-dark/menu-checkbox-checked.png delete mode 100644 common/gtk-2.0/assets-dark/menu-checkbox-unchecked-insensitive.png delete mode 100644 common/gtk-2.0/assets-dark/menu-checkbox-unchecked-selected.png delete mode 100644 common/gtk-2.0/assets-dark/menu-checkbox-unchecked.png delete mode 100644 common/gtk-2.0/assets-dark/menu-radio-checked-insensitive.png delete mode 100644 common/gtk-2.0/assets-dark/menu-radio-checked-selected.png delete mode 100644 common/gtk-2.0/assets-dark/menu-radio-checked.png delete mode 100644 common/gtk-2.0/assets-dark/menu-radio-unchecked-insensitive.png delete mode 100644 common/gtk-2.0/assets-dark/menu-radio-unchecked-selected.png delete mode 100644 common/gtk-2.0/assets-dark/menu-radio-unchecked.png delete mode 100644 common/gtk-2.0/assets-dark/menubar.png delete mode 100644 common/gtk-2.0/assets-dark/menubar_button.png delete mode 100644 common/gtk-2.0/assets-dark/menuitem.png delete mode 100644 common/gtk-2.0/assets-dark/minus.png delete mode 100644 common/gtk-2.0/assets-dark/notebook-gap-horiz.png delete mode 100644 common/gtk-2.0/assets-dark/notebook-gap-vert.png delete mode 100644 common/gtk-2.0/assets-dark/notebook.png delete mode 100644 common/gtk-2.0/assets-dark/null.png delete mode 100644 common/gtk-2.0/assets-dark/plus.png delete mode 100644 common/gtk-2.0/assets-dark/progressbar.png delete mode 100644 common/gtk-2.0/assets-dark/progressbar_v.png delete mode 100644 common/gtk-2.0/assets-dark/radio-checked-insensitive.png delete mode 100644 common/gtk-2.0/assets-dark/radio-checked.png delete mode 100644 common/gtk-2.0/assets-dark/radio-unchecked-insensitive.png delete mode 100644 common/gtk-2.0/assets-dark/radio-unchecked.png delete mode 100644 common/gtk-2.0/assets-dark/slider-horiz-active.png delete mode 100644 common/gtk-2.0/assets-dark/slider-horiz-insens.png delete mode 100644 common/gtk-2.0/assets-dark/slider-horiz-prelight.png delete mode 100644 common/gtk-2.0/assets-dark/slider-horiz.png delete mode 100644 common/gtk-2.0/assets-dark/slider-insensitive.png delete mode 100644 common/gtk-2.0/assets-dark/slider-prelight.png delete mode 100644 common/gtk-2.0/assets-dark/slider-vert-active.png delete mode 100644 common/gtk-2.0/assets-dark/slider-vert-insens.png delete mode 100644 common/gtk-2.0/assets-dark/slider-vert-prelight.png delete mode 100644 common/gtk-2.0/assets-dark/slider-vert.png delete mode 100644 common/gtk-2.0/assets-dark/slider.png delete mode 100644 common/gtk-2.0/assets-dark/tab-bottom-active.png delete mode 100644 common/gtk-2.0/assets-dark/tab-left-active.png delete mode 100644 common/gtk-2.0/assets-dark/tab-right-active.png delete mode 100644 common/gtk-2.0/assets-dark/tab-top-active.png delete mode 100644 common/gtk-2.0/assets-dark/toolbar.png delete mode 100644 common/gtk-2.0/assets-dark/tree_header.png delete mode 100644 common/gtk-2.0/assets-dark/trough-horizontal-active.png delete mode 100644 common/gtk-2.0/assets-dark/trough-horizontal.png delete mode 100644 common/gtk-2.0/assets-dark/trough-progressbar.png delete mode 100644 common/gtk-2.0/assets-dark/trough-progressbar_v.png delete mode 100644 common/gtk-2.0/assets-dark/trough-scrollbar-horiz.png delete mode 100644 common/gtk-2.0/assets-dark/trough-scrollbar-vert.png delete mode 100644 common/gtk-2.0/assets-dark/trough-vertical-active.png delete mode 100644 common/gtk-2.0/assets-dark/trough-vertical.png delete mode 100644 common/gtk-2.0/assets-dark/up-background-disable-rtl.png delete mode 100644 common/gtk-2.0/assets-dark/up-background-disable.png delete mode 100644 common/gtk-2.0/assets-dark/up-background-rtl.png delete mode 100644 common/gtk-2.0/assets-dark/up-background.png delete mode 100644 common/gtk-2.0/assets.svg delete mode 100644 common/gtk-2.0/assets.txt delete mode 100644 common/gtk-2.0/assets/arrow-down-insens.png delete mode 100644 common/gtk-2.0/assets/arrow-down-prelight.png delete mode 100644 common/gtk-2.0/assets/arrow-down-small-insens.png delete mode 100644 common/gtk-2.0/assets/arrow-down-small-prelight.png delete mode 100644 common/gtk-2.0/assets/arrow-down-small.png delete mode 100644 common/gtk-2.0/assets/arrow-down.png delete mode 100644 common/gtk-2.0/assets/arrow-left-insens.png delete mode 100644 common/gtk-2.0/assets/arrow-left-prelight.png delete mode 100644 common/gtk-2.0/assets/arrow-left.png delete mode 100644 common/gtk-2.0/assets/arrow-right-insens.png delete mode 100644 common/gtk-2.0/assets/arrow-right-prelight.png delete mode 100644 common/gtk-2.0/assets/arrow-right.png delete mode 100644 common/gtk-2.0/assets/arrow-up-insens.png delete mode 100644 common/gtk-2.0/assets/arrow-up-prelight.png delete mode 100644 common/gtk-2.0/assets/arrow-up-small-insens.png delete mode 100644 common/gtk-2.0/assets/arrow-up-small-prelight.png delete mode 100644 common/gtk-2.0/assets/arrow-up-small.png delete mode 100644 common/gtk-2.0/assets/arrow-up.png delete mode 100644 common/gtk-2.0/assets/button-active.png delete mode 100644 common/gtk-2.0/assets/button-hover.png delete mode 100644 common/gtk-2.0/assets/button-insensitive.png delete mode 100644 common/gtk-2.0/assets/button.png delete mode 100644 common/gtk-2.0/assets/checkbox-checked-insensitive.png delete mode 100644 common/gtk-2.0/assets/checkbox-checked.png delete mode 100644 common/gtk-2.0/assets/checkbox-unchecked-insensitive.png delete mode 100644 common/gtk-2.0/assets/checkbox-unchecked.png delete mode 100644 common/gtk-2.0/assets/combo-entry-border-focus-rtl.png delete mode 100644 common/gtk-2.0/assets/combo-entry-border-focus.png delete mode 100644 common/gtk-2.0/assets/combo-entry-border-rtl.png delete mode 100644 common/gtk-2.0/assets/combo-entry-border.png delete mode 100644 common/gtk-2.0/assets/combo-entry-button-active-rtl.png delete mode 100644 common/gtk-2.0/assets/combo-entry-button-active.png delete mode 100644 common/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png delete mode 100644 common/gtk-2.0/assets/combo-entry-button-insensitive.png delete mode 100644 common/gtk-2.0/assets/combo-entry-button-rtl.png delete mode 100644 common/gtk-2.0/assets/combo-entry-button.png delete mode 100644 common/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png delete mode 100644 common/gtk-2.0/assets/combo-entry-focus-notebook.png delete mode 100644 common/gtk-2.0/assets/combo-entry-focus-rtl.png delete mode 100644 common/gtk-2.0/assets/combo-entry-focus.png delete mode 100644 common/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png delete mode 100644 common/gtk-2.0/assets/combo-entry-insensitive-notebook.png delete mode 100644 common/gtk-2.0/assets/combo-entry-insensitive-rtl.png delete mode 100644 common/gtk-2.0/assets/combo-entry-insensitive.png delete mode 100644 common/gtk-2.0/assets/combo-entry-notebook-rtl.png delete mode 100644 common/gtk-2.0/assets/combo-entry-notebook.png delete mode 100644 common/gtk-2.0/assets/combo-entry-rtl.png delete mode 100644 common/gtk-2.0/assets/combo-entry.png delete mode 100644 common/gtk-2.0/assets/down-background-disable-rtl.png delete mode 100644 common/gtk-2.0/assets/down-background-disable.png delete mode 100644 common/gtk-2.0/assets/down-background-rtl.png delete mode 100644 common/gtk-2.0/assets/down-background.png delete mode 100644 common/gtk-2.0/assets/entry-active-bg.png delete mode 100644 common/gtk-2.0/assets/entry-active-notebook.png delete mode 100644 common/gtk-2.0/assets/entry-active-toolbar.png delete mode 100644 common/gtk-2.0/assets/entry-background-disabled.png delete mode 100644 common/gtk-2.0/assets/entry-background.png delete mode 100644 common/gtk-2.0/assets/entry-bg.png delete mode 100644 common/gtk-2.0/assets/entry-border-active-bg.png delete mode 100644 common/gtk-2.0/assets/entry-border-bg.png delete mode 100644 common/gtk-2.0/assets/entry-disabled-bg.png delete mode 100644 common/gtk-2.0/assets/entry-disabled-notebook.png delete mode 100644 common/gtk-2.0/assets/entry-disabled-toolbar.png delete mode 100644 common/gtk-2.0/assets/entry-notebook.png delete mode 100644 common/gtk-2.0/assets/entry-toolbar.png delete mode 100644 common/gtk-2.0/assets/focus-line.png delete mode 100644 common/gtk-2.0/assets/frame-gap-end.png delete mode 100644 common/gtk-2.0/assets/frame-gap-start.png delete mode 100644 common/gtk-2.0/assets/frame.png delete mode 100644 common/gtk-2.0/assets/handle-h.png delete mode 100644 common/gtk-2.0/assets/handle-v.png delete mode 100644 common/gtk-2.0/assets/inline-toolbar.png delete mode 100644 common/gtk-2.0/assets/line-h.png delete mode 100644 common/gtk-2.0/assets/line-v.png delete mode 100644 common/gtk-2.0/assets/menu-arrow-prelight.png delete mode 100644 common/gtk-2.0/assets/menu-arrow.png delete mode 100644 common/gtk-2.0/assets/menu-checkbox-checked-insensitive.png delete mode 100644 common/gtk-2.0/assets/menu-checkbox-checked-selected.png delete mode 100644 common/gtk-2.0/assets/menu-checkbox-checked.png delete mode 100644 common/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png delete mode 100644 common/gtk-2.0/assets/menu-checkbox-unchecked-selected.png delete mode 100644 common/gtk-2.0/assets/menu-checkbox-unchecked.png delete mode 100644 common/gtk-2.0/assets/menu-radio-checked-insensitive.png delete mode 100644 common/gtk-2.0/assets/menu-radio-checked-selected.png delete mode 100644 common/gtk-2.0/assets/menu-radio-checked.png delete mode 100644 common/gtk-2.0/assets/menu-radio-unchecked-insensitive.png delete mode 100644 common/gtk-2.0/assets/menu-radio-unchecked-selected.png delete mode 100644 common/gtk-2.0/assets/menu-radio-unchecked.png delete mode 100644 common/gtk-2.0/assets/menubar.png delete mode 100644 common/gtk-2.0/assets/menubar_button.png delete mode 100644 common/gtk-2.0/assets/menuitem.png delete mode 100644 common/gtk-2.0/assets/minus.png delete mode 100644 common/gtk-2.0/assets/notebook-gap-horiz.png delete mode 100644 common/gtk-2.0/assets/notebook-gap-vert.png delete mode 100644 common/gtk-2.0/assets/notebook.png delete mode 100644 common/gtk-2.0/assets/null.png delete mode 100644 common/gtk-2.0/assets/plus.png delete mode 100644 common/gtk-2.0/assets/progressbar.png delete mode 100644 common/gtk-2.0/assets/progressbar_v.png delete mode 100644 common/gtk-2.0/assets/radio-checked-insensitive.png delete mode 100644 common/gtk-2.0/assets/radio-checked.png delete mode 100644 common/gtk-2.0/assets/radio-unchecked-insensitive.png delete mode 100644 common/gtk-2.0/assets/radio-unchecked.png delete mode 100644 common/gtk-2.0/assets/slider-horiz-active.png delete mode 100644 common/gtk-2.0/assets/slider-horiz-insens.png delete mode 100644 common/gtk-2.0/assets/slider-horiz-prelight.png delete mode 100644 common/gtk-2.0/assets/slider-horiz.png delete mode 100644 common/gtk-2.0/assets/slider-insensitive.png delete mode 100644 common/gtk-2.0/assets/slider-prelight.png delete mode 100644 common/gtk-2.0/assets/slider-vert-active.png delete mode 100644 common/gtk-2.0/assets/slider-vert-insens.png delete mode 100644 common/gtk-2.0/assets/slider-vert-prelight.png delete mode 100644 common/gtk-2.0/assets/slider-vert.png delete mode 100644 common/gtk-2.0/assets/slider.png delete mode 100644 common/gtk-2.0/assets/tab-bottom-active.png delete mode 100644 common/gtk-2.0/assets/tab-left-active.png delete mode 100644 common/gtk-2.0/assets/tab-right-active.png delete mode 100644 common/gtk-2.0/assets/tab-top-active.png delete mode 100644 common/gtk-2.0/assets/toolbar.png delete mode 100644 common/gtk-2.0/assets/tree_header.png delete mode 100644 common/gtk-2.0/assets/trough-horizontal-active.png delete mode 100644 common/gtk-2.0/assets/trough-horizontal.png delete mode 100644 common/gtk-2.0/assets/trough-progressbar.png delete mode 100644 common/gtk-2.0/assets/trough-progressbar_v.png delete mode 100644 common/gtk-2.0/assets/trough-scrollbar-horiz.png delete mode 100644 common/gtk-2.0/assets/trough-scrollbar-vert.png delete mode 100644 common/gtk-2.0/assets/trough-vertical-active.png delete mode 100644 common/gtk-2.0/assets/trough-vertical.png delete mode 100644 common/gtk-2.0/assets/up-background-disable-rtl.png delete mode 100644 common/gtk-2.0/assets/up-background-disable.png delete mode 100644 common/gtk-2.0/assets/up-background-rtl.png delete mode 100644 common/gtk-2.0/assets/up-background.png delete mode 100644 common/gtk-2.0/gtkrc delete mode 100644 common/gtk-2.0/gtkrc-dark delete mode 100644 common/gtk-2.0/gtkrc-darker delete mode 100644 common/gtk-2.0/main.rc delete mode 100644 common/gtk-2.0/menubar-toolbar/button-active.png delete mode 100644 common/gtk-2.0/menubar-toolbar/button-hover.png delete mode 100644 common/gtk-2.0/menubar-toolbar/button-insensitive.png delete mode 100644 common/gtk-2.0/menubar-toolbar/button.png delete mode 100644 common/gtk-2.0/menubar-toolbar/entry-active-toolbar-dark.png delete mode 100644 common/gtk-2.0/menubar-toolbar/entry-active-toolbar.png delete mode 100644 common/gtk-2.0/menubar-toolbar/entry-disabled-toolbar-dark.png delete mode 100644 common/gtk-2.0/menubar-toolbar/entry-disabled-toolbar.png delete mode 100644 common/gtk-2.0/menubar-toolbar/entry-toolbar-dark.png delete mode 100644 common/gtk-2.0/menubar-toolbar/entry-toolbar.png delete mode 100644 common/gtk-2.0/menubar-toolbar/menubar-dark.png delete mode 100644 common/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc delete mode 100644 common/gtk-2.0/menubar-toolbar/menubar-toolbar.rc delete mode 100644 common/gtk-2.0/menubar-toolbar/menubar.png delete mode 100644 common/gtk-2.0/menubar-toolbar/menubar_button-dark.png delete mode 100644 common/gtk-2.0/menubar-toolbar/menubar_button.png delete mode 100644 common/gtk-2.0/panel.rc delete mode 100755 common/gtk-2.0/render-assets.sh delete mode 100644 common/gtk-2.0/xfce-notify.rc delete mode 100644 common/gtk-3.0/3.14/assets.svg delete mode 100644 common/gtk-3.0/3.14/assets.txt delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-checked-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-checked-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-checked-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-checked-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-checked-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-checked-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-checked-insensitive.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-checked-insensitive@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-checked-selected.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-checked-selected@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-checked-selectionmode-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-checked-selectionmode-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-checked-selectionmode.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-checked-selectionmode@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-checked.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-checked@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-mixed-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-mixed-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-mixed-selected.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-mixed-selected@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-mixed.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-mixed@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-selectionmode-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-selectionmode-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-selectionmode.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-selectionmode@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-unchecked-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-unchecked-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-unchecked-selected.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-unchecked-selected@2.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-unchecked.png delete mode 100644 common/gtk-3.0/3.14/assets/checkbox-unchecked@2.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-checked-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-checked-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-checked-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-checked-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-checked-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-checked-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-checked-insensitive.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-checked-insensitive@2.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-checked-selected.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-checked-selected@2.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-checked.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-checked@2.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-mixed-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-mixed-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-mixed-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-mixed-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-mixed-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-mixed-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-mixed-insensitive.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-mixed-insensitive@2.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-mixed-selected.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-mixed-selected@2.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-mixed.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-mixed@2.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-unchecked-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-unchecked-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-unchecked-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-unchecked-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-unchecked-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-unchecked-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-unchecked-insensitive.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-unchecked-insensitive@2.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-unchecked-selected.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-unchecked-selected@2.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-unchecked.png delete mode 100644 common/gtk-3.0/3.14/assets/radio-unchecked@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active-header-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active-header-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active-header.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active-header@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active-insensitive-header-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active-insensitive-header-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active-insensitive-header.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active-insensitive-header@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active-insensitive.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active-insensitive@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active-selected.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active-selected@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-active@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-header-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-header-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-header.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-header@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-insensitive-header-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-insensitive-header-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-insensitive-header.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-insensitive-header@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-insensitive.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-insensitive@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-selected.png delete mode 100644 common/gtk-3.0/3.14/assets/switch-selected@2.png delete mode 100644 common/gtk-3.0/3.14/assets/switch.png delete mode 100644 common/gtk-3.0/3.14/assets/switch@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-close-active-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-close-active-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-close-active.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-close-active@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-close-backdrop-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-close-backdrop-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-close-backdrop.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-close-backdrop@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-close-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-close-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-close-hover-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-close-hover-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-close-hover.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-close-hover@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-close.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-close@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-maximize-active-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-maximize-active-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-maximize-active.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-maximize-active@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-maximize-backdrop-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-maximize-backdrop-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-maximize-backdrop.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-maximize-backdrop@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-maximize-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-maximize-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-maximize-hover-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-maximize-hover-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-maximize-hover.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-maximize-hover@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-maximize.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-maximize@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-minimize-active-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-minimize-active-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-minimize-active.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-minimize-active@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-minimize-backdrop-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-minimize-backdrop-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-minimize-backdrop.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-minimize-backdrop@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-minimize-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-minimize-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-minimize-hover-dark.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-minimize-hover-dark@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-minimize-hover.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-minimize-hover@2.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-minimize.png delete mode 100644 common/gtk-3.0/3.14/assets/titlebutton-minimize@2.png delete mode 100644 common/gtk-3.0/3.14/gtk-dark.css delete mode 100644 common/gtk-3.0/3.14/gtk-darker.css delete mode 100644 common/gtk-3.0/3.14/gtk-solid-dark.css delete mode 100644 common/gtk-3.0/3.14/gtk-solid-darker.css delete mode 100644 common/gtk-3.0/3.14/gtk-solid.css delete mode 100644 common/gtk-3.0/3.14/gtk.css delete mode 100755 common/gtk-3.0/3.14/render-assets.sh delete mode 100644 common/gtk-3.0/3.14/sass/_applications.scss delete mode 100644 common/gtk-3.0/3.14/sass/_colors-public.scss delete mode 100644 common/gtk-3.0/3.14/sass/_colors.scss delete mode 100644 common/gtk-3.0/3.14/sass/_common.scss delete mode 100644 common/gtk-3.0/3.14/sass/_drawing.scss delete mode 100644 common/gtk-3.0/3.14/sass/_granite.scss delete mode 100644 common/gtk-3.0/3.14/sass/_lightdm.scss delete mode 100644 common/gtk-3.0/3.14/sass/_transparent_widgets.scss delete mode 100644 common/gtk-3.0/3.14/sass/_unity.scss delete mode 100644 common/gtk-3.0/3.14/sass/gtk-dark.scss delete mode 100644 common/gtk-3.0/3.14/sass/gtk-darker.scss delete mode 100644 common/gtk-3.0/3.14/sass/gtk-solid-dark.scss delete mode 100644 common/gtk-3.0/3.14/sass/gtk-solid-darker.scss delete mode 100644 common/gtk-3.0/3.14/sass/gtk-solid.scss delete mode 100644 common/gtk-3.0/3.14/sass/gtk.scss delete mode 100644 common/gtk-3.0/3.16/assets.svg delete mode 100644 common/gtk-3.0/3.16/assets.txt delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-checked-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-checked-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-checked-insensitive.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-checked-insensitive@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-checked-selected.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-checked-selected@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-checked-selectionmode-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-checked-selectionmode-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-checked-selectionmode.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-checked-selectionmode@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-checked.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-checked@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-mixed-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-mixed-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-mixed-selected.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-mixed-selected@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-mixed.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-mixed@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-selectionmode-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-selectionmode-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-selectionmode.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-selectionmode@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-unchecked-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-unchecked-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-unchecked-selected.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-unchecked-selected@2.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-unchecked.png delete mode 100644 common/gtk-3.0/3.16/assets/checkbox-unchecked@2.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-checked-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-checked-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-checked-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-checked-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-checked-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-checked-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-checked-insensitive.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-checked-insensitive@2.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-checked-selected.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-checked-selected@2.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-checked.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-checked@2.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-mixed-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-mixed-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-mixed-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-mixed-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-mixed-insensitive.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-mixed-insensitive@2.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-mixed-selected.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-mixed-selected@2.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-mixed.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-mixed@2.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-unchecked-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-unchecked-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-unchecked-insensitive.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-unchecked-insensitive@2.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-unchecked-selected.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-unchecked-selected@2.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-unchecked.png delete mode 100644 common/gtk-3.0/3.16/assets/radio-unchecked@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active-header-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active-header-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active-header.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active-header@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active-insensitive-header-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active-insensitive-header-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active-insensitive-header.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active-insensitive-header@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active-insensitive.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active-insensitive@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active-selected.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active-selected@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-active@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-header-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-header-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-header.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-header@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-insensitive-header-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-insensitive-header-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-insensitive-header.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-insensitive-header@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-insensitive.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-insensitive@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-selected.png delete mode 100644 common/gtk-3.0/3.16/assets/switch-selected@2.png delete mode 100644 common/gtk-3.0/3.16/assets/switch.png delete mode 100644 common/gtk-3.0/3.16/assets/switch@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-close-active-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-close-active-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-close-active.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-close-active@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-close-backdrop-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-close-backdrop-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-close-backdrop.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-close-backdrop@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-close-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-close-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-close-hover.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-close-hover@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-close.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-close@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-maximize-active-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-maximize-active-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-maximize-active.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-maximize-active@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-maximize-backdrop-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-maximize-backdrop-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-maximize-backdrop.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-maximize-backdrop@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-maximize-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-maximize-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-maximize-hover-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-maximize-hover-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-maximize-hover.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-maximize-hover@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-maximize.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-maximize@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-minimize-active-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-minimize-active-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-minimize-active.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-minimize-active@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-minimize-backdrop-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-minimize-backdrop-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-minimize-backdrop.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-minimize-backdrop@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-minimize-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-minimize-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-minimize-hover-dark.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-minimize-hover-dark@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-minimize-hover.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-minimize-hover@2.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-minimize.png delete mode 100644 common/gtk-3.0/3.16/assets/titlebutton-minimize@2.png delete mode 100644 common/gtk-3.0/3.16/gtk-dark.css delete mode 100644 common/gtk-3.0/3.16/gtk-darker.css delete mode 100644 common/gtk-3.0/3.16/gtk-solid-dark.css delete mode 100644 common/gtk-3.0/3.16/gtk-solid-darker.css delete mode 100644 common/gtk-3.0/3.16/gtk-solid.css delete mode 100644 common/gtk-3.0/3.16/gtk.css delete mode 100755 common/gtk-3.0/3.16/render-assets.sh delete mode 100644 common/gtk-3.0/3.16/sass/_applications.scss delete mode 100644 common/gtk-3.0/3.16/sass/_colors-public.scss delete mode 100644 common/gtk-3.0/3.16/sass/_colors.scss delete mode 100644 common/gtk-3.0/3.16/sass/_common.scss delete mode 100644 common/gtk-3.0/3.16/sass/_drawing.scss delete mode 100644 common/gtk-3.0/3.16/sass/_granite.scss delete mode 100644 common/gtk-3.0/3.16/sass/_lightdm.scss delete mode 100644 common/gtk-3.0/3.16/sass/_transparent_widgets.scss delete mode 100644 common/gtk-3.0/3.16/sass/_unity.scss delete mode 100644 common/gtk-3.0/3.16/sass/gtk-dark.scss delete mode 100644 common/gtk-3.0/3.16/sass/gtk-darker.scss delete mode 100644 common/gtk-3.0/3.16/sass/gtk-solid-dark.scss delete mode 100644 common/gtk-3.0/3.16/sass/gtk-solid-darker.scss delete mode 100644 common/gtk-3.0/3.16/sass/gtk-solid.scss delete mode 100644 common/gtk-3.0/3.16/sass/gtk.scss delete mode 100644 common/gtk-3.0/3.18/assets.svg delete mode 100644 common/gtk-3.0/3.18/assets.txt delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-checked-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-checked-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-checked-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-checked-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-checked-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-checked-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-checked-insensitive.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-checked-insensitive@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-checked-selected.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-checked-selected@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-checked-selectionmode-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-checked-selectionmode-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-checked-selectionmode.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-checked-selectionmode@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-checked.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-checked@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-mixed-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-mixed-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-mixed-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-mixed-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-mixed-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-mixed-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-mixed-insensitive.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-mixed-insensitive@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-mixed-selected.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-mixed-selected@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-mixed.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-mixed@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-selectionmode-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-selectionmode-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-selectionmode.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-selectionmode@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-unchecked-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-unchecked-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-unchecked-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-unchecked-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-unchecked-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-unchecked-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-unchecked-insensitive.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-unchecked-insensitive@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-unchecked-selected.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-unchecked-selected@2.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-unchecked.png delete mode 100644 common/gtk-3.0/3.18/assets/checkbox-unchecked@2.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-checked-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-checked-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-checked-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-checked-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-checked-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-checked-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-checked-insensitive.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-checked-insensitive@2.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-checked-selected.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-checked-selected@2.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-checked.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-checked@2.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-mixed-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-mixed-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-mixed-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-mixed-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-mixed-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-mixed-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-mixed-insensitive.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-mixed-insensitive@2.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-mixed-selected.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-mixed-selected@2.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-mixed.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-mixed@2.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-unchecked-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-unchecked-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-unchecked-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-unchecked-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-unchecked-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-unchecked-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-unchecked-insensitive.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-unchecked-insensitive@2.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-unchecked-selected.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-unchecked-selected@2.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-unchecked.png delete mode 100644 common/gtk-3.0/3.18/assets/radio-unchecked@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active-header-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active-header-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active-header.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active-header@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active-insensitive-header-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active-insensitive-header-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active-insensitive-header.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active-insensitive-header@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active-insensitive.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active-insensitive@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active-selected.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active-selected@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-active@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-header-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-header-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-header.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-header@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-insensitive-header-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-insensitive-header-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-insensitive-header.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-insensitive-header@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-insensitive.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-insensitive@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-selected.png delete mode 100644 common/gtk-3.0/3.18/assets/switch-selected@2.png delete mode 100644 common/gtk-3.0/3.18/assets/switch.png delete mode 100644 common/gtk-3.0/3.18/assets/switch@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-close-active-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-close-active-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-close-active.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-close-active@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-close-backdrop-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-close-backdrop-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-close-backdrop.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-close-backdrop@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-close-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-close-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-close-hover-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-close-hover-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-close-hover.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-close-hover@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-close.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-close@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-maximize-active-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-maximize-active-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-maximize-active.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-maximize-active@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-maximize-backdrop-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-maximize-backdrop-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-maximize-backdrop.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-maximize-backdrop@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-maximize-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-maximize-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-maximize-hover-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-maximize-hover-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-maximize-hover.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-maximize-hover@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-maximize.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-maximize@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-minimize-active-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-minimize-active-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-minimize-active.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-minimize-active@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-minimize-backdrop-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-minimize-backdrop-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-minimize-backdrop.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-minimize-backdrop@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-minimize-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-minimize-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-minimize-hover-dark.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-minimize-hover-dark@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-minimize-hover.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-minimize-hover@2.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-minimize.png delete mode 100644 common/gtk-3.0/3.18/assets/titlebutton-minimize@2.png delete mode 100644 common/gtk-3.0/3.18/gtk-dark.css delete mode 100644 common/gtk-3.0/3.18/gtk-darker.css delete mode 100644 common/gtk-3.0/3.18/gtk-solid-dark.css delete mode 100644 common/gtk-3.0/3.18/gtk-solid-darker.css delete mode 100644 common/gtk-3.0/3.18/gtk-solid.css delete mode 100644 common/gtk-3.0/3.18/gtk.css delete mode 100755 common/gtk-3.0/3.18/render-assets.sh delete mode 100644 common/gtk-3.0/3.18/sass/_applications.scss delete mode 100644 common/gtk-3.0/3.18/sass/_colors-public.scss delete mode 100644 common/gtk-3.0/3.18/sass/_colors.scss delete mode 100644 common/gtk-3.0/3.18/sass/_common.scss delete mode 100644 common/gtk-3.0/3.18/sass/_drawing.scss delete mode 100644 common/gtk-3.0/3.18/sass/_granite.scss delete mode 100644 common/gtk-3.0/3.18/sass/_lightdm.scss delete mode 100644 common/gtk-3.0/3.18/sass/_transparent_widgets.scss delete mode 100644 common/gtk-3.0/3.18/sass/_unity.scss delete mode 100644 common/gtk-3.0/3.18/sass/gtk-dark.scss delete mode 100644 common/gtk-3.0/3.18/sass/gtk-darker.scss delete mode 100644 common/gtk-3.0/3.18/sass/gtk-solid-dark.scss delete mode 100644 common/gtk-3.0/3.18/sass/gtk-solid-darker.scss delete mode 100644 common/gtk-3.0/3.18/sass/gtk-solid.scss delete mode 100644 common/gtk-3.0/3.18/sass/gtk.scss delete mode 100644 common/gtk-3.0/3.20/assets.svg delete mode 100644 common/gtk-3.0/3.20/assets.txt delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-checked-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-checked-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-checked-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-checked-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-checked-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-checked-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-checked-insensitive.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-checked-insensitive@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-checked-selected.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-checked-selected@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-checked-selectionmode-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-checked-selectionmode-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-checked-selectionmode.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-checked-selectionmode@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-checked.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-checked@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-mixed-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-mixed-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-mixed-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-mixed-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-mixed-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-mixed-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-mixed-insensitive.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-mixed-insensitive@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-mixed-selected.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-mixed-selected@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-mixed.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-mixed@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-selectionmode-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-selectionmode-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-selectionmode.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-selectionmode@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-unchecked-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-unchecked-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-unchecked-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-unchecked-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-unchecked-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-unchecked-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-unchecked-insensitive.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-unchecked-insensitive@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-unchecked-selected.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-unchecked-selected@2.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-unchecked.png delete mode 100644 common/gtk-3.0/3.20/assets/checkbox-unchecked@2.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-checked-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-checked-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-checked-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-checked-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-checked-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-checked-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-checked-insensitive.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-checked-insensitive@2.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-checked-selected.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-checked-selected@2.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-checked.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-checked@2.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-mixed-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-mixed-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-mixed-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-mixed-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-mixed-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-mixed-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-mixed-insensitive.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-mixed-insensitive@2.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-mixed-selected.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-mixed-selected@2.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-mixed.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-mixed@2.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-unchecked-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-unchecked-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-unchecked-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-unchecked-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-unchecked-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-unchecked-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-unchecked-insensitive.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-unchecked-insensitive@2.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-unchecked-selected.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-unchecked-selected@2.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-unchecked.png delete mode 100644 common/gtk-3.0/3.20/assets/radio-unchecked@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active-header-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active-header-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active-header.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active-header@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active-insensitive-header-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active-insensitive-header-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active-insensitive-header.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active-insensitive-header@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active-insensitive.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active-insensitive@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active-selected.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active-selected@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-active@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-header-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-header-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-header.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-header@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-insensitive-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-insensitive-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-insensitive-header-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-insensitive-header-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-insensitive-header.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-insensitive-header@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-insensitive-selected.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-insensitive-selected@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-insensitive.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-insensitive@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-selected.png delete mode 100644 common/gtk-3.0/3.20/assets/switch-selected@2.png delete mode 100644 common/gtk-3.0/3.20/assets/switch.png delete mode 100644 common/gtk-3.0/3.20/assets/switch@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-close-active-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-close-active-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-close-active.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-close-active@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-close-backdrop-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-close-backdrop-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-close-backdrop.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-close-backdrop@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-close-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-close-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-close-hover-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-close-hover-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-close-hover.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-close-hover@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-close.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-close@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-maximize-active-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-maximize-active-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-maximize-active.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-maximize-active@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-maximize-backdrop-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-maximize-backdrop-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-maximize-backdrop.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-maximize-backdrop@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-maximize-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-maximize-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-maximize-hover-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-maximize-hover-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-maximize-hover.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-maximize-hover@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-maximize.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-maximize@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-minimize-active-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-minimize-active-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-minimize-active.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-minimize-active@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-minimize-backdrop-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-minimize-backdrop-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-minimize-backdrop.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-minimize-backdrop@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-minimize-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-minimize-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-minimize-hover-dark.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-minimize-hover-dark@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-minimize-hover.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-minimize-hover@2.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-minimize.png delete mode 100644 common/gtk-3.0/3.20/assets/titlebutton-minimize@2.png delete mode 100644 common/gtk-3.0/3.20/gtk-dark.css delete mode 100644 common/gtk-3.0/3.20/gtk-darker.css delete mode 100644 common/gtk-3.0/3.20/gtk-solid-dark.css delete mode 100644 common/gtk-3.0/3.20/gtk-solid-darker.css delete mode 100644 common/gtk-3.0/3.20/gtk-solid.css delete mode 100644 common/gtk-3.0/3.20/gtk.css delete mode 100755 common/gtk-3.0/3.20/render-assets.sh delete mode 100644 common/gtk-3.0/3.20/sass/_applications.scss delete mode 100644 common/gtk-3.0/3.20/sass/_colors-public.scss delete mode 100644 common/gtk-3.0/3.20/sass/_colors.scss delete mode 100644 common/gtk-3.0/3.20/sass/_common.scss delete mode 100644 common/gtk-3.0/3.20/sass/_drawing.scss delete mode 100644 common/gtk-3.0/3.20/sass/_granite.scss delete mode 100644 common/gtk-3.0/3.20/sass/_lightdm.scss delete mode 100644 common/gtk-3.0/3.20/sass/_transparent_widgets.scss delete mode 100644 common/gtk-3.0/3.20/sass/_unity.scss delete mode 100644 common/gtk-3.0/3.20/sass/gtk-dark.scss delete mode 100644 common/gtk-3.0/3.20/sass/gtk-darker.scss delete mode 100644 common/gtk-3.0/3.20/sass/gtk-solid-dark.scss delete mode 100644 common/gtk-3.0/3.20/sass/gtk-solid-darker.scss delete mode 100644 common/gtk-3.0/3.20/sass/gtk-solid.scss delete mode 100644 common/gtk-3.0/3.20/sass/gtk.scss delete mode 120000 common/gtk-3.0/3.22 delete mode 120000 common/gtk-3.0/3.24 delete mode 100644 common/gtk-3.0/thumbnail-dark.png delete mode 100644 common/gtk-3.0/thumbnail.png delete mode 100644 common/index.theme delete mode 100644 common/index.theme-dark delete mode 100644 common/index.theme-darker delete mode 100644 common/metacity-1/button-bg.svg delete mode 100644 common/metacity-1/button-border.svg delete mode 100644 common/metacity-1/close-icon.svg delete mode 100644 common/metacity-1/max-icon.svg delete mode 100644 common/metacity-1/metacity-theme-1-dark.xml delete mode 100644 common/metacity-1/metacity-theme-1.xml delete mode 100644 common/metacity-1/metacity-theme-2-dark.xml delete mode 100644 common/metacity-1/metacity-theme-2.xml delete mode 100644 common/metacity-1/metacity-theme-3.xml delete mode 100644 common/metacity-1/min-icon.svg delete mode 100644 common/metacity-1/thumbnail-dark.png delete mode 100644 common/metacity-1/thumbnail.png delete mode 100644 common/unity/close.svg delete mode 100644 common/unity/close_dash.svg delete mode 100644 common/unity/close_dash_disabled.svg delete mode 100644 common/unity/close_dash_prelight.svg delete mode 100644 common/unity/close_dash_pressed.svg delete mode 100644 common/unity/close_focused_normal.svg delete mode 100644 common/unity/close_focused_prelight.svg delete mode 100644 common/unity/close_focused_pressed.svg delete mode 100644 common/unity/close_unfocused.svg delete mode 100644 common/unity/close_unfocused_prelight.svg delete mode 100644 common/unity/close_unfocused_pressed.svg delete mode 100644 common/unity/dash/close_dash.svg delete mode 100644 common/unity/dash/close_dash_disabled.svg delete mode 100644 common/unity/dash/close_dash_prelight.svg delete mode 100644 common/unity/dash/close_dash_pressed.svg delete mode 100644 common/unity/dash/maximize_dash.svg delete mode 100644 common/unity/dash/maximize_dash_disabled.svg delete mode 100644 common/unity/dash/maximize_dash_prelight.svg delete mode 100644 common/unity/dash/maximize_dash_pressed.svg delete mode 100644 common/unity/dash/minimize_dash.svg delete mode 100644 common/unity/dash/minimize_dash_disabled.svg delete mode 100644 common/unity/dash/minimize_dash_prelight.svg delete mode 100644 common/unity/dash/minimize_dash_pressed.svg delete mode 100644 common/unity/launcher_arrow_ltr_19.svg delete mode 100644 common/unity/launcher_arrow_ltr_37.svg delete mode 100644 common/unity/launcher_arrow_outline_ltr_19.svg delete mode 100644 common/unity/launcher_arrow_outline_ltr_37.svg delete mode 100644 common/unity/launcher_arrow_outline_rtl_19.svg delete mode 100644 common/unity/launcher_arrow_outline_rtl_37.svg delete mode 100644 common/unity/launcher_arrow_rtl_19.svg delete mode 100644 common/unity/launcher_arrow_rtl_37.svg delete mode 100644 common/unity/launcher_icon_back_150.svg delete mode 100644 common/unity/launcher_icon_back_54.svg delete mode 100644 common/unity/launcher_icon_edge_150.svg delete mode 100644 common/unity/launcher_icon_edge_54.svg delete mode 100644 common/unity/launcher_icon_glow_200.svg delete mode 100644 common/unity/launcher_icon_glow_62.svg delete mode 100644 common/unity/launcher_icon_selected_back_150.svg delete mode 100644 common/unity/launcher_icon_selected_back_54.svg delete mode 100644 common/unity/launcher_icon_shadow_200.svg delete mode 100644 common/unity/launcher_icon_shadow_62.svg delete mode 100644 common/unity/launcher_icon_shine_150.svg delete mode 100644 common/unity/launcher_icon_shine_54.svg delete mode 100644 common/unity/launcher_pip_ltr_19.svg delete mode 100644 common/unity/launcher_pip_ltr_37.svg delete mode 100644 common/unity/launcher_pip_rtl_19.svg delete mode 100644 common/unity/launcher_pip_rtl_37.svg delete mode 100644 common/unity/maximize.svg delete mode 100644 common/unity/maximize_dash.svg delete mode 100644 common/unity/maximize_dash_disabled.svg delete mode 100644 common/unity/maximize_dash_prelight.svg delete mode 100644 common/unity/maximize_dash_pressed.svg delete mode 100644 common/unity/maximize_focused_normal.svg delete mode 100644 common/unity/maximize_focused_prelight.svg delete mode 100644 common/unity/maximize_focused_pressed.svg delete mode 100644 common/unity/maximize_unfocused.svg delete mode 100644 common/unity/maximize_unfocused_prelight.svg delete mode 100644 common/unity/maximize_unfocused_pressed.svg delete mode 100644 common/unity/minimize.svg delete mode 100644 common/unity/minimize_dash.svg delete mode 100644 common/unity/minimize_dash_disabled.svg delete mode 100644 common/unity/minimize_dash_prelight.svg delete mode 100644 common/unity/minimize_dash_pressed.svg delete mode 100644 common/unity/minimize_focused_normal.svg delete mode 100644 common/unity/minimize_focused_prelight.svg delete mode 100644 common/unity/minimize_focused_pressed.svg delete mode 100644 common/unity/minimize_unfocused.svg delete mode 100644 common/unity/minimize_unfocused_prelight.svg delete mode 100644 common/unity/minimize_unfocused_pressed.svg delete mode 100644 common/unity/sheet_style_close_focused.svg delete mode 100644 common/unity/sheet_style_close_focused_prelight.svg delete mode 100644 common/unity/sheet_style_close_focused_pressed.svg delete mode 100644 common/unity/unmaximize.svg delete mode 100644 common/unity/unmaximize_dash.svg delete mode 100644 common/unity/unmaximize_dash_disabled.svg delete mode 100644 common/unity/unmaximize_dash_prelight.svg delete mode 100644 common/unity/unmaximize_dash_pressed.svg delete mode 100644 common/unity/unmaximize_focused_normal.svg delete mode 100644 common/unity/unmaximize_focused_prelight.svg delete mode 100644 common/unity/unmaximize_focused_pressed.svg delete mode 100644 common/unity/unmaximize_unfocused.svg delete mode 100644 common/unity/unmaximize_unfocused_prelight.svg delete mode 100644 common/unity/unmaximize_unfocused_pressed.svg delete mode 100644 common/unity/window-buttons-dark/close.svg delete mode 100644 common/unity/window-buttons-dark/close_prelight.svg delete mode 100644 common/unity/window-buttons-dark/close_pressed.svg delete mode 100644 common/unity/window-buttons-dark/close_unfocused.svg delete mode 100644 common/unity/window-buttons-dark/maximize.svg delete mode 100644 common/unity/window-buttons-dark/maximize_prelight.svg delete mode 100644 common/unity/window-buttons-dark/maximize_pressed.svg delete mode 100644 common/unity/window-buttons-dark/maximize_unfocused.svg delete mode 100644 common/unity/window-buttons-dark/minimize.svg delete mode 100644 common/unity/window-buttons-dark/minimize_prelight.svg delete mode 100644 common/unity/window-buttons-dark/minimize_pressed.svg delete mode 100644 common/unity/window-buttons-dark/minimize_unfocused.svg delete mode 100644 common/unity/window-buttons/close.svg delete mode 100644 common/unity/window-buttons/close_prelight.svg delete mode 100644 common/unity/window-buttons/close_pressed.svg delete mode 100644 common/unity/window-buttons/close_unfocused.svg delete mode 100644 common/unity/window-buttons/maximize.svg delete mode 100644 common/unity/window-buttons/maximize_prelight.svg delete mode 100644 common/unity/window-buttons/maximize_pressed.svg delete mode 100644 common/unity/window-buttons/maximize_unfocused.svg delete mode 100644 common/unity/window-buttons/minimize.svg delete mode 100644 common/unity/window-buttons/minimize_prelight.svg delete mode 100644 common/unity/window-buttons/minimize_pressed.svg delete mode 100644 common/unity/window-buttons/minimize_unfocused.svg delete mode 100644 common/xfwm4-dark/close-active.xpm delete mode 100644 common/xfwm4-dark/close-inactive.xpm delete mode 100644 common/xfwm4-dark/close-prelight.xpm delete mode 100644 common/xfwm4-dark/close-pressed.xpm delete mode 100644 common/xfwm4-dark/hide-active.xpm delete mode 100644 common/xfwm4-dark/hide-inactive.xpm delete mode 100644 common/xfwm4-dark/hide-prelight.xpm delete mode 100644 common/xfwm4-dark/hide-pressed.xpm delete mode 100644 common/xfwm4-dark/maximize-active.xpm delete mode 100644 common/xfwm4-dark/maximize-inactive.xpm delete mode 100644 common/xfwm4-dark/maximize-prelight.xpm delete mode 100644 common/xfwm4-dark/maximize-pressed.xpm delete mode 100644 common/xfwm4-dark/menu-active.xpm delete mode 100644 common/xfwm4-dark/menu-inactive.xpm delete mode 100644 common/xfwm4-dark/menu-pressed.xpm delete mode 100644 common/xfwm4-dark/shade-active.xpm delete mode 100644 common/xfwm4-dark/shade-inactive.xpm delete mode 100644 common/xfwm4-dark/shade-pressed.xpm delete mode 100644 common/xfwm4-dark/stick-active.xpm delete mode 100644 common/xfwm4-dark/stick-inactive.xpm delete mode 100644 common/xfwm4-dark/stick-pressed.xpm delete mode 100644 common/xfwm4-dark/title-1-active.xpm delete mode 100644 common/xfwm4-dark/title-1-inactive.xpm delete mode 100644 common/xfwm4-dark/title-2-active.xpm delete mode 100644 common/xfwm4-dark/title-2-inactive.xpm delete mode 100644 common/xfwm4-dark/title-3-active.xpm delete mode 100644 common/xfwm4-dark/title-3-inactive.xpm delete mode 100644 common/xfwm4-dark/title-4-active.xpm delete mode 100644 common/xfwm4-dark/title-4-inactive.xpm delete mode 100644 common/xfwm4-dark/title-5-active.xpm delete mode 100644 common/xfwm4-dark/title-5-inactive.xpm delete mode 100644 common/xfwm4-dark/top-left-active.xpm delete mode 100644 common/xfwm4-dark/top-left-inactive.xpm delete mode 100644 common/xfwm4-dark/top-right-active.xpm delete mode 100644 common/xfwm4-dark/top-right-inactive.xpm delete mode 100644 common/xfwm4/assets-dark.svg delete mode 100644 common/xfwm4/assets-dark/bottom-active.png delete mode 100644 common/xfwm4/assets-dark/bottom-inactive.png delete mode 100644 common/xfwm4/assets-dark/bottom-left-active.png delete mode 100644 common/xfwm4/assets-dark/bottom-left-inactive.png delete mode 100644 common/xfwm4/assets-dark/bottom-right-active.png delete mode 100644 common/xfwm4/assets-dark/bottom-right-inactive.png delete mode 100644 common/xfwm4/assets-dark/close-active.png delete mode 100644 common/xfwm4/assets-dark/close-inactive.png delete mode 100644 common/xfwm4/assets-dark/close-prelight.png delete mode 100644 common/xfwm4/assets-dark/close-pressed.png delete mode 100644 common/xfwm4/assets-dark/hide-active.png delete mode 100644 common/xfwm4/assets-dark/hide-inactive.png delete mode 100644 common/xfwm4/assets-dark/hide-prelight.png delete mode 100644 common/xfwm4/assets-dark/hide-pressed.png delete mode 100644 common/xfwm4/assets-dark/left-active.png delete mode 100644 common/xfwm4/assets-dark/left-inactive.png delete mode 100644 common/xfwm4/assets-dark/maximize-active.png delete mode 100644 common/xfwm4/assets-dark/maximize-inactive.png delete mode 100644 common/xfwm4/assets-dark/maximize-prelight.png delete mode 100644 common/xfwm4/assets-dark/maximize-pressed.png delete mode 100644 common/xfwm4/assets-dark/menu-active.png delete mode 100644 common/xfwm4/assets-dark/menu-inactive.png delete mode 100644 common/xfwm4/assets-dark/menu-pressed.png delete mode 100644 common/xfwm4/assets-dark/right-active.png delete mode 100644 common/xfwm4/assets-dark/right-inactive.png delete mode 100644 common/xfwm4/assets-dark/shade-active.png delete mode 100644 common/xfwm4/assets-dark/shade-inactive.png delete mode 100644 common/xfwm4/assets-dark/shade-pressed.png delete mode 100644 common/xfwm4/assets-dark/stick-active.png delete mode 100644 common/xfwm4/assets-dark/stick-inactive.png delete mode 100644 common/xfwm4/assets-dark/stick-pressed.png delete mode 100644 common/xfwm4/assets-dark/title-1-active.png delete mode 100644 common/xfwm4/assets-dark/title-1-inactive.png delete mode 100644 common/xfwm4/assets-dark/title-2-active.png delete mode 100644 common/xfwm4/assets-dark/title-2-inactive.png delete mode 100644 common/xfwm4/assets-dark/title-3-active.png delete mode 100644 common/xfwm4/assets-dark/title-3-inactive.png delete mode 100644 common/xfwm4/assets-dark/title-4-active.png delete mode 100644 common/xfwm4/assets-dark/title-4-inactive.png delete mode 100644 common/xfwm4/assets-dark/title-5-active.png delete mode 100644 common/xfwm4/assets-dark/title-5-inactive.png delete mode 100644 common/xfwm4/assets-dark/top-left-active.png delete mode 100644 common/xfwm4/assets-dark/top-left-inactive.png delete mode 100644 common/xfwm4/assets-dark/top-right-active.png delete mode 100644 common/xfwm4/assets-dark/top-right-inactive.png delete mode 100644 common/xfwm4/assets.svg delete mode 100644 common/xfwm4/assets.txt delete mode 100644 common/xfwm4/assets/bottom-active.png delete mode 100644 common/xfwm4/assets/bottom-inactive.png delete mode 100644 common/xfwm4/assets/bottom-left-active.png delete mode 100644 common/xfwm4/assets/bottom-left-inactive.png delete mode 100644 common/xfwm4/assets/bottom-right-active.png delete mode 100644 common/xfwm4/assets/bottom-right-inactive.png delete mode 100644 common/xfwm4/assets/close-active.png delete mode 100644 common/xfwm4/assets/close-inactive.png delete mode 100644 common/xfwm4/assets/close-prelight.png delete mode 100644 common/xfwm4/assets/close-pressed.png delete mode 100644 common/xfwm4/assets/hide-active.png delete mode 100644 common/xfwm4/assets/hide-inactive.png delete mode 100644 common/xfwm4/assets/hide-prelight.png delete mode 100644 common/xfwm4/assets/hide-pressed.png delete mode 100644 common/xfwm4/assets/left-active.png delete mode 100644 common/xfwm4/assets/left-inactive.png delete mode 100644 common/xfwm4/assets/maximize-active.png delete mode 100644 common/xfwm4/assets/maximize-inactive.png delete mode 100644 common/xfwm4/assets/maximize-prelight.png delete mode 100644 common/xfwm4/assets/maximize-pressed.png delete mode 100644 common/xfwm4/assets/menu-active.png delete mode 100644 common/xfwm4/assets/menu-inactive.png delete mode 100644 common/xfwm4/assets/menu-pressed.png delete mode 100644 common/xfwm4/assets/right-active.png delete mode 100644 common/xfwm4/assets/right-inactive.png delete mode 100644 common/xfwm4/assets/shade-active.png delete mode 100644 common/xfwm4/assets/shade-inactive.png delete mode 100644 common/xfwm4/assets/shade-pressed.png delete mode 100644 common/xfwm4/assets/stick-active.png delete mode 100644 common/xfwm4/assets/stick-inactive.png delete mode 100644 common/xfwm4/assets/stick-pressed.png delete mode 100644 common/xfwm4/assets/title-1-active.png delete mode 100644 common/xfwm4/assets/title-1-inactive.png delete mode 100644 common/xfwm4/assets/title-2-active.png delete mode 100644 common/xfwm4/assets/title-2-inactive.png delete mode 100644 common/xfwm4/assets/title-3-active.png delete mode 100644 common/xfwm4/assets/title-3-inactive.png delete mode 100644 common/xfwm4/assets/title-4-active.png delete mode 100644 common/xfwm4/assets/title-4-inactive.png delete mode 100644 common/xfwm4/assets/title-5-active.png delete mode 100644 common/xfwm4/assets/title-5-inactive.png delete mode 100644 common/xfwm4/assets/top-left-active.png delete mode 100644 common/xfwm4/assets/top-left-inactive.png delete mode 100644 common/xfwm4/assets/top-right-active.png delete mode 100644 common/xfwm4/assets/top-right-inactive.png delete mode 100644 common/xfwm4/close-active.xpm delete mode 100644 common/xfwm4/close-inactive.xpm delete mode 100644 common/xfwm4/close-prelight.xpm delete mode 100644 common/xfwm4/close-pressed.xpm delete mode 100644 common/xfwm4/hide-active.xpm delete mode 100644 common/xfwm4/hide-inactive.xpm delete mode 100644 common/xfwm4/hide-prelight.xpm delete mode 100644 common/xfwm4/hide-pressed.xpm delete mode 100644 common/xfwm4/maximize-active.xpm delete mode 100644 common/xfwm4/maximize-inactive.xpm delete mode 100644 common/xfwm4/maximize-prelight.xpm delete mode 100644 common/xfwm4/maximize-pressed.xpm delete mode 100644 common/xfwm4/menu-active.xpm delete mode 100644 common/xfwm4/menu-inactive.xpm delete mode 100644 common/xfwm4/menu-pressed.xpm delete mode 100755 common/xfwm4/render-assets.sh delete mode 100644 common/xfwm4/shade-active.xpm delete mode 100644 common/xfwm4/shade-inactive.xpm delete mode 100644 common/xfwm4/shade-pressed.xpm delete mode 100644 common/xfwm4/stick-active.xpm delete mode 100644 common/xfwm4/stick-inactive.xpm delete mode 100644 common/xfwm4/stick-pressed.xpm delete mode 100644 common/xfwm4/themerc delete mode 100644 common/xfwm4/themerc-dark delete mode 100644 common/xfwm4/title-1-active.xpm delete mode 100644 common/xfwm4/title-1-inactive.xpm delete mode 100644 common/xfwm4/title-2-active.xpm delete mode 100644 common/xfwm4/title-2-inactive.xpm delete mode 100644 common/xfwm4/title-3-active.xpm delete mode 100644 common/xfwm4/title-3-inactive.xpm delete mode 100644 common/xfwm4/title-4-active.xpm delete mode 100644 common/xfwm4/title-4-inactive.xpm delete mode 100644 common/xfwm4/title-5-active.xpm delete mode 100644 configure.ac delete mode 100644 extra/Chrome/arc-dark-theme.crx delete mode 100644 extra/Chrome/arc-darker-theme.crx delete mode 100644 extra/Chrome/solarc-dark-theme/images/theme_frame.png delete mode 100644 extra/Chrome/solarc-dark-theme/images/theme_tab_background.png delete mode 100644 extra/Chrome/solarc-dark-theme/images/theme_toolbar.png delete mode 100644 extra/Chrome/solarc-dark-theme/manifest.json delete mode 100644 extra/Chrome/solarc-darker-theme/images/theme_frame.png delete mode 100644 extra/Chrome/solarc-darker-theme/images/theme_toolbar.png delete mode 100644 extra/Chrome/solarc-darker-theme/manifest.json delete mode 100644 extra/Chrome/solarc-theme.crx delete mode 100644 extra/Chrome/solarc-theme/images/theme_frame.png delete mode 100644 extra/Chrome/solarc-theme/images/theme_toolbar.png delete mode 100644 extra/Chrome/solarc-theme/manifest.json delete mode 100644 extra/Makefile.am delete mode 100644 extra/SolArc-Plank/dock.theme delete mode 100644 gulpfile.js delete mode 100644 images/preview-complete.png delete mode 100644 images/preview-dark.png delete mode 100644 images/preview-darker.png delete mode 100644 images/preview-light.png delete mode 100644 m4/arc-enable.m4 delete mode 100644 m4/arc-gnome.m4 delete mode 100644 package.json delete mode 100755 solarc-theme-upgrade diff --git a/AUTHORS b/AUTHORS deleted file mode 100644 index 4fb529a..0000000 --- a/AUTHORS +++ /dev/null @@ -1,2 +0,0 @@ -See a list of contributors here -https://github.com/horst3180/Arc-theme/graphs/contributors diff --git a/HACKING.md b/HACKING.md deleted file mode 100644 index efea8b6..0000000 --- a/HACKING.md +++ /dev/null @@ -1,45 +0,0 @@ -This theme uses node-sass/libsass to process the various .scss files. Never edit any of the .css files manually. - -#### Editing the CSS based themes in the `common` directory (cinnamon, gnome-shell, gtk-3.0) - -* Install `nvm` (https://github.com/creationix/nvm) - -* Close and reopen your terminal - -* Run `nvm i` and `npm i` from this directory - -* Install `gulp` with `npm i -g gulp` - -* Edit the `common/*/sass/*.scss` files - -* Regenerate all .css files by executing `gulp` from the directory containing `gulpfile.js`. Alternatively execute `gulp --cwd` from any subdirectory containing a folder called `sass` to regenerate the .css files within that specific subdirectory only. - --- - -#### Editing the GTK 2 themes - -* Go to `common/gtk-2.0` - -* The colors and includes are defined in `gtkrc`, `gtkrc-dark` and `gtkrc-darker` for each theme variant - -* `main.rc` contains the major part of the theme - -* `panel.rc` contains the panel styling for Xfce and MATE - -* `apps.rc` contains some application specific rules - -Because this theme is heavily based on the pixmap engine, a lot of the styling comes from the images in the `assets` and `assets-dark` folders. Don't edit these images directly. See the next section. - --- - -#### Editing the images for the GTK 2 and GTK 3 themes - -* Go to the `common/gtk-2.0` or `common/gtk-3.0/$gtk-version` directory - -* Open the `assets.svg` or `assets-dark.svg` file in inkscape. Each object in the .svg file corresponds to an image in the `assets` or `assets-dark` folder - -* Find the object you want to edit and make your changes. Important: Don't change the object id! - -* Save `assets.svg` and delete the images corresponding to the edited .svg objects from the `assets` folder (or just delete everything in the `assets` folder) - -* Run `./render-assets.sh` or `./render-dark-assets.sh` from a terminal diff --git a/Makefile.am b/Makefile.am deleted file mode 100644 index 3ac2276..0000000 --- a/Makefile.am +++ /dev/null @@ -1,11 +0,0 @@ -ACLOCAL_AMFLAGS = -I m4 - -EXTRA_DIST = \ - README.md \ - HACKING.md \ - autogen.sh \ - gulpfile.js \ - package.json \ - .nvmrc - -SUBDIRS = common extra diff --git a/autogen.sh b/autogen.sh deleted file mode 100755 index 0e36e12..0000000 --- a/autogen.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh - -test -z "$srcdir" && srcdir=$(dirname "$0") -test -z "$srcdir" && srcdir=. - -cwd=$(pwd) -cd "$srcdir" - -mkdir -p m4 -autoreconf --verbose --force --install || exit $? - -cd "$cwd" -"$srcdir/configure" $@ diff --git a/common/Makefile.am b/common/Makefile.am deleted file mode 100644 index bfefecb..0000000 --- a/common/Makefile.am +++ /dev/null @@ -1,318 +0,0 @@ -if !ENABLE_TRANSPARENCY -themedir = $(datadir)/themes/SolArc-solid -themedarkerdir = $(datadir)/themes/SolArc-Darker-solid -themedarkdir = $(datadir)/themes/SolArc-Dark-solid -else -themedir = $(datadir)/themes/SolArc -themedarkerdir = $(datadir)/themes/SolArc-Darker -themedarkdir = $(datadir)/themes/SolArc-Dark -endif - -ithemedir = $(DESTDIR)$(themedir) -ithemedarkerdir = $(DESTDIR)$(themedarkerdir) -ithemedarkdir = $(DESTDIR)$(themedarkdir) - -install-exec-hook: - -install-data-local: - -if ENABLE_LIGHT - $(MKDIR_P) $(ithemedir) - cp $(srcdir)/index.theme $(ithemedir) -endif # ENABLE_LIGHT - -if ENABLE_DARKER - $(MKDIR_P) $(ithemedarkerdir) - cp $(srcdir)/index.theme-darker $(ithemedarkerdir)/index.theme -endif # ENABLE_LIGHT - -if ENABLE_DARK - $(MKDIR_P) $(ithemedarkdir) - cp $(srcdir)/index.theme-dark $(ithemedarkdir)/index.theme -endif # ENABLE_DARK - - -if ENABLE_CINNAMON - $(MKDIR_P) $(ithemedir)/cinnamon - - cd $(srcdir)/cinnamon && cp thumbnail.png $(ithemedir)/cinnamon - - cd $(srcdir)/cinnamon && cp -R \ - common-assets \ - light-assets \ - cinnamon.css \ - $(ithemedir)/cinnamon - -if ENABLE_DARK - $(MKDIR_P) $(ithemedarkdir)/cinnamon - - cd $(srcdir)/cinnamon && cp thumbnail-dark.png $(ithemedarkdir)/cinnamon/thumbnail.png - - cd $(srcdir)/cinnamon && cp -R \ - common-assets \ - dark-assets \ - $(ithemedarkdir)/cinnamon - - cd $(srcdir)/cinnamon && cp -R \ - cinnamon-dark.css \ - $(ithemedarkdir)/cinnamon/cinnamon.css -endif # ENABLE_DARK - -endif # ENABLE_GNOME_SHELL - - -if ENABLE_GNOME_SHELL - $(MKDIR_P) $(ithemedir)/gnome-shell - - cd $(srcdir)/gnome-shell/$(GNOME_VERSION) && cp -R \ - common-assets \ - light-assets \ - gnome-shell.css \ - $(ithemedir)/gnome-shell - -if ENABLE_DARK - $(MKDIR_P) $(ithemedarkdir)/gnome-shell - - cd $(srcdir)/gnome-shell/$(GNOME_VERSION) && cp -R \ - common-assets \ - dark-assets \ - $(ithemedarkdir)/gnome-shell - - cd $(srcdir)/gnome-shell/$(GNOME_VERSION) && cp -R \ - gnome-shell-dark.css \ - $(ithemedarkdir)/gnome-shell/gnome-shell.css -endif # ENABLE_DARK - -endif # ENABLE_GNOME_SHELL - - -if ENABLE_GTK2 - -if ENABLE_LIGHT - $(MKDIR_P) $(ithemedir)/gtk-2.0 - - cd $(srcdir)/gtk-2.0 && cp -R \ - assets \ - menubar-toolbar \ - *.rc \ - gtkrc \ - $(ithemedir)/gtk-2.0 -endif # ENABLE_LIGHT - -if ENABLE_DARKER - $(MKDIR_P) $(ithemedarkerdir)/gtk-2.0 - - cd $(srcdir)/gtk-2.0 && cp -R \ - assets \ - menubar-toolbar \ - *.rc \ - $(ithemedarkerdir)/gtk-2.0 - - cd $(srcdir)/gtk-2.0 && cp -R \ - gtkrc-darker \ - $(ithemedarkerdir)/gtk-2.0/gtkrc -endif # ENABLE_DARKER - -if ENABLE_DARK - $(MKDIR_P) $(ithemedarkdir)/gtk-2.0 - - cd $(srcdir)/gtk-2.0 && cp -R \ - menubar-toolbar \ - *.rc \ - $(ithemedarkdir)/gtk-2.0 - - cd $(srcdir)/gtk-2.0 && cp -R \ - assets-dark \ - $(ithemedarkdir)/gtk-2.0/assets - - cd $(srcdir)/gtk-2.0 && cp -R \ - gtkrc-dark \ - $(ithemedarkdir)/gtk-2.0/gtkrc -endif # ENABLE_DARK - -endif # ENABLE_GTK2 - - -if ENABLE_GTK3 - -if ENABLE_LIGHT - $(MKDIR_P) $(ithemedir)/gtk-3.0 - - cd $(srcdir)/gtk-3.0 && cp thumbnail.png $(ithemedir)/gtk-3.0 - - cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -R \ - assets \ - gtk.css \ - gtk-dark.css \ - $(ithemedir)/gtk-3.0 -endif # ENABLE_LIGHT - -if ENABLE_DARKER - $(MKDIR_P) $(ithemedarkerdir)/gtk-3.0 - - cd $(srcdir)/gtk-3.0 && cp thumbnail.png $(ithemedarkerdir)/gtk-3.0 - - cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -R \ - assets \ - gtk-dark.css \ - $(ithemedarkerdir)/gtk-3.0 - - cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -R \ - gtk-darker.css \ - $(ithemedarkerdir)/gtk-3.0/gtk.css -endif # ENABLE_DARKER - -if ENABLE_DARK - $(MKDIR_P) $(ithemedarkdir)/gtk-3.0 - - cd $(srcdir)/gtk-3.0 && cp thumbnail-dark.png $(ithemedarkdir)/gtk-3.0/thumbnail.png - - cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -R \ - assets \ - $(ithemedarkdir)/gtk-3.0 - - cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -R \ - gtk-dark.css \ - $(ithemedarkdir)/gtk-3.0/gtk.css -endif # ENABLE_DARK - -if !ENABLE_TRANSPARENCY - -if ENABLE_LIGHT - cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -R \ - gtk-solid.css \ - $(ithemedir)/gtk-3.0/gtk.css - - cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -R \ - gtk-solid-dark.css \ - $(ithemedir)/gtk-3.0/gtk-dark.css -endif # ENABLE_LIGHT - -if ENABLE_DARKER - cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -R \ - gtk-solid-darker.css \ - $(ithemedarkerdir)/gtk-3.0/gtk.css - - cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -R \ - gtk-solid-dark.css \ - $(ithemedarkerdir)/gtk-3.0/gtk-dark.css -endif # ENABLE_DARKER - -if ENABLE_DARK - cd $(srcdir)/gtk-3.0/$(GNOME_VERSION) && cp -R \ - gtk-solid-dark.css \ - $(ithemedarkdir)/gtk-3.0/gtk.css -endif # ENABLE_DARK - -endif #!ENABLE_TRANSPARENCY - -endif # ENABLE_GTK3 - - -if ENABLE_METACITY - -if ENABLE_LIGHT - cp -R $(srcdir)/metacity-1 $(ithemedir) - - cd $(ithemedir)/metacity-1 && rm metacity-theme-1-dark.xml metacity-theme-2-dark.xml thumbnail-dark.png -endif # ENABLE_LIGHT - -if ENABLE_DARKER - cp -R $(srcdir)/metacity-1 $(ithemedarkerdir) - - cd $(ithemedarkerdir)/metacity-1 && \ - mv metacity-theme-1-dark.xml metacity-theme-1.xml && \ - mv metacity-theme-2-dark.xml metacity-theme-2.xml && \ - mv thumbnail-dark.png thumbnail.png -endif # ENABLE_DARKER - -if ENABLE_DARK - cp -R $(srcdir)/metacity-1 $(ithemedarkdir) - - cd $(ithemedarkdir)/metacity-1 && \ - mv metacity-theme-1-dark.xml metacity-theme-1.xml && \ - mv metacity-theme-2-dark.xml metacity-theme-2.xml && \ - mv thumbnail-dark.png thumbnail.png -endif # ENABLE_DARK - -endif # ENABLE_METACITY - - -if ENABLE_UNITY - -if ENABLE_LIGHT - cp -R $(srcdir)/unity $(ithemedir) - - cd $(ithemedir)/unity && rm -rf window-buttons-dark -endif # ENABLE_LIGHT - -if ENABLE_DARKER - cp -R $(srcdir)/unity $(ithemedarkerdir) - - cd $(ithemedarkerdir)/unity && \ - rm -rf window-buttons && \ - mv window-buttons-dark window-buttons -endif # ENABLE_DARKER - -if ENABLE_DARK - cp -R $(srcdir)/unity $(ithemedarkdir) - - cd $(ithemedarkdir)/unity && \ - rm -rf window-buttons && \ - mv window-buttons-dark window-buttons -endif # ENABLE_DARK - -endif # ENABLE_UNITY - - -if ENABLE_XFWM - -if ENABLE_LIGHT - $(MKDIR_P) $(ithemedir)/xfwm4 - - cd $(srcdir)/xfwm4 && \ - cp -R assets/*.png $(ithemedir)/xfwm4 && \ - cp themerc $(ithemedir)/xfwm4/themerc -endif # ENABLE_LIGHT - -if ENABLE_DARKER - $(MKDIR_P) $(ithemedarkerdir)/xfwm4 - - cd $(srcdir)/xfwm4 && \ - cp -R assets-dark/*.png $(ithemedarkerdir)/xfwm4 && \ - cp themerc-dark $(ithemedarkerdir)/xfwm4/themerc -endif # ENABLE_DARKER - -if ENABLE_DARK - $(MKDIR_P) $(ithemedarkdir)/xfwm4 - - cd $(srcdir)/xfwm4 && \ - cp -R assets-dark/*.png $(ithemedarkdir)/xfwm4 && \ - cp themerc-dark $(ithemedarkdir)/xfwm4/themerc -endif # ENABLE_DARK - -endif # ENABLE_XFWM - - -uninstall-local: - rm -rf $(ithemedir) - -if ENABLE_DARKER - rm -rf $(ithemedarkerdir) -endif # ENABLE_DARKER - -if ENABLE_DARK - rm -rf $(ithemedarkdir) -endif # ENABLE_DARK - - -EXTRA_DIST = $(srcdir)/cinnamon \ - $(srcdir)/gnome-shell \ - $(srcdir)/gtk-2.0 \ - $(srcdir)/gtk-3.0 \ - $(srcdir)/metacity-1 \ - $(srcdir)/unity \ - $(srcdir)/xfwm4 \ - $(srcdir)/index.theme \ - $(srcdir)/index.theme-darker \ - $(srcdir)/index.theme-dark diff --git a/common/cinnamon/cinnamon-dark.css b/common/cinnamon/cinnamon-dark.css deleted file mode 100644 index db8af57..0000000 --- a/common/cinnamon/cinnamon-dark.css +++ /dev/null @@ -1,1423 +0,0 @@ -stage { - font-family: Futura Bk bt, sans, Sans-Serif; - font-size: 9pt; - color: #657b83; } - -.label-shadow { - color: transparent; } - -.menu #notification .notification-button, .menu #notification .notification-icon-button, -.popup-menu #notification .notification-button, -.popup-menu #notification .notification-icon-button, .sound-button { - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #083e4b; - border: 1px solid #001317; - box-shadow: inset 0 2px 4px rgba(8, 62, 75, 0.05); } - .menu #notification .notification-button, .menu #notification .notification-icon-button, - .popup-menu #notification .notification-button, - .popup-menu #notification .notification-icon-button, .sound-button, .menu #notification .notification-button:focus, .menu #notification .notification-icon-button:focus, - .popup-menu #notification .notification-button:focus, - .popup-menu #notification .notification-icon-button:focus, .sound-button:focus, .menu #notification .notification-button:hover, .menu #notification .notification-icon-button:hover, - .popup-menu #notification .notification-button:hover, - .popup-menu #notification .notification-icon-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover, .menu #notification .notification-button:hover:focus, .menu #notification .notification-icon-button:hover:focus, - .popup-menu #notification .notification-button:hover:focus, - .popup-menu #notification .notification-icon-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus, .menu #notification .notification-button:active, .menu #notification .notification-icon-button:active, - .popup-menu #notification .notification-button:active, - .popup-menu #notification .notification-icon-button:active, .sound-button:active, .menu #notification .notification-button:active:focus, .menu #notification .notification-icon-button:active:focus, - .popup-menu #notification .notification-button:active:focus, - .popup-menu #notification .notification-icon-button:active:focus, .sound-button:active:focus, .menu #notification .notification-button:insensitive, .menu #notification .notification-icon-button:insensitive, - .popup-menu #notification .notification-button:insensitive, - .popup-menu #notification .notification-icon-button:insensitive, .sound-button:insensitive { - border-radius: 2px; } - .menu #notification .notification-button:focus, .menu #notification .notification-icon-button:focus, - .popup-menu #notification .notification-button:focus, - .popup-menu #notification .notification-icon-button:focus, .sound-button:focus { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #083e4b; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(8, 62, 75, 0.05); } - .menu #notification .notification-button:hover, .menu #notification .notification-icon-button:hover, - .popup-menu #notification .notification-button:hover, - .popup-menu #notification .notification-icon-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #0a5062; - border: 1px solid #001317; - box-shadow: inset 0 2px 4px rgba(10, 80, 98, 0.05); } - .menu #notification .notification-button:hover:focus, .menu #notification .notification-icon-button:hover:focus, - .popup-menu #notification .notification-button:hover:focus, - .popup-menu #notification .notification-icon-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #083e4b; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(8, 62, 75, 0.05); } - .menu #notification .notification-button:active, .menu #notification .notification-icon-button:active, - .popup-menu #notification .notification-button:active, - .popup-menu #notification .notification-icon-button:active, .sound-button:active, .menu #notification .notification-button:active:focus, .menu #notification .notification-icon-button:active:focus, - .popup-menu #notification .notification-button:active:focus, - .popup-menu #notification .notification-icon-button:active:focus, .sound-button:active:focus { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px #268bd2; } - .menu #notification .notification-button:insensitive, .menu #notification .notification-icon-button:insensitive, - .popup-menu #notification .notification-button:insensitive, - .popup-menu #notification .notification-icon-button:insensitive, .sound-button:insensitive { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: rgba(101, 123, 131, 0.45); - border: 1px solid rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); - box-shadow: inset 0 2px 4px rgba(8, 62, 75, 0.05); } - -.notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button { - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - border-radius: 2px; - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus { - color: #268bd2; } - .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #fdf6e3; - border: 1px solid #268bd2; - background-color: #268bd2; } - .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #234b56; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -.menu #notification StEntry, -.popup-menu #notification StEntry, #menu-search-entry { - padding: 7px; - caret-size: 1px; - selection-background-color: #268bd2; - selected-color: #fdf6e3; - transition-duration: 300ms; - border-radius: 3px; - color: #657b83; - background-color: #073642; - border: 1px solid #001317; - box-shadow: inset 0 2px 4px rgba(7, 54, 66, 0.05); } - .menu #notification StEntry:focus, - .popup-menu #notification StEntry:focus, #menu-search-entry:focus, .menu #notification StEntry:hover, - .popup-menu #notification StEntry:hover, #menu-search-entry:hover { - color: #657b83; - background-color: #073642; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(7, 54, 66, 0.05); } - .menu #notification StEntry:insensitive, - .popup-menu #notification StEntry:insensitive, #menu-search-entry:insensitive { - color: rgba(101, 123, 131, 0.45); - background-color: #04313d; - border-color: 1px solid #001e25; - box-shadow: inset 0 2px 4px rgba(4, 49, 61, 0.05); } - .menu #notification StEntry StIcon.capslock-warning, - .popup-menu #notification StEntry StIcon.capslock-warning, #menu-search-entry StIcon.capslock-warning { - icon-size: 16px; - warning-color: #cb4b16; - padding: 0 4px; } - -.notification StEntry { - padding: 7px; - caret-size: 1px; - caret-color: #657b83; - selection-background-color: #268bd2; - selected-color: #fdf6e3; - transition-duration: 300ms; - border-radius: 3px; - color: #657b83; - background-color: rgba(18, 137, 167, 0.35); - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .notification StEntry:focus { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .notification StEntry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-color: rgba(18, 137, 167, 0.2); - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - -StScrollView.vfade { - -st-vfade-offset: 0px; } - -StScrollView.hfade { - -st-hfade-offset: 0px; } - -StScrollBar { - padding: 8px; } - StScrollView StScrollBar { - min-width: 5px; - min-height: 5px; } - StScrollBar StBin#trough { - background-color: rgba(7, 54, 66, 0.1); - border-radius: 8px; } - StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { - border-radius: 2px; - background-color: #284b55; - border: 0px solid; - margin: 0px; } - StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { - background-color: #1e434d; } - StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { - background-color: #268bd2; } - -.separator { - -gradient-height: 1px; - -gradient-start: transparent; - -gradient-end: transparent; - -margin-horizontal: 1.5em; - height: 1em; } - -.popup-slider-menu-item, -.slider { - -slider-height: 4px; - -slider-background-color: #001317; - -slider-border-color: transparent; - -slider-active-background-color: #268bd2; - -slider-active-border-color: transparent; - -slider-border-width: 0; - -slider-handle-radius: 4px; - height: 18px; - min-width: 15em; - border: 0 solid transparent; - border-right-width: 1px; - border-left-width: 5px; - color: transparent; } - .popup-menu-item:active .popup-slider-menu-item, .popup-menu-item:active - .slider { - -slider-background-color: rgba(0, 0, 0, 0.2); - -slider-active-background-color: #fdf6e3; } - -.check-box CinnamonGenericContainer { - spacing: .2em; - min-height: 30px; - padding-top: 2px; } - -.check-box StLabel { - font-weight: normal; } - -.check-box StBin { - width: 16px; - height: 16px; - background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } - -.check-box:focus StBin { - background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } - -.check-box:checked StBin { - background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } - -.check-box:focus:checked StBin { - background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } - -.radiobutton CinnamonGenericContainer { - spacing: .2em; - height: 26px; - padding-top: 2px; } - -.radiobutton StLabel { - padding-top: 4px; - font-size: 0.9em; - box-shadow: none; } - -.radiobutton StBin { - width: 16px; - height: 16px; - background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } - -.radiobutton:focus StBin { - background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } - -.radiobutton:checked StBin { - background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } - -.radiobutton:focus:checked StBin { - background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } - -.toggle-switch { - width: 50px; - height: 20px; - background-size: contain; - background-image: url("dark-assets/switch/switch-off.svg"); } - .toggle-switch:checked { - background-image: url("dark-assets/switch/switch-on.svg"); } - .popup-menu-item:active .toggle-switch { - background-image: url("common-assets/switch/switch-off-selected.svg"); } - .popup-menu-item:active .toggle-switch:checked { - background-image: url("common-assets/switch/switch-on-selected.svg"); } - -.cinnamon-link { - color: #78b9e6; - text-decoration: underline; } - .cinnamon-link:hover { - color: #a3cfee; } - -#Tooltip { - border-radius: 3px; - padding: 5px 12px; - background-color: rgba(7, 54, 66, 0.95); - color: #657b83; - font-size: 1em; - font-weight: normal; - text-align: center; } - -.menu, -.popup-menu, -.popup-combo-menu { - color: #657b83; - border-image: url("dark-assets/menu/menu.svg") 9 9 9 9; } - .menu-arrow, - .popup-menu-arrow { - icon-size: 16px; } - .menu .popup-sub-menu, - .popup-menu .popup-sub-menu, .popup-combo-menu .popup-sub-menu { - background-gradient-direction: none; - box-shadow: none; - border-image: url("dark-assets/menu/submenu.svg") 9 9 9 9; } - .menu .popup-sub-menu .popup-menu-item:ltr, - .popup-menu .popup-sub-menu .popup-menu-item:ltr, .popup-combo-menu .popup-sub-menu .popup-menu-item:ltr { - padding-right: 0em; } - .menu .popup-sub-menu .popup-menu-item:rtl, - .popup-menu .popup-sub-menu .popup-menu-item:rtl, .popup-combo-menu .popup-sub-menu .popup-menu-item:rtl { - padding-left: 0em; } - .menu .popup-sub-menu StScrollBar, - .popup-menu .popup-sub-menu StScrollBar, .popup-combo-menu .popup-sub-menu StScrollBar { - padding: 4px; } - .menu .popup-sub-menu StScrollBar StBin#trough, .menu .popup-sub-menu StScrollBar StBin#vhandle, - .popup-menu .popup-sub-menu StScrollBar StBin#trough, - .popup-menu .popup-sub-menu StScrollBar StBin#vhandle, .popup-combo-menu .popup-sub-menu StScrollBar StBin#trough, .popup-combo-menu .popup-sub-menu StScrollBar StBin#vhandle { - border-width: 0; } - .menu .popup-menu-content, - .popup-menu .popup-menu-content, .popup-combo-menu .popup-menu-content { - padding: 1em 0em 1em 0em; } - .menu .popup-menu-item, - .popup-menu .popup-menu-item, .popup-combo-menu .popup-menu-item { - padding: .4em 1.75em; - spacing: 1em; } - .menu .popup-menu-item:active, - .popup-menu .popup-menu-item:active, .popup-combo-menu .popup-menu-item:active { - color: #fdf6e3; - background-color: transparent; - border-image: url("common-assets/menu/menu-hover.svg") 9 9 1 1; } - .menu .popup-menu-item:insensitive, - .popup-menu .popup-menu-item:insensitive, .popup-combo-menu .popup-menu-item:insensitive { - color: rgba(101, 123, 131, 0.5); - background: none; } - .menu .popup-inactive-menu-item, - .popup-menu .popup-inactive-menu-item, .popup-combo-menu .popup-inactive-menu-item { - color: #657b83; } - .menu .popup-inactive-menu-item:insensitive, - .popup-menu .popup-inactive-menu-item:insensitive, .popup-combo-menu .popup-inactive-menu-item:insensitive { - color: rgba(101, 123, 131, 0.45); } - .menu .popup-menu-item:active .popup-inactive-menu-item, - .popup-menu .popup-menu-item:active .popup-inactive-menu-item, .popup-combo-menu .popup-menu-item:active .popup-inactive-menu-item { - color: #fdf6e3; } - .menu-icon, - .popup-menu-icon { - icon-size: 16px; } - -.popup-menu-boxpointer { - -arrow-border-radius: 3px; - -arrow-background-color: transparent; - -arrow-border-width: 1px; - -arrow-border-color: transparent; - -arrow-base: 0; - -arrow-rise: 0; } - -.popup-combo-menu { - padding: 10px 1px; } - -.popup-combobox-item { - spacing: 1em; } - -.popup-separator-menu-item { - -gradient-height: 2px; - -gradient-start: transparent; - -gradient-end: transparent; - -margin-horizontal: 1.5em; - height: 1em; } - -.popup-alternating-menu-item:alternate { - font-weight: normal; } - -.popup-device-menu-item { - spacing: .5em; } - -.popup-subtitle-menu-item { - font-weight: normal; } - -.nm-menu-item-icons { - spacing: .5em; } - -#panel { - font-weight: bold; - height: 27px; - width: 32px; } - #panel:highlight { - border-image: none; - background-color: rgba(220, 50, 47, 0.5); } - #panelLeft { - spacing: 4px; } - #panelLeft:dnd { - background-gradient-direction: vertical; - background-gradient-start: rgba(255, 0, 0, 0.05); - background-gradient-end: rgba(255, 0, 0, 0.2); } - #panelLeft:ltr { - padding-right: 4px; } - #panelLeft:rtl { - padding-left: 4px; } - #panelLeft.vertical { - padding: 0; } - #panelLeft.vertical:ltr { - padding-right: 0px; } - #panelLeft.vertical:rtl { - padding-left: 0px; } - #panelRight:dnd { - background-gradient-direction: vertical; - background-gradient-start: rgba(0, 0, 255, 0.05); - background-gradient-end: rgba(0, 0, 255, 0.2); } - #panelRight:ltr { - padding-left: 4px; - spacing: 0px; } - #panelRight:rtl { - padding-right: 4px; - spacing: 0px; } - #panelRight.vertical { - padding: 0; } - #panelRight.vertical:ltr { - padding-right: 0px; } - #panelRight.vertical:rtl { - padding-left: 0px; } - #panelCenter { - spacing: 4px; } - #panelCenter:dnd { - background-gradient-direction: vertical; - background-gradient-start: rgba(0, 255, 0, 0.05); - background-gradient-end: rgba(0, 255, 0, 0.2); } - -.panel-top, .panel-bottom, .panel-left, .panel-right { - color: white; - font-size: 1em; - padding: 0px; } - -.panel-top { - border-image: url("common-assets/panel/panel-top.svg") 1 1 1 1; } - -.panel-bottom { - border-image: url("common-assets/panel/panel-bottom.svg") 1 1 1 1; } - -.panel-left { - border-image: url("common-assets/panel/panel-left.svg") 1 1 1 1; } - -.panel-right { - border-image: url("common-assets/panel/panel-right.svg") 1 1 1 1; } - -.panel-dummy { - background-color: rgba(220, 50, 47, 0.5); } - .panel-dummy:entered { - background-color: rgba(220, 50, 47, 0.6); } - -.panel-status-button { - border-width: 0; - -natural-hpadding: 3px; - -minimum-hpadding: 3px; - font-weight: bold; - color: white; - height: 22px; } - -.panel-button { - -natural-hpadding: 6px; - -minimum-hpadding: 2px; - font-weight: bold; - color: green; - transition-duration: 100; } - -.system-status-icon { - icon-size: 16px; - padding: 0 1px; } - -#overview { - spacing: 12px; } - -.window-caption { - background-color: rgba(7, 54, 66, 0.95); - border: 1px solid rgba(7, 54, 66, 0.95); - color: #657b83; - spacing: 25px; - border-radius: 2px; - font-size: 9pt; - padding: 5px 8px; - -cinnamon-caption-spacing: 4px; } - .window-caption#selected { - background-color: #268bd2; - color: #fdf6e3; - border: 1px solid #268bd2; - spacing: 25px; } - -.expo-workspaces-name-entry, -.expo-workspaces-name-entry#selected { - height: 15px; - border-radius: 2px; - font-size: 9pt; - padding: 5px 8px; - -cinnamon-caption-spacing: 4px; - color: #657b83; - background-color: rgba(18, 137, 167, 0.35); - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .expo-workspaces-name-entry:focus, - .expo-workspaces-name-entry#selected:focus { - border: 1px solid #268bd2; - background-color: #268bd2; - color: #fdf6e3; - font-style: italic; - transition-duration: 300; - selection-background-color: #fdf6e3; - selected-color: #268bd2; } - -.expo-workspace-thumbnail-frame { - border: 4px solid rgba(255, 255, 255, 0); - background-color: rgba(255, 255, 255, 0); - border-radius: 2px; } - .expo-workspace-thumbnail-frame#active { - border: 4px solid #268bd2; - background-color: black; - border-radius: 2px; } - -.expo-background { - background-color: #073642; } - -.workspace-thumbnails { - spacing: 26px; } - .workspace-thumbnails-background, .workspace-thumbnails-background:rtl { - padding: 8px; } - -.workspace-add-button { - background-image: url("common-assets/misc/add-workspace.svg"); - height: 200px; - width: 35px; - transition-duration: 100; } - .workspace-add-button:hover { - background-image: url("common-assets/misc/add-workspace-hover.svg"); - transition-duration: 100; } - .workspace-add-button:active { - background-image: url("common-assets/misc/add-workspace-active.svg"); - transition-duration: 100; } - -.workspace-overview-background-shade { - background-color: rgba(0, 0, 0, 0.5); } - -.workspace-close-button, -.window-close { - background-image: url("common-assets/misc/close.svg"); - background-size: 26px; - height: 26px; - width: 26px; - -cinnamon-close-overlap: 10px; } - .workspace-close-button:hover, - .window-close:hover { - background-image: url("common-assets/misc/close-hover.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - .workspace-close-button:active, - .window-close:active { - background-image: url("common-assets/misc/close-active.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - -.window-close-area { - background-image: url("common-assets/misc/trash-icon.svg"); - height: 120px; - width: 400px; } - -.about-content { - width: 550px; - height: 250px; - spacing: 8px; - padding-bottom: 10px; } - -.about-title { - font-size: 2em; - font-weight: bold; } - -.about-uuid { - font-size: 10px; - color: #888; } - -.about-icon { - padding-right: 20px; - padding-bottom: 14px; } - -.about-scrollBox { - border: 1px solid #001317; - border-radius: 2px; - background-color: #073642; - padding: 4px; - padding-right: 0; - border-radius: 0; } - .about-scrollBox-innerBox { - padding: 1.2em; - spacing: 1.2em; } - -.about-description { - padding-top: 4px; - padding-bottom: 16px; } - -.about-version { - padding-left: 7px; - font-size: 10px; - color: #888; } - -.calendar { - padding: .4em 1.75em; - spacing-rows: 0px; - spacing-columns: 0px; } - -.calendar-month-label { - color: #657b83; - font-weight: bold; - padding: 8px 0; } - -.calendar-change-month-back, -.calendar-change-month-forward { - width: 16px; - height: 16px; } - -.calendar-change-month-back { - background-image: url("common-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:focus, .calendar-change-month-back:hover { - background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-back:active { - background-image: url("common-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:rtl { - background-image: url("common-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { - background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-back:rtl:active { - background-image: url("common-assets/misc/calendar-arrow-right.svg"); } - -.calendar-change-month-forward { - background-image: url("common-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { - background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-forward:active { - background-image: url("common-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:rtl { - background-image: url("common-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { - background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-forward:rtl:active { - background-image: url("common-assets/misc/calendar-arrow-left.svg"); } - -.datemenu-date-label { - padding: .4em 1.75em; - font-weight: bold; - text-align: center; - color: #657b83; - border-radius: 2px; } - -.calendar-day-base { - font-size: 80%; - text-align: center; - width: 25px; - height: 25px; - padding: 0.1em; - margin: 2px; - border-radius: 12.5px; } - -.calendar-day-heading { - color: rgba(101, 123, 131, 0.85); - margin-top: 1em; - font-size: 70%; } - -.calendar-day { - border-width: 0; - color: rgba(101, 123, 131, 0.8); } - -.calendar-day-top { - border-top-width: 0; } - -.calendar-day-left { - border-left-width: 0; } - -.calendar-nonwork-day { - color: #657b83; - background-color: transparent; - font-weight: bold; } - -.calendar-today, -.calendar-today:active, -.calendar-today:focus, -.calendar-today:hover { - font-weight: bold; - color: #fdf6e3; - background-color: #268bd2; - border-width: 0; } - -.calendar-other-month-day { - color: rgba(101, 123, 131, 0.3); - opacity: 1; } - -.calendar-week-number { - color: rgba(101, 123, 131, 0.7); - font-size: 80%; } - -#notification { - border-radius: 3px; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - padding: 13px; - spacing-rows: 10px; - spacing-columns: 10px; - margin-from-right-edge-of-screen: 20px; - width: 34em; - color: #657b83; } - .menu #notification, - .popup-menu #notification { - border-image: url("dark-assets/misc/message.svg") 9 9 9 9; } - .menu #notification, .menu #notification.multi-line-notification, - .popup-menu #notification, - .popup-menu #notification.multi-line-notification { - color: #657b83; } - .menu #notification .notification-button, .menu #notification .notification-icon-button, - .popup-menu #notification .notification-button, - .popup-menu #notification .notification-icon-button { - padding: 5px; } - #notification.multi-line-notification { - padding-bottom: 13px; - color: #657b83; } - #notification-scrollview { - max-height: 10em; } - #notification-scrollview > .top-shadow, #notification-scrollview > .bottom-shadow { - height: 1em; } - #notification-scrollview:ltr > StScrollBar { - padding-left: 6px; } - #notification-scrollview:rtl > StScrollBar { - padding-right: 6px; } - #notification-body { - spacing: 5px; } - #notification-actions { - spacing: 10px; } - -.notification-with-image { - min-height: 159px; - color: #657b83; } - -.notification-button, .notification-icon-button { - padding: 5px; } - -.notification-icon-button > StIcon { - icon-size: 36px; } - -#altTabPopup { - padding: 8px; - spacing: 16px; } - -.switcher-list { - color: #657b83; - background: none; - border: none; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; } - .switcher-list > StBoxLayout { - padding: 4px; } - .switcher-list-item-container { - spacing: 8px; } - .switcher-list .item-box { - padding: 8px; - border-radius: 2px; } - .switcher-list .item-box:outlined { - padding: 8px; - border: 1px solid #268bd2; } - .switcher-list .item-box:selected { - color: #fdf6e3; - background-color: #268bd2; - border: 0px solid #268bd2; } - .switcher-list .thumbnail { - width: 256px; } - .switcher-list .thumbnail-box { - padding: 2px; - spacing: 4px; } - .switcher-list .separator { - width: 1px; - background: rgba(255, 255, 255, 0.2); } - -.switcher-arrow { - border-color: transparent; - color: #657b83; } - .switcher-arrow:highlighted { - border-color: transparent; - color: white; } - -.thumbnail-scroll-gradient-left { - background-color: transparent; - border-radius: 24px; - border-radius-topright: 0px; - border-radius-bottomright: 0px; - width: 60px; } - -.thumbnail-scroll-gradient-right { - background-color: transparent; - border-radius: 24px; - border-radius-topleft: 0px; - border-radius-bottomleft: 0px; - width: 60px; } - -.ripple-box { - width: 104px; - height: 104px; - background-image: url("common-assets/misc/corner-ripple.svg"); - background-size: contain; } - -.lightbox { - background-color: rgba(0, 0, 0, 0.4); } - -.flashspot { - background-color: white; } - -.modal-dialog { - color: #657b83; - background-color: rgba(0, 43, 54, 0); - border: none; - border-image: url("dark-assets/misc/modal.svg") 9 9 9 67; - padding: 0 5px 6px 5px; } - .modal-dialog > StBoxLayout:first-child { - padding: 20px 10px 10px 10px; } - .modal-dialog-button-box { - spacing: 0; - margin: 0px; - padding: 14px 10px; - background: none; - border: none; - border-image: url("dark-assets/misc/button-box.svg") 9 9 9 9; } - .modal-dialog-button-box .modal-dialog-button { - padding-top: 0; - padding-bottom: 0; - height: 30px; } - -.run-dialog { - padding: 0px 15px 10px 15px; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; } - .run-dialog > * { - padding: 0; } - .run-dialog-label { - font-size: 0; - font-weight: bold; - color: #657b83; - padding-bottom: 0; } - .run-dialog-error-label { - color: #dc322f; } - .run-dialog-error-box { - padding-top: 15px; - spacing: 5px; } - .run-dialog-completion-box { - padding-left: 15px; - font-size: 10px; } - .run-dialog-entry { - width: 21em; - padding: 7px; - border-radius: 3px; - caret-color: #657b83; - selected-color: #fdf6e3; - selection-background-color: #268bd2; - color: #657b83; - background-color: rgba(18, 137, 167, 0.35); - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .run-dialog-entry:focus { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .run-dialog .modal-dialog-button-box { - border: none; - box-shadow: none; - background: none; - background-gradient-direction: none; } - -/* CinnamonMountOperation Dialogs */ -.cinnamon-mount-operation-icon { - icon-size: 48px; } - -.mount-password-reask { - color: #cb4b16; } - -.show-processes-dialog, -.mount-question-dialog { - spacing: 24px; } - .show-processes-dialog-subject, - .mount-question-dialog-subject { - padding-top: 10px; - padding-left: 17px; - padding-bottom: 6px; } - .show-processes-dialog-subject:rtl, - .mount-question-dialog-subject:rtl { - padding-left: 0px; - padding-right: 17px; } - .show-processes-dialog-description, - .mount-question-dialog-description { - padding-left: 17px; - width: 28em; } - .show-processes-dialog-description:rtl, - .mount-question-dialog-description:rtl { - padding-right: 17px; } - -.show-processes-dialog-app-list { - max-height: 200px; - padding-top: 24px; - padding-left: 49px; - padding-right: 32px; } - .show-processes-dialog-app-list:rtl { - padding-right: 49px; - padding-left: 32px; } - .show-processes-dialog-app-list-item { - color: #ccc; } - .show-processes-dialog-app-list-item:hover { - color: white; } - .show-processes-dialog-app-list-item:ltr { - padding-right: 1em; } - .show-processes-dialog-app-list-item:rtl { - padding-left: 1em; } - .show-processes-dialog-app-list-item-icon:ltr { - padding-right: 17px; } - .show-processes-dialog-app-list-item-icon:rtl { - padding-left: 17px; } - .show-processes-dialog-app-list-item-name { - font-size: 1.1em; } - -.magnifier-zoom-region { - border: 2px solid maroon; } - .magnifier-zoom-region .full-screen { - border-width: 0px; } - -#keyboard { - background-color: rgba(7, 54, 66, 0.95); - border-width: 0; - border-top-width: 1px; - border-color: rgba(0, 0, 0, 0.4); } - -.keyboard-layout { - spacing: 10px; - padding: 10px; } - -.keyboard-row { - spacing: 15px; } - -.keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; - font-weight: bold; - border-radius: 3px; - box-shadow: none; - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .keyboard-key:hover { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .keyboard-key:active, .keyboard-key:checked { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #fdf6e3; - border: 1px solid #268bd2; - background-color: #268bd2; } - .keyboard-key:grayed { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #234b56; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -.keyboard-subkeys { - color: #657b83; - padding: 5px; - -arrow-border-radius: 2px; - -arrow-background-color: rgba(7, 54, 66, 0.95); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0, 0, 0, 0.4); - -arrow-base: 20px; - -arrow-rise: 10px; - -boxpointer-gap: 5px; } - -.menu-favorites-box { - margin: auto; - padding: 10px; - transition-duration: 300; - background-color: #002b36; - border: 1px solid #001317; } - -.menu-favorites-button { - padding: 10px; - border: 1px solid transparent; } - -.menu-places-box { - margin: auto; - padding: 10px; - border: 0px solid red; } - -.menu-places-button { - padding: 10px; } - -.menu-categories-box { - padding: 10px 30px 10px 30px; } - -.menu-applications-inner-box, .menu-applications-outer-box { - padding: 10px 10px 0 10px; } - -.menu-application-button { - padding: 7px; - border: 1px solid transparent; } - .menu-application-button:highlighted { - font-weight: bold; } - .menu-application-button-selected { - padding: 7px; } - .menu-application-button-selected:highlighted { - font-weight: bold; } - .menu-application-button-label:ltr { - padding-left: 5px; } - .menu-application-button-label:rtl { - padding-right: 5px; } - -.menu-category-button { - padding: 7px; - border: 1px solid transparent; } - .menu-category-button-selected { - padding: 7px; } - .menu-category-button-hover { - background-color: red; - border-radius: 2px; } - .menu-category-button-greyed { - padding: 7px; - color: rgba(101, 123, 131, 0.45); - border: 1px solid transparent; } - .menu-category-button-label:ltr { - padding-left: 5px; } - .menu-category-button-label:rtl { - padding-right: 5px; } - -.menu-selected-app-box { - padding-right: 30px; - padding-left: 28px; - text-align: right; - height: 30px; } - .menu-selected-app-box:rtl { - padding-top: 10px; - height: 30px; } - -.menu-selected-app-title { - font-weight: bold; } - -.menu-selected-app-description { - max-width: 150px; } - -.menu-search-box:ltr { - padding-left: 30px; } - -.menu-search-box-rtl { - padding-right: 30px; } - -#menu-search-entry { - width: 250px; - height: 15px; - font-weight: normal; - caret-color: #657b83; } - -.menu-search-entry-icon { - icon-size: 1em; - color: #657b83; } - -/* Context menu (at the moment only for favorites) */ -.info-osd { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 16px; - color: white; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } - -.osd-window { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 20px; - margin: 32px; - min-width: 64px; - min-height: 64px; - color: white; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } - .osd-window .osd-monitor-label { - font-size: 3em; } - .osd-window .level { - padding: 0; - height: 4px; - background-color: rgba(0, 0, 0, 0.5); - border-radius: 2px; - color: #268bd2; } - -.window-list-box { - spacing: 6px; - padding-left: 10px; } - .panel-bottom .window-list-box { - padding-top: 1px; } - .panel-top .window-list-box { - padding-bottom: 1px; } - .window-list-box.vertical { - spacing: 4px; - padding: 10px 0; } - .window-list-box:highlight { - background-color: rgba(220, 50, 47, 0.5); } - -.window-list-item-label { - font-weight: bold; - width: 15em; - min-width: 5px; } - -.window-list-item-box { - font-weight: bold; - background-image: none; - padding-top: 0; - padding-left: 8px; - padding-right: 8px; - transition-duration: 100; - color: rgba(255, 255, 255, 0.6); } - .window-list-item-box:hover { - color: white; } - .window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:focus { - color: white; } - .panel-bottom .window-list-item-box:active, .panel-bottom .window-list-item-box:checked, .panel-bottom .window-list-item-box:focus { - border-image: url("common-assets/panel/window-list-active-bottom.svg") 3 3 1 3; } - .panel-top .window-list-item-box:active, .panel-top .window-list-item-box:checked, .panel-top .window-list-item-box:focus { - border-image: url("common-assets/panel/window-list-active-top.svg") 3 3 3 1; } - .panel-left .window-list-item-box:active, .panel-left .window-list-item-box:checked, .panel-left .window-list-item-box:focus { - border-image: url("common-assets/panel/window-list-active-left.svg") 3 1 3 3; } - .panel-right .window-list-item-box:active, .panel-right .window-list-item-box:checked, .panel-right .window-list-item-box:focus { - border-image: url("common-assets/panel/window-list-active-right.svg") 1 3 3 3; } - .window-list-item-box.right, .window-list-item-box.left { - padding-left: 0px; - padding-right: 0px; } - -.window-list-item-demands-attention { - background-gradient-start: #cb4b16; - background-gradient-end: #cb4b16; } - -.sound-button { - width: 22px; - height: 13px; - padding: 8px; } - .sound-button-container { - padding-right: 3px; - padding-left: 3px; } - .sound-button StIcon { - icon-size: 1.4em; } - -.sound-track-infos { - padding: 5px; } - -.sound-track-info { - padding-top: 2px; - padding-bottom: 2px; } - .sound-track-info StIcon { - icon-size: 16px; } - .sound-track-info StLabel { - padding-left: 5px; - padding-right: 5px; } - -.sound-track-box { - padding-left: 15px; - padding-right: 15px; - max-width: 220px; } - -.sound-seek-box { - padding-left: 15px; } - .sound-seek-box StLabel { - padding-top: 2px; } - .sound-seek-box StIcon { - icon-size: 16px; } - -.sound-seek-slider { - width: 140px; } - -.sound-volume-menu-item { - padding: .4em 1.75em; } - .sound-volume-menu-item StIcon { - icon-size: 1.14em; - padding-left: 8px; - padding-right: 8px; } - -.sound-playback-control { - padding: 5px 10px 10px 10px; } - -.sound-player { - padding: 0 4px; } - .sound-player > StBoxLayout:first-child { - padding: 5px 10px 12px 10px; - spacing: 0.5em; } - .sound-player > StBoxLayout:first-child StButton:small { - width: 16px; - height: 8px; - padding: 1px; } - .sound-player > StBoxLayout:first-child StButton:small StIcon { - icon-size: 12px; } - .sound-player-generic-coverart { - background: rgba(0, 0, 0, 0.2); } - .sound-player-overlay { - width: 290px; - height: 70px; - padding: 15px; - spacing: 0.5em; - background: rgba(5, 35, 43, 0.85); - border: 0px solid rgba(2, 16, 20, 0.95); - border-bottom: 1px; - color: #657b83; } - .sound-player-overlay StButton { - width: 22px; - height: 13px; - padding: 5px; - color: #657b83; - border-radius: 2px; - border: 1px solid rgba(7, 54, 66, 0); } - .sound-player-overlay StButton StIcon { - icon-size: 16px; } - .sound-player-overlay StButton:hover { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .sound-player-overlay StButton:active { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px #268bd2; } - .sound-player-overlay StBoxLayout { - padding-top: 2px; } - .sound-player .slider { - height: 0.5em; - padding: 0; - border: none; - -slider-height: 0.5em; - -slider-background-color: #00171d; - -slider-border-color: transparent; - -slider-active-background-color: #268bd2; - -slider-active-border-color: transparent; - -slider-border-width: 0px; - -slider-handle-radius: 0px; } - -#workspaceSwitcher { - spacing: 0px; - padding: 3px; } - -/* Controls the styling when using the "Simple buttons" option */ -.workspace-switcher { - padding-left: 3px; - padding-right: 3px; } - -.workspace-button { - width: 20px; - height: 10px; - color: #fdf6e3; - padding: 3px; - padding-top: 4px; - transition-duration: 300; } - .workspace-button:outlined, .workspace-button:outlined:hover { - color: #268bd2; } - .workspace-button:hover { - color: rgba(38, 139, 210, 0.5); } - -/* Controls the style when using the "Visual representation" option */ -.workspace-graph { - padding: 3px; - spacing: 3px; } - -.workspace-graph .workspace { - border: 1px solid rgba(0, 0, 0, 0.4); - background-gradient-direction: none; - background-color: rgba(0, 0, 0, 0.2); } - -.workspace-graph .workspace:active { - border: 1px solid #268bd2; - background-gradient-direction: none; } - -.workspace-graph .workspace .windows { - -active-window-background: rgba(12, 93, 113, 0.95); - -active-window-border: rgba(0, 0, 0, 0.8); - -inactive-window-background: rgba(12, 93, 113, 0.95); - -inactive-window-border: rgba(0, 0, 0, 0.8); } - -.workspace-graph .workspace:active .windows { - -active-window-background: rgba(14, 112, 137, 0.95); - -active-window-border: rgba(0, 0, 0, 0.8); - -inactive-window-background: rgba(7, 55, 67, 0.95); - -inactive-window-border: rgba(0, 0, 0, 0.8); } - -#panel-launchers-box { - padding-left: 7px; } - #panel-launchers-box.vertical { - padding: 2px 0; } - -.panel-launcher, -.launcher { - margin: 1px; - padding: 1px; - transition-duration: 200; } - .panel-launcher:hover, - .launcher:hover { - background-gradient-direction: none; - border: 0px solid #268bd2; } - .panel-bottom .panel-launcher:hover, .panel-bottom - .launcher:hover { - border-bottom-width: 1px; } - .panel-top .panel-launcher:hover, .panel-top - .launcher:hover { - border-top-width: 1px; } - .panel-left .panel-launcher:hover, .panel-left - .launcher:hover { - border-left-width: 1px; - padding-left: 0; } - .panel-right .panel-launcher:hover, .panel-right - .launcher:hover { - border-right-width: 1px; - padding-right: 0; } - -#overview-corner { - background-image: url("common-assets/misc/overview.png"); } - #overview-corner:hover { - background-image: url("common-assets/misc/overview-hover.png"); } - -.applet-separator { - padding: 1px 4px; } - -.applet-separator-line { - width: 1px; - background: rgba(255, 255, 255, 0.12); } - -.applet-box { - padding-left: 3px; - padding-right: 3px; - color: white; - text-shadow: none; - transition-duration: 100; } - .applet-box.vertical { - padding: 3px 0; } - .applet-box:hover { - color: #fdf6e3; - background-color: #268bd2; } - .applet-box:highlight { - background-image: none; - border-image: none; - background-color: rgba(220, 50, 47, 0.5); } - -.applet-label { - font-weight: bold; - color: white; } - .applet-label:hover, .applet-box:hover > .applet-label { - color: #fdf6e3; - text-shadow: none; } - -.applet-icon { - color: white; - icon-size: 22px; } - .applet-icon:hover, .applet-box:hover > .applet-icon { - color: #fdf6e3; - text-shadow: none; } - -.user-icon { - width: 32px; - height: 32px; - background-color: transparent; - border: none; - border-radius: 0; } - -.user-label { - color: #657b83; - font-size: 1em; - font-weight: bold; - margin: 0px; } - -.desklet { - color: #657b83; } - .desklet:highlight { - background-color: rgba(220, 50, 47, 0.5); } - .desklet-with-borders { - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - color: #657b83; - padding: 12px; - padding-bottom: 16px; } - .desklet-with-borders:highlight { - background-color: rgba(220, 50, 47, 0.5); } - .desklet-with-borders-and-header { - border-image: url("common-assets/misc/desklet.svg") 9 9 9 9; - color: #657b83; - border-radius: 0; - border-radius-topleft: 0; - border-radius-topright: 0; - padding: 12px; - padding-bottom: 17px; } - .desklet-with-borders-and-header:highlight { - background-color: rgba(220, 50, 47, 0.5); } - .desklet-header { - border-image: url("common-assets/misc/desklet-header.svg") 9 9 9 9; - color: #657b83; - font-size: 1em; - padding: 12px; - padding-bottom: 6px; } - .desklet-drag-placeholder { - border: 2px solid #268bd2; - background-color: rgba(38, 139, 210, 0.3); } - -.photoframe-box { - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - color: #657b83; - padding: 12px; - padding-bottom: 16px; } - -/*FIXME*/ -.workspace-osd { - /*color: red;*/ - text-shadow: black 5px 5px 5px; - font-weight: bold; - font-size: 48pt; } - -.notification-applet-padding { - padding: .5em 1em; } - -.notification-applet-container { - max-height: 100px; } - -.tile-preview, .tile-preview.snap, -.tile-hud, .tile-hud.snap { - background-color: rgba(38, 139, 210, 0.3); - border: 1px solid #268bd2; } - -.xkcd-box { - padding: 6px; - border: 0px; - background-color: transparent; - border-radius: 0px; } diff --git a/common/cinnamon/cinnamon.css b/common/cinnamon/cinnamon.css deleted file mode 100644 index 828d632..0000000 --- a/common/cinnamon/cinnamon.css +++ /dev/null @@ -1,1423 +0,0 @@ -stage { - font-family: Futura Bk bt, sans, Sans-Serif; - font-size: 9pt; - color: #5c616c; } - -.label-shadow { - color: transparent; } - -.menu #notification .notification-button, .menu #notification .notification-icon-button, -.popup-menu #notification .notification-button, -.popup-menu #notification .notification-icon-button, .sound-button { - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: #fbfbfc; - border: 1px solid #657b83; - box-shadow: inset 0 2px 4px rgba(251, 251, 252, 0.05); } - .menu #notification .notification-button, .menu #notification .notification-icon-button, - .popup-menu #notification .notification-button, - .popup-menu #notification .notification-icon-button, .sound-button, .menu #notification .notification-button:focus, .menu #notification .notification-icon-button:focus, - .popup-menu #notification .notification-button:focus, - .popup-menu #notification .notification-icon-button:focus, .sound-button:focus, .menu #notification .notification-button:hover, .menu #notification .notification-icon-button:hover, - .popup-menu #notification .notification-button:hover, - .popup-menu #notification .notification-icon-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover, .menu #notification .notification-button:hover:focus, .menu #notification .notification-icon-button:hover:focus, - .popup-menu #notification .notification-button:hover:focus, - .popup-menu #notification .notification-icon-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus, .menu #notification .notification-button:active, .menu #notification .notification-icon-button:active, - .popup-menu #notification .notification-button:active, - .popup-menu #notification .notification-icon-button:active, .sound-button:active, .menu #notification .notification-button:active:focus, .menu #notification .notification-icon-button:active:focus, - .popup-menu #notification .notification-button:active:focus, - .popup-menu #notification .notification-icon-button:active:focus, .sound-button:active:focus, .menu #notification .notification-button:insensitive, .menu #notification .notification-icon-button:insensitive, - .popup-menu #notification .notification-button:insensitive, - .popup-menu #notification .notification-icon-button:insensitive, .sound-button:insensitive { - border-radius: 2px; } - .menu #notification .notification-button:focus, .menu #notification .notification-icon-button:focus, - .popup-menu #notification .notification-button:focus, - .popup-menu #notification .notification-icon-button:focus, .sound-button:focus { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: #fbfbfc; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(251, 251, 252, 0.05); } - .menu #notification .notification-button:hover, .menu #notification .notification-icon-button:hover, - .popup-menu #notification .notification-button:hover, - .popup-menu #notification .notification-icon-button:hover, .menu-favorites-button:hover, .menu-application-button-selected, .menu-category-button-selected, .sound-button:hover { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: white; - border: 1px solid #657b83; - box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } - .menu #notification .notification-button:hover:focus, .menu #notification .notification-icon-button:hover:focus, - .popup-menu #notification .notification-button:hover:focus, - .popup-menu #notification .notification-icon-button:hover:focus, .menu-favorites-button:focus:hover, .menu-application-button-selected:focus, .menu-category-button-selected:focus, .sound-button:hover:focus { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: #fbfbfc; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(251, 251, 252, 0.05); } - .menu #notification .notification-button:active, .menu #notification .notification-icon-button:active, - .popup-menu #notification .notification-button:active, - .popup-menu #notification .notification-icon-button:active, .sound-button:active, .menu #notification .notification-button:active:focus, .menu #notification .notification-icon-button:active:focus, - .popup-menu #notification .notification-button:active:focus, - .popup-menu #notification .notification-icon-button:active:focus, .sound-button:active:focus { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px #268bd2; } - .menu #notification .notification-button:insensitive, .menu #notification .notification-icon-button:insensitive, - .popup-menu #notification .notification-button:insensitive, - .popup-menu #notification .notification-icon-button:insensitive, .sound-button:insensitive { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: rgba(92, 97, 108, 0.55); - border: 1px solid rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); - box-shadow: inset 0 2px 4px rgba(251, 251, 252, 0.05); } - -.notification-button, .notification-icon-button, .modal-dialog-button-box .modal-dialog-button { - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - border-radius: 2px; - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .notification-button:hover, .notification-icon-button:hover, .modal-dialog-button-box .modal-dialog-button:hover { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .notification-button:focus, .notification-icon-button:focus, .modal-dialog-button-box .modal-dialog-button:focus { - color: #268bd2; } - .notification-button:active, .notification-icon-button:active, .modal-dialog-button-box .modal-dialog-button:active { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #fdf6e3; - border: 1px solid #268bd2; - background-color: #268bd2; } - .notification-button:insensitive, .notification-icon-button:insensitive, .modal-dialog-button-box .modal-dialog-button:insensitive { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #234b56; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -.menu #notification StEntry, -.popup-menu #notification StEntry, #menu-search-entry { - padding: 7px; - caret-size: 1px; - selection-background-color: #268bd2; - selected-color: #fdf6e3; - transition-duration: 300ms; - border-radius: 3px; - color: #5c616c; - background-color: #fdf6e3; - border: 1px solid #657b83; - box-shadow: inset 0 2px 4px rgba(253, 246, 227, 0.05); } - .menu #notification StEntry:focus, - .popup-menu #notification StEntry:focus, #menu-search-entry:focus, .menu #notification StEntry:hover, - .popup-menu #notification StEntry:hover, #menu-search-entry:hover { - color: #5c616c; - background-color: #fdf6e3; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(253, 246, 227, 0.05); } - .menu #notification StEntry:insensitive, - .popup-menu #notification StEntry:insensitive, #menu-search-entry:insensitive { - color: rgba(92, 97, 108, 0.55); - background-color: #f9f6ec; - border-color: 1px solid #a6b2b7; - box-shadow: inset 0 2px 4px rgba(249, 246, 236, 0.05); } - .menu #notification StEntry StIcon.capslock-warning, - .popup-menu #notification StEntry StIcon.capslock-warning, #menu-search-entry StIcon.capslock-warning { - icon-size: 16px; - warning-color: #cb4b16; - padding: 0 4px; } - -.notification StEntry { - padding: 7px; - caret-size: 1px; - caret-color: #657b83; - selection-background-color: #268bd2; - selected-color: #fdf6e3; - transition-duration: 300ms; - border-radius: 3px; - color: #657b83; - background-color: rgba(18, 137, 167, 0.35); - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .notification StEntry:focus { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .notification StEntry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-color: rgba(18, 137, 167, 0.2); - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - -StScrollView.vfade { - -st-vfade-offset: 0px; } - -StScrollView.hfade { - -st-hfade-offset: 0px; } - -StScrollBar { - padding: 8px; } - StScrollView StScrollBar { - min-width: 5px; - min-height: 5px; } - StScrollBar StBin#trough { - background-color: rgba(253, 246, 227, 0.1); - border-radius: 8px; } - StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { - border-radius: 2px; - background-color: #b8babf; - border: 0px solid; - margin: 0px; } - StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { - background-color: #c7c9cd; } - StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { - background-color: #268bd2; } - -.separator { - -gradient-height: 1px; - -gradient-start: transparent; - -gradient-end: transparent; - -margin-horizontal: 1.5em; - height: 1em; } - -.popup-slider-menu-item, -.slider { - -slider-height: 4px; - -slider-background-color: #657b83; - -slider-border-color: transparent; - -slider-active-background-color: #268bd2; - -slider-active-border-color: transparent; - -slider-border-width: 0; - -slider-handle-radius: 4px; - height: 18px; - min-width: 15em; - border: 0 solid transparent; - border-right-width: 1px; - border-left-width: 5px; - color: transparent; } - .popup-menu-item:active .popup-slider-menu-item, .popup-menu-item:active - .slider { - -slider-background-color: rgba(0, 0, 0, 0.2); - -slider-active-background-color: #fdf6e3; } - -.check-box CinnamonGenericContainer { - spacing: .2em; - min-height: 30px; - padding-top: 2px; } - -.check-box StLabel { - font-weight: normal; } - -.check-box StBin { - width: 16px; - height: 16px; - background-image: url("light-assets/checkbox/checkbox-unchecked.svg"); } - -.check-box:focus StBin { - background-image: url("light-assets/checkbox/checkbox-unchecked-focused.svg"); } - -.check-box:checked StBin { - background-image: url("light-assets/checkbox/checkbox-checked.svg"); } - -.check-box:focus:checked StBin { - background-image: url("light-assets/checkbox/checkbox-checked-focused.svg"); } - -.radiobutton CinnamonGenericContainer { - spacing: .2em; - height: 26px; - padding-top: 2px; } - -.radiobutton StLabel { - padding-top: 4px; - font-size: 0.9em; - box-shadow: none; } - -.radiobutton StBin { - width: 16px; - height: 16px; - background-image: url("light-assets/checkbox/checkbox-unchecked.svg"); } - -.radiobutton:focus StBin { - background-image: url("light-assets/checkbox/checkbox-unchecked-focused.svg"); } - -.radiobutton:checked StBin { - background-image: url("light-assets/checkbox/checkbox-checked.svg"); } - -.radiobutton:focus:checked StBin { - background-image: url("light-assets/checkbox/checkbox-checked-focused.svg"); } - -.toggle-switch { - width: 50px; - height: 20px; - background-size: contain; - background-image: url("light-assets/switch/switch-off.svg"); } - .toggle-switch:checked { - background-image: url("light-assets/switch/switch-on.svg"); } - .popup-menu-item:active .toggle-switch { - background-image: url("common-assets/switch/switch-off-selected.svg"); } - .popup-menu-item:active .toggle-switch:checked { - background-image: url("common-assets/switch/switch-on-selected.svg"); } - -.cinnamon-link { - color: #1e6ea7; - text-decoration: underline; } - .cinnamon-link:hover { - color: #268bd2; } - -#Tooltip { - border-radius: 3px; - padding: 5px 12px; - background-color: rgba(7, 54, 66, 0.95); - color: #657b83; - font-size: 1em; - font-weight: normal; - text-align: center; } - -.menu, -.popup-menu, -.popup-combo-menu { - color: #5c616c; - border-image: url("light-assets/menu/menu.svg") 9 9 9 9; } - .menu-arrow, - .popup-menu-arrow { - icon-size: 16px; } - .menu .popup-sub-menu, - .popup-menu .popup-sub-menu, .popup-combo-menu .popup-sub-menu { - background-gradient-direction: none; - box-shadow: none; - border-image: url("light-assets/menu/submenu.svg") 9 9 9 9; } - .menu .popup-sub-menu .popup-menu-item:ltr, - .popup-menu .popup-sub-menu .popup-menu-item:ltr, .popup-combo-menu .popup-sub-menu .popup-menu-item:ltr { - padding-right: 0em; } - .menu .popup-sub-menu .popup-menu-item:rtl, - .popup-menu .popup-sub-menu .popup-menu-item:rtl, .popup-combo-menu .popup-sub-menu .popup-menu-item:rtl { - padding-left: 0em; } - .menu .popup-sub-menu StScrollBar, - .popup-menu .popup-sub-menu StScrollBar, .popup-combo-menu .popup-sub-menu StScrollBar { - padding: 4px; } - .menu .popup-sub-menu StScrollBar StBin#trough, .menu .popup-sub-menu StScrollBar StBin#vhandle, - .popup-menu .popup-sub-menu StScrollBar StBin#trough, - .popup-menu .popup-sub-menu StScrollBar StBin#vhandle, .popup-combo-menu .popup-sub-menu StScrollBar StBin#trough, .popup-combo-menu .popup-sub-menu StScrollBar StBin#vhandle { - border-width: 0; } - .menu .popup-menu-content, - .popup-menu .popup-menu-content, .popup-combo-menu .popup-menu-content { - padding: 1em 0em 1em 0em; } - .menu .popup-menu-item, - .popup-menu .popup-menu-item, .popup-combo-menu .popup-menu-item { - padding: .4em 1.75em; - spacing: 1em; } - .menu .popup-menu-item:active, - .popup-menu .popup-menu-item:active, .popup-combo-menu .popup-menu-item:active { - color: #fdf6e3; - background-color: transparent; - border-image: url("common-assets/menu/menu-hover.svg") 9 9 1 1; } - .menu .popup-menu-item:insensitive, - .popup-menu .popup-menu-item:insensitive, .popup-combo-menu .popup-menu-item:insensitive { - color: rgba(92, 97, 108, 0.5); - background: none; } - .menu .popup-inactive-menu-item, - .popup-menu .popup-inactive-menu-item, .popup-combo-menu .popup-inactive-menu-item { - color: #5c616c; } - .menu .popup-inactive-menu-item:insensitive, - .popup-menu .popup-inactive-menu-item:insensitive, .popup-combo-menu .popup-inactive-menu-item:insensitive { - color: rgba(92, 97, 108, 0.55); } - .menu .popup-menu-item:active .popup-inactive-menu-item, - .popup-menu .popup-menu-item:active .popup-inactive-menu-item, .popup-combo-menu .popup-menu-item:active .popup-inactive-menu-item { - color: #fdf6e3; } - .menu-icon, - .popup-menu-icon { - icon-size: 16px; } - -.popup-menu-boxpointer { - -arrow-border-radius: 3px; - -arrow-background-color: transparent; - -arrow-border-width: 1px; - -arrow-border-color: transparent; - -arrow-base: 0; - -arrow-rise: 0; } - -.popup-combo-menu { - padding: 10px 1px; } - -.popup-combobox-item { - spacing: 1em; } - -.popup-separator-menu-item { - -gradient-height: 2px; - -gradient-start: transparent; - -gradient-end: transparent; - -margin-horizontal: 1.5em; - height: 1em; } - -.popup-alternating-menu-item:alternate { - font-weight: normal; } - -.popup-device-menu-item { - spacing: .5em; } - -.popup-subtitle-menu-item { - font-weight: normal; } - -.nm-menu-item-icons { - spacing: .5em; } - -#panel { - font-weight: bold; - height: 27px; - width: 32px; } - #panel:highlight { - border-image: none; - background-color: rgba(220, 50, 47, 0.5); } - #panelLeft { - spacing: 4px; } - #panelLeft:dnd { - background-gradient-direction: vertical; - background-gradient-start: rgba(255, 0, 0, 0.05); - background-gradient-end: rgba(255, 0, 0, 0.2); } - #panelLeft:ltr { - padding-right: 4px; } - #panelLeft:rtl { - padding-left: 4px; } - #panelLeft.vertical { - padding: 0; } - #panelLeft.vertical:ltr { - padding-right: 0px; } - #panelLeft.vertical:rtl { - padding-left: 0px; } - #panelRight:dnd { - background-gradient-direction: vertical; - background-gradient-start: rgba(0, 0, 255, 0.05); - background-gradient-end: rgba(0, 0, 255, 0.2); } - #panelRight:ltr { - padding-left: 4px; - spacing: 0px; } - #panelRight:rtl { - padding-right: 4px; - spacing: 0px; } - #panelRight.vertical { - padding: 0; } - #panelRight.vertical:ltr { - padding-right: 0px; } - #panelRight.vertical:rtl { - padding-left: 0px; } - #panelCenter { - spacing: 4px; } - #panelCenter:dnd { - background-gradient-direction: vertical; - background-gradient-start: rgba(0, 255, 0, 0.05); - background-gradient-end: rgba(0, 255, 0, 0.2); } - -.panel-top, .panel-bottom, .panel-left, .panel-right { - color: white; - font-size: 1em; - padding: 0px; } - -.panel-top { - border-image: url("common-assets/panel/panel-top.svg") 1 1 1 1; } - -.panel-bottom { - border-image: url("common-assets/panel/panel-bottom.svg") 1 1 1 1; } - -.panel-left { - border-image: url("common-assets/panel/panel-left.svg") 1 1 1 1; } - -.panel-right { - border-image: url("common-assets/panel/panel-right.svg") 1 1 1 1; } - -.panel-dummy { - background-color: rgba(220, 50, 47, 0.5); } - .panel-dummy:entered { - background-color: rgba(220, 50, 47, 0.6); } - -.panel-status-button { - border-width: 0; - -natural-hpadding: 3px; - -minimum-hpadding: 3px; - font-weight: bold; - color: white; - height: 22px; } - -.panel-button { - -natural-hpadding: 6px; - -minimum-hpadding: 2px; - font-weight: bold; - color: green; - transition-duration: 100; } - -.system-status-icon { - icon-size: 16px; - padding: 0 1px; } - -#overview { - spacing: 12px; } - -.window-caption { - background-color: rgba(7, 54, 66, 0.95); - border: 1px solid rgba(7, 54, 66, 0.95); - color: #657b83; - spacing: 25px; - border-radius: 2px; - font-size: 9pt; - padding: 5px 8px; - -cinnamon-caption-spacing: 4px; } - .window-caption#selected { - background-color: #268bd2; - color: #fdf6e3; - border: 1px solid #268bd2; - spacing: 25px; } - -.expo-workspaces-name-entry, -.expo-workspaces-name-entry#selected { - height: 15px; - border-radius: 2px; - font-size: 9pt; - padding: 5px 8px; - -cinnamon-caption-spacing: 4px; - color: #657b83; - background-color: rgba(18, 137, 167, 0.35); - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .expo-workspaces-name-entry:focus, - .expo-workspaces-name-entry#selected:focus { - border: 1px solid #268bd2; - background-color: #268bd2; - color: #fdf6e3; - font-style: italic; - transition-duration: 300; - selection-background-color: #fdf6e3; - selected-color: #268bd2; } - -.expo-workspace-thumbnail-frame { - border: 4px solid rgba(255, 255, 255, 0); - background-color: rgba(255, 255, 255, 0); - border-radius: 2px; } - .expo-workspace-thumbnail-frame#active { - border: 4px solid #268bd2; - background-color: black; - border-radius: 2px; } - -.expo-background { - background-color: #073642; } - -.workspace-thumbnails { - spacing: 26px; } - .workspace-thumbnails-background, .workspace-thumbnails-background:rtl { - padding: 8px; } - -.workspace-add-button { - background-image: url("common-assets/misc/add-workspace.svg"); - height: 200px; - width: 35px; - transition-duration: 100; } - .workspace-add-button:hover { - background-image: url("common-assets/misc/add-workspace-hover.svg"); - transition-duration: 100; } - .workspace-add-button:active { - background-image: url("common-assets/misc/add-workspace-active.svg"); - transition-duration: 100; } - -.workspace-overview-background-shade { - background-color: rgba(0, 0, 0, 0.5); } - -.workspace-close-button, -.window-close { - background-image: url("common-assets/misc/close.svg"); - background-size: 26px; - height: 26px; - width: 26px; - -cinnamon-close-overlap: 10px; } - .workspace-close-button:hover, - .window-close:hover { - background-image: url("common-assets/misc/close-hover.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - .workspace-close-button:active, - .window-close:active { - background-image: url("common-assets/misc/close-active.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - -.window-close-area { - background-image: url("common-assets/misc/trash-icon.svg"); - height: 120px; - width: 400px; } - -.about-content { - width: 550px; - height: 250px; - spacing: 8px; - padding-bottom: 10px; } - -.about-title { - font-size: 2em; - font-weight: bold; } - -.about-uuid { - font-size: 10px; - color: #888; } - -.about-icon { - padding-right: 20px; - padding-bottom: 14px; } - -.about-scrollBox { - border: 1px solid #dcdfe3; - border-radius: 2px; - background-color: #fdf6e3; - padding: 4px; - padding-right: 0; - border-radius: 0; } - .about-scrollBox-innerBox { - padding: 1.2em; - spacing: 1.2em; } - -.about-description { - padding-top: 4px; - padding-bottom: 16px; } - -.about-version { - padding-left: 7px; - font-size: 10px; - color: #888; } - -.calendar { - padding: .4em 1.75em; - spacing-rows: 0px; - spacing-columns: 0px; } - -.calendar-month-label { - color: #5c616c; - font-weight: bold; - padding: 8px 0; } - -.calendar-change-month-back, -.calendar-change-month-forward { - width: 16px; - height: 16px; } - -.calendar-change-month-back { - background-image: url("common-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:focus, .calendar-change-month-back:hover { - background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-back:active { - background-image: url("common-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:rtl { - background-image: url("common-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { - background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-back:rtl:active { - background-image: url("common-assets/misc/calendar-arrow-right.svg"); } - -.calendar-change-month-forward { - background-image: url("common-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { - background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-forward:active { - background-image: url("common-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:rtl { - background-image: url("common-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { - background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-forward:rtl:active { - background-image: url("common-assets/misc/calendar-arrow-left.svg"); } - -.datemenu-date-label { - padding: .4em 1.75em; - font-weight: bold; - text-align: center; - color: #5c616c; - border-radius: 2px; } - -.calendar-day-base { - font-size: 80%; - text-align: center; - width: 25px; - height: 25px; - padding: 0.1em; - margin: 2px; - border-radius: 12.5px; } - -.calendar-day-heading { - color: rgba(92, 97, 108, 0.85); - margin-top: 1em; - font-size: 70%; } - -.calendar-day { - border-width: 0; - color: rgba(92, 97, 108, 0.8); } - -.calendar-day-top { - border-top-width: 0; } - -.calendar-day-left { - border-left-width: 0; } - -.calendar-nonwork-day { - color: #5c616c; - background-color: transparent; - font-weight: bold; } - -.calendar-today, -.calendar-today:active, -.calendar-today:focus, -.calendar-today:hover { - font-weight: bold; - color: #fdf6e3; - background-color: #268bd2; - border-width: 0; } - -.calendar-other-month-day { - color: rgba(92, 97, 108, 0.3); - opacity: 1; } - -.calendar-week-number { - color: rgba(92, 97, 108, 0.7); - font-size: 80%; } - -#notification { - border-radius: 3px; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - padding: 13px; - spacing-rows: 10px; - spacing-columns: 10px; - margin-from-right-edge-of-screen: 20px; - width: 34em; - color: #657b83; } - .menu #notification, - .popup-menu #notification { - border-image: url("light-assets/misc/message.svg") 9 9 9 9; } - .menu #notification, .menu #notification.multi-line-notification, - .popup-menu #notification, - .popup-menu #notification.multi-line-notification { - color: #5c616c; } - .menu #notification .notification-button, .menu #notification .notification-icon-button, - .popup-menu #notification .notification-button, - .popup-menu #notification .notification-icon-button { - padding: 5px; } - #notification.multi-line-notification { - padding-bottom: 13px; - color: #657b83; } - #notification-scrollview { - max-height: 10em; } - #notification-scrollview > .top-shadow, #notification-scrollview > .bottom-shadow { - height: 1em; } - #notification-scrollview:ltr > StScrollBar { - padding-left: 6px; } - #notification-scrollview:rtl > StScrollBar { - padding-right: 6px; } - #notification-body { - spacing: 5px; } - #notification-actions { - spacing: 10px; } - -.notification-with-image { - min-height: 159px; - color: #657b83; } - -.notification-button, .notification-icon-button { - padding: 5px; } - -.notification-icon-button > StIcon { - icon-size: 36px; } - -#altTabPopup { - padding: 8px; - spacing: 16px; } - -.switcher-list { - color: #657b83; - background: none; - border: none; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; } - .switcher-list > StBoxLayout { - padding: 4px; } - .switcher-list-item-container { - spacing: 8px; } - .switcher-list .item-box { - padding: 8px; - border-radius: 2px; } - .switcher-list .item-box:outlined { - padding: 8px; - border: 1px solid #268bd2; } - .switcher-list .item-box:selected { - color: #fdf6e3; - background-color: #268bd2; - border: 0px solid #268bd2; } - .switcher-list .thumbnail { - width: 256px; } - .switcher-list .thumbnail-box { - padding: 2px; - spacing: 4px; } - .switcher-list .separator { - width: 1px; - background: rgba(255, 255, 255, 0.2); } - -.switcher-arrow { - border-color: transparent; - color: #657b83; } - .switcher-arrow:highlighted { - border-color: transparent; - color: white; } - -.thumbnail-scroll-gradient-left { - background-color: transparent; - border-radius: 24px; - border-radius-topright: 0px; - border-radius-bottomright: 0px; - width: 60px; } - -.thumbnail-scroll-gradient-right { - background-color: transparent; - border-radius: 24px; - border-radius-topleft: 0px; - border-radius-bottomleft: 0px; - width: 60px; } - -.ripple-box { - width: 104px; - height: 104px; - background-image: url("common-assets/misc/corner-ripple.svg"); - background-size: contain; } - -.lightbox { - background-color: rgba(0, 0, 0, 0.4); } - -.flashspot { - background-color: white; } - -.modal-dialog { - color: #5c616c; - background-color: rgba(245, 246, 247, 0); - border: none; - border-image: url("light-assets/misc/modal.svg") 9 9 9 67; - padding: 0 5px 6px 5px; } - .modal-dialog > StBoxLayout:first-child { - padding: 20px 10px 10px 10px; } - .modal-dialog-button-box { - spacing: 0; - margin: 0px; - padding: 14px 10px; - background: none; - border: none; - border-image: url("light-assets/misc/button-box.svg") 9 9 9 9; } - .modal-dialog-button-box .modal-dialog-button { - padding-top: 0; - padding-bottom: 0; - height: 30px; } - -.run-dialog { - padding: 0px 15px 10px 15px; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; } - .run-dialog > * { - padding: 0; } - .run-dialog-label { - font-size: 0; - font-weight: bold; - color: #657b83; - padding-bottom: 0; } - .run-dialog-error-label { - color: #dc322f; } - .run-dialog-error-box { - padding-top: 15px; - spacing: 5px; } - .run-dialog-completion-box { - padding-left: 15px; - font-size: 10px; } - .run-dialog-entry { - width: 21em; - padding: 7px; - border-radius: 3px; - caret-color: #657b83; - selected-color: #fdf6e3; - selection-background-color: #268bd2; - color: #657b83; - background-color: rgba(18, 137, 167, 0.35); - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .run-dialog-entry:focus { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .run-dialog .modal-dialog-button-box { - border: none; - box-shadow: none; - background: none; - background-gradient-direction: none; } - -/* CinnamonMountOperation Dialogs */ -.cinnamon-mount-operation-icon { - icon-size: 48px; } - -.mount-password-reask { - color: #cb4b16; } - -.show-processes-dialog, -.mount-question-dialog { - spacing: 24px; } - .show-processes-dialog-subject, - .mount-question-dialog-subject { - padding-top: 10px; - padding-left: 17px; - padding-bottom: 6px; } - .show-processes-dialog-subject:rtl, - .mount-question-dialog-subject:rtl { - padding-left: 0px; - padding-right: 17px; } - .show-processes-dialog-description, - .mount-question-dialog-description { - padding-left: 17px; - width: 28em; } - .show-processes-dialog-description:rtl, - .mount-question-dialog-description:rtl { - padding-right: 17px; } - -.show-processes-dialog-app-list { - max-height: 200px; - padding-top: 24px; - padding-left: 49px; - padding-right: 32px; } - .show-processes-dialog-app-list:rtl { - padding-right: 49px; - padding-left: 32px; } - .show-processes-dialog-app-list-item { - color: #ccc; } - .show-processes-dialog-app-list-item:hover { - color: white; } - .show-processes-dialog-app-list-item:ltr { - padding-right: 1em; } - .show-processes-dialog-app-list-item:rtl { - padding-left: 1em; } - .show-processes-dialog-app-list-item-icon:ltr { - padding-right: 17px; } - .show-processes-dialog-app-list-item-icon:rtl { - padding-left: 17px; } - .show-processes-dialog-app-list-item-name { - font-size: 1.1em; } - -.magnifier-zoom-region { - border: 2px solid maroon; } - .magnifier-zoom-region .full-screen { - border-width: 0px; } - -#keyboard { - background-color: rgba(7, 54, 66, 0.95); - border-width: 0; - border-top-width: 1px; - border-color: rgba(0, 0, 0, 0.4); } - -.keyboard-layout { - spacing: 10px; - padding: 10px; } - -.keyboard-row { - spacing: 15px; } - -.keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; - font-weight: bold; - border-radius: 3px; - box-shadow: none; - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .keyboard-key:hover { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .keyboard-key:active, .keyboard-key:checked { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #fdf6e3; - border: 1px solid #268bd2; - background-color: #268bd2; } - .keyboard-key:grayed { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #234b56; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -.keyboard-subkeys { - color: #657b83; - padding: 5px; - -arrow-border-radius: 2px; - -arrow-background-color: rgba(7, 54, 66, 0.95); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0, 0, 0, 0.4); - -arrow-base: 20px; - -arrow-rise: 10px; - -boxpointer-gap: 5px; } - -.menu-favorites-box { - margin: auto; - padding: 10px; - transition-duration: 300; - background-color: #F5F6F7; - border: 1px solid #dcdfe3; } - -.menu-favorites-button { - padding: 10px; - border: 1px solid transparent; } - -.menu-places-box { - margin: auto; - padding: 10px; - border: 0px solid red; } - -.menu-places-button { - padding: 10px; } - -.menu-categories-box { - padding: 10px 30px 10px 30px; } - -.menu-applications-inner-box, .menu-applications-outer-box { - padding: 10px 10px 0 10px; } - -.menu-application-button { - padding: 7px; - border: 1px solid transparent; } - .menu-application-button:highlighted { - font-weight: bold; } - .menu-application-button-selected { - padding: 7px; } - .menu-application-button-selected:highlighted { - font-weight: bold; } - .menu-application-button-label:ltr { - padding-left: 5px; } - .menu-application-button-label:rtl { - padding-right: 5px; } - -.menu-category-button { - padding: 7px; - border: 1px solid transparent; } - .menu-category-button-selected { - padding: 7px; } - .menu-category-button-hover { - background-color: red; - border-radius: 2px; } - .menu-category-button-greyed { - padding: 7px; - color: rgba(92, 97, 108, 0.55); - border: 1px solid transparent; } - .menu-category-button-label:ltr { - padding-left: 5px; } - .menu-category-button-label:rtl { - padding-right: 5px; } - -.menu-selected-app-box { - padding-right: 30px; - padding-left: 28px; - text-align: right; - height: 30px; } - .menu-selected-app-box:rtl { - padding-top: 10px; - height: 30px; } - -.menu-selected-app-title { - font-weight: bold; } - -.menu-selected-app-description { - max-width: 150px; } - -.menu-search-box:ltr { - padding-left: 30px; } - -.menu-search-box-rtl { - padding-right: 30px; } - -#menu-search-entry { - width: 250px; - height: 15px; - font-weight: normal; - caret-color: #5c616c; } - -.menu-search-entry-icon { - icon-size: 1em; - color: #5c616c; } - -/* Context menu (at the moment only for favorites) */ -.info-osd { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 16px; - color: white; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } - -.osd-window { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 20px; - margin: 32px; - min-width: 64px; - min-height: 64px; - color: white; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } - .osd-window .osd-monitor-label { - font-size: 3em; } - .osd-window .level { - padding: 0; - height: 4px; - background-color: rgba(0, 0, 0, 0.5); - border-radius: 2px; - color: #268bd2; } - -.window-list-box { - spacing: 6px; - padding-left: 10px; } - .panel-bottom .window-list-box { - padding-top: 1px; } - .panel-top .window-list-box { - padding-bottom: 1px; } - .window-list-box.vertical { - spacing: 4px; - padding: 10px 0; } - .window-list-box:highlight { - background-color: rgba(220, 50, 47, 0.5); } - -.window-list-item-label { - font-weight: bold; - width: 15em; - min-width: 5px; } - -.window-list-item-box { - font-weight: bold; - background-image: none; - padding-top: 0; - padding-left: 8px; - padding-right: 8px; - transition-duration: 100; - color: rgba(255, 255, 255, 0.6); } - .window-list-item-box:hover { - color: white; } - .window-list-item-box:active, .window-list-item-box:checked, .window-list-item-box:focus { - color: white; } - .panel-bottom .window-list-item-box:active, .panel-bottom .window-list-item-box:checked, .panel-bottom .window-list-item-box:focus { - border-image: url("common-assets/panel/window-list-active-bottom.svg") 3 3 1 3; } - .panel-top .window-list-item-box:active, .panel-top .window-list-item-box:checked, .panel-top .window-list-item-box:focus { - border-image: url("common-assets/panel/window-list-active-top.svg") 3 3 3 1; } - .panel-left .window-list-item-box:active, .panel-left .window-list-item-box:checked, .panel-left .window-list-item-box:focus { - border-image: url("common-assets/panel/window-list-active-left.svg") 3 1 3 3; } - .panel-right .window-list-item-box:active, .panel-right .window-list-item-box:checked, .panel-right .window-list-item-box:focus { - border-image: url("common-assets/panel/window-list-active-right.svg") 1 3 3 3; } - .window-list-item-box.right, .window-list-item-box.left { - padding-left: 0px; - padding-right: 0px; } - -.window-list-item-demands-attention { - background-gradient-start: #cb4b16; - background-gradient-end: #cb4b16; } - -.sound-button { - width: 22px; - height: 13px; - padding: 8px; } - .sound-button-container { - padding-right: 3px; - padding-left: 3px; } - .sound-button StIcon { - icon-size: 1.4em; } - -.sound-track-infos { - padding: 5px; } - -.sound-track-info { - padding-top: 2px; - padding-bottom: 2px; } - .sound-track-info StIcon { - icon-size: 16px; } - .sound-track-info StLabel { - padding-left: 5px; - padding-right: 5px; } - -.sound-track-box { - padding-left: 15px; - padding-right: 15px; - max-width: 220px; } - -.sound-seek-box { - padding-left: 15px; } - .sound-seek-box StLabel { - padding-top: 2px; } - .sound-seek-box StIcon { - icon-size: 16px; } - -.sound-seek-slider { - width: 140px; } - -.sound-volume-menu-item { - padding: .4em 1.75em; } - .sound-volume-menu-item StIcon { - icon-size: 1.14em; - padding-left: 8px; - padding-right: 8px; } - -.sound-playback-control { - padding: 5px 10px 10px 10px; } - -.sound-player { - padding: 0 4px; } - .sound-player > StBoxLayout:first-child { - padding: 5px 10px 12px 10px; - spacing: 0.5em; } - .sound-player > StBoxLayout:first-child StButton:small { - width: 16px; - height: 8px; - padding: 1px; } - .sound-player > StBoxLayout:first-child StButton:small StIcon { - icon-size: 12px; } - .sound-player-generic-coverart { - background: rgba(0, 0, 0, 0.2); } - .sound-player-overlay { - width: 290px; - height: 70px; - padding: 15px; - spacing: 0.5em; - background: rgba(5, 35, 43, 0.85); - border: 0px solid rgba(2, 16, 20, 0.95); - border-bottom: 1px; - color: #657b83; } - .sound-player-overlay StButton { - width: 22px; - height: 13px; - padding: 5px; - color: #657b83; - border-radius: 2px; - border: 1px solid rgba(7, 54, 66, 0); } - .sound-player-overlay StButton StIcon { - icon-size: 16px; } - .sound-player-overlay StButton:hover { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .sound-player-overlay StButton:active { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px #268bd2; } - .sound-player-overlay StBoxLayout { - padding-top: 2px; } - .sound-player .slider { - height: 0.5em; - padding: 0; - border: none; - -slider-height: 0.5em; - -slider-background-color: #657b83; - -slider-border-color: transparent; - -slider-active-background-color: #268bd2; - -slider-active-border-color: transparent; - -slider-border-width: 0px; - -slider-handle-radius: 0px; } - -#workspaceSwitcher { - spacing: 0px; - padding: 3px; } - -/* Controls the styling when using the "Simple buttons" option */ -.workspace-switcher { - padding-left: 3px; - padding-right: 3px; } - -.workspace-button { - width: 20px; - height: 10px; - color: #fdf6e3; - padding: 3px; - padding-top: 4px; - transition-duration: 300; } - .workspace-button:outlined, .workspace-button:outlined:hover { - color: #268bd2; } - .workspace-button:hover { - color: rgba(38, 139, 210, 0.5); } - -/* Controls the style when using the "Visual representation" option */ -.workspace-graph { - padding: 3px; - spacing: 3px; } - -.workspace-graph .workspace { - border: 1px solid rgba(0, 0, 0, 0.4); - background-gradient-direction: none; - background-color: rgba(0, 0, 0, 0.2); } - -.workspace-graph .workspace:active { - border: 1px solid #268bd2; - background-gradient-direction: none; } - -.workspace-graph .workspace .windows { - -active-window-background: rgba(12, 93, 113, 0.95); - -active-window-border: rgba(0, 0, 0, 0.8); - -inactive-window-background: rgba(12, 93, 113, 0.95); - -inactive-window-border: rgba(0, 0, 0, 0.8); } - -.workspace-graph .workspace:active .windows { - -active-window-background: rgba(14, 112, 137, 0.95); - -active-window-border: rgba(0, 0, 0, 0.8); - -inactive-window-background: rgba(7, 55, 67, 0.95); - -inactive-window-border: rgba(0, 0, 0, 0.8); } - -#panel-launchers-box { - padding-left: 7px; } - #panel-launchers-box.vertical { - padding: 2px 0; } - -.panel-launcher, -.launcher { - margin: 1px; - padding: 1px; - transition-duration: 200; } - .panel-launcher:hover, - .launcher:hover { - background-gradient-direction: none; - border: 0px solid #268bd2; } - .panel-bottom .panel-launcher:hover, .panel-bottom - .launcher:hover { - border-bottom-width: 1px; } - .panel-top .panel-launcher:hover, .panel-top - .launcher:hover { - border-top-width: 1px; } - .panel-left .panel-launcher:hover, .panel-left - .launcher:hover { - border-left-width: 1px; - padding-left: 0; } - .panel-right .panel-launcher:hover, .panel-right - .launcher:hover { - border-right-width: 1px; - padding-right: 0; } - -#overview-corner { - background-image: url("common-assets/misc/overview.png"); } - #overview-corner:hover { - background-image: url("common-assets/misc/overview-hover.png"); } - -.applet-separator { - padding: 1px 4px; } - -.applet-separator-line { - width: 1px; - background: rgba(255, 255, 255, 0.12); } - -.applet-box { - padding-left: 3px; - padding-right: 3px; - color: white; - text-shadow: none; - transition-duration: 100; } - .applet-box.vertical { - padding: 3px 0; } - .applet-box:hover { - color: #fdf6e3; - background-color: #268bd2; } - .applet-box:highlight { - background-image: none; - border-image: none; - background-color: rgba(220, 50, 47, 0.5); } - -.applet-label { - font-weight: bold; - color: white; } - .applet-label:hover, .applet-box:hover > .applet-label { - color: #fdf6e3; - text-shadow: none; } - -.applet-icon { - color: white; - icon-size: 22px; } - .applet-icon:hover, .applet-box:hover > .applet-icon { - color: #fdf6e3; - text-shadow: none; } - -.user-icon { - width: 32px; - height: 32px; - background-color: transparent; - border: none; - border-radius: 0; } - -.user-label { - color: #5c616c; - font-size: 1em; - font-weight: bold; - margin: 0px; } - -.desklet { - color: #657b83; } - .desklet:highlight { - background-color: rgba(220, 50, 47, 0.5); } - .desklet-with-borders { - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - color: #657b83; - padding: 12px; - padding-bottom: 16px; } - .desklet-with-borders:highlight { - background-color: rgba(220, 50, 47, 0.5); } - .desklet-with-borders-and-header { - border-image: url("common-assets/misc/desklet.svg") 9 9 9 9; - color: #657b83; - border-radius: 0; - border-radius-topleft: 0; - border-radius-topright: 0; - padding: 12px; - padding-bottom: 17px; } - .desklet-with-borders-and-header:highlight { - background-color: rgba(220, 50, 47, 0.5); } - .desklet-header { - border-image: url("common-assets/misc/desklet-header.svg") 9 9 9 9; - color: #657b83; - font-size: 1em; - padding: 12px; - padding-bottom: 6px; } - .desklet-drag-placeholder { - border: 2px solid #268bd2; - background-color: rgba(38, 139, 210, 0.3); } - -.photoframe-box { - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - color: #657b83; - padding: 12px; - padding-bottom: 16px; } - -/*FIXME*/ -.workspace-osd { - /*color: red;*/ - text-shadow: black 5px 5px 5px; - font-weight: bold; - font-size: 48pt; } - -.notification-applet-padding { - padding: .5em 1em; } - -.notification-applet-container { - max-height: 100px; } - -.tile-preview, .tile-preview.snap, -.tile-hud, .tile-hud.snap { - background-color: rgba(38, 139, 210, 0.3); - border: 1px solid #268bd2; } - -.xkcd-box { - padding: 6px; - border: 0px; - background-color: transparent; - border-radius: 0px; } diff --git a/common/cinnamon/common-assets/menu/menu-hover.svg b/common/cinnamon/common-assets/menu/menu-hover.svg deleted file mode 100644 index 6cdbdbe..0000000 --- a/common/cinnamon/common-assets/menu/menu-hover.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/common/cinnamon/common-assets/menu/menu-separator.svg b/common/cinnamon/common-assets/menu/menu-separator.svg deleted file mode 100644 index ce3763c..0000000 --- a/common/cinnamon/common-assets/menu/menu-separator.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - diff --git a/common/cinnamon/common-assets/misc/add-workspace-active.svg b/common/cinnamon/common-assets/misc/add-workspace-active.svg deleted file mode 100644 index 69c1a09..0000000 --- a/common/cinnamon/common-assets/misc/add-workspace-active.svg +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/common/cinnamon/common-assets/misc/add-workspace-hover.svg b/common/cinnamon/common-assets/misc/add-workspace-hover.svg deleted file mode 100644 index c5647ea..0000000 --- a/common/cinnamon/common-assets/misc/add-workspace-hover.svg +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/common/cinnamon/common-assets/misc/add-workspace.svg b/common/cinnamon/common-assets/misc/add-workspace.svg deleted file mode 100644 index 1cb3aa0..0000000 --- a/common/cinnamon/common-assets/misc/add-workspace.svg +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - diff --git a/common/cinnamon/common-assets/misc/bg.svg b/common/cinnamon/common-assets/misc/bg.svg deleted file mode 100644 index 1e6d24d..0000000 --- a/common/cinnamon/common-assets/misc/bg.svg +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg b/common/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg deleted file mode 100644 index 047f3c9..0000000 --- a/common/cinnamon/common-assets/misc/calendar-arrow-left-hover.svg +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/common-assets/misc/calendar-arrow-left.svg b/common/cinnamon/common-assets/misc/calendar-arrow-left.svg deleted file mode 100644 index 5d81d60..0000000 --- a/common/cinnamon/common-assets/misc/calendar-arrow-left.svg +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - diff --git a/common/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg b/common/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg deleted file mode 100644 index 002646a..0000000 --- a/common/cinnamon/common-assets/misc/calendar-arrow-right-hover.svg +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/common-assets/misc/calendar-arrow-right.svg b/common/cinnamon/common-assets/misc/calendar-arrow-right.svg deleted file mode 100644 index 74a728e..0000000 --- a/common/cinnamon/common-assets/misc/calendar-arrow-right.svg +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - diff --git a/common/cinnamon/common-assets/misc/close-active.svg b/common/cinnamon/common-assets/misc/close-active.svg deleted file mode 100644 index 8c060c8..0000000 --- a/common/cinnamon/common-assets/misc/close-active.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - -image/svg+xml \ No newline at end of file diff --git a/common/cinnamon/common-assets/misc/close-hover.svg b/common/cinnamon/common-assets/misc/close-hover.svg deleted file mode 100644 index 0f6121d..0000000 --- a/common/cinnamon/common-assets/misc/close-hover.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - -image/svg+xml \ No newline at end of file diff --git a/common/cinnamon/common-assets/misc/close.svg b/common/cinnamon/common-assets/misc/close.svg deleted file mode 100644 index e44adc7..0000000 --- a/common/cinnamon/common-assets/misc/close.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - -image/svg+xml \ No newline at end of file diff --git a/common/cinnamon/common-assets/misc/corner-ripple.svg b/common/cinnamon/common-assets/misc/corner-ripple.svg deleted file mode 100644 index 66fe3d6..0000000 --- a/common/cinnamon/common-assets/misc/corner-ripple.svg +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/cinnamon/common-assets/misc/desklet-header.svg b/common/cinnamon/common-assets/misc/desklet-header.svg deleted file mode 100644 index 5786395..0000000 --- a/common/cinnamon/common-assets/misc/desklet-header.svg +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/common-assets/misc/desklet.svg b/common/cinnamon/common-assets/misc/desklet.svg deleted file mode 100644 index 7a9ef51..0000000 --- a/common/cinnamon/common-assets/misc/desklet.svg +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/common-assets/misc/osd.svg b/common/cinnamon/common-assets/misc/osd.svg deleted file mode 100644 index 57addde..0000000 --- a/common/cinnamon/common-assets/misc/osd.svg +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/common-assets/misc/overview-hover.png b/common/cinnamon/common-assets/misc/overview-hover.png deleted file mode 100644 index 75673f9cf4d11cc891275cbcb5fc775db9585540..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 838 zcmV-M1G)T(P)kdg0009GNkl1!KD9DQ@_rPbw?9N7*sw#Z576(BYZ3DEzb{X_e)6zI27Qi4@NLTggv_=u%gc6IKq z_MDkkn?VhNLVmQbWvk!4Q-E9+tqwIZ;jQ&2E4P!K4{ zVmm2%q@W83^_SfE%JoPU#PVW+Td|Lms^%XH9UnTZV>$b6d z{;iU34gsM(fa~AKN6w(yeBwPF_MaV`T-4G#6|dp!-S{$2pZ|Q=%Vnpz|5@{Ca6S00 zlz1sJXa`i!JTylYZ!b%K?7q9$^qax-syC|M=I)D^N5_rH#`N;-Pu(o__C}S^1P6r% z*C$O!_Ow)PU-d_WouD0qS|zP`TY-r>$~^YT2l0me>;5hrW~9P=&pB+Y+{Wqsx>1SGJUMB~@W z>Dr(%@xn4ps(4lo8$o@ZkfAjy#g-&i?2R`@oyh|q*}}szNcyIcR;ZMdUWH*PF*&Ss zZN4?PvVi6mvE~L-wRk<)2wQXH5CwhZHWD!KbIZ5JreuJVm-AZYihvH8&lBRn&8q26 zs_Am|Ixp&b5n5Dy@FGCRX3>$w45I$si?j*_{L_oH6w%#Px`rnIxA=%Z0mD;*r^|!p Q1ONa407*qoM6N<$f{;O?8~^|S diff --git a/common/cinnamon/common-assets/misc/overview.png b/common/cinnamon/common-assets/misc/overview.png deleted file mode 100644 index 9eb4f87f4e8e2b95cb3ae488e84da3d63d1786ed..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 680 zcmV;Z0$2TsP)kdg00002VoOIv0RM-N z%)bBt010qNS#tmY3ljhU3ljkVnw%H_000McNliru-U%BC88MnF!IrGCBwm9)u_fl)|8*yQeM^6m$^r64|vV z3`vkcNr{9G7J`vMnZim6VY%*Zx;s0&JI-`zYgVOmhkZ`p_Z^=1dEe)GKPaJu{{h0T zyNHO0fQ^NPjqv*gY<94){zV`lb$k2Uf~Q@9+-l<8hxyJ#jr5`=-0o`A3*%NZ)IZ+*HH*RyO0Q4Yaj-SHFD97pssQ;?B{Jj#yThZ--;`ZmBH3X{6TcLhClVGN)8+2eH}DXOOW7= z=5IsRtH-?@rJgzt_jMTK$ziIHi--1?KrL_BSR06vB*7NO!=x54(svg~5+g=@AiA+u z-hf(6AUmjJ5N!<7=zw_Kt@@1A;!n0oVPoSFZ9sMuEm8n%M*X3|nt~&Dnib!6?3%C8 z^I(lXv>9cO?*&+xbF+%p)Ajrqz7v(xr%ra}QXfBG2v63X^WhzB>giInxmnC&7X(K$ zWevfR^DSrcnfwN_`+#Y_oVY)KD|Dz<_PYGudY9+@%%!pAb+$40&w&uPC)cXueyyw; z`Rn4-iR*Jq2{{o~Dh{f_`1;h;)z>R=bn;Fcg`$DF(eU9x!p07j6_}Y)rCbu@F&kA!CyxOMZ8Z_FEHjHVKl}m(9?n#zS$LZO O0000 - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/common/cinnamon/common-assets/panel/activities-active.svg b/common/cinnamon/common-assets/panel/activities-active.svg deleted file mode 100644 index 32c73a6..0000000 --- a/common/cinnamon/common-assets/panel/activities-active.svg +++ /dev/null @@ -1,178 +0,0 @@ - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/cinnamon/common-assets/panel/activities.svg b/common/cinnamon/common-assets/panel/activities.svg deleted file mode 100644 index b3bcad9..0000000 --- a/common/cinnamon/common-assets/panel/activities.svg +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/cinnamon/common-assets/panel/panel-bottom.svg b/common/cinnamon/common-assets/panel/panel-bottom.svg deleted file mode 100644 index 9615d95..0000000 --- a/common/cinnamon/common-assets/panel/panel-bottom.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/common/cinnamon/common-assets/panel/panel-left.svg b/common/cinnamon/common-assets/panel/panel-left.svg deleted file mode 100644 index f04619a..0000000 --- a/common/cinnamon/common-assets/panel/panel-left.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/common/cinnamon/common-assets/panel/panel-right.svg b/common/cinnamon/common-assets/panel/panel-right.svg deleted file mode 100644 index 85ca5b9..0000000 --- a/common/cinnamon/common-assets/panel/panel-right.svg +++ /dev/null @@ -1,79 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/common/cinnamon/common-assets/panel/panel-top.svg b/common/cinnamon/common-assets/panel/panel-top.svg deleted file mode 100644 index 1bd946e..0000000 --- a/common/cinnamon/common-assets/panel/panel-top.svg +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/cinnamon/common-assets/panel/window-list-active-bottom.svg b/common/cinnamon/common-assets/panel/window-list-active-bottom.svg deleted file mode 100644 index 5be9bd0..0000000 --- a/common/cinnamon/common-assets/panel/window-list-active-bottom.svg +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - diff --git a/common/cinnamon/common-assets/panel/window-list-active-left.svg b/common/cinnamon/common-assets/panel/window-list-active-left.svg deleted file mode 100644 index 11f4eff..0000000 --- a/common/cinnamon/common-assets/panel/window-list-active-left.svg +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - diff --git a/common/cinnamon/common-assets/panel/window-list-active-right.svg b/common/cinnamon/common-assets/panel/window-list-active-right.svg deleted file mode 100644 index cd9908c..0000000 --- a/common/cinnamon/common-assets/panel/window-list-active-right.svg +++ /dev/null @@ -1,164 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - diff --git a/common/cinnamon/common-assets/panel/window-list-active-top.svg b/common/cinnamon/common-assets/panel/window-list-active-top.svg deleted file mode 100644 index 30187f9..0000000 --- a/common/cinnamon/common-assets/panel/window-list-active-top.svg +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - diff --git a/common/cinnamon/common-assets/switch/switch-off-selected.svg b/common/cinnamon/common-assets/switch/switch-off-selected.svg deleted file mode 100644 index a6bca3a..0000000 --- a/common/cinnamon/common-assets/switch/switch-off-selected.svg +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/common-assets/switch/switch-on-selected.svg b/common/cinnamon/common-assets/switch/switch-on-selected.svg deleted file mode 100644 index ccf2299..0000000 --- a/common/cinnamon/common-assets/switch/switch-on-selected.svg +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg b/common/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg deleted file mode 100644 index 4789a32..0000000 --- a/common/cinnamon/dark-assets/checkbox/checkbox-checked-focused.svg +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/dark-assets/checkbox/checkbox-checked.svg b/common/cinnamon/dark-assets/checkbox/checkbox-checked.svg deleted file mode 100644 index 8f431e7..0000000 --- a/common/cinnamon/dark-assets/checkbox/checkbox-checked.svg +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg b/common/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg deleted file mode 100644 index 77c4256..0000000 --- a/common/cinnamon/dark-assets/checkbox/checkbox-unchecked-focused.svg +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg b/common/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg deleted file mode 100644 index d7ce8c4..0000000 --- a/common/cinnamon/dark-assets/checkbox/checkbox-unchecked.svg +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/dark-assets/menu/menu.svg b/common/cinnamon/dark-assets/menu/menu.svg deleted file mode 100644 index 2566cb6..0000000 --- a/common/cinnamon/dark-assets/menu/menu.svg +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/dark-assets/menu/submenu.svg b/common/cinnamon/dark-assets/menu/submenu.svg deleted file mode 100644 index 9369544..0000000 --- a/common/cinnamon/dark-assets/menu/submenu.svg +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/common/cinnamon/dark-assets/misc/button-box.svg b/common/cinnamon/dark-assets/misc/button-box.svg deleted file mode 100644 index 48e1932..0000000 --- a/common/cinnamon/dark-assets/misc/button-box.svg +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/cinnamon/dark-assets/misc/message.svg b/common/cinnamon/dark-assets/misc/message.svg deleted file mode 100644 index c9615d6..0000000 --- a/common/cinnamon/dark-assets/misc/message.svg +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/cinnamon/dark-assets/misc/modal.svg b/common/cinnamon/dark-assets/misc/modal.svg deleted file mode 100644 index fa76036..0000000 --- a/common/cinnamon/dark-assets/misc/modal.svg +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/dark-assets/switch/switch-off.svg b/common/cinnamon/dark-assets/switch/switch-off.svg deleted file mode 100644 index 3f50bda..0000000 --- a/common/cinnamon/dark-assets/switch/switch-off.svg +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/dark-assets/switch/switch-on.svg b/common/cinnamon/dark-assets/switch/switch-on.svg deleted file mode 100644 index 0c5f216..0000000 --- a/common/cinnamon/dark-assets/switch/switch-on.svg +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg b/common/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg deleted file mode 100644 index f63a213..0000000 --- a/common/cinnamon/light-assets/checkbox/checkbox-checked-focused.svg +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/light-assets/checkbox/checkbox-checked.svg b/common/cinnamon/light-assets/checkbox/checkbox-checked.svg deleted file mode 100644 index 6504d09..0000000 --- a/common/cinnamon/light-assets/checkbox/checkbox-checked.svg +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg b/common/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg deleted file mode 100644 index 89b2c49..0000000 --- a/common/cinnamon/light-assets/checkbox/checkbox-unchecked-focused.svg +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/light-assets/checkbox/checkbox-unchecked.svg b/common/cinnamon/light-assets/checkbox/checkbox-unchecked.svg deleted file mode 100644 index 08ee9e5..0000000 --- a/common/cinnamon/light-assets/checkbox/checkbox-unchecked.svg +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/light-assets/menu/menu.svg b/common/cinnamon/light-assets/menu/menu.svg deleted file mode 100644 index c734734..0000000 --- a/common/cinnamon/light-assets/menu/menu.svg +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/light-assets/menu/submenu.svg b/common/cinnamon/light-assets/menu/submenu.svg deleted file mode 100644 index 378f29b..0000000 --- a/common/cinnamon/light-assets/menu/submenu.svg +++ /dev/null @@ -1,117 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - diff --git a/common/cinnamon/light-assets/misc/button-box.svg b/common/cinnamon/light-assets/misc/button-box.svg deleted file mode 100644 index 414081a..0000000 --- a/common/cinnamon/light-assets/misc/button-box.svg +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/cinnamon/light-assets/misc/message.svg b/common/cinnamon/light-assets/misc/message.svg deleted file mode 100644 index d4096ee..0000000 --- a/common/cinnamon/light-assets/misc/message.svg +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/common/cinnamon/light-assets/misc/modal.svg b/common/cinnamon/light-assets/misc/modal.svg deleted file mode 100644 index 31894db..0000000 --- a/common/cinnamon/light-assets/misc/modal.svg +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/light-assets/switch/switch-off.svg b/common/cinnamon/light-assets/switch/switch-off.svg deleted file mode 100644 index c07aa05..0000000 --- a/common/cinnamon/light-assets/switch/switch-off.svg +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/light-assets/switch/switch-on.svg b/common/cinnamon/light-assets/switch/switch-on.svg deleted file mode 100644 index c7d9d3d..0000000 --- a/common/cinnamon/light-assets/switch/switch-on.svg +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/cinnamon/sass/_colors.scss b/common/cinnamon/sass/_colors.scss deleted file mode 100644 index fac334a..0000000 --- a/common/cinnamon/sass/_colors.scss +++ /dev/null @@ -1,101 +0,0 @@ -// When color definition differs for dark and light variant, -// it gets @if ed depending on $variant - - -$base_color: if($variant =='light', #fdf6e3, #073642); -$text_color: if($variant == 'light', #5c616c, #657b83); -$bg_color: if($variant =='light', #F5F6F7, #002b36); -$fg_color: if($variant =='light', #5c616c, #657b83); - -$selected_fg_color: #fdf6e3; -$selected_bg_color: #268bd2; -$selected_borders_color: darken($selected_bg_color, 20%); -$borders_color: if($variant =='light', darken($bg_color,9%), darken($bg_color,6%)); - -$link_color: if($variant == 'light', darken($selected_bg_color,10%), - lighten($selected_bg_color,20%)); -$link_visited_color: if($variant == 'light', darken($selected_bg_color,20%), - lighten($selected_bg_color,10%)); - -$selection_mode_bg: if($transparency == 'true', transparentize($selected_bg_color, 0.05), $selected_bg_color); -$selection_mode_fg: $selected_fg_color; -$warning_color: #cb4b16; -$error_color: #dc322f; -$warning_fg_color: white; -$error_fg_color: white; -$success_color: #859900; -$destructive_color: #dc322f; -$suggested_color: #2aa198; -$destructive_fg_color: white; -$suggested_fg_color: white; - -$drop_target_color: #b58900; - -//insensitive state derived colors -$insensitive_fg_color: if($variant == 'light', transparentize($fg_color, 0.45), transparentize($fg_color, 0.55)); -$insensitive_bg_color: if($variant == 'light', mix($bg_color, $base_color, 40%), lighten($bg_color, 2%)); - -$header_bg: red; -@if $transparency=='true' and $variant=='light' { $header_bg: transparentize(#eee8d5, 0.05); } -@if $transparency=='false' and $variant=='light' { $header_bg: #eee8d5; } -@if $transparency=='true' and ($variant=='dark' or $darker=='true') { $header_bg: transparentize(#002b36, 0.03); } -@if $transparency=='false' and ($variant=='dark' or $darker=='true') { $header_bg: #002b36; } - -$header_bg_backdrop: if($darker == 'true' or $variant == 'dark', lighten($header_bg, 1.5%), lighten($header_bg, 3%)); - -$header_border: if($variant == 'light' and $darker=='false', darken($header_bg, 7%), darken($header_bg, 4%)); - -$header_fg: if($variant == 'light', saturate(transparentize($fg_color, 0.2), 10%), saturate(transparentize($fg_color, 0.2), 10%)); -$header_fg: if($darker == 'true', saturate(transparentize(#657b83, 0.2), 10%), $header_fg); - -$dark_sidebar_bg: if($transparency == 'true', transparentize(#073642, 0.05), #073642); -$dark_sidebar_fg: #657b83; -$dark_sidebar_border: if($variant == 'light', $dark_sidebar_bg, darken($dark_sidebar_bg, 5%)); - -$osd_fg_color: $dark_sidebar_fg; -$osd_bg_color: $dark_sidebar_bg; - -$osd_button_bg: transparentize(lighten($osd_bg_color, 22%), 0.6); -$osd_button_border: transparentize(darken($osd_bg_color, 12%), 0.6); - -$osd_entry_bg: transparentize(lighten($osd_bg_color, 22%), 0.6); -$osd_entry_border: transparentize(darken($osd_bg_color, 12%), 0.6); - -$osd_insensitive_bg_color: darken($osd_bg_color, 3%); -$osd_insensitive_fg_color: mix($osd_fg_color, opacify($osd_bg_color, 1), 30%); -$osd_borders_color: transparentize(black, 0.3); - -$panel_bg: darken($dark_sidebar_bg, 4.7%); -$panel_fg: $dark_sidebar_fg; - -$entry_bg: if($variant=='light', $base_color, lighten($base_color, 0%)); -$entry_border: if($variant == 'light', #657b83, darken($borders_color, 0%)); - -$header_entry_bg: if($darker == 'true' or $variant == 'dark', transparentize(lighten($header_bg, 22%), 0.6), transparentize($base_color, 0.1)); -$header_entry_border: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 12%), 0.6), transparentize($header_fg, 0.7)); - -$button_bg: if($variant == 'light', lighten($bg_color, 2%), lighten($base_color, 2%)); -$button_border: $entry_border; - -$header_button_bg: if($darker == 'true' or $variant == 'dark', transparentize(lighten($header_bg, 22%), 0.6), transparentize($button_bg, 0.1)); -$header_button_border: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 12%), 0.6), transparentize($header_fg, 0.7)); - -//WM Buttons - -// Close -$wm_button_close_bg: if($variant == 'light' and $darker == 'false', #f46067, #dc322f); -$wm_button_close_hover_bg: if($variant == 'light' and $darker == 'false', #f68086, #cb4b16); -$wm_button_close_active_bg: if($variant == 'light' and $darker == 'false', #f13039, #dc322f); - -$wm_icon_close_bg: if($variant == 'light' and $darker == 'false',#657b83 , #002b36); - -// Minimize, Maximize -$wm_button_hover_bg: if($variant == 'light' and $darker == 'false', #fdfdfd, #657b83); -$wm_button_active_bg: $selected_bg_color; - -$wm_button_hover_border: if($variant == 'light' and $darker == 'false', #D1D3DA, #002b36); - -$wm_icon_bg: if($variant == 'light' and $darker == 'false', #90949E, #93a1a1); -$wm_icon_unfocused_bg: if($variant == 'light' and $darker == 'false', #B6B8C0, #657b83); -$wm_icon_hover_bg: if($variant == 'light' and $darker == 'false', #7A7F8B, #93a1a1); -$wm_icon_active_bg: $selected_fg_color; diff --git a/common/cinnamon/sass/_common.scss b/common/cinnamon/sass/_common.scss deleted file mode 100644 index 00af8f7..0000000 --- a/common/cinnamon/sass/_common.scss +++ /dev/null @@ -1,1688 +0,0 @@ -$asset_path: if($variant == 'dark', dark-assets, light-assets); - -// -// Globals -// -$font-size: 9; -$font-family: Futura Bk bt, sans, Sans-Serif; -$_bubble_bg_color: opacify($osd_bg_color,0.25); -$_bubble_fg_color: $osd_fg_color; -$_bubble_borders_color: transparentize($osd_fg_color,0.8); -$_shell_fg_color: white; - -stage { - font-family: $font-family; - @include fontsize($font-size); - color: $fg_color; -} - -.label-shadow { - color: rgba(0, 0, 0, 0); -} - -%reset_style { - background-color: transparent !important; - background-gradient-direction: none !important; - border: none !important; - border-radius: 0 !important; -} - -// -// Buttons -// -%button { - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - - &, &:focus, &:hover, &:hover:focus, &:active, &:active:focus, &:insensitive { - border-radius: 2px; - } - - @include button(normal); - - &:focus { @include button(focus); } - &:hover { @include button(hover); } - &:hover:focus { @include button(focus-hover); } - &:active, &:active:focus { @include button(active); } - &:insensitive { @include button(insensitive); } -} - -%osd_button { - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - border-radius: 2px; - - @include button(osd); - - &:hover { @include button(osd-hover); } - &:focus { color: $selected_bg_color; } - &:active { @include button(osd-active); } - &:insensitive { @include button(osd-insensitive); } -} - -// -// Entries -// -%entry { - padding: 7px; - caret-size: 1px; - selection-background-color: $selected_bg_color; - selected-color: $selected_fg_color; - transition-duration: 300ms; - border-radius: 3px; - - @include entry(normal); - - &:focus, &:hover { @include entry(focus); } - &:insensitive { @include entry(insensitive); } - - StIcon.capslock-warning { - icon-size: 16px; - warning-color: $warning_color; - padding: 0 4px; - } -} - -%osd_entry { - padding: 7px; - caret-size: 1px; - caret-color: $osd_fg_color; - selection-background-color: $selected_bg_color; - selected-color: $selected_fg_color; - transition-duration: 300ms; - border-radius: 3px; - - @include entry(osd); - - &:focus { @include entry(osd-focus); } - &:insensitive { @include entry(osd-insensitive); } -} - -// -// Scrollbars -// -StScrollView { - &.vfade { -st-vfade-offset: 0px; } - &.hfade { -st-hfade-offset: 0px; } -} - -StScrollBar { - - padding: 8px; - - StScrollView & { - min-width: 5px; - min-height: 5px; - } - - StBin#trough { - background-color: transparentize($base_color, 0.9); - border-radius: 8px; - } - - StButton#vhandle, StButton#hhandle { - border-radius: 2px; - background-color: mix($fg_color, $bg_color, 40%); - border: 0px solid; - margin: 0px; - - &:hover { background-color: mix($fg_color, $bg_color, 30%); } - - &:active { background-color: $selected_bg_color; } - } -} - -.separator { - -gradient-height: 1px; - -gradient-start: rgba(0,0,0,0); - -gradient-end: rgba(0,0,0,0); - -margin-horizontal: 1.5em; - height: 1em; -} - -// -// Slider -// -.popup-slider-menu-item, -.slider { - -slider-height: 4px; - -slider-background-color: $button_border; //background of the trough - -slider-border-color: transparentize(black, 1); //trough border color - -slider-active-background-color: $selected_bg_color; //active trough fill - -slider-active-border-color: transparentize(black, 1); //active trough border - -slider-border-width: 0; - -slider-handle-radius: 4px; - height: 18px; - min-width: 15em; - border: 0 solid transparent; - border-right-width: 1px; - border-left-width: 5px; - color: transparent; - - .popup-menu-item:active & { - -slider-background-color: transparentize(black, 0.8); - -slider-active-background-color: $selected_fg_color; - } -} - -// -// Check Boxes -// -.check-box { - - CinnamonGenericContainer { - spacing: .2em; - min-height: 30px; - padding-top: 2px; - } - - StLabel { font-weight: normal; } - - StBin { - width: 16px; - height: 16px; - background-image: url("#{$asset_path}/checkbox/checkbox-unchecked.svg"); - } - - &:focus StBin { background-image: url("#{$asset_path}/checkbox/checkbox-unchecked-focused.svg"); } - - &:checked StBin { background-image: url("#{$asset_path}/checkbox/checkbox-checked.svg"); } - - &:focus:checked StBin { background-image: url("#{$asset_path}/checkbox/checkbox-checked-focused.svg"); } -} - -// -// Radio Buttons -// -.radiobutton { - - CinnamonGenericContainer { - spacing: .2em; - height: 26px; - padding-top: 2px; - } - - StLabel { - padding-top: 4px; - font-size: 0.9em; - box-shadow: none; - } - - StBin { - width: 16px; - height: 16px; - background-image: url("#{$asset_path}/checkbox/checkbox-unchecked.svg"); - } - - &:focus StBin { background-image: url("#{$asset_path}/checkbox/checkbox-unchecked-focused.svg"); } - - &:checked StBin { background-image: url("#{$asset_path}/checkbox/checkbox-checked.svg"); } - - &:focus:checked StBin { background-image: url("#{$asset_path}/checkbox/checkbox-checked-focused.svg"); } -} - -// -// Switches -// -.toggle-switch { - width: 50px; - height: 20px; - background-size: contain; - background-image: url("#{$asset_path}/switch/switch-off.svg"); - - &:checked { background-image: url("#{$asset_path}/switch/switch-on.svg"); } - - .popup-menu-item:active & { - background-image: url("common-assets/switch/switch-off-selected.svg"); - - &:checked { background-image: url("common-assets/switch/switch-on-selected.svg"); } - } -} - -// -// Links -// -.cinnamon-link { - color: $link_color; - text-decoration: underline; - - &:hover { color: lighten($link_color,10%); } -} - -// -// Tooltip -// -#Tooltip { - border-radius: 3px; - padding: 5px 12px; - background-color: $osd_bg_color; - color: $osd_fg_color; - font-size: 1em; - font-weight: normal; - text-align: center; -} - -// -// Popvers/Menus -// -.menu, -.popup-menu, -%menu { - color: $fg_color; - border-image: url("#{$asset_path}/menu/menu.svg") 9 9 9 9; - - &-arrow { icon-size: 16px; } - - .popup-sub-menu { - background-gradient-direction: none; - box-shadow: none; - border-image: url("#{$asset_path}/menu/submenu.svg") 9 9 9 9; - - .popup-menu-item:ltr { padding-right: 0em; } - .popup-menu-item:rtl { padding-left: 0em; } - - StScrollBar { - padding: 4px; - StBin#trough, StBin#vhandle { border-width: 0; } - } - } - - .popup-menu-content { padding: 1em 0em 1em 0em; } - .popup-menu-item { - padding: .4em 1.75em; - spacing: 1em; - - &:active { - color: $selected_fg_color; - background-color: transparent; - border-image: url("common-assets/menu/menu-hover.svg") 9 9 1 1; - } - &:insensitive { - color: transparentize($fg_color, 0.5); - background: none; - } - } - - .popup-inactive-menu-item { //all icons and other graphical elements - color: $fg_color; - - &:insensitive { color: $insensitive_fg_color; } - } - - .popup-menu-item:active .popup-inactive-menu-item { color: $selected_fg_color; } - - &-icon { icon-size: 16px; } -} - -.popup-menu-boxpointer { - -arrow-border-radius: 3px; - -arrow-background-color: rgba(0,0,0,0.0); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0,0,0,0.0); - -arrow-base: 0; - -arrow-rise: 0; -} - -.popup-combo-menu { - @extend %menu; - padding: 10px 1px; -} -.popup-image-menu-item {} - -.popup-combobox-item { spacing: 1em; } - -.popup-separator-menu-item { - -gradient-height: 2px; - -gradient-start: transparent; - -gradient-end: transparent; - -margin-horizontal: 1.5em; - height: 1em; -} - -.popup-alternating-menu-item:alternate { - font-weight: normal; -} - -.popup-device-menu-item { spacing: .5em; } - -.popup-subtitle-menu-item { font-weight: normal; } - -.nm-menu-item-icons { spacing: .5em; } - -// -// Panel -// -#panel { - font-weight: bold; - height: 27px; - width: 32px; - - &:highlight { - border-image: none; - background-color: transparentize($error_color, 0.5); - } - - &Left { - spacing: 4px; - - &:dnd { - background-gradient-direction: vertical; - background-gradient-start: rgba(255,0,0,0.05); - background-gradient-end: rgba(255,0,0,0.2); - } - &:ltr { padding-right: 4px; } - &:rtl { padding-left: 4px; } - - &.vertical { - padding: 0; - - &:ltr { padding-right: 0px; } - &:rtl { padding-left: 0px; } - } - } - - &Right { - - &:dnd { - background-gradient-direction: vertical; - background-gradient-start: rgba(0,0,255,0.05); - background-gradient-end: rgba(0,0,255,0.2); - } - &:ltr { padding-left: 4px; spacing: 0px; } - &:rtl { padding-right: 4px; spacing: 0px; } - - &.vertical { - padding: 0; - - &:ltr { padding-right: 0px; } - &:rtl { padding-left: 0px; } - } - } - - &Center { - spacing: 4px; - - &:dnd { - background-gradient-direction: vertical; - background-gradient-start: rgba(0,255,0,0.05); - background-gradient-end: rgba(0,255,0,0.2); - } - } -} - -.panel { - $_panel_fg_color: $_shell_fg_color; - - &-top, &-bottom, &-left, &-right { - color: $_panel_fg_color; - font-size: 1em; - padding: 0px; - } - - &-top { border-image: url('common-assets/panel/panel-top.svg') 1 1 1 1; } - &-bottom { border-image: url('common-assets/panel/panel-bottom.svg') 1 1 1 1; } - &-left { border-image: url('common-assets/panel/panel-left.svg') 1 1 1 1; } - &-right { border-image: url('common-assets/panel/panel-right.svg') 1 1 1 1; } - - &-dummy { - background-color: transparentize($error_color, 0.5); - - &:entered { background-color: transparentize($error_color, 0.4); } - } - - &-status-button { - border-width: 0; - -natural-hpadding: 3px; - -minimum-hpadding: 3px; - font-weight: bold; - color: white; - height: 22px; - - &:hover {} - } - - &-button { - -natural-hpadding: 6px; - -minimum-hpadding: 2px; - font-weight: bold; - color: green; - transition-duration: 100; - - &:hover {} - } -} - -.system-status-icon { - icon-size: 16px; - padding: 0 1px; -} - -// -// Overview -// -#overview { spacing: 12px; } - -.window-caption { - background-color: $osd_bg_color; - border: 1px solid $osd_bg_color; - color: $osd_fg_color; - spacing: 25px; - border-radius: 2px; - font-size: 9pt; - padding: 5px 8px; - -cinnamon-caption-spacing: 4px; - - &#selected { - background-color: $selected_bg_color; - color: $selected_fg_color; - border: 1px solid $selected_bg_color; - spacing: 25px; - } -} - -.expo-workspaces-name-entry, -.expo-workspaces-name-entry#selected { - height: 15px; - border-radius: 2px; - font-size: 9pt; - padding: 5px 8px; - -cinnamon-caption-spacing: 4px; - @include entry(osd); - - &:focus { - border: 1px solid $selected_bg_color; - background-color: $selected_bg_color; - color: $selected_fg_color; - font-style: italic; - transition-duration: 300; - selection-background-color: $selected_fg_color; - selected-color: $selected_bg_color; - } -} - -.expo-workspace-thumbnail-frame { - border: 4px solid rgba(255,255,255,0.0); - background-color: rgba(255,255,255,0.0); - border-radius: 2px; - - &#active { - border: 4px solid $selected_bg_color; - background-color: black; - border-radius: 2px; - } -} - -.expo-background { - background-color: opacify($osd_bg_color, 1); -} - -.workspace { - //&-controls { visible-height: 32px; } - - &-thumbnails { - spacing: 26px; - - &-background, &-background:rtl { padding: 8px; } - } - - &-add-button { - background-image: url("common-assets/misc/add-workspace.svg"); - height: 200px; - width: 35px; - transition-duration: 100; - - &:hover { - background-image: url("common-assets/misc/add-workspace-hover.svg"); - transition-duration: 100; - } - &:active { - background-image: url("common-assets/misc/add-workspace-active.svg"); - transition-duration: 100; - } - } - &-overview-background-shade { background-color: rgba(0,0,0,0.5); } -} - -.workspace-close-button, -.window-close { - background-image: url("common-assets/misc/close.svg"); - background-size: 26px; - height: 26px; - width: 26px; - -cinnamon-close-overlap: 10px; - - &:hover { - background-image: url("common-assets/misc/close-hover.svg"); - background-size: 26px; - height: 26px; - width: 26px; - } - &:active { - background-image: url("common-assets/misc/close-active.svg"); - background-size: 26px; - height: 26px; - width: 26px; - } -} - -//.workspace-thumbnail-indicator { -// outline: 2px solid red; -// border: 1px solid green; -//} -// -//.window-close:rtl { -// -st-background-image-shadow: 2px 2px 6px rgba(0,0,0,0.5); -//} - -.window-close-area { - background-image: url("common-assets/misc/trash-icon.svg"); - height: 120px; - width: 400px; -} - -// -// About Dialog (applet.js and desklet.js) -// -.about { - &-content { - width: 550px; - height: 250px; - spacing: 8px; - padding-bottom: 10px; - } - &-title { - font-size: 2em; - font-weight: bold; - } - &-uuid { - font-size: 10px; - color: #888; - } - &-icon { - padding-right: 20px; - padding-bottom: 14px; - } - &-scrollBox { - border: 1px solid $borders_color; - border-radius: 2px; - background-color: $base_color; - padding: 4px; - padding-right: 0; - border-radius: 0; - - &-innerBox { - padding: 1.2em; - spacing: 1.2em; - } - } - &-description { - padding-top: 4px; - padding-bottom: 16px; - } - &-version { - padding-left: 7px; - font-size: 10px; - color: #888; - } -} - - -// -// Calendar -// -.calendar { - padding: .4em 1.75em; - spacing-rows: 0px; - spacing-columns: 0px; -} - -.calendar-month-label { - color: $fg_color; - font-weight: bold; - padding: 8px 0; -} - -.calendar-change-month-back, -.calendar-change-month-forward { - width: 16px; - height: 16px; -} - -//arrow back -.calendar-change-month-back { - background-image: url("common-assets/misc/calendar-arrow-left.svg"); - - &:focus, &:hover { background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } - - &:active { background-image: url("common-assets/misc/calendar-arrow-left.svg"); } - - &:rtl { - background-image: url("common-assets/misc/calendar-arrow-right.svg"); - - &:focus, &:hover { background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } - - &:active { background-image: url("common-assets/misc/calendar-arrow-right.svg"); } - } -} - -//arrow forward -.calendar-change-month-forward { - background-image: url("common-assets/misc/calendar-arrow-right.svg"); - - &:focus, &:hover { background-image: url("common-assets/misc/calendar-arrow-right-hover.svg"); } - - &:active { background-image: url("common-assets/misc/calendar-arrow-right.svg"); } - - &:rtl { - background-image: url("common-assets/misc/calendar-arrow-left.svg"); - - &:focus, &:hover { background-image: url("common-assets/misc/calendar-arrow-left-hover.svg"); } - - &:active { background-image: url("common-assets/misc/calendar-arrow-left.svg"); } - } -} - -.datemenu-date-label { - padding: .4em 1.75em; - font-weight: bold; - text-align: center; - color: $fg_color; - border-radius: 2px; -} - -.calendar-day-base { - font-size: 80%; - text-align: center; - width: 25px; - height: 25px; - padding: 0.1em; - margin: 2px; - border-radius: 12.5px; -} - -.calendar-day-heading { - color: transparentize($fg_color, 0.15); - margin-top: 1em; - font-size: 70%; -} - -.calendar-day { - border-width: 0; - color: transparentize($fg_color, 0.2); -} - -.calendar-day-top { - border-top-width: 0; -} - -.calendar-day-left { - border-left-width: 0; -} - -.calendar-nonwork-day { - color: $fg_color; - background-color: transparent; - font-weight: bold; -} - -.calendar-today, -.calendar-today:active, -.calendar-today:focus, -.calendar-today:hover { - font-weight: bold; - color: $selected_fg_color; - background-color: $selected_bg_color; - border-width: 0; -} - -.calendar-other-month-day { - color: transparentize($fg_color, 0.7); - opacity: 1; -} - -.calendar-week-number { - color: transparentize($fg_color, 0.3); - font-size: 80%; -} - -// -// Notifications -// -#notification { - border-radius: 3px; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - padding: 13px; - spacing-rows: 10px; - spacing-columns: 10px; - margin-from-right-edge-of-screen: 20px; - width: 34em; - color: $osd_fg_color; - - .menu &, - .popup-menu & { - &, &.multi-line-notification { color: $fg_color; } - border-image: url("#{$asset_path}/misc/message.svg") 9 9 9 9; - - .notification-button, .notification-icon-button { - @extend %button; - padding: 5px; - } - - StEntry { @extend %entry; } - } - - &.multi-line-notification { - padding-bottom: 13px; - color: $osd_fg_color; - } - - &-scrollview { - max-height: 10em; - - > .top-shadow, > .bottom-shadow { height: 1em; } - - &:ltr > StScrollBar { padding-left: 6px; } - &:rtl > StScrollBar { padding-right: 6px; } - } - - &-body { spacing: 5px; } - &-actions { spacing: 10px; } -} - -.notification { - - &-with-image { - min-height: 159px; - color: $osd_fg_color; - } - - &-button, &-icon-button { - @extend %osd_button; - padding: 5px; - } - - &-icon-button > StIcon { icon-size: 36px; } - - StEntry { @extend %osd_entry; } -} - -// -// Alt Tab -/// -#altTabPopup { - padding: 8px; - spacing: 16px; -} - -.switcher-list { - color: $osd_fg_color; - background: none; - border: none; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; - - > StBoxLayout { - padding: 4px; - } - - &-item-container { spacing: 8px; } - - .item-box { - padding: 8px; - border-radius: 2px; - - &:outlined { - padding: 8px; - border: 1px solid $selected_bg_color; - } - - &:selected { - color: $selected_fg_color; - background-color: $selected_bg_color; - border: 0px solid $selected_bg_color; - } - } - - .thumbnail { width: 256px; } - - .thumbnail-box { - padding: 2px; - spacing: 4px; - } - .separator { - width: 1px; - background: rgba(255,255,255,0.2); - } -} - -.switcher-arrow { - border-color: rgba(0,0,0,0); - color: $osd_fg_color; - - &:highlighted { - border-color: rgba(0,0,0,0); - color: $_shell_fg_color; - } -} - -//.switcher-preview-backdrop { background-color: rgba(25,25,25,0.95); } - -.thumbnail-scroll-gradient-left { - background-color: rgba(0, 0, 0, 0); - border-radius: 24px; - border-radius-topright: 0px; - border-radius-bottomright: 0px; - width: 60px; -} - -.thumbnail-scroll-gradient-right { - background-color: rgba(0, 0, 0, 0); - border-radius: 24px; - border-radius-topleft: 0px; - border-radius-bottomleft: 0px; - width: 60px; -} - -// -//Activities Ripples -// -.ripple-box { - width: 104px; - height: 104px; - background-image: url("common-assets/misc/corner-ripple.svg"); - background-size: contain; -} - -// -// Modal dialogs -// -.lightbox { background-color: rgba(0, 0, 0, 0.4); } -.flashspot { background-color: white; } - -.modal-dialog { - color: $fg_color; - background-color: transparentize($bg_color, 1); - border: none; - border-image: url("#{$asset_path}/misc/modal.svg") 9 9 9 67; - padding: 0 5px 6px 5px; - - > StBoxLayout:first-child { - padding: 20px 10px 10px 10px; - } - - &-button-box { - spacing: 0; - margin: 0px; - padding: 14px 10px; - background: none; - border: none; - border-image: url("#{$asset_path}/misc/button-box.svg") 9 9 9 9; - - .modal-dialog-button { - padding-top: 0; - padding-bottom: 0; - height: 30px; - - @extend %osd_button; - } - } -} - -// -// Run dialog -// -.run-dialog { - padding: 0px 15px 10px 15px; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - - > * { padding: 0; } - - &-label { - font-size: 0; - font-weight: bold; - color: $osd_fg_color; - padding-bottom: 0; - } - - &-error-label { color: $error_color; } - - &-error-box { - padding-top: 15px; - spacing: 5px; - } - &-completion-box { - padding-left: 15px; - font-size: 10px; - } - &-entry { - width: 21em; - padding: 7px; - border-radius: 3px; - caret-color: $osd_fg_color; - selected-color: $selected_fg_color; - selection-background-color: $selected_bg_color; - - @include entry(osd); - - &:focus { @include entry(osd-focus); } - } - .modal-dialog-button-box { - border: none; - box-shadow: none; - background: none; - background-gradient-direction: none; - } -} - -/* CinnamonMountOperation Dialogs */ -.cinnamon-mount-operation-icon { - icon-size: 48px; -} - -.mount-password-reask { - color: $warning_color; -} - -.show-processes-dialog, -.mount-question-dialog { - spacing: 24px; - - &-subject { - padding-top: 10px; - padding-left: 17px; - padding-bottom: 6px; - - &:rtl { - padding-left: 0px; - padding-right: 17px; - } - } - &-description { - padding-left: 17px; - width: 28em; - - &:rtl { padding-right: 17px; } - } -} - -.show-processes-dialog-app-list { - max-height: 200px; - padding-top: 24px; - padding-left: 49px; - padding-right: 32px; - - &:rtl { - padding-right: 49px; - padding-left: 32px; - } - - &-item { - color: #ccc; - - &:hover { color: white } - - &:ltr { padding-right: 1em; } - &:rtl { padding-left: 1em; } - - &-icon:ltr { padding-right: 17px; } - &-icon:rtl { padding-left: 17px; } - - &-name { font-size: 1.1em; } - } -} - -// -// Magnifier -// -.magnifier-zoom-region { - border: 2px solid rgba(128, 0, 0, 1); - - .full-screen { border-width: 0px; } -} - -// -// On-Screen Keyboard -// -#keyboard { - background-color: $osd_bg_color; - border-width: 0; - border-top-width: 1px; - border-color: transparentize(black, 0.6); -} - -.keyboard-layout { - spacing: 10px; - padding: 10px; -} - -.keyboard-row { - spacing: 15px; -} - -.keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; - font-weight: bold; - border-radius: 3px; - box-shadow: none; - - @include button(osd); - - &:hover { @include button(osd-hover); } - &:active, &:checked { @include button(osd-active); } - - &:grayed { @include button(osd-insensitive); } -} - -.keyboard-subkeys { //long press on a key popup - color: $osd_fg_color; - padding: 5px; - -arrow-border-radius: 2px; - -arrow-background-color: $osd_bg_color; - -arrow-border-width: 1px; - -arrow-border-color: transparentize(black, 0.6);; - -arrow-base: 20px; - -arrow-rise: 10px; - -boxpointer-gap: 5px; -} - -// -// Cinnamon Specific Section -// - -// -// Menu (menu.js) -// -.menu { - &-favorites-box { - margin: auto; - padding: 10px; - transition-duration: 300; - background-color: $bg_color; - border: 1px solid $borders_color; - } - - &-favorites-button { - padding: 10px; - border: 1px solid rgba(0,0,0,0); - - &:hover { @extend %button:hover; } - } - - &-places { - - &-box { - margin: auto; - padding: 10px; - border: 0px solid red; - } - - &-button { padding: 10px; } - } - - &-categories-box { padding: 10px 30px 10px 30px; } - - &-applications-inner-box, - &-applications-outer-box { padding: 10px 10px 0 10px; } - - &-application-button { - padding: 7px; - border: 1px solid rgba(0,0,0,0); - - // This style is used in menu application buttons for applications which were newly installed - &:highlighted { font-weight: bold; } - - &-selected { - padding: 7px; - @extend %button:hover; - - &:highlighted { font-weight: bold; } - } - - &-label:ltr { padding-left: 5px; } - &-label:rtl { padding-right: 5px; } - } - - &-category-button { - padding: 7px; - border: 1px solid rgba(0,0,0,0); - - &-selected { - padding: 7px; - @extend %button:hover; - } - &-hover { - background-color: red; - border-radius: 2px; - } - &-greyed { - padding: 7px; - color: $insensitive_fg_color; - border: 1px solid rgba(0,0,0,0); - } - - &-label:ltr { padding-left: 5px; } - &-label:rtl { padding-right: 5px; } - } - - // Name and description of the currently hovered item in the menu - // This appears on the bottom right hand corner of the menu - &-selected-app-box { - padding-right: 30px; - padding-left: 28px; - text-align: right; - height: 30px; - - &:rtl { - padding-top: 10px; - height: 30px; - } - } - - &-selected-app-title { font-weight: bold; } - - &-selected-app-description { max-width: 150px; } - - &-search-box:ltr { padding-left: 30px; } - &-search-box-rtl { padding-right: 30px; } -} - -#menu-search-entry { - width: 250px; - height: 15px; - font-weight: normal; - caret-color: $fg_color; - - @extend %entry; -} - -.menu-search-entry-icon { - icon-size: 1em; - color: $fg_color; -} - -/* Context menu (at the moment only for favorites) */ -.menu-context-menu { -} - -// -// OSD -// -.info-osd { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 16px; - color: $_shell_fg_color; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; -} - -.osd-window { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 20px; - margin: 32px; - min-width: 64px; - min-height: 64px; - - color: $_shell_fg_color; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; - -.osd-monitor-label { font-size: 3em; } - - .level { - padding: 0; - height: 4px; - background-color: transparentize(black, 0.5); - border-radius: 2px; - color: $selected_bg_color; - } -} - -// -// Window list (windowList.js) -// -.window-list { - - &-box { - spacing: 6px; - padding-left: 10px; - - .panel-bottom & { padding-top: 1px; } - .panel-top & { padding-bottom: 1px; } - - &.vertical { - spacing: 4px; - padding: 10px 0; - } - - &:highlight { background-color: transparentize($error_color, 0.5); } - } - - &-item-label { - font-weight: bold; - width: 15em; - min-width: 5px; - } - - &-item-box { - font-weight: bold; - background-image: none; - padding-top: 0; - padding-left: 8px; - padding-right: 8px; - transition-duration: 100; - color: transparentize($_shell_fg_color, 0.4); - - &:hover {color: $_shell_fg_color;} - - &:active, - &:checked, - &:focus { - color: $_shell_fg_color; - - .panel-bottom & { border-image: url("common-assets/panel/window-list-active-bottom.svg") 3 3 1 3; } - .panel-top & { border-image: url("common-assets/panel/window-list-active-top.svg") 3 3 3 1; } - .panel-left & { border-image: url("common-assets/panel/window-list-active-left.svg") 3 1 3 3; } - .panel-right & { border-image: url("common-assets/panel/window-list-active-right.svg") 1 3 3 3; } - } - - &.right, &.left { - padding-left: 0px; - padding-right: 0px; - } - } - - &-item-demands-attention { - background-gradient-start: $warning_color; - background-gradient-end: $warning_color; - } -} - -/// -// Sound Applet (status/volume.js) -// -.sound-button { - width: 22px; - height: 13px; - padding: 8px; - - @extend %button; - - &-container { - padding-right: 3px; - padding-left: 3px; - } - StIcon { icon-size: 1.4em; } -} - -.sound-track { - &-infos { padding: 5px; } - &-info { - padding-top: 2px; - padding-bottom: 2px; - - StIcon { icon-size: 16px; } - - StLabel { - padding-left: 5px; - padding-right: 5px; - } - } - &-box { - padding-left: 15px; - padding-right: 15px; - max-width: 220px; - } -} - -.sound-seek-box { - padding-left: 15px; - - StLabel { padding-top: 2px; } - StIcon { icon-size: 16px; } -} - -.sound-seek-slider { width: 140px; } - -.sound-volume-menu-item { - padding: .4em 1.75em; - - StIcon { - icon-size: 1.14em; - padding-left: 8px; - padding-right: 8px; - } -} - -.sound-playback-control { padding: 5px 10px 10px 10px; } - -// 2.8 -.sound-player { - padding: 0 4px; - - > StBoxLayout:first-child { - padding: 5px 10px 12px 10px; - spacing: 0.5em; - - StButton:small { - width: 16px; - height: 8px; - padding: 1px; - - StIcon { icon-size: 12px; } - } - } - - &-generic-coverart { - background: rgba(0,0,0,0.2); - } - - &-overlay { - width: 290px; - height: 70px; - padding: 15px; - spacing: 0.5em; - background: transparentize(darken($osd_bg_color, 5%), 0.1); - border: 0px solid darken($osd_bg_color, 10%); - border-bottom: 1px ; - color: $osd_fg_color; - - StButton { - width: 22px; - height: 13px; - padding: 5px; - color: $osd_fg_color; - border-radius: 2px; - border: 1px solid transparentize($osd_bg_color,1); - - StIcon { icon-size: 16px; } - - &:hover{ @include button(osd-hover); } - &:active { @include button(active); } - } - - StBoxLayout { - padding-top: 2px; - } - } - - .slider { - height: 0.5em; - padding: 0; - border: none; - -slider-height: 0.5em; - -slider-background-color: if($variant == 'light', $button_border, darken($bg_color, 5%)); - -slider-border-color: rgba(0,0,0,0); - -slider-active-background-color: $selected_bg_color; - -slider-active-border-color: rgba(0,0,0,0); - -slider-border-width: 0px; - -slider-handle-radius: 0px; - } -} - -// -// Workspace Switcher applet (workspaceSwitcher.js) -// -#workspaceSwitcher { - spacing: 0px; - padding: 3px; -} - -/* Controls the styling when using the "Simple buttons" option */ -.workspace-switcher { - padding-left: 3px; - padding-right: 3px; -} - -.workspace-button { - width: 20px; - height: 10px; - color: $selected_fg_color; - padding: 3px; - padding-top: 4px; - transition-duration: 300; - - &:outlined, &:outlined:hover { color: $selected_bg_color; } - &:hover { color: transparentize($selected_bg_color, 0.5) } -} - -/* Controls the style when using the "Visual representation" option */ -.workspace-graph { - padding: 3px; - spacing: 3px; -} - -.workspace-graph .workspace { - border: 1px solid transparentize(black, 0.6); - background-gradient-direction: none; - background-color: transparentize(black, 0.8); -} - -.workspace-graph .workspace:active { - border: 1px solid $selected_bg_color; - background-gradient-direction: none; -} - -.workspace-graph .workspace .windows { - -active-window-background: lighten($panel_bg, 15%); - -active-window-border: rgba(0, 0, 0, 0.8); - -inactive-window-background: lighten($panel_bg, 15%); - -inactive-window-border: rgba(0, 0, 0, 0.8); -} - -.workspace-graph .workspace:active .windows { - -active-window-background: lighten($panel_bg, 20%); - -active-window-border: rgba(0, 0, 0, 0.8); - -inactive-window-background: lighten($panel_bg, 5%); - -inactive-window-border: rgba(0, 0, 0, 0.8); -} - -// -// Panel Launchers Applet (panelLaunchers.js) -// -#panel-launchers-box { - padding-left: 7px; - - &.vertical { - padding: 2px 0; - } -} - -.panel-launcher, -.launcher { - margin: 1px; - padding: 1px; - transition-duration: 200; - - &:hover { - background-gradient-direction: none; - border: 0px solid $selected_bg_color; - - .panel-bottom & { border-bottom-width: 1px; } - .panel-top & { border-top-width: 1px; } - .panel-left & { border-left-width: 1px; padding-left: 0; } - .panel-right & { border-right-width: 1px; padding-right: 0; } - } -} - -// -// Overview corner -// -#overview-corner { - background-image: url("common-assets/misc/overview.png"); - - &:hover { background-image: url("common-assets/misc/overview-hover.png"); } -} - -// -// Applets (applet.js) -// -.applet { - &-separator { padding: 1px 4px; } - - &-separator-line { - width: 1px; - background: rgba(255,255,255, 0.12); - } - - &-box { - padding-left: 3px; - padding-right: 3px; - color: $_shell_fg_color; - text-shadow: none; - transition-duration: 100; - - &.vertical { - padding: 3px 0; - } - - &:hover { - color: $selected_fg_color; - background-color: $selected_bg_color; - } - - &:highlight { - background-image: none; - border-image: none; - background-color: transparentize($error_color, 0.5); - } - } - - &-label { - font-weight: bold; - color: $_shell_fg_color; - - &:hover, .applet-box:hover > & { - color: $selected_fg_color; - text-shadow: none; - } - } - - &-icon { - color: $_shell_fg_color; - icon-size: 22px; - - &:hover, .applet-box:hover > & { - color: $selected_fg_color; - text-shadow: none; - } - } - -} - -// -// User Applet -// -.user-icon { - width: 32px; - height: 32px; - background-color: transparent; - border: none; - border-radius: 0; -} - -.user-label { - color: $fg_color; - font-size: 1em; - font-weight: bold; - margin: 0px; -} - -// -// Desklets (desklet.js) -// -.desklet { - color: $osd_fg_color; - - &:highlight { - background-color: transparentize($error_color, 0.5); - } - - &-with-borders { - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - color: $osd_fg_color; - padding: 12px; - padding-bottom: 16px; - - &:highlight { - background-color: transparentize($error_color, 0.5); - } - } - &-with-borders-and-header { - border-image: url("common-assets/misc/desklet.svg") 9 9 9 9; - color: $osd_fg_color; - border-radius: 0; - border-radius-topleft: 0; - border-radius-topright: 0; - padding: 12px; - padding-bottom: 17px; - - &:highlight { - background-color: transparentize($error_color, 0.5); - } - } - &-header { - border-image: url("common-assets/misc/desklet-header.svg") 9 9 9 9; - color: $osd_fg_color; - font-size: 1em; - padding: 12px; - padding-bottom: 6px; - } - &-drag-placeholder { - border: 2px solid $selected_bg_color; - background-color: transparentize($selected_bg_color, 0.7); - } -} - -.photoframe-box { - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - color: $osd_fg_color; - padding: 12px; - padding-bottom: 16px; -} - -// -// Workspace OSD -// -/*FIXME*/ -.workspace-osd { - /*color: red;*/ - text-shadow: black 5px 5px 5px; - font-weight: bold; - font-size: 48pt; -} - -// -// Notification Applet -// -.notification-applet-padding { padding: .5em 1em; } - -.notification-applet-container { max-height: 100px; } - -// -// Tile Preview -// -.tile-preview, .tile-preview.snap, -.tile-hud, .tile-hud.snap { - background-color: transparentize($selected_bg_color, 0.7); - border: 1px solid $selected_bg_color; -} - -// -// Xkcd Desklet -// -.xkcd-box { - padding: 6px; - border: 0px; - background-color: rgba(0,0,0,0); - border-radius: 0px; -} diff --git a/common/cinnamon/sass/_drawing.scss b/common/cinnamon/sass/_drawing.scss deleted file mode 100644 index 738a69d..0000000 --- a/common/cinnamon/sass/_drawing.scss +++ /dev/null @@ -1,167 +0,0 @@ -// Drawing mixins - -// generic drawing of more complex things - -// provide font size in rem, with px fallback -@mixin fontsize($size: 24, $base: 16) { - font-size: round($size) + pt; - //font-size: ($size / $base) * 1rem; -} - -// Entries - -@mixin entry($t, $dark:false) { -// -// Entries drawing function -// - //@extend %reset_style; - - @if $t==normal { - color: $text_color; - background-color: $entry_bg; - border: 1px solid $entry_border; - box-shadow: inset 0 2px 4px transparentize($entry_bg, 0.95); - } - - @if $t==focus { - color: $fg_color; - background-color: $entry_bg; - border: 1px solid $selected_bg_color; - box-shadow: inset 0 2px 4px transparentize($entry_bg, 0.95); - } - - @if $t==insensitive { - color: $insensitive_fg_color; - background-color: mix($entry_bg, $bg_color, 55%); - border-color: 1px solid mix($entry_border, $bg_color, 55%); - box-shadow: inset 0 2px 4px transparentize(mix($entry_bg, $bg_color, 55%), 0.95); - } - - @if $t==osd { - color: $osd_fg_color; - background-color: $osd_entry_bg; - border: 1px solid $osd_entry_border; - box-shadow: inset 0 2px 4px transparentize(black, 0.95); - } - - @if $t==osd-focus { - color: $selected_fg_color; - background-color: $selected_bg_color; - border: 1px solid $selected_bg_color; - box-shadow: inset 0 2px 4px transparentize(black, 0.95); - } - - @if $t==osd-insensitive { - color: transparentize($osd_fg_color, 0.45); - background-color: transparentize($osd_entry_bg, 0.15); - border: 1px solid $osd_entry_border; - box-shadow: inset 0 2px 4px transparentize(black, 0.95); - } -} - -// Buttons - -@mixin button($t) { -// -// Button drawing function -// - //@extend %reset_style; - - text-shadow: 0 1px transparentize($base_color, 1); - - @if $t==normal { - // - // normal button - // - color: $fg_color; - background-color: $button_bg; - border: 1px solid $button_border; - box-shadow: inset 0 2px 4px transparentize($button_bg, 0.95); - } - - @else if $t==focus { - // - // focused button - // - color: $fg_color; - background-color: $button_bg; - border: 1px solid $selected_bg_color; - box-shadow: inset 0 2px 4px transparentize($button_bg, 0.95); - } - - @else if $t==focus-hover { - // - // focused button - // - color: $fg_color; - background-color: $button_bg; - border: 1px solid $selected_bg_color; - box-shadow: inset 0 2px 4px transparentize($button_bg, 0.95); - } - - @else if $t==hover { - // - // hovered button - // - color: $fg_color; - background-color: lighten($button_bg, 5%); - border: 1px solid $button_border; - box-shadow: inset 0 2px 4px transparentize(lighten($button_bg, 5%), 0.95); - } - - @else if $t==active { - // - // pushed button - // - color: $selected_fg_color; - background-color: $selected_bg_color; - border: 1px solid $selected_bg_color; - box-shadow: inset 0 2px 4px $selected_bg_color; - } - - @else if $t==insensitive { - // - // insensitive button - // - color: $insensitive_fg_color; - border: 1px solid transparentize($button_border, 0.45); - background-color: transparentize($button_bg, 0.45); - box-shadow: inset 0 2px 4px transparentize($button_bg, 0.95); - } - - @else if $t==osd { - // - // normal osd button - // - color: $osd_fg_color; - border: 1px solid $osd_button_border; - background-color: $osd_button_bg; - } - - @else if $t==osd-hover { - // - // active osd button - // - color: $osd_fg_color; - border: 1px solid $osd_button_border; - background-color: opacify(lighten($osd_button_bg, 7%), 0.1); - } - - @else if $t==osd-active { - // - // active osd button - // - color: $selected_fg_color; - border: 1px solid $selected_bg_color; - background-color: $selected_bg_color; - } - - @else if $t==osd-insensitive { - // - // insensitive osd button - // - color: $osd_insensitive_fg_color; - border: 1px solid $osd_button_border; - background-color: transparentize($osd_button_bg, 0.15); - } -} diff --git a/common/cinnamon/sass/cinnamon-dark.scss b/common/cinnamon/sass/cinnamon-dark.scss deleted file mode 100644 index 4a61461..0000000 --- a/common/cinnamon/sass/cinnamon-dark.scss +++ /dev/null @@ -1,7 +0,0 @@ -$variant: 'dark'; -$transparency: 'true'; -$darker: 'false'; - -@import "_colors"; //use gtk colors -@import "_drawing"; -@import "_common"; diff --git a/common/cinnamon/sass/cinnamon.scss b/common/cinnamon/sass/cinnamon.scss deleted file mode 100644 index 674f742..0000000 --- a/common/cinnamon/sass/cinnamon.scss +++ /dev/null @@ -1,7 +0,0 @@ -$variant: 'light'; -$transparency: 'true'; -$darker: 'false'; - -@import "_colors"; //use gtk colors -@import "_drawing"; -@import "_common"; diff --git a/common/cinnamon/thumbnail-dark.png b/common/cinnamon/thumbnail-dark.png deleted file mode 100644 index abff6d562af873e67b0fc4f1079098e6c23177d6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 34849 zcmd421ymeew>F3bNP>kB9GW135ZoOC1Pc}ahKrkG~PJD-KBAN>z~;7 z-nnzXHS^EhJ8OzX_gS^isyel6%d_`+I{1^cDC%?k=P)oZsN!NDFTFW0`ti&&YcUl&7#L*CpZ~BhiOIN+Cz0&MrG$}|pCh5r z((2$^cEZ5Ch7tcDpx`{ax8M|`uyGGQzD#LwsKL>u>aS?^`SJ=u;8V8p3jy;WR!1q_ zP})ROmf-HYPz|ygZ2?&fs&}%mChwHDQfOO8YYz9!fsTiV5yHY`AAvIyM=mLAoE*%z z?w8k#K+e+{NWIhh5C4Rw^;+(*X+6ta~`BYT}I}G5&F}#cJ!Cmz3*W?~qf=|dY)b?G23))s? z^~sF6gCqLP`#YgxXI%+3*3p9~T|jT`4ikixrg|4|df)GY-+$hMuo^bDeFqmDzQ8sX z(I0BpxObk*n`~~EFGM<`SIQ`~;;c43xr{zN|3q+qE@3@~#RE?POHTMvG3#5%1uD}{ zhphA7xcwF^^|OZIeYZiTV|p;SH$gNnKganaMCzW#fwbH+@x~N(OquR1Drme`G}~Pf zem-2!2-YV&vsarSNM{bA`5@D?=m8Waz$k!9!5hQv#ORU3Mjoz6vL=ri{Xw zWlPeC+$P#A_}RYKKh-80Uo=yrOz+qq>cG;~sG*RQI?aKg5QS|ZNOP=Fz|2TnOWj@N zk7AXTQZ&P+VW{@=U50aYYx+_onbb}tIqEGT8Df}Rr<=lDxQ;D8swym%O&Z2u0ps!D z+;P8VWnR%w5`v_Ets?DM-VKTUoDuo%=Y2^@`QJS+_&v(}d+J|HTWy} zKTY8WDDg1^^U@mqgMqN;q#v6(&Zhiy8Ieg> zoY0yMk~WgoLZoM-_mV~pJc}^qvhS;*;1@bR?nos~$TIS& zDh8ocQcp3%`&mLcFD{44OH4$AZ7>tN5!c3Y*%!rq*^tgUR*e0QkXx%+KLA5?ccoX;JD=0PMtjrbBrFyJ5oPqhRJ#Uv(Z+5kngli~5b@5%p4>jMPekHb>54=D+PyzU! zPtekpxEnJ0nhVpU$V$!T3!FV~?%ZG>4%}M_1=@3wxw?w62(n;%w$9_^F*`M)VqVPe)borZ{e+enll36i%&9kOj;=&$*Spo`p#w#c0p!OcVrC8!>IcLhns1X&J zyXFAL<~){?@pW-jK(*De>peLg0dD90NNL>}Ft;Ny&tup=cOJR{omswebJ^nxDo*V^ zlS0A~Z>P$ta~6a{qq(zMYPVWEleOZsMyZQ-v+5ynSw>Z7IaCD9-VDYXGaHcO+^xJ6 zp`4OsU6WoUaKym`WwB2Uvb}bDqDRjaChtn|?R`S)(1tt9{Tod+JkmNXKil)>I06~& zC{1yPagSqC8UDs()G)_Zj-Iu%{Wb1G0#M~3=ELNQh)y zM*WLXutqgt)bWA)NGaIcwtMwJowIVa){l!RTEfi;FG$OFq&5}1V7AY;h;9cN;#d;O zLG_^{y$%W>2g=KV9=)N2oN)a*4CIsHU>G_>~=-{=KhSLu&ig zgFKKOnzUvKWDXPt6U)@@nZ8?sveO@MAC4Lpt)}pMcB|^k7mg54JAjD;gN2| z&QH%g-mPXMQ||zzAhL za!GD+aR=3E^$OuRb$ps#%dyh1bO|aljMP^ z%27J8#io(US&O7w4}CvUqt4QhUVrKbMZwd% z`-xjCGly@9FIuthlHU+3tyZ=`b>A~?A5TABDVZHO_<~yG`mUDsJ->A}1*}%U_`<7r z6=mfF1OJ#PVL?g6Ub@p4;bZI(hp>tM6PASWOKjm8sUP1NE_O9n;v1Kt4BWiNrjs<{ zvFw1`)@fI~sf%-Qd>Un5?a;c_k z_WelbrI6$VN~)I*H`Zi4wT2_%#8NfURC@(VYpdZNjyKX`PcDE}ve{ z%i%e~?E$*N%~MR#*Ez^4L!=i^qK%W*R(B_QH=nLZOOVarQ7C9g=RlX076es{tUXJ) zv}x`5^RsL~r^NENC^@gogS#DwPleCDz_0Xfbrl1Lvq8=Dd8jg*9kuxRwS*jQVUVhE zigX`TGkkCQVey6jomhY?F?W!i)ttlzZ>92%17R7v)&)o8tiL(L@tx0cwtW!%&ePBP zUT-qk)(vrS-B8T&T=d~Ca&1lFYJ@nXmv~yBgW<(sth=4uwe6MZwn+%IuS4RFWuIVp zzB+LqB|R(ei~I0g(f5xel(p9!6Be_#9Y~qFsQwwL`kXY9{l*8qEzxp=@AD_p?*E_; ze%sB4?Sa$#P}u@KJmx*#xHvAGoQ)p^Mu^?={VKieAd#-8Q?jxUKQ`&vWH+LCVzrLc z%f)5hjw_}PALiJi7NM5s`7o24oHQnho#NsUyS2l{BNZW;n+>m1xzf01BJkafmHJdo zc%mrXT1{*@5@(3>sAxnsby#PSdn|e%sJ;T|w&X@fh%9S2taHw>Aj^O{Y=l+_w&P6IRfzLv$we!lIj{xpMh))^` z|!(TFUAAwYXE9X%(!-wZ$$t}f_szb*ZFtclPN{-zAoLN z7n-K{*&;HpudgIWVpCM@F{Wya_|coNV0t>f6Y@Y-#=7BpIo(XmbRH$_uDH=@Iu!y3 zrO~{r;!Fmvl#=-k!aTiiHC<-+=M~~`vxb@OKdE(+vmn}Wi3qz|e4qun?C8Z=U1ARH z2zmx`6n%9la=*9qWOf02dEAF$%ns&44%UF}&iHd$?X;jhiPXwfZa2M4+SO{eJVqnm zh=6c-yzzeDax=UTKx0I&+66jDn8v*@RQrL^-j-!m?HC2>oP(d{fD7LKLPZ-e?V&Y= z>FAWMr)k6mamcmPL~kHZz}=*qpTF!VaUkh=~wVufG?MLt&rKP;eLxIFZ@op1-&QRs{i+2of+_cRpljIJ zN7ropE8!h@3kBF}%VeAG_;AU}7BcC1dPx1LYCR$#dD`e8c`>Y?&^^k-hvn6NhRyg> zku#>Y6S>M2_|0av=*xFW@CADPOLh0pjrUKng-JgDy2As6btUDR@`2-Yu6CD3z=X5G z`rA+22?~1qI|%-V!S7u0DEd42|7^;CzN1)3-3hRl=YF16ascIyyc-MF`gd_l%Fif5 z6AVAJamRc!R;x#2Dd}UdtK6u~Rq9a|^0n;PS4cU02&L)PvSg^l@X%N3^p=%z$LtC4 zz!Ig!7>>-XCQIWhCXy7(D_Vm#>am2+#@cX(=IDshiJg7|!0b6+mRK77MTtkjxVu+- zL9Ok=k+glkJ)HLKGR`~$YY?;$BJl4jkOzIYyx3pmUKDm@0`9OsBt^P3^;(oe4&^xS zKK8bhKT6=SM2fR8*bS#J2R3iHwQ0<|eMZA$+oi;9+85>d@HkuDd2ySZqPzCym`TIs zjK3Un|2|0>q|4m(;JnHev0S7^$uxl3Sy7#F>i}9yB*CjHR_W@Kf}KwhVYmpV#*JQV z5+s`Aj5qfpA!t50%wKNxY(K1n+z1d()qEY5;a~6QN}B$tHmX-dER2pGulTF-{*X!Z z33C;X-H;>0I-z})NR&m9!{8N;j99C;KXhO1YA}g!hZZRu*2(q|m6II3$vb3op-)H+ zgl9ew6QzC>D1n=zE;odY(`j%N>@W za?0k`y=|Sov^&n)mok0TGIr4S&{{!j`XLSw@3WYS2k61_%DMDF>48JFD|&?AU*+L_ z!d&Cr9a!<}pr~AWhztnGCBq-yVF=}OL{{!?JT1(xg%NzB*xWn+9rtw#pji)uXZ#J3 z`GP&3k*hv@r}khyl~c2Z_E#~$@j|uni!d^T5%l!2df+^)#j#Nw{_wJfel5EC9Cu%O zd7a>Jd8g@qSYUrZ9J9g(tHem{ZEC0Il=WOE`Ad|ilqf67-1Itki~#e(rHz!X4ZjoV zwRvtjeP=mq5aWL+P6Egd9E5~0nISZdAWw?wMpgYL$a92oOTn?O$HcS2?jr#hQm@|@w~TLd^%MIo@(;h zl(z9AdwK!g7{*IekvJb%vb{8?=j+$*Pv)fg9*O{`&;qs6Og_OcEry?CgfKCYe5u_0 z45+^}N%c4?z1s-+kj_h)oY=5b$M=;O%8br)A#>nq&d&E`O+;?_xgPf>j|e5AwNg`S zC4JK{(pZ|o$tHO_V;(~b^Z|qX!(hzZ)u~Xl%X)7F+30C^H-%yIJ&E`GNE^L?HBLW^ z!VwNl7{ilK-3tsc7k&jv*MxS|8XT({xL;_MBbJ!HFl2Ny!06OM0+GV{v#(_>wqu*Z z>EkR7+$51sx}m9aNNUBC9b!KmwSGnKw8+TX)YpLI5|&Xt$?4i3Ml;bpAB{DGPn8Zq ztmERQf-q`Fc5&|N!NWHX$UB|cU_COwMpNcSc($^gg8509`_`z$CxbSxrlo9v{{H?d zieh*w4>muUd0%0b0oK1*Pp6ENj9hk~;j#p%DOD_`(GaI*A%eI5k+m#I8^IN)fg|5UrV#xI%m9vk` zacl1nn@{*O1rNQBQq;ezVA<8;LZj|I7mj4K?ljKix;iqDPf584V_^s4kNB|wN=z#l z4(kj2VUq%>_Xq@&dmy;F_z7wP#uQ(U%NiS$W50_9OC1$NZEfZjO_!fA9L{^3PM=$f zVO4zl#S~#=q3I<-Eowa;A|hf;5g?3|Kb-FL&I6Cw1|Bj1R<+d~^bDhTSh z#L#A~?*>d>e?=d2&3UU5jecsM%3GJA_M1A{!qlo$c|gLqwWpE))={LGs@Bjl{G zYSnWqnfOSS^Ql!a1iaxf`4h-bd}7S!#4jyVwr6w5gx};m@eL#IaVTfu)W2ciQXMMyP(GVDg%BiW*mrCg1AGhO{g0uuy$4MFF?*))pG9!HYXZNeU{x0PgW?^-qPcWA4(&j49>MBZgjoczxYwEM9IWF zH>!#`p1mFl9L+?y4R&Rydnw%v?2nKk>2E$%pQvN2GKm)g?>GUgbAxYC(<&z>{F8n3wij4a*85`J zxz1%%uiMGT`*?Z2MVf9|eEik4rf^Z2M&>W2^ao6Sc=hMhKZC!L4}S;$J5xvpGq8WURL}>l{0`Q68;yiP z^oJ0Y4Qavs(&dX?3v-Vnal=^dEQM23OVD_F22ZF-U~2^I2^m5WCD=9@T78DYuq+U$}b$T2&t713ctEaeOF~iQO z>`wKWOnGrdIlo)(Cs|n87CgcGmoZjbVp8rmg1^RKcJvf5f$)6eXYL)=?AqybuYh6B{enpmo~>p6RB4cB(OHj- z+c%1rdHCs}!RbqS%<#(>mJJ-4)CEiIwbprsq?)^Pr;H)o!p&Y<&o>rYi^(o33cDkm zj!`xb!X;ZP1rdizuI<&eKG;}bqUH*4c(6di%|yRahj*rwG8+tOnv#~8-f2{;u5#x8 zd44iIv)Mk|QvoM3l^t_K6avR>xIs@Y==2EuSW7>=iFZ)x$0Q&H-H#d;4bQ0=Bn-ip(i);{xHntW7-gfbV#HB+hYVp?TTikwYct|H9rBrNN4-%IfwniYiTx~8*O%;>N)*8~FNO{mh&bsYYyJkU2&1!n?bj1c0(+Kj@m5s)43iK7Co|C z1~}zCi6xJ-?TKCOdL4HmBWZE^zo|+;c(VM{0p(k8KtXLC#H@`He8 z#HD$B&xggCEm$BLtl!#PsGJEYRu&`@_zj+0nb+w2#oDEL<1k^3>=hY&lG8xx#yj=d z35)b>Ml=~PA=A!eW%*ml>4WYtj1*N=?zgJ7Yr8KdX_1wRdoe6Zc-|MUexlePBgmgu z_-N20ED45d$X1k7!@hRG8cUrY$GzW1TI(+fQP;jHlDampM3WRen@*?_n?l04;g$*ET93;oBT7J6e*s6NLq5iNx?vIiV zYtA%CL?OB;FQ?H|<+=#Jn zg7bWC{8czYRWNJ14m-D#f;9TZ4NB+gAKAtQv9^;+f?IN8$?UrzWLB|TU zuDn!?>sAq%I9mFf9eb=HTrYqd4MY@f+(EBgqd&U|iNx0H$X{&V$&|8xnf6y7^zM=mhJnnCEk3nJno z)?r%5S?P}jkk$Z+wqh(Iq>JgTYAL@(EoXi2?)*C1L?ikVkLoxFF->s$l|HUdh*APBAv_J>LLxb0cj<-*-ka6@30s=m(=>r+)cC+ zb3BB?N;}@9>c;9%k{x{sI}s{7LN*-k+#J=8W82h$^LNh3h~yEX`|GNp>*_^?0WE5V~o53 zb|Q$ZKu@&7J&CHQtVMGhSwY_5P1Gy+<=5S7os+mh(zGziow@a8?>w%G-wsjFfB2E| z6>Q?YLQ2;gK7ku9P21t!Z@`kqiJv4Ko)_MiNTx2~(1~%mQKIAqN7bv%=HI3z9!3^j zg^O%%L!Oh!GVy^e+mP7nc^+Y!z{~d+!O6}iHiSup*RKitc;a`h_`Nm5xjs&+kfSEG z&KMDiUe;L`f;8==fA5S{b=BrIg9CUoxDoJRNZ{rsD`(V1uhGznxB)^k+&}7~E#}$@ zdl3TA)cXTA#3-0+;=am}R!&^Luip7MqZlgzwk*(xXW7%frDJ|~I;(&qBp9eZ+pUVL zLtM=*F}=oLQO(hxD(Pwo0Oa`#M80>x5dN&KT)j6F^}+Ih@rN1pp3N>&6Dtd)X-Un>}zlp7SaT zVnnX+0fQx*e`0c(c9@47u^=-KyD!AW{kX<@Kpldv+Pt`qN(sh z0mv1_o$%qw(mRvxj0sxqdvNXqOWgV3fVtG+&qhwj$ZwpQsdi)vAkCSs!konHMc)GO+i)q zV%7Ksh3w@pDBNrvomH7i!)GXl<`D*Wkki*0&?rD+FFbDC%`;;6ovabKyUz-2M5l8ZO_h+41U>SD*E#(z-ErkzSio9Kb3 z%fC1om1dT0FDuFKTMm<4Foj9qzxLgCFaQ2!*0&fl$^B@>e2OL2nK`YIV!oT081AhB zB*qA+hIjq>;=Kbrh2=L_2MRYM_8TKM7@)lvTSk?G7O|@MugwvYZS)myhXJ<};(0G9 z%c2y1f6&EB{x~C7T9>mXWZ@-}Vin{S&E{C%;aVHi?Tgo)8*k%{){sm6h)OIo3OpHW ze5VWm(i^C0=xWV_gTi06Ulzc;83`bk3|jjZ{=N&TNp*(mokKg75XaiM{kIxWJBZj5 zSnF6z0?DN2Ame>;&HuK@IkBLtJVEH8hxbywHUH}M3krSwV(85eHNT%PRcx0b@uPC% zo3MERqbweOu8`Wx2F-5P+J*N0_$tcsK?HRd8_1Sqw`qEf;Zoe{&S&=us_-+%5fzf$ z78I>PF2y+21Vb$D$?=z#(XPfI%d+hkfPIP@7{r&IjZ9H5PnX%V69Yeix3~gyjs=<| zHcxxMM_eyQQ_zU=2dsa1h`_DsW~I67cbIpbg1@_uxU^nMe4vYT8)(YlX-a ztFt3R<E6m3iLKQO?~_y(BDtvyl7wMce($o0EKDXbqF4)u zg*!a86-P&V!;~0SjRc+EX&(P3bn)2yA25qz>O?Tl%I7*6Mji7&$&)gUP*IhTA1aXC z(g<|hu;(kXuemY%Q33z?#aCpj}NU`jD~jF-3o3ktn%PMI)~tVe~LdqP+lCF!x! zntOKDvM|}r+XVSi$HJaL=Gz7tDY_4wfX9YpfwrtG)5V$*5T5TULuchB7XV?@{M^=##9);y6mvza4PyST zCCyop`k5Oo0lh5?!GE9pIQz(7g?5h_36AeND@lWEk3CrLU_Rap$5>JgfkWbX?p!oM zGLSz^1=&0ka9>m%iT%%&fAfo{^59qYvZA*h zoDl{q8t1u*MZZHKsjao(1h?^g1H(JLDXaTP?FmO#l|Lok`tn4HGwKP4l(LYH@C z%dWB=>WR}2tC)ThA2=) z;+k^I*}{gFkNSDFIzqDj3~sngc^RH3{^a25xs$|O?)G{Qtx_6MBv&m5S{w$TC`J4y zL%_rFj@@9hBw?gj=s|+f4ZU*F+Y~n8 znFpTZ_J{6E8H(Pcu_~K)5qwt|Nxrn8l7hc`lb?=f>~mYH!bk7<&XNw`q#rq=4JJ^q zP{fd~Y@kHK56)Mys!L98*=Bf#sBW9QZCPGWq{|1hH#zr|HX=#y?M)FRlsV7S?oJ<& z>Y!=NDnB*_hk8Ra(c8QWmv9jkvE_)oBZ)ETbUIFWS%{WBown5%Q#g}Un2ne%G+A57 zuHd`9O;s)~&aS&G)Y)2FZy#ReN?xNAAK2*ODi$^=R(<8X0bOq{pLln%0$(4sa zO@Qm5L^BqJIqdWw&kCndR7VV!G8hLUYQHQpY2U&_e)3?nX>5q1;|D>G+Yi=UX4K%t zbJ)N;>$hG}zNd*sP8s3U6k*~db6Zxw!kzPJR?GHkBe^`iB+>S(sdSn3?Sm1vw>N1;4OFTHJ2183BnIW&om z&^m6u<=xWL{1ToU4F(^dVZg?97^0!XS!ID=wc030wJ3@?vatJI0-A;RmMh-WyrK5Y zT9AWgYb=h;+9J+ZGU6s*f0`uOxuhS;S zwoJ5jO9I(|Xw&~Hul>eP=#_EYNa2~-85%R;c_UEEE<0RXucK4rH;g4N?S^!eNA!5^ zO@g#p%(|+xQuHVro3*>`GmT{6p%B>2a+4~PHjjBw`t{OEa)15xnSaxX9ESCknr>wT zzkdl4lNekNUlgWHiSA)v#5K)6#Q{%a^0#vXg>Ka4Y`_HWN>~w9t!UFE4)-P#=w>Q; z>DpYHs44aabIm)fh#IZ-qdv>oG!4^ zk_S7PxxX2pFKgXChK?nPL5x(StA*-N_(j0BYJ`FY*djg`li&!m69zvYc>E%oos&#+ zcVs_{(@mGZfihA1CST)}&8kI7P^AYu7T~#E7SaX9dWar(gcmr_fX8!xh41KR z;m6!z@#L(I!|+!{N;q7Z6ek#TQ3}(y)_e{K6nDOSxhVr|CrGmJYk}}Fw^#cx-gE9= zq}jMqQd+haDYu;{rRnzJU}q>g7f+u%lKf^QjXyD;unY__C9Jb?8M}8K$1Ua4*3x2l_)@V}WT382C1HLjCa-lWtE=ZQs18z4h2^X$(T2 zn(igEd)Hj!(V6(3UK$t^$hyy{c~utL9ZjdNzptyPDB3dFz;)|1bZPBhDGj;vZk%SY zV(fosw>4Qw&FjWq?(m@Km>0ph>|qdy5eh1u1Tghls7du!46Bqg2ctDNjx-x3tX>n$ zV1^%Ts#(?HTYVnPx;l>j$T2~TX8h(CttlHJ#%fNAW35#pSaFWz44Fn(HHYkDHH~Bv zay&dkavh(y$sO%A|waClz*p^VfMTKKWg{)NM( zoO5GQC`wmuhh*9j#km^4TiqV}_vHdAT$c|Ku ze^|ak*%aMIaTovE4#AOZ?lZU#M{3-x$4BZ)>Y(XO>62o zO@pZu=Qw3^Rb&NR6RNwMHEKUWNaO80B|w#IHGZ2%M-lQtjrKg3$jBB&K{QWseTLzL zel5Nh)$skkWGd*87Tdjg;r8|*#Gbay|J_V={kIe~Gll@PT)o>Bl#gnCaSODd#P5Gl zl49(8MUcLrR?H_8eAz->7KLT0eTk_~hB#V(M+C+MH~cKQex_A1=^DL`FMH7(S-XlY z%5M5|RTyr1Xb#Ziu@c}V#)O!u~o2TLCW;Bhe`lto} zP%mg-U#>3MS|V{9Gs$5Aip~<%e$PzId(HL!V2k$$>gLvBh zrk!G=wz-7_j$=p58l*(wK~+9-UKlxQUr&!$ z-=KS?P92W@X3ti?Uk%z*#yWXJ!PsK4;q^FQ~=I?Y^Cc=0^O z>QSmDFgsfhZWHjLaVi+KBl?<(t~62b`4chiQ1&w9*rYw8R2ow-NAtl zp%Bth(p*t{sS*0G2^04E(y!kM1b6Cc)2nqhj>T7ItQ@%-=Z0-I6^bx%&?7{2kTbP-k+;I z-?uETnfzWXaXZWO9jdlZtjvB8P0j-+LM7z)*|QQ zXQ?U{8Ce-<4FO4(97)G2*oqyxi%^h}bBZd z!~BabSSJKyk0HE~P;F3t-fKzA~3ME1{&xKLl7LWj&A@rDu348uIc zPPX8oo{*ktLFwn~77QAW1iDZ_Zj~yV1Uls8dO+F?7yc1)DY%P;2CxYwE9zJK59-D& z@}N~zO|8)ut3I2E10_WglN-gGp({4XhVffgWM{V_t{Ty5&6!dd>?*SMR4CAf5&C`O1tTl&P<3cW_4SAsJ}_WpkrsFV!TtD&vVDq6S^#P zcVU%OKwt;2MfdS+$dl^%M^y~*e!!XxI{$ECa6izcq*AGGHvTgC9{8g)k#&PhgnlAp z8?Vzu$f^8pMC-KmUgkt{)wBfQlV4csoxfg!*oYjVre1GQ5A3FXFA`xZJHn|wX@+_PE#0j{=0R;p3i6Bg zcNo$WYWaoJo!!@^$F5;%)=PH4NXr*93*OJ_D%GdU)(+O-URF(r^2h55=iWa5eHQWo#2Z0Fi{P5w`cfGA8f?eS5tUIS6l+jl(KCu~g66$V z)YCJ{L3H>A#w{W~r>exDnJ=nhK-j$WGMcqDVsd(s+F`m&G;M@xtFX|Rv0BruImVjV zyGj;C%rzo51LdSoJpnapjZSp9;T!iMZ;Fm8<>w@tZ^JD<^mq<2AW-OF_tRX>5uC~z zU*m^YCAf>hcKe0yKWyDgW@-c0EGT@axrYJ3H48W@mTPJM&?iQ_b*d5^oYVzovqG^>Fni;Em^2OF%0=u$) zEWqQ3fh6dYK((rg>dh07Ye{168p_JY{9x@i1v)@+W+rB#Mtf7drmpOd@GuviOR%{* zyX3kL9t8{CYBQ*%eRUaviG#&y@H<4vi;ELi?R(}$>~kEi4b#(pA8^8!=z4n0nIE>F zUSn%S1q&DRg8EsfkFCrfD;5l*NBOIgrzGUrzpdcW6kh)F(=&=Mz`tC8pY|aphV@&0 z|8Z_)x6h7{+b0cm}=+!OyyW?1P&dwS~qk3Vnw2ZP&hXJv+%=@(~v4-CHv@+3W2B z>*U-vZ@w4IkBaojxf&4Dic-`gsASh;y`q*bD){=H*XCujY+RzGBh;OVFkL&d_At}b zDbkpJpWsW5vp4}mq^H6sO$>6=^KQ?aZ|vD$P#mCr7Eu=F-%&7k!%ob5vmuagDdymS zV7&RkA)?~uNs+($Jx0hN|E_%7eyIG4iE-Zp&$gp_;O#Z1*LUk5O(&lhR=ytNkpWxKtStn)mY~xBJ2&Y@KddhFhL@)72keQj;tZkjyFw2@Qmg6=%Nv za()e<|Et-p{YX>cEtLKHz<}=w2@3-01q}eQ%1b!`7Th*l4{U)Z-;2)0Qh0lE+ny;` z6A+EB-{Sq7=gqtaMl+Q?GA6l}GS3k>o3-K<>-;yd;f2^4-3n2RusJn}s`UuCcN|dq zcZPENAf8Qs4QZ8Gn=8P2MGA+RYs}l?Ud!3G@jiP&sXtb@rrCc}?2s1@EGOSXJ4m^Z zlUemyZe&KnfC{ato+=+z?Wt-(nv|M2brwx=p&glWt?ze3_^do+8;TV;8kuMCf!sgD zURcfchTptB9(E!B3`i#bWu=`)HY-F+olX4raYz8?;M(Xs8&9pZ?0K2~xQ~t*=w?nt z#jb~8eN=|r=W6T~Hfz$3+&ACW_H*<%b|th5zb>>5Yx|9SecZXpvs7Z8a3FeOvo=Wm zx_<
EM3Lw*X2($ps$$CVzM+*UKs2k_Tqy5G)mwfA=99h+jVJj=Ah=zdZTMbsjF z;CfuKf`hwAEgQbTES$7^uWD(L=BaBL<)u;U4-ypG3tcB1S=GJWlo}m>6D#BF`eNVk zTrS7Jy)VdCRwxaWq~tKPO@VP2j;gaLtpWX1V;;YgE627`b>dIni%h>M{X{GL(542qgQPoPC?w&BkiDf13PUAW!aA6{-k zbUb)^A;-Nf3Qgu%8Nz)=>u;|G*Y*5m(50YGl!)rfu61X-9!b=UJd^j4LuFkM53TQi zUDcI08_jTjVv6x??-OP*Z~(+b$75>vYssxu3C$1d*#PSWUdRjQLkxi0f*nbl5>v7# z0O7M#hO;qSaD#14)mgi=>+R@NY34PeY}~VS%+f_k;dF>^T~1DvDZVo1-K-9NY&*;FjF#r$==|Do9WKOB4i-#th&{yez`l*OxMa*^5$bX5yl9m?D?YB85FKZM9W z;Dkw`z4-OINL;%+ky1BqLai@Bx*v9^-)iwBsn``7i#@isdhA12E3~|TnWBfAQ7I+z z4FF6s;uYwDeWrWga23MR=I(GedgER0l#%?LE`JHvLgU`?w<+1biAL)+qmPVd%3-l} zmMc>aAxCh5)-@IA0LtunwS|T+Dg1rw?ex^bU~NkQ;R`v|aYp{-cy^XbQ-P}>#$4B9 zruXpR^7v*emA|GD6zyZ8oya9p=H2j_{&*ZfJi~v_#eBQa(ec^km8J`~R$78+Dvq&A z$0#Ii8CZ=CWM3FMQ-D8T1Yi3CGS<3?kD|Nq+4(PcXAf_&=-Ihp(0keW`mEY(t#>83 zV3h6-aP&b+XgH}I`QvD+5dHypJ0zy#I6O(((ex9SRA+ryGeP{gL@6k+)^3c`qo)cl z!P{1m@8q@2K96l8_le`(*QSVfWg;<=(W@QJ`&K*;UOGJOQF0P+e1{9 z@(=O4rM}_!WQQi)Y&*EJ^z&7WIZS(SDQL8K5*l2nro<1d@75-Rx3>j+)D{gDoe`(1 zmfDKx$-|Wc1GQ@Z#*GI(DpcZ%G857%RBJ)3x7AihcMwNCv27$bb5Eqm)55)#K*;) z*doWM?sfxAnjj}O39jVn%CA)6=L7i}Cc}pIi}H6{I9@r5c&&cW`am`CQs*U~9OHb} z^=R#|;g4IV(-bGtPQ<0Y<|Wy(VeYTzuH6jhL&#LON0$Gqw0DY*H0ruW(@Dp+la6iM zwrv|7+v(UgI;hyTZL4G3K6SqL{lD|ypFKw1)ToPR)PD9}bI!HaTz<89aJ??cPTN}s zyZx@uw^0I%3&~ytY5vzeZ53Ate)Y!RUl*^*+~{4BjDj+?(y*S-hN5|3P%yaOLI{bVl$x_4q@!1zuy^)EjcL zERyf@TAjE!ed+we(8UAl)CLBVCHX<~FUZ%6Z#Px`p`J}JqAhh^ZGjbwD~}!Gcv~4V zJ3*|8cF-s>=(d+98SwzDDO5_#hV0gvi_ z-vf|pbC!R@JgwX}-hS`WxH;-8WkqZ5+?W(y15v-NEoB3iTH`sko#T0!?njq^(Vf6P zFZM6Jf~j|0%XCb)3a5@|l)oR+FUzwN9sQ%%D*MW!&60sDZ-%6V|6)F`1YjV%Vw&Ya z$tO+n{DRkY7lIa(!YKK>`!rbQg!lc1-jKBH_?)aHLy^n)r+H*<4g{9OJgAF?cMb5> zPpID$o3Zkdxnmw~sq;==^XW@KBhEjSwBlYh&~g5w`g7-Uqz>N*w604&>@YhdZlhrzH$9_!W+=CDr!g>)ZB}R_b)vZE9k? zO#Y)P+@CMjXl>wfq2SEf>Sb{JqMUmqD?&h5=DnLcZhkGhmvh{X`=XufzX;eN>1ql!~7xOX(#%{`=QDgT3|Y6Z~vBXD5#JiwEj& zNMM?InB*Sh+i-Z(nZaEb*odvLJw8Q<=QoGChCsF{T1o?(*Y1ut6G$->yX;X$rium3 z@aJv!o3zVG&Ex`&*Of2)^{)Lz^!9?thX>SjF99slSj7QY4;)Pqdq1SLonAFi={;-c1Du2Spn)8^{pcqI zyKOMTVQ2JJ9UY6L3~kB<++}{$Lrj%eG>+*AM7q{7i?8KgE5qK@MFW>f0Ah`~QRs#h zqE32=tLjAVs9PD^^$n3qt4moB4Axpwn~!6%NX!KGDdz71J2Fo5&p=GT*6M}Zh4=TW zV1-|BOJUmW(kb`>Cmrol423_Mi41?8Se|mJMAyabvKeBkC$VewQs)RU{n13yhX*=t zbD)OvW$$P=_jS3~2|RP+f0&7AoYP*%Va>-YMgZ1sJ6&?mw}~HPOD11Qr1~SRzm`8H z$G0rg01=yoiskJqll$fX?_37QtjS+o-J2e6ESE^xoO7(%*+N6m@VngzOHdl|g?} z5~-v70XJ)}`45>A&UUeFg@`dWtPd^ZbVTR~t4Xmne=QmG?@fjMPgoA&9HWf)=UVw( zu>*QyEKWNw^F2%GSG!C9FH5}Dl0owQ=J)&f^50JVUor0gMm z%^mju6|~`SRc)ij*t?f5iUhdehl3PL{r9;_>C?(_!Zg@!06fOhE={`Fu(xXvi|HtO zcAhEt!0&ZStXshzp+T}1WB>bKUSybu$?UMK+Mii-V(hT^kI3E&Z?iuQ_BIy#g}lfL z1A>-Ev}XBRyduw{hKc|xBiF2D*|yZmJpaR%_f%EpA*=l2_M$szDU`BQ6y|&ejV+;V z!{ibI@rb+rf!4&@|2xNOb$+8TnwBXu0u-LIZ zGO4Z5skm~_%HiixuZ#*ml(?ykRNw#zqG&8{MXgdZD5cmuN(V!@MkW8l@j1y-80FUZ zT{{Nu<=ZgS@!itO*9!sVQd3ZK6F&c7%EVRKT;s46LP}Gy$*z+JTUbUw|GN`^fR(cI z7P0MH*NtspOmurQbs`n2(MVm?@b3Bi$hSN(iGs2gGpxTI1XKPi0Sx{yQnLn1m9rH6 z<^O$)pl(BpOyTJh4*riwkXO{u-SkhuTnCfS&%UO5C-p*h=NWOL9t1X)qM7>rOIS%h zL2GciyT>b@IH~qOga*k#6ViNCAG#d!Ye158bYiOS)CEuNiCGS{;vEweI>(Sw)Pgaj zkdhMMbr-I-&|9+ZZ7V=GAq!ukNvo@9PL*VZ0Ic)%dL@Rb4G^=j;ASne6ex4RW#YI! zzL;~fMzt3FlawCP(G@YZ>?NLvQ*XK&2|uFNe2aTs``NKI7rR13eCmJp zWl##enl)y!(R4T#NB$R5zOw|ITopd43v>kqk}}=h@8420k|k<2+nBoW1B3OlwX&1d zOw_UqgI6qdw6Iy`rG|LkHV6)jY?CoZv{mp+d@ z26}&_=p4dkxoY>)eaFPx6&_yB?j(!|{z+5hOrI{t+j2@fHZ;`eM6)E)7!dM+Av@H| z=;}feXiv^K`LjKt*OpCk>5ZwEEi~`z<()GJ;p=rBH@zgHFsCyw!Zy?3BFtQawmSjW zD7Gd#vJq|_m&4iXh#pZ^k@CnAD@z>C95>dfSb&vgiIlJc2o3-g0wT=F7z?A_-tp~pzYMTm*K-dJ zE>oA3nLF{Xp4rxoB4-y1ggz~NK>=5yr{6EUazK%DF!7L3Wk(Ur9Q3b55TM@S+`0Zf zgV7!iWP)E`%va>{M-NGXrcbx(lG}|f)u0#p$;HQ9YJD|#~0^@IUWu?Syp7qB1uDJ$}vWz>;DTlNF?4Mo;^ z!H~V(eSsmlzY=B<*VgzP?BZLPnaYYVL=vz@p;qat619Q-Bn8}8Fr^fqe<3F2@A zdcI$oeE1naa{7K5bUY$}^zSnA0040eq7(T3BwHX|Sepj(uKqg>9=0r` zTW4|t5jzdlCy1qsF(o8`nVTb3&!0WsLt9ck=j4c6N0t1SJKa=8s(+9%rP^D%<65E_ z4}o^5pBW|H3y&6+R&sa`v_rT8z+AIH>e1_Cyuf;Ta`JC(gpdLwX3vFFQ7uK2SKiHy zeaufF%xZRZRg@Bqlxj>tT%5a3Gh35ZoEL*6Rg%%L7ev;?|AP&UBeE2+IvPb6TWr!m z<@ap2DFy;r!_BPg>KeAOuPYLbp-~uaZN@HY=gG?G*fbd$42r@aHjDL7fzFQepRWy& z1m<7;?09ZG`VJ_M@U8|gu}DtNkgBCTDFwlhm;NeLJHoW{ekY-%gOM{z^#agw8*<-; ze#uWXh6`bjoiCdW=_O-r$2sAJYirGR6!^C<<@fOtPV?{cjWRFOmn{SjUC9TgSKa&U z#@wouc3Rkm_kyFo=Y`M0qw{>R_X3~n=OsxhiY_eK<`#v)4U602DZOY_4L_lQg) zzn7v8OZ$t1uIFtFl~?s;hc$6d93HCm-EA*kZ7}gXH(DY!qJneMwzt_eR=5Fmk<~8j z7K#{K4eUA(I2k4<06`+Yr)8^Ul$uc)In@(hkQc6ZzmC@O7v>w8KtG$t^uJ?7UXRs3 zZ^51uuU^!GeAmA36CW#kK$ek6A<*ajj7WxV_$&gK{xm~SIgAx^&DS^ZWygB$6)YfN zrL^toled+fn7UNN;P~4_FRq$l#c1zYhqDtIjU^I;r4}0kj6==YY%bik`A&2HERL_h zBx;x_!O+4xIgT1nSJjyDVA4-l`<7gxd;PfA9F$5vT8Jvd-8EkFqzuL~6MiTyBqKqD zl`FV)LpbWP?_x7F5h`DsJkoeq$uRN9MoVwWuy1hH*1~vIwLpoKyc>IYdAaRIcTDA^ z?AyZ_F-Fwf@_OWeJp~6v*5ssYP#;oGPR>sr9w{t{R4e23cM4wlD4Lpv15hx=Y=SWyg0drgoM=b z+Ja!ugBgW7-w}3xJ5kpoME_AmISM=|qvg&?2Xi+3x(A!@_weL$S6YvY@ARFgynD|> z>E%$LPr#4jw$GQGS+4JA-da*>4e~Bq2SMMj2*_vOYnq*p?Okv2i54Vi_D4zY&(4P{ zCu0iV@vTiZ`61nJi>s_Ha=RYLRy}&=g#|2b%U@#Pp2-gDgHa5;3K9~KAmE;!Sax=% zWz-gC7K|1a@R?I?qmQ2yO)Dl&OMK6al2s;iA|vz}Pr@uPBlp2W@vuWg=lXREHfE3Jb3y!F6^}K zKW%uv=eVz`e-0Xn04#J3zAQi<9)l&om%k&<`P(1zX|!bIh3O)rT^HJ!Z1nbiGN z;r#`xa6Ho4VU2nDX1}e=9Y5dS2WMYp`g>rE1vH=9(aH_41D_TQ4UAT=FOn+SVS5rw zAt-HWPSvY{D7P0Tq?hpz8Oo&gdVkz>%zlFe76<8|fq}`lNHS}vXhPoI530(D!P{$u z0&Iwm!pgnCh^Jp0(Xu8oX)(~ksZVPFE7=Ncpnsm^r;dB=Lrja-_R|n{ zN>d}hZ0li`ZYF{Gih$pQ%Eq(9M)jQ?r8Y^-2*+yEcly%)pe* zUx0@uD*Ay{5zSoRiHoJC)#p1Uv1E>e0kL$U&y}SodduGA2!6-#b675#kR|h;Lhj&j z#Uf9!tLwWjT$lT>UjcqcVuF<}TOKpPGTnnW5@5Y*+gz=)qzW&l79lE9x%t6fu7%(X zbZdOh844j5Dx8Cg5Ct6o_5$fO2sM_ch)LrlB?(+|;H|!sIxT4Ccx*z%4mdOz&6xME zIr_S#Tgt&-yCIlP1}Kx~;0{|??G|`2apXdxS{hEQLlFYRblHuu47mO2=@?q>-6${r zJUS1#a^O83qgSN)TN{3ww(^~%D6yuz`#(d{F8oWy?HNYwapy2^XsUT8Ban$d8!KRa zrKR3Tt*`jamvrYa*a&yD^pUZ5-~>FD!z14M1$;^}T6y(F7g9`6jifgUt+7_V0!LOW zX{|=Z^0jllS%;f>Dov&^)9tAn_SwUpVleHyf;Rf&xc;v!3ey#T#llC_>5qk*V!>-t z_HkGO6TlG)E53&n{O?#DmV#5c+PV;rd(|4%JIAB!_@R%A(S8CTMbyYOd!UP%5p;s zD72!`Fiz9!Dr61jQ!Reo%uwXZ{3br(k0_r{+>L?QNOkT=ILd_F=NVzu+al7GyIBDZ z!UgBsVrAn#5c-PG+RH~lFA*{wQ2IpWB&jiiKCRH9gPw2DZ_RD#7t&F)$N>fI$d+@D zD6u(Jt9L#+nl%NlEqduBpNp}n0y;b*0fD^!eqm{8=|A0H+_6t?i0bOlrwz0al-D+dRw#J~Z6hSGXmu_)>Ky$#&X$TVq(>?f_4Q0(3b{Y73%89`wF8=Dmk0$__pE3x_hp z`NYC&?|cuF$>S@j@;`uW@8+n^y;?3TnP#%_aZ4Ksr^PHPuOdrC9S)NAWcHGXR-vFW zw(dS(R>ht9z1vU-0T8~(BYzz{>?lMRTWh)q^tHSX+F`wQ!+wS2_7;`=fH|ZiR7TgG zDyx){OjlxWnj$lIVPQ`D@a$5$B8wR_SjCHe?`>WkZkO&;89BM(TDqPMiKU zHSe1PD*g1==em@GacOJxOpD=8{+*G&=StYVb4E_$(B0E#r@{HnalQ7Cm**IMy{0=g zYIt*!53_SrX9fZh2KGp5n=0qBan=|kwa^edz#bV^P@;bT#sOkRbxpCU8aYO^43&mp z1j=2QcHAr}eAjh^X$k>l?ng4|(iLJkASmN%P!S!#yjeN@n7DGJc)pHca?hDP9CYfSQ<_H=`U_llP*=itDl+ ztwmqqUy$tIM?b|8aHFTpMbyxNy3g@Fazsd+$M=1v`?evxq35vUe*Rc8QlZx_Zl`X= z1y4rI&t9qZ_}}U5j!0tVFbQX5om}3?xI7?Ba@ya(*#st>!OUoIDkAV#hFg1xueF^q z@z5)uGl_bX)#RW5z=N9%P!+4kWZ3V;4UvozELvCrF}Yy86`M(pFC| zuB$fvgB3SI57IX6WioWhWjccwm9J`siH^h18OK4O12t{VZ*iirDt&4qi%H%6m-Z(O?lIYm!w3rztM@ZXdoa+0ad{A#Pr2LqrZZJGk($FaWWOJ-gW9Mie z0h@}u-3X7TZk-!~%=jP$o_Mwf%HJHr&dyGhSPyj{E-OY*1YZp7Z2=i>4ojw%0!>ID z@^{DHH1UXCkk&{fIP4k{Z_G^d=b}SRbZ)kK*su3lRTFxyMRl6R&G)g^{^p#KV~c3!Tr)^+iaR#v4Q^I zvd(a#9Yel93@tpq=lgRHRlC#`Pi|B-XRvZnZe(Z;vyCt4wb3>MLW@Hwb;p!AE5^W~ zi=S7x32oSx-vu8PddkL)*JknGlElnJVIe>MfpCP9S_giq?&`TEL5l#rrVgzhCzd5P zwnlfC+3h)@!{$o~-S0)%>F>pW%$$^=;s$w(gW7^k=lw_Cx4{Kn&sP`V%Y?_!`5~>5 zPDRCkJDpujO7JpJ#QQYsAo=tjSM$wV-SD?CajXuDpe5=GQSekATkpGz{rdR;t$2QJ zPClP+nhVnpTTJQ160x?;2ljUGR)BYGo_Q1>p@r1W_$y1Q67Tl9$0V$vTty*%80?ZKi+P;91oCnjqGk?Zq0 zf4T0uj|1|7mONT?Wn{+XIsKwbkwX@L;Ey}s+5|Hbuw7@qgCR7osbz(<{>f9nGK^ot zC)}IC+0foM@VF%tGKT1N*e7GmFW>h^g8(4k_>y-U@I%+a=~1g2Od*ff_r%Zdd8O3j zAh??CAo=g7PKI}$hN+Qtw`)9fNo8(sye>*vL6hN8P*q`6=_x;`M+f9*q^tKo!C7 z`3}idO<-+KY9J}ybOwBObJ`f9G&qqr zh-zWRP_%UIMeZizK7qCR)EdXqbL64 zM?MenuvBk$OoXvtWXgT*DTEC!kLqrX8FwJ-CgvqKiQQ`g(QH8mXp*9Oc9$iDY+XGCY}#esTsN_*1KN%Xms$qmEI_L2f` zR^fC$qC1`wY*}{qrkfS4Xrj3x8%!fs7tFnQW%zvwWnKV^`*d$9WB|c zWQjzW4t0lo>g`9Dm)T`>TD|UUv!?IuvGSL2rq}ug?6ex>inY=46dSD`p5Zy&{x#+L zv8hWLr*FJO5VARWn+MJ2oiGY_G)!56B;Xw~j%Z-E+zxU}(rJKq*_|WZY`-xbCYJ@2 zARci!l$t7z(pPXJ#I;(CP$NWxWJ=|afUUsBi#JBVE5(iPbj6;8k1j@OARMSRXgHlF zkCCEqpR?PZc?CTodvxXT4_wk{=#6DL^g#B;3k8>L&bdaZ$-5EaWOd|zWaXxMZ9X`R`o`J~m=(EA$5nQ)(7) z*2Tolsh89qWwCg{@+i@Kk18ZmX2?FIR`(y_kHTV$a%?N9E4i zN!U8K|J6ikdjQN0SIXy?bG#>iLaX)~?_m8gAKCutzXRRWw;RpdkxZCPKw`HuDu+M7`~<#kf&h{b)A^)L*W%|u zX{H{q#6V~0{jnbGH&o?qw}kYw;+&zO5en?^4+?{neNY^>Sk(aVPHYuXQG2mzpO zOM-Q9$zWdK?MJ)U{tL`-MHQ%`r#NzItmsQ6^$qQrN2%(Cby)3IhVI-@5+s8id1tsW z5)tROzFPXqgS`vfPk8}Kpkv|4pxiG|f8@NxKD z(RC!@O5II~e0)!eRg}OM$bK4~OH-=gRufWE3-3Uz>3$|Sx2&=p9j%tC1dN8Hm@1Lc zsjHdRFL{2;*h`&}>b4q|3hFqiPy2sCrok`mTAj=SLhZhkJ2;?JYxcjK;LhP1e6M&W ztDNIc2}fp`#=9?3N)c!5#jIBDe!El%<~0)o)t4TzpsF|<(Rg8~ zXU0P(Bvmf)>1UA%JQPwSBmb!JMRjCYniYS_El3XM%PCPdYQ1o8Fv;Npwgz4zf=@Y& z(N;cRgg_Z-z6nUWO7k z^PjYTW{kuqH$Sv)hCr0{3%B==^n7_zt#ini&N7AhE{7pdxt+6m;)62>FS+<$;(cvo; zv*Nji!ga4{(<2N#HG;tMZ<{$bAxE$={^e6Ci|O6#OLmTG*E@Ah6+BWyuWQJ26gVN_ z7VtiS8~C@xal~l6s)(1D-j_b>s-JaVW8!ByuMaep-+F{6rNDpfUR+!>Jv%#x4ilE> z+RAeiu(Z>|&&a@jAAff9x0R*E7&tw#PN2A(qx<%FRm*)Hk$Dd~&CC4~7>>d5++6Sj zD`2G2s5z2Z0M4~q+li>p0wxpmGv8&jwQ;d|+vAUp%<;@2%*aX$to2j^F&T8kC5|I} zwL|zYA!xV*vte8R#=+WM|Ml9rZ?ow~xk~3j=&H)NL%@HiCOk9x14{3WLS+r=_-`#M zn3y|Lf8fm1iuK8rWpF19TR9@y&DmW&Nc4SfE6)e$o&WoR$n`q3zuRz~O}hR0+^{od zy;qz#0>MS4l)n*uEBYF?3cpT#avuiZgmcV4(xKrO%5)q0VWtH2iF!$<*%XXnLV6nb zxAQKI%oZ{D%yIA5lMx~Fy}QTaKB>W@Qj{X_r=db=F=aU3jG+9rzjJP@wF!=QAxv9I zXi1PYWE#+hD1GOUwvhRXVrNHcw0`xU%)Z1%m@u#O_ap}W1tDlfie-*a;qt)K5m;uV zy%1yI=`}aDxE*yx^e-^qn1d2D)IX~c=$l4VOBux5tuOnrX|rG+0ds-b{*Rl*>K&wgA^@RP!FT^v84Fs zjADSvs;Mh4<-{b(JJ*;G3JS7aN6tSZ9Sjrr2#JUul0p`YlHL->P6G3v3r#8;l_mwq zi0*P(%8k{&4Q=?80jE?Zdk2YEBW!H*^DylTe!XHokdJl{=}!I7=(DGl=cKX0qKhYI zCuiNaS0^jj`AmkO7+#Z{mK}ps!mj@&sD7#am~_JtF`T%t7O-xNi7yA?E)c}4Eo#fA zjNr2^*T_(u4;KQHx#iwiYqo~PZX?0cHBU5eQ9K926};8d*zT%JyPj}bpxty`5`~kt z0FReNNbBL?&eo5!#=t4FYi<5b;nE+POx)ZE-M#bY7|agAIV|@LrvjY}B0f~b={#C* z;}ahh+WbLhC&BDQY2;&_#D~4GQ1}z&h_~mbg*Bn`Zx||`-zfVmGMv7`gh#d&Vsp5fJ=HPy^s+^^ z9zU}1+ghujc!0#!bGB);U}Gm?9hgg#?dzJNL?(yO%)~wJyWdCf4?I7$-zX4YM};&H zD4%AnS5bNLW%!DSfQVR^t8}Pid}Is+`l73LXJLp4N%5~=w$vtoG-SNF!8W~{^u>Mn zIk~*M0X%K4c+GX$W1Na4@E<Q?Kx7DD>UuQ?ArfXVm#Xr=LaquIQ(0P5edM2S}vpcvy2owZ(C&YRC z+rJOT_;i}nopaa|)3JqaX5(#VzJED|FUC$IMWxXlCq~itA4?5eg8D~7meRy7} z=6Jf`4Q2HDZ}Ekj7h`YLyXrKXO}z9!W8*?HLXd#22AYW^${7;DN(D@j-)x6%*%D-t z;R+LEO^F2{U9I9l8-i;8=r)_+ww392(ONbeYd_|1uXv72FqKNRT|<##{Pb2(a44|= zQ~-L)0X5xk-H2IJviIfoN2Y$c#V>Fd&6e6aI$Vm{u^Zk-Q4O|HL~FDr*DZqizTFtZ|$3R4yZYaMpWWI`4tDa5n(IG28> zzim5*5QvK$=A3#lOrnPSBLYC7^z#<$j70Vd4a2|m!Hfn9L(}^O*^1D^u?8aQv z|6j3RkE&K`0vh%Y%XR`O%wIBP!h97WkZv8`T1}pWFbzW zRTYa1?;H<04%D9gDUT_Ee$b&JVI z7S@*J^aiZ5T;aR}+SzhEVT(?!EK4~~ zN=ut!_hV=@Gi}A;G*8$zN2JU3yx}ztst&11i+i1d%XToivt^!+i}QtXw1)hB1eO&&Whe|)F9VW%-snvpk-66Q5)eYl}r zl+<*EiX;i|+9PB!Xs3t*>0_@ein)9|soDYs19teo_qe3bSQt8Ge=+*`Zx!x=@qQhs z_j zPd6w-F~$`-MXZ~H4;D4s+r4Lf5HP0OaiX{)ExqBs@6TqeEUj=Cw3iYwXZW;?CZ&8G zOsjX#=j0zUeLw#F$+^bA{x)TOvO)21B3JB4@n3UNIpE-e?M_EVw8qzwKQ?p%Usc8z zn{LFe)LoH`#x&>oXl+Nh^?Jk$$rioBX;rx{cr(_ZO^wYQW#SvO=2 zR{AYtnno-xy&GMcT8m*QbOw)SPa`NoR@Scch=hal>refvRMR2y{KrEWy;Hcz^MaC| z&v-5`n^i-22?%U+$)kL{o=cZ%mRRp+))uxu5gV;@72WPh+@?-#B&MFGP07tY86e8 z-!u0$Q<oOSV>QGQk!s4^G zW7T8PQsti-LWcN<&4 z6lf~P)Ib>Inh5A09W`G-pD`o&9)4a7jnip-am(~%|TNtrs$qp(+U{9Z&? zkWb_`onuhY9;w2m_2AZP1%s(`;x;lsw8JM7c^Y}kUSuRv`&;($lf`*{4vohQp8sy; z$mzXg2yDNl`dm`Z{^+gWCA{)yvL(P<7c*6ZEHL}8O~x0O(CGe9#hR3CKz>Wq@_w*$ zS$kYv&6D+=`QOB_U%FcIRsI)F+@k+J?pRyx>txvD1@wsQrBS5w)0PKP8biq9eOwyf zp~y2c8jZnlOWUlr+hQ&)!Z1+mDGSS}Vh^cUG<(Lz9u|yDE#M0JckbrLWKdh{Rs;mS z$2KltclwURez(yJ1bkO*C9~-nb|aCrT$&g_z^+sihkJoSA}*96ddrbVEmxCgC3%d~ z(DRTj*)qcy@8SXktK5hypyv@#W zfd?EO#C~jNROH#;L{RC`qx0itL?J#YXQ(*Y6ku(=*6|Gj9A8%&B1{Cs|KXu)r`2vr zl+_cjpk{X&^57pgF%?+P%&zNBhr6;FGmt8}8+a_4g;88JHnIfkK(d@6TuG9;w`V*~ z9UD6q36oDckb)g7kG$HDZUWi9PH%^?yuqcFJSIc_B5hB8Z_L_%xn#Rjerw@CoQPMr zVb_}Gu#Z{I|v&z4*IIHDG_C8 z9YDjMaGB$y(BkY&@`;3Q3^TQ$HxQ@ip%}Ym5~|enZdj3Dq)}Ey6?(lG(z_&^6G}Iv zIl8e@CJ0LTv55*z5FxB7B$!7@sJrfMWNM|Yg-ijSsPwr3a)ZXy&LSJZ%Oxa`y;e4bSBgq=D%J)YkxDo)6z0Eii!v@Ll8{+ACgaX)1Ox!rm?a3|hUXmh#4#nyg( z=w(;etEK-F9R9kG z`Q#+IG(@AmcHGroaM6$260CXwh|H`kD=Yi{bGN#dj;z%e()LZik3J+TD=Xl;8iE9@ z)~P7PMOM9iL7_aeFBsk#8}$r?7_*UJNr61Cn;s?QW6BtV`R7pjHR`s_b;45-dTNg| zes*&pHx!r!5V4@Aj#18k`nYpRl}ETP7i%*H+A@%H<3v)?o{|6g*&dfV4};Ty$;4+w z?Fmg(`FCTLzw^&ODYu>m)P*-S+ML|JM%`ImS3IonUAv1%NLI{Jx9*YZ$(n?`x{wbW zZ7Z*;yN~-JO1t;f=e1<-jxBLvT|6$8`qy#%mb~Aeu~RL3Pab8!*4~PatXWRI@NM6o z0LzXX$m@3qkRHD)&ut%zjn<7@bp!03*CSt%Z2?a};P=Pr4Af81&BUIB%4oQ!v}9%H zo7vXuR|R+fm~W2{3RKg<0F$N|-uumKkAFHl#;4iv>1Z_m+wZv9b4i-)*ItE}OpVRW zxAQhN%D=5In8Z85V{EChPRC;g1R`o?CrX3^vLLoEzf?%FKw94__i$~C%a9@=SYfglgP~2cF)fTA zf9Ry4XdKPlhr~`yGXs?ra@1Iri1T-3L&hWtc=l%IzU1dggFm?mO~a zb)r*pq2msp`|pXEmEE()e1K76A_|0$>J|YaKE7VMta)}F(}&Xro#w#G7kys9jsznXDc-Wj zokq{TxRKHOE;UTM4OAQ>n{H<3c)Fci;U0$L`-(==;rc+7!gW43XB{qF0vfBYm1%p- zW?P=r;i9?8U9l8xwm_QAirx_5P^L~(oS?#&Um%pn?M7&KB)hD-psFj!(9y?aRL`Id zHNe8a!%BF=^}UMYKAhv*WBOgbG?;EiAZh`5AUMt^Z*RUnivIoI)#d7?$YVk=?Qz-lyvVgbIkwgA5@m z14Au11_`eEOjqp!9AhY}dd)W(PMAH26OkofMiSje5haD_cs3}sm$X2C=Dl?}mG1Iw zp{)}4Qr!D`&lm$O=WyK%5^c-;luV`8s*lET2ptdwG0_Ia#fUI;hvp*p8(N>c9V~OiMlq;dX zxTq4s3B7>BAdgTn_}hhJLR>fiir7~a6jHw?$d&OI(lePc<5niJ$!O|C#q@H!2-P#P z`OzE3ScQhl8`)O^*I0MemRM6-1q04Q$7NwjMFY2B*n!=d+7ThQC#q%$59zDdn2Xwl z#C?&|EdlkTWmfF{EO=!}MM!SoM8Rxm2j#Sc90~}?P|#kR+~Eo^+jQz{?!y0W^Jv`a z)FWP6HA#zQ5Q;0F|8||aww*pnOrt=i{H%;qVeY;V zJj(N+;QhzT?Tnw0lqYloFYkOA3?Q(Ng1=LW-A5TTD2gZWSCR2b2jlsVB2@UVJL#_K zqH=2C1w~o%yL$(-u^=v0wIxRPBeZ5a1|qx%6dbc52-8dlGQvRt0=<_8U9b&HUY^p0 za>}G6<3e`S_%oy=paL-vn8egFN^M9f<86cD;q;+(M_HjGq>cJ*m`Nr~bh9%_MH``A zozbkd(Eut$5(u}V`bbeFN*mOaHOR?JmW{6G$C`?eXP5{m2;hQ@^knE-{WxZErnC?) zra#FaoU}X1^d!W^jEz6_OiWNSQj@?0^**J%ytreOwtIVf4M81OD^1PJ12KTr!Sl;& z!E42{hfi2JCWeML5e1{nQqT#gKKOcFmL}0D#+2nIO3Lr4&&W~MJN|r$BX^ZQ9(fH? ziut3`LzrpXYWob*zAPe;fRnBr|4N$bS}BHXMtzG(Lp8uLb5?RkVBA2u_8UQkxCEWO zF7QFgiTsJE#gnFt3?jwlnFNk${LjimfFpaPErF$bBBR=?v2=Vzx+PLKjQ{H*Oi))s z@*K+b{MPH8U~sL#27JcC~{_iCX2>icSpW_#y#&4bip>_6l5a5y$lNYTP IHVpcI08sxnFaQ7m diff --git a/common/cinnamon/thumbnail.png b/common/cinnamon/thumbnail.png deleted file mode 100644 index bcc6216d7967ef247675dd61a10e905d4588db50..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 33914 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 X!+tf - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/button-active-right.svg b/common/gnome-shell/3.14/common-assets/dash/button-active-right.svg deleted file mode 100644 index 7986719..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/button-active-right.svg +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/button-active-top.svg b/common/gnome-shell/3.14/common-assets/dash/button-active-top.svg deleted file mode 100644 index 5376ede..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/button-active-top.svg +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/button-active.svg b/common/gnome-shell/3.14/common-assets/dash/button-active.svg deleted file mode 100644 index f8a86a7..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/button-active.svg +++ /dev/null @@ -1,159 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/button-hover-bottom.svg b/common/gnome-shell/3.14/common-assets/dash/button-hover-bottom.svg deleted file mode 100644 index d357567..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/button-hover-bottom.svg +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/button-hover-right.svg b/common/gnome-shell/3.14/common-assets/dash/button-hover-right.svg deleted file mode 100644 index cff4809..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/button-hover-right.svg +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/button-hover-top.svg b/common/gnome-shell/3.14/common-assets/dash/button-hover-top.svg deleted file mode 100644 index d5c5397..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/button-hover-top.svg +++ /dev/null @@ -1,152 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/button-hover.svg b/common/gnome-shell/3.14/common-assets/dash/button-hover.svg deleted file mode 100644 index b1d8c07..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/button-hover.svg +++ /dev/null @@ -1,149 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/button-running-active-bottom.svg b/common/gnome-shell/3.14/common-assets/dash/button-running-active-bottom.svg deleted file mode 100644 index 50de7fe..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/button-running-active-bottom.svg +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/button-running-active-right.svg b/common/gnome-shell/3.14/common-assets/dash/button-running-active-right.svg deleted file mode 100644 index 8d084b1..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/button-running-active-right.svg +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/button-running-active-top.svg b/common/gnome-shell/3.14/common-assets/dash/button-running-active-top.svg deleted file mode 100644 index 81daa1e..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/button-running-active-top.svg +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/button-running-active.svg b/common/gnome-shell/3.14/common-assets/dash/button-running-active.svg deleted file mode 100644 index 02ff022..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/button-running-active.svg +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/button-running-bottom.svg b/common/gnome-shell/3.14/common-assets/dash/button-running-bottom.svg deleted file mode 100644 index 4479c24..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/button-running-bottom.svg +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/button-running-hover-bottom.svg b/common/gnome-shell/3.14/common-assets/dash/button-running-hover-bottom.svg deleted file mode 100644 index 72aa6d1..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/button-running-hover-bottom.svg +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/button-running-hover-right.svg b/common/gnome-shell/3.14/common-assets/dash/button-running-hover-right.svg deleted file mode 100644 index 2cb8d25..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/button-running-hover-right.svg +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/button-running-hover-top.svg b/common/gnome-shell/3.14/common-assets/dash/button-running-hover-top.svg deleted file mode 100644 index f1c6009..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/button-running-hover-top.svg +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/button-running-hover.svg b/common/gnome-shell/3.14/common-assets/dash/button-running-hover.svg deleted file mode 100644 index 44efaaf..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/button-running-hover.svg +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/button-running-right.svg b/common/gnome-shell/3.14/common-assets/dash/button-running-right.svg deleted file mode 100644 index b74e796..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/button-running-right.svg +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/button-running-top.svg b/common/gnome-shell/3.14/common-assets/dash/button-running-top.svg deleted file mode 100644 index 44408ea..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/button-running-top.svg +++ /dev/null @@ -1,151 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/button-running.svg b/common/gnome-shell/3.14/common-assets/dash/button-running.svg deleted file mode 100644 index 910f266..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/button-running.svg +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/dash-left.svg b/common/gnome-shell/3.14/common-assets/dash/dash-left.svg deleted file mode 100644 index 0571ee3..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/dash-left.svg +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/dash-placeholder.svg b/common/gnome-shell/3.14/common-assets/dash/dash-placeholder.svg deleted file mode 100644 index ff43dfc..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/dash-placeholder.svg +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/dash-right.svg b/common/gnome-shell/3.14/common-assets/dash/dash-right.svg deleted file mode 100644 index 1fabd7f..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/dash-right.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/running1.svg b/common/gnome-shell/3.14/common-assets/dash/running1.svg deleted file mode 100644 index 80a50e9..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/running1.svg +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/running2.svg b/common/gnome-shell/3.14/common-assets/dash/running2.svg deleted file mode 100644 index 7921561..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/running2.svg +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/running3.svg b/common/gnome-shell/3.14/common-assets/dash/running3.svg deleted file mode 100644 index abe61a5..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/running3.svg +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/dash/running4.svg b/common/gnome-shell/3.14/common-assets/dash/running4.svg deleted file mode 100644 index a74851b..0000000 --- a/common/gnome-shell/3.14/common-assets/dash/running4.svg +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/menu/menu-hover.svg b/common/gnome-shell/3.14/common-assets/menu/menu-hover.svg deleted file mode 100644 index 6cdbdbe..0000000 --- a/common/gnome-shell/3.14/common-assets/menu/menu-hover.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/menu/menu-separator.svg b/common/gnome-shell/3.14/common-assets/menu/menu-separator.svg deleted file mode 100644 index ce3763c..0000000 --- a/common/gnome-shell/3.14/common-assets/menu/menu-separator.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/misc/bg.svg b/common/gnome-shell/3.14/common-assets/misc/bg.svg deleted file mode 100644 index 1e6d24d..0000000 --- a/common/gnome-shell/3.14/common-assets/misc/bg.svg +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/misc/close-active.svg b/common/gnome-shell/3.14/common-assets/misc/close-active.svg deleted file mode 100644 index 8c060c8..0000000 --- a/common/gnome-shell/3.14/common-assets/misc/close-active.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - -image/svg+xml \ No newline at end of file diff --git a/common/gnome-shell/3.14/common-assets/misc/close-hover.svg b/common/gnome-shell/3.14/common-assets/misc/close-hover.svg deleted file mode 100644 index 0f6121d..0000000 --- a/common/gnome-shell/3.14/common-assets/misc/close-hover.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - -image/svg+xml \ No newline at end of file diff --git a/common/gnome-shell/3.14/common-assets/misc/close.svg b/common/gnome-shell/3.14/common-assets/misc/close.svg deleted file mode 100644 index e44adc7..0000000 --- a/common/gnome-shell/3.14/common-assets/misc/close.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - -image/svg+xml \ No newline at end of file diff --git a/common/gnome-shell/3.14/common-assets/misc/corner-ripple-ltr.svg b/common/gnome-shell/3.14/common-assets/misc/corner-ripple-ltr.svg deleted file mode 100644 index 9409960..0000000 --- a/common/gnome-shell/3.14/common-assets/misc/corner-ripple-ltr.svg +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/misc/corner-ripple-rtl.svg b/common/gnome-shell/3.14/common-assets/misc/corner-ripple-rtl.svg deleted file mode 100644 index e9237cd..0000000 --- a/common/gnome-shell/3.14/common-assets/misc/corner-ripple-rtl.svg +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/misc/more-results.svg b/common/gnome-shell/3.14/common-assets/misc/more-results.svg deleted file mode 100644 index 6645d74..0000000 --- a/common/gnome-shell/3.14/common-assets/misc/more-results.svg +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/misc/notification.svg b/common/gnome-shell/3.14/common-assets/misc/notification.svg deleted file mode 100644 index dcfd78e..0000000 --- a/common/gnome-shell/3.14/common-assets/misc/notification.svg +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/misc/null.svg b/common/gnome-shell/3.14/common-assets/misc/null.svg deleted file mode 100644 index ca0527d..0000000 --- a/common/gnome-shell/3.14/common-assets/misc/null.svg +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/misc/osd.svg b/common/gnome-shell/3.14/common-assets/misc/osd.svg deleted file mode 100644 index 57addde..0000000 --- a/common/gnome-shell/3.14/common-assets/misc/osd.svg +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/misc/page-indicator-active.svg b/common/gnome-shell/3.14/common-assets/misc/page-indicator-active.svg deleted file mode 100644 index 846f13d..0000000 --- a/common/gnome-shell/3.14/common-assets/misc/page-indicator-active.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/misc/page-indicator-checked.svg b/common/gnome-shell/3.14/common-assets/misc/page-indicator-checked.svg deleted file mode 100644 index 053ffe7..0000000 --- a/common/gnome-shell/3.14/common-assets/misc/page-indicator-checked.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/misc/page-indicator-hover.svg b/common/gnome-shell/3.14/common-assets/misc/page-indicator-hover.svg deleted file mode 100644 index 1a2692a..0000000 --- a/common/gnome-shell/3.14/common-assets/misc/page-indicator-hover.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/misc/page-indicator-inactive.svg b/common/gnome-shell/3.14/common-assets/misc/page-indicator-inactive.svg deleted file mode 100644 index 3c066d0..0000000 --- a/common/gnome-shell/3.14/common-assets/misc/page-indicator-inactive.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/misc/process-working.svg b/common/gnome-shell/3.14/common-assets/misc/process-working.svg deleted file mode 100644 index 444961b..0000000 --- a/common/gnome-shell/3.14/common-assets/misc/process-working.svg +++ /dev/null @@ -1,287 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/misc/summary-counter.svg b/common/gnome-shell/3.14/common-assets/misc/summary-counter.svg deleted file mode 100644 index 7bc22e9..0000000 --- a/common/gnome-shell/3.14/common-assets/misc/summary-counter.svg +++ /dev/null @@ -1,115 +0,0 @@ - - - -image/svg+xml \ No newline at end of file diff --git a/common/gnome-shell/3.14/common-assets/misc/ws-switch-arrow-down.png b/common/gnome-shell/3.14/common-assets/misc/ws-switch-arrow-down.png deleted file mode 100644 index a674ad58d7ca2c64e0d5a512ddd9a21578c643e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 879 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGoY)RhkE)4%caKYZ?lYt_f1s;*b zKpodXn9)gNb_Gz7y~NYkmHi$oGq)%MYv{iz3=B+vJY5_^DsH{Kbu!;KQRdjk>mp)W zfwvZQaV0HmZgW|kmaCtoEOy1|NR(1iviii1y(U7^+}VfY6($N;JNE`onIYsHxcADB zt(N9HyLVZB-}Bz~x$Sqm`L*YN?md5b-a}hcHy3PRiBjMV?FI4~J|BOrYDhldoA9Ha z`|H+*If4t!TOXP;Iwy*~sAgo?-&m{3Rd4#i^39`50S@b0_KCFY=lT(H=Fp`eAaAc+ z`~9#NQSp4NPrPnCPW++WP#!2Y<;jJc9jZNyw{5uUJwIF#JGx@ErJCE1nT;LKXJz&5 z!jE6 zoBaGH5zc(4G{7lebN$Z)#iu3h8FcsUJ8^~SyN-C{!f=M|odw7K%S&c17N4iHVP!}0Ii|ejFYl`K3AM>g*l&Y0rQ0 zmCP<;(kTfzl(A5#VdlZ_(YKF3=+Shac6;AX)f|cEH;iT8cvo)qjawx&jcL8?lnr+8 zXM`RoJ)QiIrEI1bgAVh(2)1vm5zId9>mub|i*L9cBDBD?V(a$1QaiFLd-fl24DM`r zdLVkzXZ9QUT9OxJa^9;6{$o@=#-Mx9EI&r;`=;PW)lN4)@N0hj=p7;H%-KG*B-mZQ1q8g8=( zU4>pJcj_+G{t+N_EHj}gs5suKyhG@hXkDiF3(bH-lCARooHHN14&Aqz%l@9ww&zm| sFVdQ&MBb@0Ddig1ONa4 diff --git a/common/gnome-shell/3.14/common-assets/misc/ws-switch-arrow-up.png b/common/gnome-shell/3.14/common-assets/misc/ws-switch-arrow-up.png deleted file mode 100644 index 1b6f6111418f3a8e4f83917db01e152bbb5002c4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 853 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGoY)RhkE)4%caKYZ?lYt_f1s;*b zKpodXn9)gNb_Gz7y~NYkmHi$oGq;G*m6`KG85o!zdAc};RNQ)d)7wKdQKJ20{;4h8 zQ#rPEZP31Ja=M9YS45e!xA{fZ)vgl+);4o+MTuXuYT70!C>S)mD@=^l(Pj0CQ}328 zt?;}!Pt2--%X&`nzWlUvXMXOX#*Jz(&7H>1ePpn{M5%R1lhUZ=_;Twl-jvG#gH=c;FVb;1TN zW$T!PL(bdPCG&l(4d24D`$u(yZo2zH+>YAH>?DN)|75k^E{bQ|osM+Qpr4IH7 zcPu#c@^L<=!M^u%y!z$$i@i{mNe}t+{>NI^qE?3A)iP&{ge%@8aDFZ9w7(ztN2=X;DwDrX`YZNr&#M1a z9II{rOD|@e65^_32Fa?#y$wtXcQp<3H=0Q=9E&?mz$K&{yk6TPhg7!~ix*PgEBOUlJ2pnF2S=+c)ZO5+V z(+^LG&8)kV+>>c~Y|eL^^>>d57~GX8J|waEx - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/panel/activities.svg b/common/gnome-shell/3.14/common-assets/panel/activities.svg deleted file mode 100644 index b3bcad9..0000000 --- a/common/gnome-shell/3.14/common-assets/panel/activities.svg +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/panel/panel-overview.svg b/common/gnome-shell/3.14/common-assets/panel/panel-overview.svg deleted file mode 100644 index 0c21ba4..0000000 --- a/common/gnome-shell/3.14/common-assets/panel/panel-overview.svg +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/panel/panel.svg b/common/gnome-shell/3.14/common-assets/panel/panel.svg deleted file mode 100644 index 1bd946e..0000000 --- a/common/gnome-shell/3.14/common-assets/panel/panel.svg +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/switch/switch-off-selected.svg b/common/gnome-shell/3.14/common-assets/switch/switch-off-selected.svg deleted file mode 100644 index a6bca3a..0000000 --- a/common/gnome-shell/3.14/common-assets/switch/switch-off-selected.svg +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/common-assets/switch/switch-on-selected.svg b/common/gnome-shell/3.14/common-assets/switch/switch-on-selected.svg deleted file mode 100644 index ccf2299..0000000 --- a/common/gnome-shell/3.14/common-assets/switch/switch-on-selected.svg +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/checkbox/checkbox-checked-focused.svg b/common/gnome-shell/3.14/dark-assets/checkbox/checkbox-checked-focused.svg deleted file mode 100644 index 4789a32..0000000 --- a/common/gnome-shell/3.14/dark-assets/checkbox/checkbox-checked-focused.svg +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/checkbox/checkbox-checked.svg b/common/gnome-shell/3.14/dark-assets/checkbox/checkbox-checked.svg deleted file mode 100644 index 8f431e7..0000000 --- a/common/gnome-shell/3.14/dark-assets/checkbox/checkbox-checked.svg +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/checkbox/checkbox-unchecked-focused.svg b/common/gnome-shell/3.14/dark-assets/checkbox/checkbox-unchecked-focused.svg deleted file mode 100644 index 77c4256..0000000 --- a/common/gnome-shell/3.14/dark-assets/checkbox/checkbox-unchecked-focused.svg +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/checkbox/checkbox-unchecked.svg b/common/gnome-shell/3.14/dark-assets/checkbox/checkbox-unchecked.svg deleted file mode 100644 index ee1aefa..0000000 --- a/common/gnome-shell/3.14/dark-assets/checkbox/checkbox-unchecked.svg +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/menu/menu.svg b/common/gnome-shell/3.14/dark-assets/menu/menu.svg deleted file mode 100644 index a75c0ba..0000000 --- a/common/gnome-shell/3.14/dark-assets/menu/menu.svg +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/menu/submenu-open.svg b/common/gnome-shell/3.14/dark-assets/menu/submenu-open.svg deleted file mode 100644 index bd817b0..0000000 --- a/common/gnome-shell/3.14/dark-assets/menu/submenu-open.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/menu/submenu.svg b/common/gnome-shell/3.14/dark-assets/menu/submenu.svg deleted file mode 100644 index ebab963..0000000 --- a/common/gnome-shell/3.14/dark-assets/menu/submenu.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/misc/button-box.svg b/common/gnome-shell/3.14/dark-assets/misc/button-box.svg deleted file mode 100644 index 48e1932..0000000 --- a/common/gnome-shell/3.14/dark-assets/misc/button-box.svg +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/misc/calendar-arrow-left-hover.svg b/common/gnome-shell/3.14/dark-assets/misc/calendar-arrow-left-hover.svg deleted file mode 100644 index 04ffc1b..0000000 --- a/common/gnome-shell/3.14/dark-assets/misc/calendar-arrow-left-hover.svg +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/misc/calendar-arrow-left.svg b/common/gnome-shell/3.14/dark-assets/misc/calendar-arrow-left.svg deleted file mode 100644 index 38c2368..0000000 --- a/common/gnome-shell/3.14/dark-assets/misc/calendar-arrow-left.svg +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/misc/calendar-arrow-right-hover.svg b/common/gnome-shell/3.14/dark-assets/misc/calendar-arrow-right-hover.svg deleted file mode 100644 index df438fc..0000000 --- a/common/gnome-shell/3.14/dark-assets/misc/calendar-arrow-right-hover.svg +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/misc/calendar-arrow-right.svg b/common/gnome-shell/3.14/dark-assets/misc/calendar-arrow-right.svg deleted file mode 100644 index 2195675..0000000 --- a/common/gnome-shell/3.14/dark-assets/misc/calendar-arrow-right.svg +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/misc/message-active.svg b/common/gnome-shell/3.14/dark-assets/misc/message-active.svg deleted file mode 100644 index 6eb4a33..0000000 --- a/common/gnome-shell/3.14/dark-assets/misc/message-active.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/misc/message-close-active.svg b/common/gnome-shell/3.14/dark-assets/misc/message-close-active.svg deleted file mode 100644 index dfe1d09..0000000 --- a/common/gnome-shell/3.14/dark-assets/misc/message-close-active.svg +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/misc/message-close-hover.svg b/common/gnome-shell/3.14/dark-assets/misc/message-close-hover.svg deleted file mode 100644 index 1456c46..0000000 --- a/common/gnome-shell/3.14/dark-assets/misc/message-close-hover.svg +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/misc/message-close.svg b/common/gnome-shell/3.14/dark-assets/misc/message-close.svg deleted file mode 100644 index a524ba5..0000000 --- a/common/gnome-shell/3.14/dark-assets/misc/message-close.svg +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/misc/message-hover.svg b/common/gnome-shell/3.14/dark-assets/misc/message-hover.svg deleted file mode 100644 index 0b5bd06..0000000 --- a/common/gnome-shell/3.14/dark-assets/misc/message-hover.svg +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/misc/message.svg b/common/gnome-shell/3.14/dark-assets/misc/message.svg deleted file mode 100644 index c9615d6..0000000 --- a/common/gnome-shell/3.14/dark-assets/misc/message.svg +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/misc/modal.svg b/common/gnome-shell/3.14/dark-assets/misc/modal.svg deleted file mode 100644 index fa76036..0000000 --- a/common/gnome-shell/3.14/dark-assets/misc/modal.svg +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/switch/switch-off.svg b/common/gnome-shell/3.14/dark-assets/switch/switch-off.svg deleted file mode 100644 index 963cf15..0000000 --- a/common/gnome-shell/3.14/dark-assets/switch/switch-off.svg +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/dark-assets/switch/switch-on.svg b/common/gnome-shell/3.14/dark-assets/switch/switch-on.svg deleted file mode 100644 index 0c5f216..0000000 --- a/common/gnome-shell/3.14/dark-assets/switch/switch-on.svg +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/gnome-shell-dark.css b/common/gnome-shell/3.14/gnome-shell-dark.css deleted file mode 100644 index cc631a2..0000000 --- a/common/gnome-shell/3.14/gnome-shell-dark.css +++ /dev/null @@ -1,2091 +0,0 @@ -/* Copyright 2009, 2015 Red Hat, Inc. - * - * Portions adapted from Mx's data/style/default.css - * Copyright 2009 Intel Corporation - * - * This program is free software; you can redistribute it and/or modify it - * under the terms and conditions of the GNU Lesser General Public License, - * version 2.1, as published by the Free Software Foundation. - * - * This program is distributed in the hope it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for - * more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. - */ -stage { - font-family: Futura Bk bt, Cantarell, Sans-Serif; - font-size: 9pt; - color: #657b83; } - -.app-well-menu, -.run-dialog-error-label, -.dash-label, -.window-caption, -.switcher-list, -.app-well-app > .overview-icon, -.grid-search-result .overview-icon { - font-size: 1em; - font-weight: normal; } - -.app-well-app.running > .overview-icon, .app-well-app.running:hover > .overview-icon, .app-well-app.running:active > .overview-icon, -.app-well-app.running:checked > .overview-icon { - background-color: transparent !important; - background-gradient-direction: none !important; - border: none !important; - border-radius: 0 !important; } - -.popup-menu .modal-dialog-button { - font-size: 1em; - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - border-radius: 2px; - background-gradient-direction: none !important; - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #083e4b; - border: 1px solid #001317; - box-shadow: inset 0 2px 4px rgba(8, 62, 75, 0.05); } - .popup-menu .modal-dialog-button:focus { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #083e4b; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(8, 62, 75, 0.05); } - .popup-menu .modal-dialog-button:hover { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #0a5062; - border: 1px solid #001317; - box-shadow: inset 0 2px 4px rgba(10, 80, 98, 0.05); } - .popup-menu .modal-dialog-button:hover:focus { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #083e4b; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(8, 62, 75, 0.05); } - .popup-menu .modal-dialog-button:active, .popup-menu .modal-dialog-button:active:focus { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - .popup-menu .modal-dialog-button:insensitive { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: rgba(101, 123, 131, 0.45); - border: 1px solid rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); - box-shadow: inset 0 2px 4px rgba(8, 62, 75, 0.05); } - -.candidate-page-button, -.hotplug-notification-item, -.hotplug-resident-eject-button, -.modal-dialog-button { - background-gradient-direction: none !important; } - -.candidate-page-button, -.hotplug-notification-item, -.hotplug-resident-eject-button, -.modal-dialog-button, .modal-dialog-button-box .button, .notification-button, .notification-icon-button, .hotplug-resident-mount { - font-size: 1em; - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - border-radius: 2px; - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .candidate-page-button:hover, - .hotplug-notification-item:hover, - .hotplug-resident-eject-button:hover, - .modal-dialog-button:hover, .modal-dialog-button-box .button:hover, .notification-button:hover, .notification-icon-button:hover, .hotplug-resident-mount:hover { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .candidate-page-button:focus, - .hotplug-notification-item:focus, - .hotplug-resident-eject-button:focus, - .modal-dialog-button:focus, .modal-dialog-button-box .button:focus, .notification-button:focus, .notification-icon-button:focus, .hotplug-resident-mount:focus { - color: #268bd2; } - .candidate-page-button:active, - .hotplug-notification-item:active, - .hotplug-resident-eject-button:active, - .modal-dialog-button:active, .modal-dialog-button-box .button:active, .notification-button:active, .notification-icon-button:active, .hotplug-resident-mount:active { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #fdf6e3; - border: 1px solid #268bd2; - background-color: #268bd2; } - .candidate-page-button:insensitive, - .hotplug-notification-item:insensitive, - .hotplug-resident-eject-button:insensitive, - .modal-dialog-button:insensitive, .modal-dialog-button-box .button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .hotplug-resident-mount:insensitive { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #234b56; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -StEntry { - font-size: 1em; - padding: 7px; - caret-size: 1px; - selection-background-color: #268bd2; - selected-color: #fdf6e3; - transition-duration: 300ms; - border-radius: 3px; - background-gradient-direction: none !important; - color: #657b83; - background-color: #073642; - border: 1px solid #001317; - box-shadow: inset 0 2px 4px rgba(7, 54, 66, 0.05); } - StEntry:focus, StEntry:hover { - color: #657b83; - background-color: #073642; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(7, 54, 66, 0.05); } - StEntry:insensitive { - color: rgba(101, 123, 131, 0.45); - background-color: #04313d; - border-color: 1px solid #001e25; - box-shadow: inset 0 2px 4px rgba(4, 49, 61, 0.05); } - StEntry StIcon.capslock-warning { - icon-size: 16px; - warning-color: #cb4b16; - padding: 0 4px; } - -StScrollView.vfade { - -st-vfade-offset: 0px; } - -StScrollView.hfade { - -st-hfade-offset: 0px; } - -StScrollBar { - padding: 8px; } - StScrollView StScrollBar { - min-width: 5px; - min-height: 5px; } - StScrollBar StBin#trough { - background-color: rgba(7, 54, 66, 0.1); - border-radius: 8px; } - StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { - border-radius: 4px; - background-color: #284b55; - border: 0px solid; - margin: 0px; } - StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { - background-color: #1e434d; } - StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { - background-color: #268bd2; } - -.slider { - -slider-height: 4px; - -slider-background-color: #001317; - -slider-border-color: transparent; - -slider-active-background-color: #268bd2; - -slider-active-border-color: transparent; - -slider-border-width: 0; - -slider-handle-radius: 0px; - -slider-handle-border-color: transparent; - -slider-handle-border-width: 0; - height: 18px; - border: 0 solid transparent; - border-right-width: 1px; - border-left-width: 5px; - color: transparent; } - .popup-menu-item:active .slider { - -slider-background-color: rgba(0, 0, 0, 0.2); - -slider-active-background-color: #fdf6e3; } - -.check-box StBoxLayout { - spacing: .8em; } - -.check-box StBin { - width: 16px; - height: 16px; - background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } - -.check-box:focus StBin { - background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } - -.check-box:checked StBin { - background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } - -.check-box:focus:checked StBin { - background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } - -.toggle-switch { - width: 50px; - height: 20px; - background-size: contain; - background-image: url("dark-assets/switch/switch-off.svg"); } - .toggle-switch:checked { - background-image: url("dark-assets/switch/switch-on.svg"); } - .popup-menu-item:active .toggle-switch { - background-image: url("common-assets/switch/switch-off-selected.svg"); } - .popup-menu-item:active .toggle-switch:checked { - background-image: url("common-assets/switch/switch-on-selected.svg"); } - -.shell-link { - color: #78b9e6; } - .shell-link:hover { - color: #a3cfee; } - -.headline { - font-size: 110%; } - -.lightbox { - background-color: black; } - -.flashspot { - background-color: white; } - -.modal-dialog { - color: #657b83; - background-color: rgba(0, 43, 54, 0); - border: none; - border-image: url("dark-assets/misc/modal.svg") 9 9 9 67; - padding: 0 5px 6px 5px; } - .modal-dialog > StBoxLayout:first-child { - padding: 20px 10px 10px 10px; } - .modal-dialog-button-box { - spacing: 10px; - margin: 0px; - padding: 14px 10px; - background: none; - border: none; - border-image: url("dark-assets/misc/button-box.svg") 9 9 9 9; } - .modal-dialog-button-box .button { - padding-top: 0; - padding-bottom: 0; - height: 30px; } - .modal-dialog .run-dialog-entry { - width: 21em; - caret-color: #657b83; } - .modal-dialog .run-dialog-error-box { - padding-top: 5px; - spacing: 5px; } - .modal-dialog .run-dialog-label { - font-size: 0; } - -.show-processes-dialog-subject, -.mount-question-dialog-subject, -.end-session-dialog-subject { - font-size: 11pt; - font-weight: bold; - color: #657b83; } - -.end-session-dialog { - spacing: 42px; } - .end-session-dialog-list { - padding-top: 20px; } - .end-session-dialog-layout { - padding-left: 17px; } - .end-session-dialog-layout:rtl { - padding-right: 17px; } - .end-session-dialog-description { - width: 28em; - padding-bottom: 10px; } - .end-session-dialog-description:rtl { - text-align: right; } - .end-session-dialog-warning { - width: 28em; - color: #cb4b16; - padding-top: 6px; } - .end-session-dialog-warning:rtl { - text-align: right; } - .end-session-dialog-logout-icon { - border: 0px solid transparent; - border-radius: 2px; - width: 48px; - height: 48px; - background-size: contain; } - .end-session-dialog-shutdown-icon { - color: #657b83; - width: 48px; - height: 48px; } - .end-session-dialog-inhibitor-layout { - spacing: 16px; - max-height: 200px; - padding-right: 10px; - padding-left: 10px; } - .end-session-dialog-session-list, .end-session-dialog-app-list { - spacing: 1em; } - .end-session-dialog-list-header { - font-weight: bold; } - .end-session-dialog-list-header:rtl { - text-align: right; } - .end-session-dialog-app-list-item, .end-session-dialog-session-list-item { - spacing: 1em; } - .end-session-dialog-app-list-item-name, .end-session-dialog-session-list-item-name { - font-weight: bold; } - .end-session-dialog-app-list-item-description { - color: #708891; - font-size: 8pt; } - .end-session-dialog .modal-dialog-button:last-child { - color: white; - background-color: #dc322f; - border-color: #dc322f; } - .end-session-dialog .modal-dialog-button:last-child:hover { - color: white; - background-color: #e35956; - border-color: #e35956; } - .end-session-dialog .modal-dialog-button:last-child:active { - color: white; - background-color: #cf2623; - border-color: #cf2623; } - -.shell-mount-operation-icon { - icon-size: 48px; } - -.show-processes-dialog, -.mount-question-dialog { - spacing: 24px; } - -.show-processes-dialog-subject, -.mount-question-dialog-subject { - padding-top: 10px; - padding-left: 17px; - padding-bottom: 6px; } - .show-processes-dialog-subject:rtl, - .mount-question-dialog-subject:rtl { - padding-left: 0px; - padding-right: 17px; } - -.mount-question-dialog-subject { - max-width: 500px; } - -.show-processes-dialog-description, -.mount-question-dialog-description { - padding-left: 17px; - width: 28em; } - .show-processes-dialog-description:rtl, - .mount-question-dialog-description:rtl { - padding-right: 17px; } - -.show-processes-dialog-app-list { - font-size: 10pt; - max-height: 200px; - padding-top: 24px; - padding-left: 49px; - padding-right: 32px; } - .show-processes-dialog-app-list:rtl { - padding-right: 49px; - padding-left: 32px; } - -.show-processes-dialog-app-list-item { - color: #4f6066; } - .show-processes-dialog-app-list-item:hover { - color: #657b83; } - .show-processes-dialog-app-list-item:ltr { - padding-right: 1em; } - .show-processes-dialog-app-list-item:rtl { - padding-left: 1em; } - -.show-processes-dialog-app-list-item-icon:ltr { - padding-right: 17px; } - -.show-processes-dialog-app-list-item-icon:rtl { - padding-left: 17px; } - -.show-processes-dialog-app-list-item-name { - font-size: 10pt; } - -.prompt-dialog { - width: 500px; } - .prompt-dialog-main-layout { - spacing: 24px; - padding: 10px; } - .prompt-dialog-message-layout { - spacing: 16px; } - .prompt-dialog-headline { - font-size: 12pt; - font-weight: bold; - color: #657b83; } - .prompt-dialog-descritption:rtl { - text-align: right; } - .prompt-dialog-password-box { - spacing: 1em; - padding-bottom: 1em; } - .prompt-dialog-error-label { - font-size: 9pt; - color: #dc322f; - padding-bottom: 8px; } - .prompt-dialog-info-label { - font-size: 9pt; - padding-bottom: 8px; } - .prompt-dialog-null-label { - font-size: 9pt; - padding-bottom: 8px; } - -.hidden { - color: transparent; } - -.polkit-dialog-user-layout { - padding-left: 10px; - spacing: 10px; } - .polkit-dialog-user-layout:rtl { - padding-left: 0px; - padding-right: 10px; } - -.polkit-dialog-user-root-label { - color: #cb4b16; } - -.polkit-dialog-user-user-icon { - border-radius: 2px; - background-size: contain; - width: 48px; - height: 48px; } - -.network-dialog-secret-table { - spacing-rows: 15px; - spacing-columns: 1em; } - -.keyring-dialog-control-table { - spacing-rows: 15px; - spacing-columns: 1em; } - -.popup-menu { - min-width: 200px; - color: #657b83; - border-image: url("dark-assets/menu/menu.svg") 9 9 9 9; } - .popup-menu .popup-sub-menu { - background: none; - box-shadow: none; - background-gradient-direction: none !important; - border-image: url("dark-assets/menu/submenu.svg") 9 9 9 9; } - .popup-menu .popup-submenu-menu-item:open { - color: #657b83; - background: none !important; - box-shadow: none; - border-image: url("dark-assets/menu/submenu-open.svg") 9 9 9 9; } - .popup-menu .popup-menu-content { - padding: 1em 0em 1em 0em; } - .popup-menu .popup-menu-item { - spacing: 12px; } - .popup-menu .popup-menu-item:ltr { - padding: .4em 3em .4em 0em; } - .popup-menu .popup-menu-item:rtl { - padding: .4em 0em .4em 3em; } - .popup-menu .popup-menu-item:active, .popup-menu .popup-menu-item.selected { - color: #fdf6e3; - background-color: transparent; - border-image: url("common-assets/menu/menu-hover.svg") 9 9 1 1; } - .popup-menu .popup-menu-item:insensitive { - color: rgba(101, 123, 131, 0.5); - background: none; } - .popup-menu .popup-inactive-menu-item { - color: #657b83; } - .popup-menu .popup-inactive-menu-item:insensitive { - color: rgba(101, 123, 131, 0.45); } - .popup-menu .popup-status-menu-item, - .popup-menu .popup-subtitle-menu-item { - color: #657b83; } - .popup-menu .popup-menu-item:active .popup-status-menu-item, - .popup-menu .popup-menu-item:active .popup-subtitle-menu-item { - color: #fdf6e3; } - .popup-menu.panel-menu { - -boxpointer-gap: 0px; - margin-bottom: 1.75em; } - -.popup-menu-ornament { - text-align: right; - margin-left: 10px; - width: 16px; } - -.popup-menu-boxpointer { - -arrow-border-radius: 2px !important; - -arrow-background-color: transparent !important; - -arrow-border-width: 1px !important; - -arrow-border-color: transparent !important; - -arrow-base: 0 !important; - -arrow-rise: 0 !important; - color: #657b83 !important; } - -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(7, 54, 66, 0.95); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0, 0, 0, 0.4); - -arrow-base: 5; - -arrow-rise: 5; } - -.popup-separator-menu-item { - -gradient-height: 0px; - height: 2px; - margin: 0; - background-color: transparent; - background-gradient-direction: none !important; - border: none; - border-image: url("common-assets/menu/menu-separator.svg") 1 1 1 1; } - -.background-menu { - -boxpointer-gap: 4px; - -arrow-rise: 0px; } - -.osd-window { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 20px; - margin: 32px; - min-width: 64px; - min-height: 64px; - color: white; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } - .osd-window .osd-monitor-label { - font-size: 3em; } - .osd-window .level { - padding: 0; - height: 4px; - background-color: rgba(0, 0, 0, 0.5); - border-radius: 2px; - color: #268bd2; } - -.resize-popup { - color: #657b83; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; - padding: 12px; } - -.switcher-popup { - padding: 8px; - spacing: 16px; } - -.switcher-list { - color: #657b83; - background: none; - border: none; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; } - .switcher-list-item-container { - spacing: 8px; } - .switcher-list .item-box { - padding: 8px; - border-radius: 2px; - border: 1px solid transparent; } - .switcher-list .item-box:outlined { - padding: 8px; - border: 1px solid #268bd2; } - .switcher-list .item-box:selected { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; } - .switcher-list .thumbnail-box { - padding: 2px; - spacing: 4px; } - .switcher-list .thumbnail { - width: 256px; } - .switcher-list .separator { - width: 1px; - background: rgba(101, 123, 131, 0.33); } - -.switcher-arrow { - border-color: transparent; - color: #657b83; } - .switcher-arrow:highlighted { - color: white; } - -.input-source-switcher-symbol { - font-size: 34pt; - width: 96px; - height: 96px; } - -.workspace-switcher { - background: transparent; - border: 0px; - border-radius: 0px; - padding: 0px; - spacing: 8px; } - .workspace-switcher-group { - padding: 12px; } - .workspace-switcher-container { - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; - padding-bottom: 24px; } - -.ws-switcher-active-up, .ws-switcher-active-down { - height: 30px; - background-color: #268bd2; - background-size: 96px; - border-radius: 2px; - border: 1px solid #268bd2; } - -.ws-switcher-active-up { - background-image: url("common-assets/misc/ws-switch-arrow-up.png"); } - -.ws-switcher-active-down { - background-image: url("common-assets/misc/ws-switch-arrow-down.png"); } - -.ws-switcher-box { - height: 96px; - background: rgba(0, 0, 0, 0.33); - border: 1px solid rgba(0, 0, 0, 0.33); - border-radius: 2px; } - -.tile-preview { - background-color: rgba(38, 139, 210, 0.35); - border: 1px solid #268bd2; } - .tile-preview-left.on-primary { - border-radius: 0px 0 0 0; } - .tile-preview-right.on-primary { - border-radius: 0 0px 0 0; } - .tile-preview-left.tile-preview-right.on-primary { - border-radius: 0px 0px 0 0; } - -#panel { - font-weight: bold; - height: 2.1em; - min-height: 27px; - background-color: transparent !important; - background-gradient-direction: none !important; - border-bottom: 0px !important; - border-image: url("common-assets/panel/panel.svg") 1 1 1 1 !important; } - #panel.dynamic-top-bar-white-btn { - border-image: none; } - #panel.unlock-screen, #panel.login-screen, #panel.lock-screen { - background-color: transparent; - border-image: none; } - #panel:overview { - border-image: url("common-assets/panel/panel-overview.svg") 1 1 1 1; } - #panel #panelLeft, #panel #panelCenter { - spacing: 8px; } - #panel .panel-corner { - -panel-corner-radius: 0px; - -panel-corner-background-color: transparent; - -panel-corner-border-width: 0px; - -panel-corner-border-color: black; } - #panel .panel-corner:active, #panel .panel-corner:overview, #panel .panel-corner:focus { - -panel-corner-border-color: black; } - #panel .panel-corner.lock-screen, #panel .panel-corner.login-screen, #panel .panel-cornerunlock-screen { - -panel-corner-radius: 0; - -panel-corner-background-color: transparent; - -panel-corner-border-color: transparent; } - #panel .panel-button { - -natural-hpadding: 10px !important; - -minimum-hpadding: 6px !important; - font-weight: bold; - color: white !important; - transition-duration: 100ms; - border-bottom-width: 1px; - border-color: transparent; } - #panel .panel-button #appMenuIcon { - width: 0; - height: 0; - margin-left: 0px; - margin-right: 0px; } - #panel .panel-button:hover { - color: white !important; - background-color: rgba(0, 0, 0, 0.17); - border-bottom-width: 1px; - border-color: transparent; - text-shadow: 0 0 transparent; } - #panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel .panel-button:checked { - color: #fdf6e3 !important; - background: #268bd2, url("common-assets/misc/null.svg"); - border-image: none; - box-shadow: none; - border-bottom-width: 1px !important; - border-color: black; - text-shadow: 0 0 transparent; } - #panel .panel-button:active > .system-status-icon, #panel .panel-button:overview > .system-status-icon, #panel .panel-button:focus > .system-status-icon, #panel .panel-button:checked > .system-status-icon { - icon-shadow: none; } - #panel .panel-button .system-status-icon { - icon-size: 16px; - padding: 0 4px; } - .unlock-screen #panel .panel-button, - .login-screen #panel .panel-button, - .lock-screen #panel .panel-button { - color: #7f949c; } - .unlock-screen #panel .panel-button:focus, .unlock-screen #panel .panel-button:hover, .unlock-screen #panel .panel-button:active, - .login-screen #panel .panel-button:focus, - .login-screen #panel .panel-button:hover, - .login-screen #panel .panel-button:active, - .lock-screen #panel .panel-button:focus, - .lock-screen #panel .panel-button:hover, - .lock-screen #panel .panel-button:active { - color: #7f949c; } - #panel #panelActivities.panel-button { - -natural-hpadding: 12px; } - #panel .panel-status-indicators-box, - #panel .panel-status-menu-box { - spacing: 2px; } - #panel .screencast-indicator { - color: #dc322f; } - #panel .clock-display > * > *:last-child { - color: #268bd2; - margin-left: .3em; } - #panel .popup-menu-arrow { - width: 0; } - -#panel #panelActivities.panel-button > * { - background-image: url("common-assets/panel/activities.svg"); - background-position: center top; - width: 24px; - height: 24px; - background-color: transparent !important; - background-gradient-direction: none !important; - border: 0 solid transparent !important; - text-shadow: 0 0 transparent !important; - transition-duration: 0ms !important; - box-shadow: none !important; - color: transparent; } - -#panel #panelActivities.panel-button:active, #panel #panelActivities.panel-button:overview, #panel #panelActivities.panel-button:focus, #panel #panelActivities.panel-button:checked { - background-color: transparent; - box-shadow: none; - border-bottom-width: 1px; - border-color: transparent; } - #panel #panelActivities.panel-button:active > *, #panel #panelActivities.panel-button:overview > *, #panel #panelActivities.panel-button:focus > *, #panel #panelActivities.panel-button:checked > * { - background-image: url("common-assets/panel/activities-active.svg"); } - -.system-switch-user-submenu-icon { - icon-size: 24px; - border: 1px solid rgba(0, 0, 0, 0.2); } - -#appMenu { - spinner-image: url("common-assets/misc/process-working.svg"); - spacing: 4px; - padding: 0 8px; } - #appMenu .label-shadow { - color: transparent !important; } - -.aggregate-menu { - width: 360px; } - .aggregate-menu .popup-menu-icon { - padding: 0 4px; - color: #657b83; } - .aggregate-menu .popup-menu-item:active .popup-menu-icon { - color: #fdf6e3; } - -.system-menu-action { - padding: 13px; - color: #657b83 !important; - border-radius: 32px; - /* wish we could do 50% */ - border: 1px solid transparent !important; } - .system-menu-action:hover, .system-menu-action:focus { - transition-duration: 100ms; - padding: 13px; - color: #657b83 !important; - background-color: transparent !important; - border: 1px solid #268bd2 !important; } - .system-menu-action:active { - color: #fdf6e3 !important; - background-color: #268bd2 !important; - border: 1px solid #268bd2 !important; } - .system-menu-action > StIcon { - icon-size: 16px; } - -.calendar-vertical-separator { - -stipple-width: 1px; - -stipple-color: rgba(101, 123, 131, 0.4); - width: 0.3em; } - -.calendar { - padding: .4em 1.75em .8em 2.5em; } - -.calendar-month-label { - color: #657b83 !important; - font-weight: bold; - padding: 8px 0; } - -.calendar-change-month-back:hover, -.calendar-change-month-back:focus, -.calendar-change-month-back:active, -.calendar-change-month-forward:hover, -.calendar-change-month-forward:focus, -.calendar-change-month-forward:active { - background-color: transparent; } - -.calendar-change-month-back, -.calendar-change-month-forward { - width: 18px; - height: 12px; - border-radius: 4px; } - -.calendar-change-month-back { - background-image: url("dark-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:focus, .calendar-change-month-back:hover { - background-image: url("dark-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-back:active { - background-image: url("dark-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:rtl { - background-image: url("dark-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { - background-image: url("dark-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-back:rtl:active { - background-image: url("dark-assets/misc/calendar-arrow-right.svg"); } - -.calendar-change-month-forward { - background-image: url("dark-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { - background-image: url("dark-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-forward:active { - background-image: url("dark-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:rtl { - background-image: url("dark-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { - background-image: url("dark-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-forward:rtl:active { - background-image: url("dark-assets/misc/calendar-arrow-left.svg"); } - -.datemenu-date-label { - padding: .4em 1.7em; - font-weight: bold; - text-align: center; - color: #657b83 !important; - border-radius: 4px; } - -.calendar-day-base { - font-size: 80%; - text-align: center; - width: 25px; - height: 25px; - padding: 0.1em; - margin: 2px; - border-radius: 12.5px; - color: #657b83 !important; } - .calendar-day-base:hover, .calendar-day-base:focus { - background-color: rgba(0, 0, 0, 0.1) !important; - color: #657b83 !important; } - .calendar-day-base:active { - color: #657b83 !important; - background-color: rgba(0, 0, 0, 0.15) !important; - border-width: 0; } - .calendar-day-base.calendar-day-heading { - color: rgba(101, 123, 131, 0.85); - margin-top: 1em; - font-size: 70%; } - -.calendar-week-number { - color: rgba(101, 123, 131, 0.5); - font-weight: normal; } - -.calendar-day { - border-width: 0; - color: rgba(101, 123, 131, 0.8); } - -.calendar-day-top { - border-top-width: 0; } - -.calendar-day-left { - border-left-width: 0; } - -.calendar-nonwork-day { - background-color: transparent; - color: #657b83 !important; - font-weight: bold; } - -.calendar-today, -.calendar-today:active, -.calendar-today:focus, -.calendar-today:hover { - font-weight: bold; - color: #fdf6e3 !important; - background: #268bd2, url("common-assets/misc/null.svg") !important; - border-width: 0; } - -.calendar-day-with-events { - color: #268bd2; - font-weight: bold; } - -.calendar-today.calendar-day-with-events { - color: #fdf6e3; } - -.calendar-other-month-day { - color: rgba(101, 123, 131, 0.3); - opacity: 1; } - -.events-table { - width: 320px; - spacing-columns: 6pt; - padding: 0 1.4em; } - .events-table:ltr { - padding-right: 1.9em; } - .events-table:rtl { - padding-left: 1.9em; } - -.events-day-header { - font-weight: bold; - color: rgba(101, 123, 131, 0.8) !important; - padding-left: 0.4em; - padding-top: 1.2em; } - .events-day-header:first-child { - padding-top: 0; } - .events-day-header:rtl { - padding-left: 0; - padding-right: 0.4em; } - -.events-day-dayname { - color: rgba(101, 123, 131, 0.5) !important; - text-align: left; - min-width: 20px; } - .events-day-dayname:rtl { - text-align: right; } - -.events-day-time { - color: rgba(101, 123, 131, 0.4) !important; - text-align: right; } - .events-day-time:rtl { - text-align: left; } - -.events-day-task { - color: #657b83; - padding-left: 8pt; } - .events-day-task:rtl { - padding-left: 0px; - padding-right: 8pt; } - -.ripple-box { - width: 52px; - height: 52px; - background-image: url("common-assets/misc/corner-ripple-ltr.svg"); - background-size: contain; } - .ripple-box:rtl { - background-image: url("common-assets/misc/corner-ripple-rtl.svg"); } - -.popup-menu-arrow { - width: 16px; - height: 16px; } - -.popup-menu-icon { - icon-size: 16px; } - -.window-close, .notification-close { - background-image: url("common-assets/misc/close.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - .window-close:hover, .notification-close:hover { - background-image: url("common-assets/misc/close-hover.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - .window-close:active, .notification-close:active { - background-image: url("common-assets/misc/close-active.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - -.window-close { - -shell-close-overlap: 11px; } - -.notification-close { - -shell-close-overlap-x: 8px; - -shell-close-overlap-y: -8px; } - .notification-close:rtl { - -shell-close-overlap-x: -8px; } - -.nm-dialog { - max-height: 500px; - min-height: 450px; - min-width: 470px; } - .nm-dialog-content { - spacing: 20px; } - .nm-dialog-header-hbox { - spacing: 10px; } - .nm-dialog-airplane-box { - spacing: 12px; } - .nm-dialog-airplane-headline { - font-size: 1.1em; - font-weight: bold; - text-align: center; } - .nm-dialog-airplane-text { - color: #657b83; } - .nm-dialog-header-icon { - icon-size: 32px; } - .nm-dialog-scroll-view { - border: 1px solid #001317; - border-radius: 2px; - background-color: #073642; } - .nm-dialog-header { - font-weight: bold; - font-size: 1.2em; } - .nm-dialog-item { - font-size: 1em; - border-bottom: 0px solid; - padding: 12px; - spacing: 0px; } - .nm-dialog-item:selected { - background-color: #268bd2; - color: #fdf6e3; } - .nm-dialog-icons { - spacing: .5em; } - .nm-dialog-icon { - icon-size: 16px; } - -.no-networks-label { - color: rgba(101, 123, 131, 0.45); } - -.no-networks-box { - spacing: 12px; } - -#overview { - spacing: 24px; } - -.overview-controls { - padding-bottom: 32px; } - -.window-picker { - -horizontal-spacing: 32px; - -vertical-spacing: 32px; - padding-left: 32px; - padding-right: 32px; - padding-bottom: 48px; } - .window-picker.external-monitor { - padding: 32px; } - -.window-clone-border { - border: 3px solid rgba(38, 139, 210, 0.8); - border-radius: 4px; - box-shadow: inset 0px 0px 0px 1px rgba(38, 139, 210, 0); } - -.window-caption, .window-caption:hover { - spacing: 25px; - color: #657b83; - background-color: rgba(0, 0, 0, 0.7); - border-radius: 2px; - padding: 4px 12px; - -shell-caption-spacing: 12px; } - -.search-entry { - width: 320px; - padding: 7px 9px; - border-radius: 20px; - border: 1px solid rgba(0, 0, 0, 0.25); - background-color: rgba(7, 54, 66, 0.9); } - .search-entry:focus { - padding: 7px 9px; } - .search-entry .search-entry-icon { - icon-size: 16px; - padding: 0 4px; - color: #657b83; } - .search-entry:hover, .search-entry:focus { - color: #fdf6e3; - caret-color: #fdf6e3; - background-color: #268bd2; - selection-background-color: #fdf6e3; - selected-color: #268bd2; } - .search-entry:hover .search-entry-icon, .search-entry:focus .search-entry-icon { - color: #fdf6e3; } - -#searchResultsBin { - max-width: 1000px; } - -#searchResultsContent { - padding-left: 20px; - padding-right: 20px; - spacing: 16px; } - -.search-section { - spacing: 16px; } - -.search-section-content { - spacing: 32px; } - -.list-search-results { - spacing: 3px; } - -.search-section-separator { - background-color: rgba(255, 255, 255, 0.2); - -margin-horizontal: 1.5em; - height: 1px; } - -.list-search-result-content { - spacing: 12px; - padding: 12px; } - -.list-search-result-title { - font-size: 1.5em; - color: white; } - -.list-search-result-description { - color: #cccccc; } - -.search-provider-icon { - padding: 15px; } - -.search-provider-icon-more { - width: 16px; - height: 16px; - background-image: url("common-assets/misc/more-results.svg"); } - -#dash { - font-size: 1em; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(0, 0, 0, 0.4); - padding: 3px 0px 3px 0px; - border-radius: 0 3px 3px 0; } - #dash:rtl { - border-radius: 3px 0 0 3px; } - .right #dash, #dash:rtl { - padding: 3px 0px 3px 0px; } - .bottom #dash { - padding: 0px 3px 0px 3px; } - .top #dash { - padding: 0px 3px 0px 3px; } - #dash .placeholder { - background-image: url("common-assets/dash/dash-placeholder.svg"); - background-size: contain; - height: 24px; } - #dash .empty-dash-drop-target { - width: 24px; - height: 24px; } - -.dash-item-container > StWidget { - padding: 2px 5px 2px 3px; } - .right .dash-item-container > StWidget, .dash-item-container > StWidget:rtl { - padding: 2px 3px 2px 5px; } - .bottom .dash-item-container > StWidget { - padding: 5px 2px 3px 2px; } - .top .dash-item-container > StWidget { - padding: 3px 2px 5px 2px; } - -.dash-label { - border-radius: 3px; - padding: 4px 12px; - color: white; - background-color: rgba(0, 0, 0, 0.7); - text-align: center; - -x-offset: 3px; } - -.bottom .dash-label, .top .dash-label { - -y-offset: 3px; - -x-offset: 0; } - -.dash-item-container > .app-well-app.running > .overview-icon, -.dash-item-container > .app-well-app.running:hover > .overview-icon, -.dash-item-container > .app-well-app.running:active > .overview-icon, -.dash-item-container > .app-well-app > .overview-icon, -.dash-item-container > .app-well-app:hover > .overview-icon, -.dash-item-container > .app-well-app:active > .overview-icon { - background-color: transparent !important; - background-gradient-direction: none !important; - border: none !important; - border-radius: 0 !important; - background: none !important; } - -#dash .app-well-app .overview-icon { - padding: 10px; - padding-left: 13px; } - -.right #dash .app-well-app .overview-icon, -#dash:rtl .app-well-app .overview-icon { - padding: 10px; - padding-right: 13px; } - -.bottom #dash .app-well-app .overview-icon { - padding: 10px; - padding-bottom: 13px; } - -.top #dash .app-well-app .overview-icon { - padding: 10px; - padding-top: 13px; } - -#dash .app-well-app:hover .overview-icon { - border-image: url("common-assets/dash/button-hover.svg") 5 5 5 5; } - -#dash .app-well-app:active .overview-icon { - border-image: url("common-assets/dash/button-active.svg") 5 5 5 5; } - -#dash .app-well-app.running .overview-icon { - border-image: url("common-assets/dash/button-running.svg") 5 5 5 5; } - -#dash .app-well-app.running:hover .overview-icon { - border-image: url("common-assets/dash/button-running-hover.svg") 5 5 5 5; } - -#dash .app-well-app.running:active > .overview-icon { - border-image: url("common-assets/dash/button-running-active.svg") 5 5 5 5; } - -.right #dash .app-well-app:hover .overview-icon, -#dash:rtl .app-well-app:hover .overview-icon { - border-image: url("common-assets/dash/button-hover-right.svg") 5 5 5 5; } - -.right #dash .app-well-app:active .overview-icon, -#dash:rtl .app-well-app:active .overview-icon { - border-image: url("common-assets/dash/button-active-right.svg") 5 5 5 5; } - -.right #dash .app-well-app.running .overview-icon, -#dash:rtl .app-well-app.running .overview-icon { - border-image: url("common-assets/dash/button-running-right.svg") 5 5 5 5; } - -.right #dash .app-well-app.running:hover .overview-icon, -#dash:rtl .app-well-app.running:hover .overview-icon { - border-image: url("common-assets/dash/button-running-hover-right.svg") 5 5 5 5; } - -.right #dash .app-well-app.running:active > .overview-icon, -#dash:rtl .app-well-app.running:active > .overview-icon { - border-image: url("common-assets/dash/button-running-active-right.svg") 5 5 5 5; } - -.bottom #dash .app-well-app:hover .overview-icon { - border-image: url("common-assets/dash/button-hover-bottom.svg") 5 5 5 5; } - -.bottom #dash .app-well-app:active .overview-icon { - border-image: url("common-assets/dash/button-active-bottom.svg") 5 5 5 5; } - -.bottom #dash .app-well-app.running .overview-icon { - border-image: url("common-assets/dash/button-running-bottom.svg") 5 5 5 5; } - -.bottom #dash .app-well-app.running:hover .overview-icon { - border-image: url("common-assets/dash/button-running-hover-bottom.svg") 5 5 5 5; } - -.bottom #dash .app-well-app.running:active > .overview-icon { - border-image: url("common-assets/dash/button-running-active-bottom.svg") 5 5 5 5; } - -.top #dash .app-well-app:hover .overview-icon { - border-image: url("common-assets/dash/button-hover-top.svg") 5 5 5 5; } - -.top #dash .app-well-app:active .overview-icon { - border-image: url("common-assets/dash/button-active-top.svg") 5 5 5 5; } - -.top #dash .app-well-app.running .overview-icon { - border-image: url("common-assets/dash/button-running-top.svg") 5 5 5 5; } - -.top #dash .app-well-app.running:hover .overview-icon { - border-image: url("common-assets/dash/button-running-hover-top.svg") 5 5 5 5; } - -.top #dash .app-well-app.running:active > .overview-icon { - border-image: url("common-assets/dash/button-running-active-top.svg") 5 5 5 5; } - -.show-apps .overview-icon { - background-gradient-direction: none !important; - padding: 11px; - background-color: rgba(0, 0, 0, 0.5); - border-radius: 2px; - border: 0px solid; } - -.show-apps:hover .overview-icon { - background-gradient-direction: none !important; - background-color: rgba(0, 0, 0, 0.7); - color: #268bd2; } - -.show-apps:active .overview-icon, .show-apps:active .show-apps-icon, .show-apps:checked .overview-icon, .show-apps:checked .show-apps-icon { - background-gradient-direction: none !important; - color: #fdf6e3; - background-color: #268bd2; - box-shadow: none; - transition-duration: 0ms; } - -.icon-grid { - spacing: 30px; - -shell-grid-horizontal-item-size: 136px; - -shell-grid-vertical-item-size: 136px; } - .icon-grid .overview-icon { - icon-size: 96px; } - -.app-view-controls { - padding-bottom: 32px; } - -.app-view-control { - padding: 4px 32px; - background-gradient-direction: none; - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .app-view-control:hover { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .app-view-control:checked { - color: #fdf6e3; - background-color: #268bd2; - border-color: #268bd2; } - .app-view-control:first-child:ltr, .app-view-control:last-child:rtl { - border-radius: 2px 0 0 2px; - border-right-width: 0; } - .app-view-control:last-child:ltr, .app-view-control:first-child:rtl { - border-radius: 0 2px 2px 0; - border-left-width: 0; } - -.search-provider-icon:active, .search-provider-icon:checked, -.list-search-result:active, -.list-search-result:checked { - background-color: rgba(2, 16, 20, 0.85); } - -.search-provider-icon:focus, .search-provider-icon:selected, .search-provider-icon:hover, -.list-search-result:focus, -.list-search-result:selected, -.list-search-result:hover { - background-color: rgba(101, 123, 131, 0.4); - transition-duration: 200ms; } - -.app-well-app:active .overview-icon, -.app-well-app:checked .overview-icon, -.app-well-app.app-folder:active .overview-icon, -.app-well-app.app-folder:checked .overview-icon, -.grid-search-result:active .overview-icon, -.grid-search-result:checked .overview-icon { - background-color: rgba(2, 16, 20, 0.85); - box-shadow: inset 0 0 #268bd2; } - -.app-well-app:hover .overview-icon, -.app-well-app:focus .overview-icon, -.app-well-app:selected .overview-icon, -.app-well-app.app-folder:hover .overview-icon, -.app-well-app.app-folder:focus .overview-icon, -.app-well-app.app-folder:selected .overview-icon, -.grid-search-result:hover .overview-icon, -.grid-search-result:focus .overview-icon, -.grid-search-result:selected .overview-icon { - background-color: rgba(101, 123, 131, 0.4); - transition-duration: 0ms; - border-image: none; - background-image: none; } - -.app-well-app.running > .overview-icon { - background: none !important; - text-shadow: black 0px 0px; - border-image: url("common-assets/dash/button-running-bottom.svg") 5 5 5 5; } - -.app-well-app.running:hover > .overview-icon { - border-image: url("common-assets/dash/button-running-hover-bottom.svg") 5 5 5 5; } - -.app-well-app.running:active > .overview-icon, -.app-well-app.running:checked > .overview-icon { - border-image: url("common-assets/dash/button-running-active-bottom.svg") 5 5 5 5; } - -.search-provider-icon, -.list-search-result, .app-well-app .overview-icon, -.app-well-app.app-folder .overview-icon, -.grid-search-result .overview-icon { - color: white; - border-radius: 2px; - padding: 6px; - border: 1px solid transparent; - transition-duration: 0ms; - text-align: center; } - -.app-well-app.app-folder > .overview-icon { - background-color: rgba(3, 24, 29, 0.95); - border: 1px solid rgba(0, 0, 0, 0.45); } - -.app-well-app.app-folder:hover > .overview-icon { - background-color: rgba(8, 65, 80, 0.95); } - -.app-well-app.app-folder:active > .overview-icon, .app-well-app.app-folder:checked > .overview-icon { - color: #fdf6e3; - background-color: #268bd2; - box-shadow: none; } - -.app-well-app.app-folder:focus > .overview-icon { - background-color: #268bd2; } - -.app-folder-popup { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(3, 24, 29, 0.95); - -arrow-border-color: rgba(0, 0, 0, 0.45); - -arrow-border-width: 1px; - -arrow-base: 5; - -arrow-rise: 5; } - -.app-folder-popup-bin { - padding: 5px; } - -.app-folder-icon { - padding: 5px; - spacing-rows: 5px; - spacing-columns: 5px; } - -.page-indicator { - padding: 15px 20px; } - .page-indicator .page-indicator-icon { - width: 18px; - height: 18px; - background-image: url(common-assets/misc/page-indicator-inactive.svg); } - .page-indicator:hover .page-indicator-icon { - background-image: url(common-assets/misc/page-indicator-hover.svg); } - .page-indicator:active .page-indicator-icon { - background-image: url(common-assets/misc/page-indicator-active.svg); } - .page-indicator:checked .page-indicator-icon, .page-indicator:checked:active { - background-image: url(common-assets/misc/page-indicator-checked.svg); } - -.app-well-app > .overview-icon.overview-icon-with-label, -.grid-search-result .overview-icon.overview-icon-with-label { - padding: 10px 8px 5px 8px; - spacing: 4px; } - -.workspace-thumbnails, .workspace-thumbnails:rtl, -.workspace-thumbnails-left, -.workspace-thumbnails-left:rtl { - visible-width: 40px; - spacing: 11px; - padding: 12px; } - -.workspace-thumbnails, -.workspace-thumbnails-left:rtl { - padding-right: 7px; - border-image: url("common-assets/dash/dash-right.svg") 9 9 9 9; } - -.workspace-thumbnails:rtl, -.workspace-thumbnails-left { - padding-left: 7px; - border-image: url("common-assets/dash/dash-left.svg") 9 9 9 9; } - -.workspace-thumbnail-indicator { - border: 4px solid rgba(38, 139, 210, 0.8); - border-radius: 1px; - padding: 1px; } - -.search-display > StBoxLayout, -.all-apps, -.frequent-apps > StBoxLayout { - padding: 0px 88px 10px 88px; } - -.search-statustext, .no-frequent-applications-label { - font-size: 2em; - font-weight: bold; - color: #657b83; } - -#message-tray { - background: #073642; - background-repeat: repeat; - height: 72px; - border: solid rgba(0, 0, 0, 0.6); - border-width: 0; - border-top-width: 1px; } - -.message-tray-summary { - height: 72px; } - -.message-tray-menu-button StIcon { - padding: 0 20px; - color: rgba(101, 123, 131, 0.6); - icon-size: 24px; } - -.message-tray-menu-button:hover StIcon, -.message-tray-menu-button:active StIcon, -.message-tray-menu-button:focus StIcon { - color: #657b83; } - -.no-messages-label { - color: rgba(101, 123, 131, 0.5); } - -.summary-boxpointer { - -arrow-border-radius: 3px; - -arrow-background-color: transparent; - -arrow-base: 0; - -arrow-rise: 0; - -boxpointer-gap: 0; - color: #657b83; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - padding: 7px; } - .summary-boxpointer .notification { - border-radius: 3px; - background: none !important; - border-image: none; - padding-bottom: 12px; } - .summary-boxpointer #summary-right-click-menu { - color: #657b83; - padding-top: 12px; - padding-bottom: 12px; } - .summary-boxpointer #summary-right-click-menu .popup-menu-item:active { - color: #fdf6e3; - background-color: #268bd2; } - .summary-boxpointer-stack-scrollview { - max-height: 18em; - padding-top: 8px; - padding-bottom: 8px; } - .summary-boxpointer-stack-scrollview:ltr { - padding-right: 8px; } - .summary-boxpointer-stack-scrollview:rtl { - padding-left: 8px; } - -.summary-source { - border-radius: 4px; - padding: 0 6px 0 6px; - transition-duration: 100ms; } - .summary-source-counter { - background-image: url("common-assets/misc/summary-counter.svg"); - background-size: 26px; - color: #fdf6e3; - font-size: 10pt; - font-weight: bold; - height: 2.4em; - width: 2.4em; - -shell-counter-overlap-x: 8px; - -shell-counter-overlap-y: 8px; } - .summary-source-button { - border-radius: 2px; - padding: 6px 3px 6px 3px; } - .summary-source-button:last-child:ltr { - padding-right: 6px; } - .summary-source-button:last-child:rtl { - padding-left: 6px; } - .summary-source-button .summary-source { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .summary-source-button:hover .summary-source { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .summary-source-button:focus .summary-source, - .summary-source-button:selected .summary-source { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #fdf6e3; - border: 1px solid #268bd2; - background-color: #268bd2; } - -.url-highlighter { - link-color: #78b9e6; } - -.notification, #notification-container { - width: 34em; } - -.notification { - font-size: 1em; - color: #657b83; - padding: 12px 12px 12px 12px; - spacing-rows: 4px; - spacing-columns: 10px; - border-image: url("common-assets/misc/notification.svg") 9 9 9 9; } - .notification.multi-line-notification { - padding-bottom: 12px; } - .notification-unexpanded { - min-height: 40px; - height: 40px; } - .notification-with-image { - min-height: 159px; } - .notification-scrollview { - max-height: 10em; - -st-vfade-offset: 0px; } - .notification-scrollview:ltr > StScrollBar { - padding-left: 6px; } - .notification-scrollview:rtl > StScrollBar { - padding-right: 6px; } - .notification-body { - spacing: 5px; } - .notification-actions { - padding-top: 12px; - spacing: 10px; } - .notification-button { - -st-natural-width: 140px; - padding: 4px 4px 5px; - background-gradient-direction: none; } - .notification-button:focus { - -st-natural-width: 140px; - padding: 4px 4px 5px; } - .notification-icon-button { - border-radius: 5px; - padding: 5px; - background-gradient-direction: none; } - .notification-icon-button:focus { - padding: 5px; } - .notification-icon-button > StIcon { - icon-size: 16px; - padding: 8px; } - .notification StEntry { - padding: 7px; - caret-color: #657b83; - color: #657b83; - background-color: rgba(18, 137, 167, 0.35); - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .notification StEntry:focus { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - -.secondary-icon { - icon-size: 1.09em; } - -.chat-body { - spacing: 5px; } - -.chat-response { - margin: 5px; } - -.chat-log-message { - color: #657b83; } - -.chat-new-group { - padding-top: 1em; } - -.chat-received { - padding-left: 4px; } - .chat-received:rtl { - padding-left: 0px; - padding-right: 4px; } - -StEntry.chat-response { - padding: 7px; - color: #657b83; - background-color: rgba(18, 137, 167, 0.35); - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - StEntry.chat-response:focus { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - -.chat-sent { - padding-left: 18pt; - color: #268bd2; } - .chat-sent:rtl { - padding-left: 0; - padding-right: 18pt; } - -.chat-meta-message { - padding-left: 4px; - font-size: 9pt; - font-weight: bold; - color: rgba(101, 123, 131, 0.6); } - .chat-meta-message:rtl { - padding-left: 0; - padding-right: 4px; } - -.subscription-message { - font-style: italic; } - -.hotplug-transient-box { - spacing: 6px; - padding: 2px 72px 2px 12px; } - -.hotplug-notification-item { - padding: 2px 10px; } - .hotplug-notification-item:focus { - padding: 2px 10px; } - -.hotplug-notification-item-icon { - icon-size: 24px; - padding: 2px 5px; } - -.hotplug-resident-box { - spacing: 8px; } - -.hotplug-resident-mount { - spacing: 8px; - border-radius: 2px 0 0 2px; - background-gradient-direction: none; } - -.hotplug-resident-mount-label { - color: inherit; - padding-left: 6px; } - -.hotplug-resident-mount-icon { - icon-size: 24px; - padding-left: 6px; } - -.hotplug-resident-eject-icon { - icon-size: 16px; } - -.hotplug-resident-eject-button { - padding: 7px; - border-radius: 0 2px 2px 0; - color: #657b83; - border-left: none; } - -.magnifier-zoom-region { - border: 2px solid #268bd2; } - .magnifier-zoom-region.full-screen { - border-width: 0; } - -#keyboard { - background-color: rgba(7, 54, 66, 0.95); - border-width: 0; - border-top-width: 1px; - border-color: rgba(0, 0, 0, 0.2); } - -.keyboard-layout { - spacing: 10px; - padding: 10px; } - -.keyboard-row { - spacing: 15px; } - -.keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; - font-weight: bold; - border-radius: 3px; - box-shadow: none; - background-gradient-direction: none; - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .keyboard-key:hover { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .keyboard-key:active, .keyboard-key:checked { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #fdf6e3; - border: 1px solid #268bd2; - background-color: #268bd2; } - .keyboard-key:grayed { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #234b56; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -.keyboard-subkeys { - color: #657b83; - padding: 5px; - -arrow-border-radius: 2px; - -arrow-background-color: rgba(7, 54, 66, 0.95); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0, 0, 0, 0.4); - -arrow-base: 20px; - -arrow-rise: 10px; - -boxpointer-gap: 5px; } - -.candidate-popup-content { - padding: 0.5em; - spacing: 0.3em; - color: #657b83; - font-size: 1.15em; } - -.candidate-index { - padding: 0 0.5em 0 0; - color: #7f949c; } - -.candidate-box { - padding: 0.3em 0.5em 0.3em 0.5em; - border-radius: 2px; - color: #657b83; } - .candidate-box:selected, .candidate-box:hover { - background-color: #268bd2; - color: #fdf6e3; } - -.candidate-page-button-box { - height: 2em; } - .vertical .candidate-page-button-box { - padding-top: 0.5em; } - .horizontal .candidate-page-button-box { - padding-left: 0.5em; } - -.candidate-page-button { - padding: 4px; } - -.candidate-page-button-previous { - border-radius: 2px 0px 0px 2px; - border-right-width: 0; } - -.candidate-page-button-next { - border-radius: 0px 2px 2px 0px; } - -.candidate-page-button-icon { - icon-size: 1em; } - -.framed-user-icon { - background-size: contain; - border: 0px solid transparent; - color: #657b83; - border-radius: 2px; } - .framed-user-icon:hover { - border-color: transparent; - color: #b8c4c9; } - -.login-dialog-banner-view { - padding-top: 24px; - max-width: 23em; } - -.login-dialog { - border: none; - background-color: transparent; } - .login-dialog .modal-dialog-button-box { - spacing: 3px; } - .login-dialog .modal-dialog-button { - padding: 3px 18px; } - .login-dialog .modal-dialog-button:default { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #083e4b; - border: 1px solid #001317; - box-shadow: inset 0 2px 4px rgba(8, 62, 75, 0.05); } - .login-dialog .modal-dialog-button:default:hover, .login-dialog .modal-dialog-button:default:focus { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #0a5062; - border: 1px solid #001317; - box-shadow: inset 0 2px 4px rgba(10, 80, 98, 0.05); } - .login-dialog .modal-dialog-button:default:active { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - .login-dialog .modal-dialog-button:default:insensitive { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: rgba(101, 123, 131, 0.45); - border: 1px solid rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); - box-shadow: inset 0 2px 4px rgba(8, 62, 75, 0.05); } - -.login-dialog-logo-bin { - padding: 24px 0px; } - -.login-dialog-banner { - color: #4f6066; } - -.login-dialog-button-box { - spacing: 5px; } - -.login-dialog-message-warning { - color: #cb4b16; } - -.login-dialog-message-hint { - padding-top: 0; - padding-bottom: 20px; } - -.login-dialog-user-selection-box { - padding: 100px 0px; } - .login-dialog-user-selection-box .login-dialog-not-listed-label { - padding-left: 2px; } - .login-dialog-not-listed-button:focus .login-dialog-user-selection-box .login-dialog-not-listed-label, - .login-dialog-not-listed-button:hover .login-dialog-user-selection-box .login-dialog-not-listed-label { - color: #657b83; } - -.login-dialog-not-listed-label { - font-size: 90%; - font-weight: bold; - color: #222a2d; - padding-top: 1em; } - -.login-dialog-user-list-view { - -st-vfade-offset: 1em; } - -.login-dialog-user-list { - spacing: 12px; - padding: .2em; - width: 23em; } - .login-dialog-user-list:expanded .login-dialog-user-list-item:focus { - background-color: #268bd2; - color: #fdf6e3; } - .login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in { - border-right: 2px solid #268bd2; } - -.login-dialog-user-list-item { - border-radius: 5px; - padding: .2em; - color: #222a2d; } - .login-dialog-user-list-item:ltr { - padding-right: 1em; } - .login-dialog-user-list-item:rtl { - padding-left: 1em; } - .login-dialog-user-list-item:hover { - background-color: #268bd2; - color: #fdf6e3; } - .login-dialog-user-list-item .login-dialog-timed-login-indicator { - height: 2px; - margin: 2px 0 0 0; - background-color: #657b83; } - .login-dialog-user-list-item:focus .login-dialog-timed-login-indicator { - background-color: #fdf6e3; } - -.login-dialog-username, -.user-widget-label { - color: #657b83; - font-size: 120%; - font-weight: bold; - text-align: left; - padding-left: 15px; } - -.user-widget-label:ltr { - padding-left: 18px; } - -.user-widget-label:rtl { - padding-right: 18px; } - -.login-dialog-prompt-layout { - padding-top: 24px; - padding-bottom: 12px; - spacing: 8px; - width: 23em; } - -.login-dialog-prompt-label { - color: #394549; - font-size: 110%; - padding-top: 1em; } - -.login-dialog-session-list-button StIcon { - icon-size: 1.25em; } - -.login-dialog-session-list-button { - color: #222a2d; } - .login-dialog-session-list-button:hover, .login-dialog-session-list-button:focus { - color: #657b83; } - .login-dialog-session-list-button:active { - color: black; } - -.screen-shield-arrows { - padding-bottom: 3em; } - -.screen-shield-arrows Gjs_Arrow { - color: white; - width: 80px; - height: 48px; - -arrow-thickness: 12px; - -arrow-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); } - -.screen-shield-clock { - color: white; - text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6); - font-weight: bold; - text-align: center; - padding-bottom: 1.5em; } - -.screen-shield-clock-time { - font-size: 72pt; - text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4); } - -.screen-shield-clock-date { - font-size: 28pt; } - -.screen-shield-notifications-container { - spacing: 6px; - width: 30em; - background-color: transparent; - max-height: 500px; } - .screen-shield-notifications-container .summary-notification-stack-scrollview { - padding-top: 0; - padding-bottom: 0; } - .screen-shield-notifications-container .notification, - .screen-shield-notifications-container .screen-shield-notification-source { - padding: 12px 6px; - border: 1px solid rgba(101, 123, 131, 0.2); - background-color: rgba(7, 54, 66, 0.45); - color: #657b83; - border-radius: 4px; } - .screen-shield-notifications-container .notification { - margin-right: 15px; } - -.screen-shield-notification-label { - font-weight: bold; - padding: 0px 0px 0px 12px; } - -.screen-shield-notification-count-text { - padding: 0px 0px 0px 12px; } - -#panel.lock-screen { - background-color: rgba(7, 54, 66, 0.5); } - -.screen-shield-background { - background: black; - box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4); } - -#lockDialogGroup { - background: #2e3436 url(misc/noise-texture.png); - background-repeat: repeat; } - -#screenShieldNotifications StButton#vhandle, #screenShieldNotifications StButton#hhandle { - background-color: rgba(0, 43, 54, 0.3); } - #screenShieldNotifications StButton#vhandle:hover, #screenShieldNotifications StButton#vhandle:focus, #screenShieldNotifications StButton#hhandle:hover, #screenShieldNotifications StButton#hhandle:focus { - background-color: rgba(0, 43, 54, 0.5); } - #screenShieldNotifications StButton#vhandle:active, #screenShieldNotifications StButton#hhandle:active { - background-color: rgba(38, 139, 210, 0.5); } - -#LookingGlassDialog { - spacing: 4px; - padding: 8px 8px 10px 8px; - background-color: rgba(0, 0, 0, 0.7); - border: 1px solid black; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 2px; - color: #657b83; } - #LookingGlassDialog > #Toolbar { - padding: 3px; - border: none; - background-color: transparent; - border-radius: 0px; } - #LookingGlassDialog .labels { - spacing: 4px; } - #LookingGlassDialog .notebook-tab { - -natural-hpadding: 12px; - -minimum-hpadding: 6px; - font-weight: bold; - color: #657b83; - transition-duration: 100ms; - padding-left: .3em; - padding-right: .3em; } - #LookingGlassDialog .notebook-tab:hover { - color: white; - text-shadow: black 0px 2px 2px; } - #LookingGlassDialog .notebook-tab:selected { - border-bottom-width: 0px; - color: #268bd2; - text-shadow: black 0px 2px 2px; } - #LookingGlassDialog StBoxLayout#EvalBox { - padding: 4px; - spacing: 4px; } - #LookingGlassDialog StBoxLayout#ResultsArea { - spacing: 4px; } - -.lg-dialog StEntry { - selection-background-color: #268bd2; - selected-color: #fdf6e3; - color: #657b83; - background-color: rgba(18, 137, 167, 0.35); - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .lg-dialog StEntry:focus { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - -.lg-dialog .shell-link { - color: #78b9e6; } - .lg-dialog .shell-link:hover { - color: #a3cfee; } - -.lg-completions-text { - font-size: .9em; - font-style: italic; } - -.lg-obj-inspector-title { - spacing: 4px; } - -.lg-obj-inspector-button { - border: 1px solid gray; - padding: 4px; - border-radius: 4px; } - .lg-obj-inspector-button:hover { - border: 1px solid #fdf6e3; } - -#lookingGlassExtensions { - padding: 4px; } - -.lg-extensions-list { - padding: 4px; - spacing: 6px; } - -.lg-extension { - border: 1px solid rgba(0, 0, 0, 0.7); - border-radius: 2px; - background-color: rgba(7, 54, 66, 0.95); - padding: 4px; } - -.lg-extension-name { - font-weight: bold; } - -.lg-extension-meta { - spacing: 6px; } - -#LookingGlassPropertyInspector { - background: rgba(0, 0, 0, 0.7); - border: 1px solid grey; - border-radius: 2px; - padding: 6px; } diff --git a/common/gnome-shell/3.14/gnome-shell.css b/common/gnome-shell/3.14/gnome-shell.css deleted file mode 100644 index 441f7d3..0000000 --- a/common/gnome-shell/3.14/gnome-shell.css +++ /dev/null @@ -1,2091 +0,0 @@ -/* Copyright 2009, 2015 Red Hat, Inc. - * - * Portions adapted from Mx's data/style/default.css - * Copyright 2009 Intel Corporation - * - * This program is free software; you can redistribute it and/or modify it - * under the terms and conditions of the GNU Lesser General Public License, - * version 2.1, as published by the Free Software Foundation. - * - * This program is distributed in the hope it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for - * more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. - */ -stage { - font-family: Futura Bk bt, Cantarell, Sans-Serif; - font-size: 9pt; - color: #5c616c; } - -.app-well-menu, -.run-dialog-error-label, -.dash-label, -.window-caption, -.switcher-list, -.app-well-app > .overview-icon, -.grid-search-result .overview-icon { - font-size: 1em; - font-weight: normal; } - -.app-well-app.running > .overview-icon, .app-well-app.running:hover > .overview-icon, .app-well-app.running:active > .overview-icon, -.app-well-app.running:checked > .overview-icon { - background-color: transparent !important; - background-gradient-direction: none !important; - border: none !important; - border-radius: 0 !important; } - -.popup-menu .modal-dialog-button { - font-size: 1em; - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - border-radius: 2px; - background-gradient-direction: none !important; - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: #fbfbfc; - border: 1px solid #657b83; - box-shadow: inset 0 2px 4px rgba(251, 251, 252, 0.05); } - .popup-menu .modal-dialog-button:focus { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: #fbfbfc; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(251, 251, 252, 0.05); } - .popup-menu .modal-dialog-button:hover { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: white; - border: 1px solid #657b83; - box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } - .popup-menu .modal-dialog-button:hover:focus { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: #fbfbfc; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(251, 251, 252, 0.05); } - .popup-menu .modal-dialog-button:active, .popup-menu .modal-dialog-button:active:focus { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - .popup-menu .modal-dialog-button:insensitive { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: rgba(92, 97, 108, 0.55); - border: 1px solid rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); - box-shadow: inset 0 2px 4px rgba(251, 251, 252, 0.05); } - -.candidate-page-button, -.hotplug-notification-item, -.hotplug-resident-eject-button, -.modal-dialog-button { - background-gradient-direction: none !important; } - -.candidate-page-button, -.hotplug-notification-item, -.hotplug-resident-eject-button, -.modal-dialog-button, .modal-dialog-button-box .button, .notification-button, .notification-icon-button, .hotplug-resident-mount { - font-size: 1em; - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - border-radius: 2px; - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .candidate-page-button:hover, - .hotplug-notification-item:hover, - .hotplug-resident-eject-button:hover, - .modal-dialog-button:hover, .modal-dialog-button-box .button:hover, .notification-button:hover, .notification-icon-button:hover, .hotplug-resident-mount:hover { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .candidate-page-button:focus, - .hotplug-notification-item:focus, - .hotplug-resident-eject-button:focus, - .modal-dialog-button:focus, .modal-dialog-button-box .button:focus, .notification-button:focus, .notification-icon-button:focus, .hotplug-resident-mount:focus { - color: #268bd2; } - .candidate-page-button:active, - .hotplug-notification-item:active, - .hotplug-resident-eject-button:active, - .modal-dialog-button:active, .modal-dialog-button-box .button:active, .notification-button:active, .notification-icon-button:active, .hotplug-resident-mount:active { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #fdf6e3; - border: 1px solid #268bd2; - background-color: #268bd2; } - .candidate-page-button:insensitive, - .hotplug-notification-item:insensitive, - .hotplug-resident-eject-button:insensitive, - .modal-dialog-button:insensitive, .modal-dialog-button-box .button:insensitive, .notification-button:insensitive, .notification-icon-button:insensitive, .hotplug-resident-mount:insensitive { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #234b56; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -StEntry { - font-size: 1em; - padding: 7px; - caret-size: 1px; - selection-background-color: #268bd2; - selected-color: #fdf6e3; - transition-duration: 300ms; - border-radius: 3px; - background-gradient-direction: none !important; - color: #5c616c; - background-color: #fdf6e3; - border: 1px solid #657b83; - box-shadow: inset 0 2px 4px rgba(253, 246, 227, 0.05); } - StEntry:focus, StEntry:hover { - color: #5c616c; - background-color: #fdf6e3; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(253, 246, 227, 0.05); } - StEntry:insensitive { - color: rgba(92, 97, 108, 0.55); - background-color: #f9f6ec; - border-color: 1px solid #a6b2b7; - box-shadow: inset 0 2px 4px rgba(249, 246, 236, 0.05); } - StEntry StIcon.capslock-warning { - icon-size: 16px; - warning-color: #cb4b16; - padding: 0 4px; } - -StScrollView.vfade { - -st-vfade-offset: 0px; } - -StScrollView.hfade { - -st-hfade-offset: 0px; } - -StScrollBar { - padding: 8px; } - StScrollView StScrollBar { - min-width: 5px; - min-height: 5px; } - StScrollBar StBin#trough { - background-color: rgba(253, 246, 227, 0.1); - border-radius: 8px; } - StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { - border-radius: 4px; - background-color: #b8babf; - border: 0px solid; - margin: 0px; } - StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { - background-color: #c7c9cd; } - StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { - background-color: #268bd2; } - -.slider { - -slider-height: 4px; - -slider-background-color: #657b83; - -slider-border-color: transparent; - -slider-active-background-color: #268bd2; - -slider-active-border-color: transparent; - -slider-border-width: 0; - -slider-handle-radius: 0px; - -slider-handle-border-color: transparent; - -slider-handle-border-width: 0; - height: 18px; - border: 0 solid transparent; - border-right-width: 1px; - border-left-width: 5px; - color: transparent; } - .popup-menu-item:active .slider { - -slider-background-color: rgba(0, 0, 0, 0.2); - -slider-active-background-color: #fdf6e3; } - -.check-box StBoxLayout { - spacing: .8em; } - -.check-box StBin { - width: 16px; - height: 16px; - background-image: url("light-assets/checkbox/checkbox-unchecked.svg"); } - -.check-box:focus StBin { - background-image: url("light-assets/checkbox/checkbox-unchecked-focused.svg"); } - -.check-box:checked StBin { - background-image: url("light-assets/checkbox/checkbox-checked.svg"); } - -.check-box:focus:checked StBin { - background-image: url("light-assets/checkbox/checkbox-checked-focused.svg"); } - -.toggle-switch { - width: 50px; - height: 20px; - background-size: contain; - background-image: url("light-assets/switch/switch-off.svg"); } - .toggle-switch:checked { - background-image: url("light-assets/switch/switch-on.svg"); } - .popup-menu-item:active .toggle-switch { - background-image: url("common-assets/switch/switch-off-selected.svg"); } - .popup-menu-item:active .toggle-switch:checked { - background-image: url("common-assets/switch/switch-on-selected.svg"); } - -.shell-link { - color: #1e6ea7; } - .shell-link:hover { - color: #268bd2; } - -.headline { - font-size: 110%; } - -.lightbox { - background-color: black; } - -.flashspot { - background-color: white; } - -.modal-dialog { - color: #5c616c; - background-color: rgba(245, 246, 247, 0); - border: none; - border-image: url("light-assets/misc/modal.svg") 9 9 9 67; - padding: 0 5px 6px 5px; } - .modal-dialog > StBoxLayout:first-child { - padding: 20px 10px 10px 10px; } - .modal-dialog-button-box { - spacing: 10px; - margin: 0px; - padding: 14px 10px; - background: none; - border: none; - border-image: url("light-assets/misc/button-box.svg") 9 9 9 9; } - .modal-dialog-button-box .button { - padding-top: 0; - padding-bottom: 0; - height: 30px; } - .modal-dialog .run-dialog-entry { - width: 21em; - caret-color: #5c616c; } - .modal-dialog .run-dialog-error-box { - padding-top: 5px; - spacing: 5px; } - .modal-dialog .run-dialog-label { - font-size: 0; } - -.show-processes-dialog-subject, -.mount-question-dialog-subject, -.end-session-dialog-subject { - font-size: 11pt; - font-weight: bold; - color: #5c616c; } - -.end-session-dialog { - spacing: 42px; } - .end-session-dialog-list { - padding-top: 20px; } - .end-session-dialog-layout { - padding-left: 17px; } - .end-session-dialog-layout:rtl { - padding-right: 17px; } - .end-session-dialog-description { - width: 28em; - padding-bottom: 10px; } - .end-session-dialog-description:rtl { - text-align: right; } - .end-session-dialog-warning { - width: 28em; - color: #cb4b16; - padding-top: 6px; } - .end-session-dialog-warning:rtl { - text-align: right; } - .end-session-dialog-logout-icon { - border: 0px solid transparent; - border-radius: 2px; - width: 48px; - height: 48px; - background-size: contain; } - .end-session-dialog-shutdown-icon { - color: #5c616c; - width: 48px; - height: 48px; } - .end-session-dialog-inhibitor-layout { - spacing: 16px; - max-height: 200px; - padding-right: 10px; - padding-left: 10px; } - .end-session-dialog-session-list, .end-session-dialog-app-list { - spacing: 1em; } - .end-session-dialog-list-header { - font-weight: bold; } - .end-session-dialog-list-header:rtl { - text-align: right; } - .end-session-dialog-app-list-item, .end-session-dialog-session-list-item { - spacing: 1em; } - .end-session-dialog-app-list-item-name, .end-session-dialog-session-list-item-name { - font-weight: bold; } - .end-session-dialog-app-list-item-description { - color: #686d7a; - font-size: 8pt; } - .end-session-dialog .modal-dialog-button:last-child { - color: white; - background-color: #dc322f; - border-color: #dc322f; } - .end-session-dialog .modal-dialog-button:last-child:hover { - color: white; - background-color: #e35956; - border-color: #e35956; } - .end-session-dialog .modal-dialog-button:last-child:active { - color: white; - background-color: #cf2623; - border-color: #cf2623; } - -.shell-mount-operation-icon { - icon-size: 48px; } - -.show-processes-dialog, -.mount-question-dialog { - spacing: 24px; } - -.show-processes-dialog-subject, -.mount-question-dialog-subject { - padding-top: 10px; - padding-left: 17px; - padding-bottom: 6px; } - .show-processes-dialog-subject:rtl, - .mount-question-dialog-subject:rtl { - padding-left: 0px; - padding-right: 17px; } - -.mount-question-dialog-subject { - max-width: 500px; } - -.show-processes-dialog-description, -.mount-question-dialog-description { - padding-left: 17px; - width: 28em; } - .show-processes-dialog-description:rtl, - .mount-question-dialog-description:rtl { - padding-right: 17px; } - -.show-processes-dialog-app-list { - font-size: 10pt; - max-height: 200px; - padding-top: 24px; - padding-left: 49px; - padding-right: 32px; } - .show-processes-dialog-app-list:rtl { - padding-right: 49px; - padding-left: 32px; } - -.show-processes-dialog-app-list-item { - color: #454850; } - .show-processes-dialog-app-list-item:hover { - color: #5c616c; } - .show-processes-dialog-app-list-item:ltr { - padding-right: 1em; } - .show-processes-dialog-app-list-item:rtl { - padding-left: 1em; } - -.show-processes-dialog-app-list-item-icon:ltr { - padding-right: 17px; } - -.show-processes-dialog-app-list-item-icon:rtl { - padding-left: 17px; } - -.show-processes-dialog-app-list-item-name { - font-size: 10pt; } - -.prompt-dialog { - width: 500px; } - .prompt-dialog-main-layout { - spacing: 24px; - padding: 10px; } - .prompt-dialog-message-layout { - spacing: 16px; } - .prompt-dialog-headline { - font-size: 12pt; - font-weight: bold; - color: #5c616c; } - .prompt-dialog-descritption:rtl { - text-align: right; } - .prompt-dialog-password-box { - spacing: 1em; - padding-bottom: 1em; } - .prompt-dialog-error-label { - font-size: 9pt; - color: #dc322f; - padding-bottom: 8px; } - .prompt-dialog-info-label { - font-size: 9pt; - padding-bottom: 8px; } - .prompt-dialog-null-label { - font-size: 9pt; - padding-bottom: 8px; } - -.hidden { - color: transparent; } - -.polkit-dialog-user-layout { - padding-left: 10px; - spacing: 10px; } - .polkit-dialog-user-layout:rtl { - padding-left: 0px; - padding-right: 10px; } - -.polkit-dialog-user-root-label { - color: #cb4b16; } - -.polkit-dialog-user-user-icon { - border-radius: 2px; - background-size: contain; - width: 48px; - height: 48px; } - -.network-dialog-secret-table { - spacing-rows: 15px; - spacing-columns: 1em; } - -.keyring-dialog-control-table { - spacing-rows: 15px; - spacing-columns: 1em; } - -.popup-menu { - min-width: 200px; - color: #5c616c; - border-image: url("light-assets/menu/menu.svg") 9 9 9 9; } - .popup-menu .popup-sub-menu { - background: none; - box-shadow: none; - background-gradient-direction: none !important; - border-image: url("light-assets/menu/submenu.svg") 9 9 9 9; } - .popup-menu .popup-submenu-menu-item:open { - color: #5c616c; - background: none !important; - box-shadow: none; - border-image: url("light-assets/menu/submenu-open.svg") 9 9 9 9; } - .popup-menu .popup-menu-content { - padding: 1em 0em 1em 0em; } - .popup-menu .popup-menu-item { - spacing: 12px; } - .popup-menu .popup-menu-item:ltr { - padding: .4em 3em .4em 0em; } - .popup-menu .popup-menu-item:rtl { - padding: .4em 0em .4em 3em; } - .popup-menu .popup-menu-item:active, .popup-menu .popup-menu-item.selected { - color: #fdf6e3; - background-color: transparent; - border-image: url("common-assets/menu/menu-hover.svg") 9 9 1 1; } - .popup-menu .popup-menu-item:insensitive { - color: rgba(92, 97, 108, 0.5); - background: none; } - .popup-menu .popup-inactive-menu-item { - color: #5c616c; } - .popup-menu .popup-inactive-menu-item:insensitive { - color: rgba(92, 97, 108, 0.55); } - .popup-menu .popup-status-menu-item, - .popup-menu .popup-subtitle-menu-item { - color: #5c616c; } - .popup-menu .popup-menu-item:active .popup-status-menu-item, - .popup-menu .popup-menu-item:active .popup-subtitle-menu-item { - color: #fdf6e3; } - .popup-menu.panel-menu { - -boxpointer-gap: 0px; - margin-bottom: 1.75em; } - -.popup-menu-ornament { - text-align: right; - margin-left: 10px; - width: 16px; } - -.popup-menu-boxpointer { - -arrow-border-radius: 2px !important; - -arrow-background-color: transparent !important; - -arrow-border-width: 1px !important; - -arrow-border-color: transparent !important; - -arrow-base: 0 !important; - -arrow-rise: 0 !important; - color: #5c616c !important; } - -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(7, 54, 66, 0.95); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0, 0, 0, 0.4); - -arrow-base: 5; - -arrow-rise: 5; } - -.popup-separator-menu-item { - -gradient-height: 0px; - height: 2px; - margin: 0; - background-color: transparent; - background-gradient-direction: none !important; - border: none; - border-image: url("common-assets/menu/menu-separator.svg") 1 1 1 1; } - -.background-menu { - -boxpointer-gap: 4px; - -arrow-rise: 0px; } - -.osd-window { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 20px; - margin: 32px; - min-width: 64px; - min-height: 64px; - color: white; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } - .osd-window .osd-monitor-label { - font-size: 3em; } - .osd-window .level { - padding: 0; - height: 4px; - background-color: rgba(0, 0, 0, 0.5); - border-radius: 2px; - color: #268bd2; } - -.resize-popup { - color: #657b83; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; - padding: 12px; } - -.switcher-popup { - padding: 8px; - spacing: 16px; } - -.switcher-list { - color: #657b83; - background: none; - border: none; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; } - .switcher-list-item-container { - spacing: 8px; } - .switcher-list .item-box { - padding: 8px; - border-radius: 2px; - border: 1px solid transparent; } - .switcher-list .item-box:outlined { - padding: 8px; - border: 1px solid #268bd2; } - .switcher-list .item-box:selected { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; } - .switcher-list .thumbnail-box { - padding: 2px; - spacing: 4px; } - .switcher-list .thumbnail { - width: 256px; } - .switcher-list .separator { - width: 1px; - background: rgba(92, 97, 108, 0.33); } - -.switcher-arrow { - border-color: transparent; - color: #657b83; } - .switcher-arrow:highlighted { - color: white; } - -.input-source-switcher-symbol { - font-size: 34pt; - width: 96px; - height: 96px; } - -.workspace-switcher { - background: transparent; - border: 0px; - border-radius: 0px; - padding: 0px; - spacing: 8px; } - .workspace-switcher-group { - padding: 12px; } - .workspace-switcher-container { - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; - padding-bottom: 24px; } - -.ws-switcher-active-up, .ws-switcher-active-down { - height: 30px; - background-color: #268bd2; - background-size: 96px; - border-radius: 2px; - border: 1px solid #268bd2; } - -.ws-switcher-active-up { - background-image: url("common-assets/misc/ws-switch-arrow-up.png"); } - -.ws-switcher-active-down { - background-image: url("common-assets/misc/ws-switch-arrow-down.png"); } - -.ws-switcher-box { - height: 96px; - background: rgba(0, 0, 0, 0.33); - border: 1px solid rgba(0, 0, 0, 0.33); - border-radius: 2px; } - -.tile-preview { - background-color: rgba(38, 139, 210, 0.35); - border: 1px solid #268bd2; } - .tile-preview-left.on-primary { - border-radius: 0px 0 0 0; } - .tile-preview-right.on-primary { - border-radius: 0 0px 0 0; } - .tile-preview-left.tile-preview-right.on-primary { - border-radius: 0px 0px 0 0; } - -#panel { - font-weight: bold; - height: 2.1em; - min-height: 27px; - background-color: transparent !important; - background-gradient-direction: none !important; - border-bottom: 0px !important; - border-image: url("common-assets/panel/panel.svg") 1 1 1 1 !important; } - #panel.dynamic-top-bar-white-btn { - border-image: none; } - #panel.unlock-screen, #panel.login-screen, #panel.lock-screen { - background-color: transparent; - border-image: none; } - #panel:overview { - border-image: url("common-assets/panel/panel-overview.svg") 1 1 1 1; } - #panel #panelLeft, #panel #panelCenter { - spacing: 8px; } - #panel .panel-corner { - -panel-corner-radius: 0px; - -panel-corner-background-color: transparent; - -panel-corner-border-width: 0px; - -panel-corner-border-color: black; } - #panel .panel-corner:active, #panel .panel-corner:overview, #panel .panel-corner:focus { - -panel-corner-border-color: black; } - #panel .panel-corner.lock-screen, #panel .panel-corner.login-screen, #panel .panel-cornerunlock-screen { - -panel-corner-radius: 0; - -panel-corner-background-color: transparent; - -panel-corner-border-color: transparent; } - #panel .panel-button { - -natural-hpadding: 10px !important; - -minimum-hpadding: 6px !important; - font-weight: bold; - color: white !important; - transition-duration: 100ms; - border-bottom-width: 1px; - border-color: transparent; } - #panel .panel-button #appMenuIcon { - width: 0; - height: 0; - margin-left: 0px; - margin-right: 0px; } - #panel .panel-button:hover { - color: white !important; - background-color: rgba(0, 0, 0, 0.17); - border-bottom-width: 1px; - border-color: transparent; - text-shadow: 0 0 transparent; } - #panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel .panel-button:checked { - color: #fdf6e3 !important; - background: #268bd2, url("common-assets/misc/null.svg"); - border-image: none; - box-shadow: none; - border-bottom-width: 1px !important; - border-color: black; - text-shadow: 0 0 transparent; } - #panel .panel-button:active > .system-status-icon, #panel .panel-button:overview > .system-status-icon, #panel .panel-button:focus > .system-status-icon, #panel .panel-button:checked > .system-status-icon { - icon-shadow: none; } - #panel .panel-button .system-status-icon { - icon-size: 16px; - padding: 0 4px; } - .unlock-screen #panel .panel-button, - .login-screen #panel .panel-button, - .lock-screen #panel .panel-button { - color: #737a88; } - .unlock-screen #panel .panel-button:focus, .unlock-screen #panel .panel-button:hover, .unlock-screen #panel .panel-button:active, - .login-screen #panel .panel-button:focus, - .login-screen #panel .panel-button:hover, - .login-screen #panel .panel-button:active, - .lock-screen #panel .panel-button:focus, - .lock-screen #panel .panel-button:hover, - .lock-screen #panel .panel-button:active { - color: #737a88; } - #panel #panelActivities.panel-button { - -natural-hpadding: 12px; } - #panel .panel-status-indicators-box, - #panel .panel-status-menu-box { - spacing: 2px; } - #panel .screencast-indicator { - color: #dc322f; } - #panel .clock-display > * > *:last-child { - color: #268bd2; - margin-left: .3em; } - #panel .popup-menu-arrow { - width: 0; } - -#panel #panelActivities.panel-button > * { - background-image: url("common-assets/panel/activities.svg"); - background-position: center top; - width: 24px; - height: 24px; - background-color: transparent !important; - background-gradient-direction: none !important; - border: 0 solid transparent !important; - text-shadow: 0 0 transparent !important; - transition-duration: 0ms !important; - box-shadow: none !important; - color: transparent; } - -#panel #panelActivities.panel-button:active, #panel #panelActivities.panel-button:overview, #panel #panelActivities.panel-button:focus, #panel #panelActivities.panel-button:checked { - background-color: transparent; - box-shadow: none; - border-bottom-width: 1px; - border-color: transparent; } - #panel #panelActivities.panel-button:active > *, #panel #panelActivities.panel-button:overview > *, #panel #panelActivities.panel-button:focus > *, #panel #panelActivities.panel-button:checked > * { - background-image: url("common-assets/panel/activities-active.svg"); } - -.system-switch-user-submenu-icon { - icon-size: 24px; - border: 1px solid rgba(0, 0, 0, 0.2); } - -#appMenu { - spinner-image: url("common-assets/misc/process-working.svg"); - spacing: 4px; - padding: 0 8px; } - #appMenu .label-shadow { - color: transparent !important; } - -.aggregate-menu { - width: 360px; } - .aggregate-menu .popup-menu-icon { - padding: 0 4px; - color: #5c616c; } - .aggregate-menu .popup-menu-item:active .popup-menu-icon { - color: #fdf6e3; } - -.system-menu-action { - padding: 13px; - color: #5c616c !important; - border-radius: 32px; - /* wish we could do 50% */ - border: 1px solid transparent !important; } - .system-menu-action:hover, .system-menu-action:focus { - transition-duration: 100ms; - padding: 13px; - color: #5c616c !important; - background-color: transparent !important; - border: 1px solid #268bd2 !important; } - .system-menu-action:active { - color: #fdf6e3 !important; - background-color: #268bd2 !important; - border: 1px solid #268bd2 !important; } - .system-menu-action > StIcon { - icon-size: 16px; } - -.calendar-vertical-separator { - -stipple-width: 1px; - -stipple-color: rgba(92, 97, 108, 0.4); - width: 0.3em; } - -.calendar { - padding: .4em 1.75em .8em 2.5em; } - -.calendar-month-label { - color: #5c616c !important; - font-weight: bold; - padding: 8px 0; } - -.calendar-change-month-back:hover, -.calendar-change-month-back:focus, -.calendar-change-month-back:active, -.calendar-change-month-forward:hover, -.calendar-change-month-forward:focus, -.calendar-change-month-forward:active { - background-color: transparent; } - -.calendar-change-month-back, -.calendar-change-month-forward { - width: 18px; - height: 12px; - border-radius: 4px; } - -.calendar-change-month-back { - background-image: url("light-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:focus, .calendar-change-month-back:hover { - background-image: url("light-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-back:active { - background-image: url("light-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:rtl { - background-image: url("light-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { - background-image: url("light-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-back:rtl:active { - background-image: url("light-assets/misc/calendar-arrow-right.svg"); } - -.calendar-change-month-forward { - background-image: url("light-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { - background-image: url("light-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-forward:active { - background-image: url("light-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:rtl { - background-image: url("light-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { - background-image: url("light-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-forward:rtl:active { - background-image: url("light-assets/misc/calendar-arrow-left.svg"); } - -.datemenu-date-label { - padding: .4em 1.7em; - font-weight: bold; - text-align: center; - color: #5c616c !important; - border-radius: 4px; } - -.calendar-day-base { - font-size: 80%; - text-align: center; - width: 25px; - height: 25px; - padding: 0.1em; - margin: 2px; - border-radius: 12.5px; - color: #5c616c !important; } - .calendar-day-base:hover, .calendar-day-base:focus { - background-color: rgba(0, 0, 0, 0.1) !important; - color: #5c616c !important; } - .calendar-day-base:active { - color: #5c616c !important; - background-color: rgba(0, 0, 0, 0.15) !important; - border-width: 0; } - .calendar-day-base.calendar-day-heading { - color: rgba(92, 97, 108, 0.85); - margin-top: 1em; - font-size: 70%; } - -.calendar-week-number { - color: rgba(92, 97, 108, 0.5); - font-weight: normal; } - -.calendar-day { - border-width: 0; - color: rgba(92, 97, 108, 0.8); } - -.calendar-day-top { - border-top-width: 0; } - -.calendar-day-left { - border-left-width: 0; } - -.calendar-nonwork-day { - background-color: transparent; - color: #5c616c !important; - font-weight: bold; } - -.calendar-today, -.calendar-today:active, -.calendar-today:focus, -.calendar-today:hover { - font-weight: bold; - color: #fdf6e3 !important; - background: #268bd2, url("common-assets/misc/null.svg") !important; - border-width: 0; } - -.calendar-day-with-events { - color: #268bd2; - font-weight: bold; } - -.calendar-today.calendar-day-with-events { - color: #fdf6e3; } - -.calendar-other-month-day { - color: rgba(92, 97, 108, 0.3); - opacity: 1; } - -.events-table { - width: 320px; - spacing-columns: 6pt; - padding: 0 1.4em; } - .events-table:ltr { - padding-right: 1.9em; } - .events-table:rtl { - padding-left: 1.9em; } - -.events-day-header { - font-weight: bold; - color: rgba(92, 97, 108, 0.8) !important; - padding-left: 0.4em; - padding-top: 1.2em; } - .events-day-header:first-child { - padding-top: 0; } - .events-day-header:rtl { - padding-left: 0; - padding-right: 0.4em; } - -.events-day-dayname { - color: rgba(92, 97, 108, 0.5) !important; - text-align: left; - min-width: 20px; } - .events-day-dayname:rtl { - text-align: right; } - -.events-day-time { - color: rgba(92, 97, 108, 0.4) !important; - text-align: right; } - .events-day-time:rtl { - text-align: left; } - -.events-day-task { - color: #5c616c; - padding-left: 8pt; } - .events-day-task:rtl { - padding-left: 0px; - padding-right: 8pt; } - -.ripple-box { - width: 52px; - height: 52px; - background-image: url("common-assets/misc/corner-ripple-ltr.svg"); - background-size: contain; } - .ripple-box:rtl { - background-image: url("common-assets/misc/corner-ripple-rtl.svg"); } - -.popup-menu-arrow { - width: 16px; - height: 16px; } - -.popup-menu-icon { - icon-size: 16px; } - -.window-close, .notification-close { - background-image: url("common-assets/misc/close.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - .window-close:hover, .notification-close:hover { - background-image: url("common-assets/misc/close-hover.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - .window-close:active, .notification-close:active { - background-image: url("common-assets/misc/close-active.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - -.window-close { - -shell-close-overlap: 11px; } - -.notification-close { - -shell-close-overlap-x: 8px; - -shell-close-overlap-y: -8px; } - .notification-close:rtl { - -shell-close-overlap-x: -8px; } - -.nm-dialog { - max-height: 500px; - min-height: 450px; - min-width: 470px; } - .nm-dialog-content { - spacing: 20px; } - .nm-dialog-header-hbox { - spacing: 10px; } - .nm-dialog-airplane-box { - spacing: 12px; } - .nm-dialog-airplane-headline { - font-size: 1.1em; - font-weight: bold; - text-align: center; } - .nm-dialog-airplane-text { - color: #5c616c; } - .nm-dialog-header-icon { - icon-size: 32px; } - .nm-dialog-scroll-view { - border: 1px solid #dcdfe3; - border-radius: 2px; - background-color: #fdf6e3; } - .nm-dialog-header { - font-weight: bold; - font-size: 1.2em; } - .nm-dialog-item { - font-size: 1em; - border-bottom: 0px solid; - padding: 12px; - spacing: 0px; } - .nm-dialog-item:selected { - background-color: #268bd2; - color: #fdf6e3; } - .nm-dialog-icons { - spacing: .5em; } - .nm-dialog-icon { - icon-size: 16px; } - -.no-networks-label { - color: rgba(92, 97, 108, 0.55); } - -.no-networks-box { - spacing: 12px; } - -#overview { - spacing: 24px; } - -.overview-controls { - padding-bottom: 32px; } - -.window-picker { - -horizontal-spacing: 32px; - -vertical-spacing: 32px; - padding-left: 32px; - padding-right: 32px; - padding-bottom: 48px; } - .window-picker.external-monitor { - padding: 32px; } - -.window-clone-border { - border: 3px solid rgba(38, 139, 210, 0.8); - border-radius: 4px; - box-shadow: inset 0px 0px 0px 1px rgba(38, 139, 210, 0); } - -.window-caption, .window-caption:hover { - spacing: 25px; - color: #657b83; - background-color: rgba(0, 0, 0, 0.7); - border-radius: 2px; - padding: 4px 12px; - -shell-caption-spacing: 12px; } - -.search-entry { - width: 320px; - padding: 7px 9px; - border-radius: 20px; - border: 1px solid rgba(0, 0, 0, 0.25); - background-color: rgba(253, 246, 227, 0.9); } - .search-entry:focus { - padding: 7px 9px; } - .search-entry .search-entry-icon { - icon-size: 16px; - padding: 0 4px; - color: #5c616c; } - .search-entry:hover, .search-entry:focus { - color: #fdf6e3; - caret-color: #fdf6e3; - background-color: #268bd2; - selection-background-color: #fdf6e3; - selected-color: #268bd2; } - .search-entry:hover .search-entry-icon, .search-entry:focus .search-entry-icon { - color: #fdf6e3; } - -#searchResultsBin { - max-width: 1000px; } - -#searchResultsContent { - padding-left: 20px; - padding-right: 20px; - spacing: 16px; } - -.search-section { - spacing: 16px; } - -.search-section-content { - spacing: 32px; } - -.list-search-results { - spacing: 3px; } - -.search-section-separator { - background-color: rgba(255, 255, 255, 0.2); - -margin-horizontal: 1.5em; - height: 1px; } - -.list-search-result-content { - spacing: 12px; - padding: 12px; } - -.list-search-result-title { - font-size: 1.5em; - color: white; } - -.list-search-result-description { - color: #cccccc; } - -.search-provider-icon { - padding: 15px; } - -.search-provider-icon-more { - width: 16px; - height: 16px; - background-image: url("common-assets/misc/more-results.svg"); } - -#dash { - font-size: 1em; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(0, 0, 0, 0.4); - padding: 3px 0px 3px 0px; - border-radius: 0 3px 3px 0; } - #dash:rtl { - border-radius: 3px 0 0 3px; } - .right #dash, #dash:rtl { - padding: 3px 0px 3px 0px; } - .bottom #dash { - padding: 0px 3px 0px 3px; } - .top #dash { - padding: 0px 3px 0px 3px; } - #dash .placeholder { - background-image: url("common-assets/dash/dash-placeholder.svg"); - background-size: contain; - height: 24px; } - #dash .empty-dash-drop-target { - width: 24px; - height: 24px; } - -.dash-item-container > StWidget { - padding: 2px 5px 2px 3px; } - .right .dash-item-container > StWidget, .dash-item-container > StWidget:rtl { - padding: 2px 3px 2px 5px; } - .bottom .dash-item-container > StWidget { - padding: 5px 2px 3px 2px; } - .top .dash-item-container > StWidget { - padding: 3px 2px 5px 2px; } - -.dash-label { - border-radius: 3px; - padding: 4px 12px; - color: white; - background-color: rgba(0, 0, 0, 0.7); - text-align: center; - -x-offset: 3px; } - -.bottom .dash-label, .top .dash-label { - -y-offset: 3px; - -x-offset: 0; } - -.dash-item-container > .app-well-app.running > .overview-icon, -.dash-item-container > .app-well-app.running:hover > .overview-icon, -.dash-item-container > .app-well-app.running:active > .overview-icon, -.dash-item-container > .app-well-app > .overview-icon, -.dash-item-container > .app-well-app:hover > .overview-icon, -.dash-item-container > .app-well-app:active > .overview-icon { - background-color: transparent !important; - background-gradient-direction: none !important; - border: none !important; - border-radius: 0 !important; - background: none !important; } - -#dash .app-well-app .overview-icon { - padding: 10px; - padding-left: 13px; } - -.right #dash .app-well-app .overview-icon, -#dash:rtl .app-well-app .overview-icon { - padding: 10px; - padding-right: 13px; } - -.bottom #dash .app-well-app .overview-icon { - padding: 10px; - padding-bottom: 13px; } - -.top #dash .app-well-app .overview-icon { - padding: 10px; - padding-top: 13px; } - -#dash .app-well-app:hover .overview-icon { - border-image: url("common-assets/dash/button-hover.svg") 5 5 5 5; } - -#dash .app-well-app:active .overview-icon { - border-image: url("common-assets/dash/button-active.svg") 5 5 5 5; } - -#dash .app-well-app.running .overview-icon { - border-image: url("common-assets/dash/button-running.svg") 5 5 5 5; } - -#dash .app-well-app.running:hover .overview-icon { - border-image: url("common-assets/dash/button-running-hover.svg") 5 5 5 5; } - -#dash .app-well-app.running:active > .overview-icon { - border-image: url("common-assets/dash/button-running-active.svg") 5 5 5 5; } - -.right #dash .app-well-app:hover .overview-icon, -#dash:rtl .app-well-app:hover .overview-icon { - border-image: url("common-assets/dash/button-hover-right.svg") 5 5 5 5; } - -.right #dash .app-well-app:active .overview-icon, -#dash:rtl .app-well-app:active .overview-icon { - border-image: url("common-assets/dash/button-active-right.svg") 5 5 5 5; } - -.right #dash .app-well-app.running .overview-icon, -#dash:rtl .app-well-app.running .overview-icon { - border-image: url("common-assets/dash/button-running-right.svg") 5 5 5 5; } - -.right #dash .app-well-app.running:hover .overview-icon, -#dash:rtl .app-well-app.running:hover .overview-icon { - border-image: url("common-assets/dash/button-running-hover-right.svg") 5 5 5 5; } - -.right #dash .app-well-app.running:active > .overview-icon, -#dash:rtl .app-well-app.running:active > .overview-icon { - border-image: url("common-assets/dash/button-running-active-right.svg") 5 5 5 5; } - -.bottom #dash .app-well-app:hover .overview-icon { - border-image: url("common-assets/dash/button-hover-bottom.svg") 5 5 5 5; } - -.bottom #dash .app-well-app:active .overview-icon { - border-image: url("common-assets/dash/button-active-bottom.svg") 5 5 5 5; } - -.bottom #dash .app-well-app.running .overview-icon { - border-image: url("common-assets/dash/button-running-bottom.svg") 5 5 5 5; } - -.bottom #dash .app-well-app.running:hover .overview-icon { - border-image: url("common-assets/dash/button-running-hover-bottom.svg") 5 5 5 5; } - -.bottom #dash .app-well-app.running:active > .overview-icon { - border-image: url("common-assets/dash/button-running-active-bottom.svg") 5 5 5 5; } - -.top #dash .app-well-app:hover .overview-icon { - border-image: url("common-assets/dash/button-hover-top.svg") 5 5 5 5; } - -.top #dash .app-well-app:active .overview-icon { - border-image: url("common-assets/dash/button-active-top.svg") 5 5 5 5; } - -.top #dash .app-well-app.running .overview-icon { - border-image: url("common-assets/dash/button-running-top.svg") 5 5 5 5; } - -.top #dash .app-well-app.running:hover .overview-icon { - border-image: url("common-assets/dash/button-running-hover-top.svg") 5 5 5 5; } - -.top #dash .app-well-app.running:active > .overview-icon { - border-image: url("common-assets/dash/button-running-active-top.svg") 5 5 5 5; } - -.show-apps .overview-icon { - background-gradient-direction: none !important; - padding: 11px; - background-color: rgba(0, 0, 0, 0.5); - border-radius: 2px; - border: 0px solid; } - -.show-apps:hover .overview-icon { - background-gradient-direction: none !important; - background-color: rgba(0, 0, 0, 0.7); - color: #268bd2; } - -.show-apps:active .overview-icon, .show-apps:active .show-apps-icon, .show-apps:checked .overview-icon, .show-apps:checked .show-apps-icon { - background-gradient-direction: none !important; - color: #fdf6e3; - background-color: #268bd2; - box-shadow: none; - transition-duration: 0ms; } - -.icon-grid { - spacing: 30px; - -shell-grid-horizontal-item-size: 136px; - -shell-grid-vertical-item-size: 136px; } - .icon-grid .overview-icon { - icon-size: 96px; } - -.app-view-controls { - padding-bottom: 32px; } - -.app-view-control { - padding: 4px 32px; - background-gradient-direction: none; - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .app-view-control:hover { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .app-view-control:checked { - color: #fdf6e3; - background-color: #268bd2; - border-color: #268bd2; } - .app-view-control:first-child:ltr, .app-view-control:last-child:rtl { - border-radius: 2px 0 0 2px; - border-right-width: 0; } - .app-view-control:last-child:ltr, .app-view-control:first-child:rtl { - border-radius: 0 2px 2px 0; - border-left-width: 0; } - -.search-provider-icon:active, .search-provider-icon:checked, -.list-search-result:active, -.list-search-result:checked { - background-color: rgba(2, 16, 20, 0.85); } - -.search-provider-icon:focus, .search-provider-icon:selected, .search-provider-icon:hover, -.list-search-result:focus, -.list-search-result:selected, -.list-search-result:hover { - background-color: rgba(101, 123, 131, 0.4); - transition-duration: 200ms; } - -.app-well-app:active .overview-icon, -.app-well-app:checked .overview-icon, -.app-well-app.app-folder:active .overview-icon, -.app-well-app.app-folder:checked .overview-icon, -.grid-search-result:active .overview-icon, -.grid-search-result:checked .overview-icon { - background-color: rgba(2, 16, 20, 0.85); - box-shadow: inset 0 0 #268bd2; } - -.app-well-app:hover .overview-icon, -.app-well-app:focus .overview-icon, -.app-well-app:selected .overview-icon, -.app-well-app.app-folder:hover .overview-icon, -.app-well-app.app-folder:focus .overview-icon, -.app-well-app.app-folder:selected .overview-icon, -.grid-search-result:hover .overview-icon, -.grid-search-result:focus .overview-icon, -.grid-search-result:selected .overview-icon { - background-color: rgba(101, 123, 131, 0.4); - transition-duration: 0ms; - border-image: none; - background-image: none; } - -.app-well-app.running > .overview-icon { - background: none !important; - text-shadow: black 0px 0px; - border-image: url("common-assets/dash/button-running-bottom.svg") 5 5 5 5; } - -.app-well-app.running:hover > .overview-icon { - border-image: url("common-assets/dash/button-running-hover-bottom.svg") 5 5 5 5; } - -.app-well-app.running:active > .overview-icon, -.app-well-app.running:checked > .overview-icon { - border-image: url("common-assets/dash/button-running-active-bottom.svg") 5 5 5 5; } - -.search-provider-icon, -.list-search-result, .app-well-app .overview-icon, -.app-well-app.app-folder .overview-icon, -.grid-search-result .overview-icon { - color: white; - border-radius: 2px; - padding: 6px; - border: 1px solid transparent; - transition-duration: 0ms; - text-align: center; } - -.app-well-app.app-folder > .overview-icon { - background-color: rgba(3, 24, 29, 0.95); - border: 1px solid rgba(0, 0, 0, 0.45); } - -.app-well-app.app-folder:hover > .overview-icon { - background-color: rgba(8, 65, 80, 0.95); } - -.app-well-app.app-folder:active > .overview-icon, .app-well-app.app-folder:checked > .overview-icon { - color: #fdf6e3; - background-color: #268bd2; - box-shadow: none; } - -.app-well-app.app-folder:focus > .overview-icon { - background-color: #268bd2; } - -.app-folder-popup { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(3, 24, 29, 0.95); - -arrow-border-color: rgba(0, 0, 0, 0.45); - -arrow-border-width: 1px; - -arrow-base: 5; - -arrow-rise: 5; } - -.app-folder-popup-bin { - padding: 5px; } - -.app-folder-icon { - padding: 5px; - spacing-rows: 5px; - spacing-columns: 5px; } - -.page-indicator { - padding: 15px 20px; } - .page-indicator .page-indicator-icon { - width: 18px; - height: 18px; - background-image: url(common-assets/misc/page-indicator-inactive.svg); } - .page-indicator:hover .page-indicator-icon { - background-image: url(common-assets/misc/page-indicator-hover.svg); } - .page-indicator:active .page-indicator-icon { - background-image: url(common-assets/misc/page-indicator-active.svg); } - .page-indicator:checked .page-indicator-icon, .page-indicator:checked:active { - background-image: url(common-assets/misc/page-indicator-checked.svg); } - -.app-well-app > .overview-icon.overview-icon-with-label, -.grid-search-result .overview-icon.overview-icon-with-label { - padding: 10px 8px 5px 8px; - spacing: 4px; } - -.workspace-thumbnails, .workspace-thumbnails:rtl, -.workspace-thumbnails-left, -.workspace-thumbnails-left:rtl { - visible-width: 40px; - spacing: 11px; - padding: 12px; } - -.workspace-thumbnails, -.workspace-thumbnails-left:rtl { - padding-right: 7px; - border-image: url("common-assets/dash/dash-right.svg") 9 9 9 9; } - -.workspace-thumbnails:rtl, -.workspace-thumbnails-left { - padding-left: 7px; - border-image: url("common-assets/dash/dash-left.svg") 9 9 9 9; } - -.workspace-thumbnail-indicator { - border: 4px solid rgba(38, 139, 210, 0.8); - border-radius: 1px; - padding: 1px; } - -.search-display > StBoxLayout, -.all-apps, -.frequent-apps > StBoxLayout { - padding: 0px 88px 10px 88px; } - -.search-statustext, .no-frequent-applications-label { - font-size: 2em; - font-weight: bold; - color: #5c616c; } - -#message-tray { - background: #073642; - background-repeat: repeat; - height: 72px; - border: solid rgba(0, 0, 0, 0.6); - border-width: 0; - border-top-width: 1px; } - -.message-tray-summary { - height: 72px; } - -.message-tray-menu-button StIcon { - padding: 0 20px; - color: rgba(101, 123, 131, 0.6); - icon-size: 24px; } - -.message-tray-menu-button:hover StIcon, -.message-tray-menu-button:active StIcon, -.message-tray-menu-button:focus StIcon { - color: #657b83; } - -.no-messages-label { - color: rgba(101, 123, 131, 0.5); } - -.summary-boxpointer { - -arrow-border-radius: 3px; - -arrow-background-color: transparent; - -arrow-base: 0; - -arrow-rise: 0; - -boxpointer-gap: 0; - color: #5c616c; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - padding: 7px; } - .summary-boxpointer .notification { - border-radius: 3px; - background: none !important; - border-image: none; - padding-bottom: 12px; } - .summary-boxpointer #summary-right-click-menu { - color: #657b83; - padding-top: 12px; - padding-bottom: 12px; } - .summary-boxpointer #summary-right-click-menu .popup-menu-item:active { - color: #fdf6e3; - background-color: #268bd2; } - .summary-boxpointer-stack-scrollview { - max-height: 18em; - padding-top: 8px; - padding-bottom: 8px; } - .summary-boxpointer-stack-scrollview:ltr { - padding-right: 8px; } - .summary-boxpointer-stack-scrollview:rtl { - padding-left: 8px; } - -.summary-source { - border-radius: 4px; - padding: 0 6px 0 6px; - transition-duration: 100ms; } - .summary-source-counter { - background-image: url("common-assets/misc/summary-counter.svg"); - background-size: 26px; - color: #fdf6e3; - font-size: 10pt; - font-weight: bold; - height: 2.4em; - width: 2.4em; - -shell-counter-overlap-x: 8px; - -shell-counter-overlap-y: 8px; } - .summary-source-button { - border-radius: 2px; - padding: 6px 3px 6px 3px; } - .summary-source-button:last-child:ltr { - padding-right: 6px; } - .summary-source-button:last-child:rtl { - padding-left: 6px; } - .summary-source-button .summary-source { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .summary-source-button:hover .summary-source { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .summary-source-button:focus .summary-source, - .summary-source-button:selected .summary-source { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #fdf6e3; - border: 1px solid #268bd2; - background-color: #268bd2; } - -.url-highlighter { - link-color: #1e6ea7; } - -.notification, #notification-container { - width: 34em; } - -.notification { - font-size: 1em; - color: #657b83; - padding: 12px 12px 12px 12px; - spacing-rows: 4px; - spacing-columns: 10px; - border-image: url("common-assets/misc/notification.svg") 9 9 9 9; } - .notification.multi-line-notification { - padding-bottom: 12px; } - .notification-unexpanded { - min-height: 40px; - height: 40px; } - .notification-with-image { - min-height: 159px; } - .notification-scrollview { - max-height: 10em; - -st-vfade-offset: 0px; } - .notification-scrollview:ltr > StScrollBar { - padding-left: 6px; } - .notification-scrollview:rtl > StScrollBar { - padding-right: 6px; } - .notification-body { - spacing: 5px; } - .notification-actions { - padding-top: 12px; - spacing: 10px; } - .notification-button { - -st-natural-width: 140px; - padding: 4px 4px 5px; - background-gradient-direction: none; } - .notification-button:focus { - -st-natural-width: 140px; - padding: 4px 4px 5px; } - .notification-icon-button { - border-radius: 5px; - padding: 5px; - background-gradient-direction: none; } - .notification-icon-button:focus { - padding: 5px; } - .notification-icon-button > StIcon { - icon-size: 16px; - padding: 8px; } - .notification StEntry { - padding: 7px; - caret-color: #657b83; - color: #657b83; - background-color: rgba(18, 137, 167, 0.35); - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .notification StEntry:focus { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - -.secondary-icon { - icon-size: 1.09em; } - -.chat-body { - spacing: 5px; } - -.chat-response { - margin: 5px; } - -.chat-log-message { - color: #657b83; } - -.chat-new-group { - padding-top: 1em; } - -.chat-received { - padding-left: 4px; } - .chat-received:rtl { - padding-left: 0px; - padding-right: 4px; } - -StEntry.chat-response { - padding: 7px; - color: #657b83; - background-color: rgba(18, 137, 167, 0.35); - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - StEntry.chat-response:focus { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - -.chat-sent { - padding-left: 18pt; - color: #268bd2; } - .chat-sent:rtl { - padding-left: 0; - padding-right: 18pt; } - -.chat-meta-message { - padding-left: 4px; - font-size: 9pt; - font-weight: bold; - color: rgba(101, 123, 131, 0.6); } - .chat-meta-message:rtl { - padding-left: 0; - padding-right: 4px; } - -.subscription-message { - font-style: italic; } - -.hotplug-transient-box { - spacing: 6px; - padding: 2px 72px 2px 12px; } - -.hotplug-notification-item { - padding: 2px 10px; } - .hotplug-notification-item:focus { - padding: 2px 10px; } - -.hotplug-notification-item-icon { - icon-size: 24px; - padding: 2px 5px; } - -.hotplug-resident-box { - spacing: 8px; } - -.hotplug-resident-mount { - spacing: 8px; - border-radius: 2px 0 0 2px; - background-gradient-direction: none; } - -.hotplug-resident-mount-label { - color: inherit; - padding-left: 6px; } - -.hotplug-resident-mount-icon { - icon-size: 24px; - padding-left: 6px; } - -.hotplug-resident-eject-icon { - icon-size: 16px; } - -.hotplug-resident-eject-button { - padding: 7px; - border-radius: 0 2px 2px 0; - color: #657b83; - border-left: none; } - -.magnifier-zoom-region { - border: 2px solid #268bd2; } - .magnifier-zoom-region.full-screen { - border-width: 0; } - -#keyboard { - background-color: rgba(7, 54, 66, 0.95); - border-width: 0; - border-top-width: 1px; - border-color: rgba(0, 0, 0, 0.2); } - -.keyboard-layout { - spacing: 10px; - padding: 10px; } - -.keyboard-row { - spacing: 15px; } - -.keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; - font-weight: bold; - border-radius: 3px; - box-shadow: none; - background-gradient-direction: none; - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .keyboard-key:hover { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .keyboard-key:active, .keyboard-key:checked { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #fdf6e3; - border: 1px solid #268bd2; - background-color: #268bd2; } - .keyboard-key:grayed { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #234b56; - border: 1px solid rgba(0, 0, 0, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -.keyboard-subkeys { - color: #657b83; - padding: 5px; - -arrow-border-radius: 2px; - -arrow-background-color: rgba(7, 54, 66, 0.95); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0, 0, 0, 0.4); - -arrow-base: 20px; - -arrow-rise: 10px; - -boxpointer-gap: 5px; } - -.candidate-popup-content { - padding: 0.5em; - spacing: 0.3em; - color: #657b83; - font-size: 1.15em; } - -.candidate-index { - padding: 0 0.5em 0 0; - color: #7f949c; } - -.candidate-box { - padding: 0.3em 0.5em 0.3em 0.5em; - border-radius: 2px; - color: #657b83; } - .candidate-box:selected, .candidate-box:hover { - background-color: #268bd2; - color: #fdf6e3; } - -.candidate-page-button-box { - height: 2em; } - .vertical .candidate-page-button-box { - padding-top: 0.5em; } - .horizontal .candidate-page-button-box { - padding-left: 0.5em; } - -.candidate-page-button { - padding: 4px; } - -.candidate-page-button-previous { - border-radius: 2px 0px 0px 2px; - border-right-width: 0; } - -.candidate-page-button-next { - border-radius: 0px 2px 2px 0px; } - -.candidate-page-button-icon { - icon-size: 1em; } - -.framed-user-icon { - background-size: contain; - border: 0px solid transparent; - color: #5c616c; - border-radius: 2px; } - .framed-user-icon:hover { - border-color: transparent; - color: #b8c4c9; } - -.login-dialog-banner-view { - padding-top: 24px; - max-width: 23em; } - -.login-dialog { - border: none; - background-color: transparent; } - .login-dialog .modal-dialog-button-box { - spacing: 3px; } - .login-dialog .modal-dialog-button { - padding: 3px 18px; } - .login-dialog .modal-dialog-button:default { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: #fbfbfc; - border: 1px solid #657b83; - box-shadow: inset 0 2px 4px rgba(251, 251, 252, 0.05); } - .login-dialog .modal-dialog-button:default:hover, .login-dialog .modal-dialog-button:default:focus { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: white; - border: 1px solid #657b83; - box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.05); } - .login-dialog .modal-dialog-button:default:active { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - .login-dialog .modal-dialog-button:default:insensitive { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: rgba(92, 97, 108, 0.55); - border: 1px solid rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); - box-shadow: inset 0 2px 4px rgba(251, 251, 252, 0.05); } - -.login-dialog-logo-bin { - padding: 24px 0px; } - -.login-dialog-banner { - color: #4f6066; } - -.login-dialog-button-box { - spacing: 5px; } - -.login-dialog-message-warning { - color: #cb4b16; } - -.login-dialog-message-hint { - padding-top: 0; - padding-bottom: 20px; } - -.login-dialog-user-selection-box { - padding: 100px 0px; } - .login-dialog-user-selection-box .login-dialog-not-listed-label { - padding-left: 2px; } - .login-dialog-not-listed-button:focus .login-dialog-user-selection-box .login-dialog-not-listed-label, - .login-dialog-not-listed-button:hover .login-dialog-user-selection-box .login-dialog-not-listed-label { - color: #657b83; } - -.login-dialog-not-listed-label { - font-size: 90%; - font-weight: bold; - color: #222a2d; - padding-top: 1em; } - -.login-dialog-user-list-view { - -st-vfade-offset: 1em; } - -.login-dialog-user-list { - spacing: 12px; - padding: .2em; - width: 23em; } - .login-dialog-user-list:expanded .login-dialog-user-list-item:focus { - background-color: #268bd2; - color: #fdf6e3; } - .login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in { - border-right: 2px solid #268bd2; } - -.login-dialog-user-list-item { - border-radius: 5px; - padding: .2em; - color: #222a2d; } - .login-dialog-user-list-item:ltr { - padding-right: 1em; } - .login-dialog-user-list-item:rtl { - padding-left: 1em; } - .login-dialog-user-list-item:hover { - background-color: #268bd2; - color: #fdf6e3; } - .login-dialog-user-list-item .login-dialog-timed-login-indicator { - height: 2px; - margin: 2px 0 0 0; - background-color: #657b83; } - .login-dialog-user-list-item:focus .login-dialog-timed-login-indicator { - background-color: #fdf6e3; } - -.login-dialog-username, -.user-widget-label { - color: #657b83; - font-size: 120%; - font-weight: bold; - text-align: left; - padding-left: 15px; } - -.user-widget-label:ltr { - padding-left: 18px; } - -.user-widget-label:rtl { - padding-right: 18px; } - -.login-dialog-prompt-layout { - padding-top: 24px; - padding-bottom: 12px; - spacing: 8px; - width: 23em; } - -.login-dialog-prompt-label { - color: #394549; - font-size: 110%; - padding-top: 1em; } - -.login-dialog-session-list-button StIcon { - icon-size: 1.25em; } - -.login-dialog-session-list-button { - color: #222a2d; } - .login-dialog-session-list-button:hover, .login-dialog-session-list-button:focus { - color: #657b83; } - .login-dialog-session-list-button:active { - color: black; } - -.screen-shield-arrows { - padding-bottom: 3em; } - -.screen-shield-arrows Gjs_Arrow { - color: white; - width: 80px; - height: 48px; - -arrow-thickness: 12px; - -arrow-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); } - -.screen-shield-clock { - color: white; - text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6); - font-weight: bold; - text-align: center; - padding-bottom: 1.5em; } - -.screen-shield-clock-time { - font-size: 72pt; - text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4); } - -.screen-shield-clock-date { - font-size: 28pt; } - -.screen-shield-notifications-container { - spacing: 6px; - width: 30em; - background-color: transparent; - max-height: 500px; } - .screen-shield-notifications-container .summary-notification-stack-scrollview { - padding-top: 0; - padding-bottom: 0; } - .screen-shield-notifications-container .notification, - .screen-shield-notifications-container .screen-shield-notification-source { - padding: 12px 6px; - border: 1px solid rgba(101, 123, 131, 0.2); - background-color: rgba(7, 54, 66, 0.45); - color: #657b83; - border-radius: 4px; } - .screen-shield-notifications-container .notification { - margin-right: 15px; } - -.screen-shield-notification-label { - font-weight: bold; - padding: 0px 0px 0px 12px; } - -.screen-shield-notification-count-text { - padding: 0px 0px 0px 12px; } - -#panel.lock-screen { - background-color: rgba(7, 54, 66, 0.5); } - -.screen-shield-background { - background: black; - box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4); } - -#lockDialogGroup { - background: #2e3436 url(misc/noise-texture.png); - background-repeat: repeat; } - -#screenShieldNotifications StButton#vhandle, #screenShieldNotifications StButton#hhandle { - background-color: rgba(245, 246, 247, 0.3); } - #screenShieldNotifications StButton#vhandle:hover, #screenShieldNotifications StButton#vhandle:focus, #screenShieldNotifications StButton#hhandle:hover, #screenShieldNotifications StButton#hhandle:focus { - background-color: rgba(245, 246, 247, 0.5); } - #screenShieldNotifications StButton#vhandle:active, #screenShieldNotifications StButton#hhandle:active { - background-color: rgba(38, 139, 210, 0.5); } - -#LookingGlassDialog { - spacing: 4px; - padding: 8px 8px 10px 8px; - background-color: rgba(0, 0, 0, 0.7); - border: 1px solid black; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 2px; - color: #657b83; } - #LookingGlassDialog > #Toolbar { - padding: 3px; - border: none; - background-color: transparent; - border-radius: 0px; } - #LookingGlassDialog .labels { - spacing: 4px; } - #LookingGlassDialog .notebook-tab { - -natural-hpadding: 12px; - -minimum-hpadding: 6px; - font-weight: bold; - color: #657b83; - transition-duration: 100ms; - padding-left: .3em; - padding-right: .3em; } - #LookingGlassDialog .notebook-tab:hover { - color: white; - text-shadow: black 0px 2px 2px; } - #LookingGlassDialog .notebook-tab:selected { - border-bottom-width: 0px; - color: #268bd2; - text-shadow: black 0px 2px 2px; } - #LookingGlassDialog StBoxLayout#EvalBox { - padding: 4px; - spacing: 4px; } - #LookingGlassDialog StBoxLayout#ResultsArea { - spacing: 4px; } - -.lg-dialog StEntry { - selection-background-color: #268bd2; - selected-color: #fdf6e3; - color: #657b83; - background-color: rgba(18, 137, 167, 0.35); - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .lg-dialog StEntry:focus { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - -.lg-dialog .shell-link { - color: #1e6ea7; } - .lg-dialog .shell-link:hover { - color: #268bd2; } - -.lg-completions-text { - font-size: .9em; - font-style: italic; } - -.lg-obj-inspector-title { - spacing: 4px; } - -.lg-obj-inspector-button { - border: 1px solid gray; - padding: 4px; - border-radius: 4px; } - .lg-obj-inspector-button:hover { - border: 1px solid #fdf6e3; } - -#lookingGlassExtensions { - padding: 4px; } - -.lg-extensions-list { - padding: 4px; - spacing: 6px; } - -.lg-extension { - border: 1px solid rgba(0, 0, 0, 0.7); - border-radius: 2px; - background-color: rgba(7, 54, 66, 0.95); - padding: 4px; } - -.lg-extension-name { - font-weight: bold; } - -.lg-extension-meta { - spacing: 6px; } - -#LookingGlassPropertyInspector { - background: rgba(0, 0, 0, 0.7); - border: 1px solid grey; - border-radius: 2px; - padding: 6px; } diff --git a/common/gnome-shell/3.14/light-assets/checkbox/checkbox-checked-focused.svg b/common/gnome-shell/3.14/light-assets/checkbox/checkbox-checked-focused.svg deleted file mode 100644 index f63a213..0000000 --- a/common/gnome-shell/3.14/light-assets/checkbox/checkbox-checked-focused.svg +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/checkbox/checkbox-checked.svg b/common/gnome-shell/3.14/light-assets/checkbox/checkbox-checked.svg deleted file mode 100644 index 6504d09..0000000 --- a/common/gnome-shell/3.14/light-assets/checkbox/checkbox-checked.svg +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/checkbox/checkbox-unchecked-focused.svg b/common/gnome-shell/3.14/light-assets/checkbox/checkbox-unchecked-focused.svg deleted file mode 100644 index 89b2c49..0000000 --- a/common/gnome-shell/3.14/light-assets/checkbox/checkbox-unchecked-focused.svg +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/checkbox/checkbox-unchecked.svg b/common/gnome-shell/3.14/light-assets/checkbox/checkbox-unchecked.svg deleted file mode 100644 index 08ee9e5..0000000 --- a/common/gnome-shell/3.14/light-assets/checkbox/checkbox-unchecked.svg +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/menu/menu.svg b/common/gnome-shell/3.14/light-assets/menu/menu.svg deleted file mode 100644 index c734734..0000000 --- a/common/gnome-shell/3.14/light-assets/menu/menu.svg +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/menu/submenu-open.svg b/common/gnome-shell/3.14/light-assets/menu/submenu-open.svg deleted file mode 100644 index 8062443..0000000 --- a/common/gnome-shell/3.14/light-assets/menu/submenu-open.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/menu/submenu.svg b/common/gnome-shell/3.14/light-assets/menu/submenu.svg deleted file mode 100644 index 766c82e..0000000 --- a/common/gnome-shell/3.14/light-assets/menu/submenu.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/misc/button-box.svg b/common/gnome-shell/3.14/light-assets/misc/button-box.svg deleted file mode 100644 index 414081a..0000000 --- a/common/gnome-shell/3.14/light-assets/misc/button-box.svg +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/misc/calendar-arrow-left-hover.svg b/common/gnome-shell/3.14/light-assets/misc/calendar-arrow-left-hover.svg deleted file mode 100644 index 04ffc1b..0000000 --- a/common/gnome-shell/3.14/light-assets/misc/calendar-arrow-left-hover.svg +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/misc/calendar-arrow-left.svg b/common/gnome-shell/3.14/light-assets/misc/calendar-arrow-left.svg deleted file mode 100644 index 38c2368..0000000 --- a/common/gnome-shell/3.14/light-assets/misc/calendar-arrow-left.svg +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/misc/calendar-arrow-right-hover.svg b/common/gnome-shell/3.14/light-assets/misc/calendar-arrow-right-hover.svg deleted file mode 100644 index df438fc..0000000 --- a/common/gnome-shell/3.14/light-assets/misc/calendar-arrow-right-hover.svg +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/misc/calendar-arrow-right.svg b/common/gnome-shell/3.14/light-assets/misc/calendar-arrow-right.svg deleted file mode 100644 index 2195675..0000000 --- a/common/gnome-shell/3.14/light-assets/misc/calendar-arrow-right.svg +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/misc/message-active.svg b/common/gnome-shell/3.14/light-assets/misc/message-active.svg deleted file mode 100644 index 0f9d26f..0000000 --- a/common/gnome-shell/3.14/light-assets/misc/message-active.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/misc/message-close-active.svg b/common/gnome-shell/3.14/light-assets/misc/message-close-active.svg deleted file mode 100644 index dfe1d09..0000000 --- a/common/gnome-shell/3.14/light-assets/misc/message-close-active.svg +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/misc/message-close-hover.svg b/common/gnome-shell/3.14/light-assets/misc/message-close-hover.svg deleted file mode 100644 index f1c40f2..0000000 --- a/common/gnome-shell/3.14/light-assets/misc/message-close-hover.svg +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/misc/message-close.svg b/common/gnome-shell/3.14/light-assets/misc/message-close.svg deleted file mode 100644 index d098bc9..0000000 --- a/common/gnome-shell/3.14/light-assets/misc/message-close.svg +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/misc/message-hover.svg b/common/gnome-shell/3.14/light-assets/misc/message-hover.svg deleted file mode 100644 index 153a888..0000000 --- a/common/gnome-shell/3.14/light-assets/misc/message-hover.svg +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/misc/message.svg b/common/gnome-shell/3.14/light-assets/misc/message.svg deleted file mode 100644 index d4096ee..0000000 --- a/common/gnome-shell/3.14/light-assets/misc/message.svg +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/misc/modal.svg b/common/gnome-shell/3.14/light-assets/misc/modal.svg deleted file mode 100644 index 31894db..0000000 --- a/common/gnome-shell/3.14/light-assets/misc/modal.svg +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/switch/switch-off.svg b/common/gnome-shell/3.14/light-assets/switch/switch-off.svg deleted file mode 100644 index c07aa05..0000000 --- a/common/gnome-shell/3.14/light-assets/switch/switch-off.svg +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/light-assets/switch/switch-on.svg b/common/gnome-shell/3.14/light-assets/switch/switch-on.svg deleted file mode 100644 index c7d9d3d..0000000 --- a/common/gnome-shell/3.14/light-assets/switch/switch-on.svg +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.14/sass/_colors.scss b/common/gnome-shell/3.14/sass/_colors.scss deleted file mode 100644 index fac334a..0000000 --- a/common/gnome-shell/3.14/sass/_colors.scss +++ /dev/null @@ -1,101 +0,0 @@ -// When color definition differs for dark and light variant, -// it gets @if ed depending on $variant - - -$base_color: if($variant =='light', #fdf6e3, #073642); -$text_color: if($variant == 'light', #5c616c, #657b83); -$bg_color: if($variant =='light', #F5F6F7, #002b36); -$fg_color: if($variant =='light', #5c616c, #657b83); - -$selected_fg_color: #fdf6e3; -$selected_bg_color: #268bd2; -$selected_borders_color: darken($selected_bg_color, 20%); -$borders_color: if($variant =='light', darken($bg_color,9%), darken($bg_color,6%)); - -$link_color: if($variant == 'light', darken($selected_bg_color,10%), - lighten($selected_bg_color,20%)); -$link_visited_color: if($variant == 'light', darken($selected_bg_color,20%), - lighten($selected_bg_color,10%)); - -$selection_mode_bg: if($transparency == 'true', transparentize($selected_bg_color, 0.05), $selected_bg_color); -$selection_mode_fg: $selected_fg_color; -$warning_color: #cb4b16; -$error_color: #dc322f; -$warning_fg_color: white; -$error_fg_color: white; -$success_color: #859900; -$destructive_color: #dc322f; -$suggested_color: #2aa198; -$destructive_fg_color: white; -$suggested_fg_color: white; - -$drop_target_color: #b58900; - -//insensitive state derived colors -$insensitive_fg_color: if($variant == 'light', transparentize($fg_color, 0.45), transparentize($fg_color, 0.55)); -$insensitive_bg_color: if($variant == 'light', mix($bg_color, $base_color, 40%), lighten($bg_color, 2%)); - -$header_bg: red; -@if $transparency=='true' and $variant=='light' { $header_bg: transparentize(#eee8d5, 0.05); } -@if $transparency=='false' and $variant=='light' { $header_bg: #eee8d5; } -@if $transparency=='true' and ($variant=='dark' or $darker=='true') { $header_bg: transparentize(#002b36, 0.03); } -@if $transparency=='false' and ($variant=='dark' or $darker=='true') { $header_bg: #002b36; } - -$header_bg_backdrop: if($darker == 'true' or $variant == 'dark', lighten($header_bg, 1.5%), lighten($header_bg, 3%)); - -$header_border: if($variant == 'light' and $darker=='false', darken($header_bg, 7%), darken($header_bg, 4%)); - -$header_fg: if($variant == 'light', saturate(transparentize($fg_color, 0.2), 10%), saturate(transparentize($fg_color, 0.2), 10%)); -$header_fg: if($darker == 'true', saturate(transparentize(#657b83, 0.2), 10%), $header_fg); - -$dark_sidebar_bg: if($transparency == 'true', transparentize(#073642, 0.05), #073642); -$dark_sidebar_fg: #657b83; -$dark_sidebar_border: if($variant == 'light', $dark_sidebar_bg, darken($dark_sidebar_bg, 5%)); - -$osd_fg_color: $dark_sidebar_fg; -$osd_bg_color: $dark_sidebar_bg; - -$osd_button_bg: transparentize(lighten($osd_bg_color, 22%), 0.6); -$osd_button_border: transparentize(darken($osd_bg_color, 12%), 0.6); - -$osd_entry_bg: transparentize(lighten($osd_bg_color, 22%), 0.6); -$osd_entry_border: transparentize(darken($osd_bg_color, 12%), 0.6); - -$osd_insensitive_bg_color: darken($osd_bg_color, 3%); -$osd_insensitive_fg_color: mix($osd_fg_color, opacify($osd_bg_color, 1), 30%); -$osd_borders_color: transparentize(black, 0.3); - -$panel_bg: darken($dark_sidebar_bg, 4.7%); -$panel_fg: $dark_sidebar_fg; - -$entry_bg: if($variant=='light', $base_color, lighten($base_color, 0%)); -$entry_border: if($variant == 'light', #657b83, darken($borders_color, 0%)); - -$header_entry_bg: if($darker == 'true' or $variant == 'dark', transparentize(lighten($header_bg, 22%), 0.6), transparentize($base_color, 0.1)); -$header_entry_border: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 12%), 0.6), transparentize($header_fg, 0.7)); - -$button_bg: if($variant == 'light', lighten($bg_color, 2%), lighten($base_color, 2%)); -$button_border: $entry_border; - -$header_button_bg: if($darker == 'true' or $variant == 'dark', transparentize(lighten($header_bg, 22%), 0.6), transparentize($button_bg, 0.1)); -$header_button_border: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 12%), 0.6), transparentize($header_fg, 0.7)); - -//WM Buttons - -// Close -$wm_button_close_bg: if($variant == 'light' and $darker == 'false', #f46067, #dc322f); -$wm_button_close_hover_bg: if($variant == 'light' and $darker == 'false', #f68086, #cb4b16); -$wm_button_close_active_bg: if($variant == 'light' and $darker == 'false', #f13039, #dc322f); - -$wm_icon_close_bg: if($variant == 'light' and $darker == 'false',#657b83 , #002b36); - -// Minimize, Maximize -$wm_button_hover_bg: if($variant == 'light' and $darker == 'false', #fdfdfd, #657b83); -$wm_button_active_bg: $selected_bg_color; - -$wm_button_hover_border: if($variant == 'light' and $darker == 'false', #D1D3DA, #002b36); - -$wm_icon_bg: if($variant == 'light' and $darker == 'false', #90949E, #93a1a1); -$wm_icon_unfocused_bg: if($variant == 'light' and $darker == 'false', #B6B8C0, #657b83); -$wm_icon_hover_bg: if($variant == 'light' and $darker == 'false', #7A7F8B, #93a1a1); -$wm_icon_active_bg: $selected_fg_color; diff --git a/common/gnome-shell/3.14/sass/_common.scss b/common/gnome-shell/3.14/sass/_common.scss deleted file mode 100644 index afd4229..0000000 --- a/common/gnome-shell/3.14/sass/_common.scss +++ /dev/null @@ -1,2499 +0,0 @@ -//This is the RIGHT PLACE to edit the stylesheet - -$panel-corner-radius: 0px; -$asset_path: if($variant == 'dark', dark-assets, light-assets); - -/* Copyright 2009, 2015 Red Hat, Inc. - * - * Portions adapted from Mx's data/style/default.css - * Copyright 2009 Intel Corporation - * - * This program is free software; you can redistribute it and/or modify it - * under the terms and conditions of the GNU Lesser General Public License, - * version 2.1, as published by the Free Software Foundation. - * - * This program is distributed in the hope it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for - * more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. - */ - -// -// Globals -// -$font-size: 9; -$font-family: Futura Bk bt, Cantarell, Sans-Serif; -$_bubble_bg_color: opacify($osd_bg_color,0.25); -$_bubble_fg_color: $osd_fg_color; -$_bubble_borders_color: transparentize($osd_fg_color,0.8); -$_shell_fg_color: white; - -stage { - font-family: $font-family; - @include fontsize($font-size); - color: $fg_color; -} - -.app-well-menu, -.run-dialog-error-label, -.dash-label, -.window-caption, -.switcher-list, -.app-well-app > .overview-icon, -.grid-search-result .overview-icon { - font-size: 1em; - font-weight: normal; -} - -%reset_style { - background-color: transparent !important; - background-gradient-direction: none !important; - border: none !important; - border-radius: 0 !important; -} - -// -// Buttons -// - -.popup-menu .modal-dialog-button { - font-size: 1em; - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - border-radius: 2px; - - background-gradient-direction: none !important; - - @include button(normal); - - &:focus { @include button(focus); } - &:hover { @include button(hover); } - &:hover:focus { @include button(focus-hover); } - &:active, &:active:focus { @include button(active); } - &:insensitive { @include button(insensitive); } -} - -.candidate-page-button, -.hotplug-notification-item, -.hotplug-resident-eject-button, -.modal-dialog-button { - background-gradient-direction: none !important; - @extend %osd_button; -} - -%osd_button { - font-size: 1em; - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - border-radius: 2px; - - @include button(osd); - - &:hover { @include button(osd-hover); } - &:focus { color: $selected_bg_color; } - &:active { @include button(osd-active); } - &:insensitive { @include button(osd-insensitive); } -} - -// -// Entries -// -StEntry { - font-size: 1em; - padding: 7px; - caret-size: 1px; - selection-background-color: $selected_bg_color; - selected-color: $selected_fg_color; - transition-duration: 300ms; - border-radius: 3px; - background-gradient-direction: none !important; - - @include entry(normal); - - &:focus, &:hover { @include entry(focus); } - &:insensitive { @include entry(insensitive); } - - StIcon.capslock-warning { - icon-size: 16px; - warning-color: $warning_color; - padding: 0 4px; - } -} - -// -// Scrollbars -// -StScrollView { - &.vfade { -st-vfade-offset: 0px; } - &.hfade { -st-hfade-offset: 0px; } -} - -StScrollBar { - - padding: 8px; - - StScrollView & { - min-width: 5px; - min-height: 5px; - } - - StBin#trough { - background-color: transparentize($base_color, 0.9); - border-radius: 8px; - } - - StButton#vhandle, StButton#hhandle { - border-radius: 4px; - background-color: mix($fg_color, $bg_color, 40%); - border: 0px solid; - margin: 0px; - - &:hover { background-color: mix($fg_color, $bg_color, 30%); } - - &:active { background-color: $selected_bg_color; } - } -} - -// -// Slider -// -.slider { - -slider-height: 4px; - -slider-background-color: $button_border; //background of the trough - -slider-border-color: transparentize(black, 1); //trough border color - -slider-active-background-color: $selected_bg_color; //active trough fill - -slider-active-border-color: transparentize(black, 1); //active trough border - -slider-border-width: 0; - -slider-handle-radius: 0px; - -slider-handle-border-color: transparent; - -slider-handle-border-width: 0; - height: 18px; - border: 0 solid transparent; - border-right-width: 1px; - border-left-width: 5px; - color: transparent; - - .popup-menu-item:active & { - -slider-background-color: transparentize(black, 0.8); - -slider-active-background-color: $selected_fg_color; - } -} - -// -// Check Boxes -// -.check-box { - - StBoxLayout { spacing: .8em; } - - StBin { - width: 16px; - height: 16px; - background-image: url("#{$asset_path}/checkbox/checkbox-unchecked.svg"); - } - - &:focus StBin { background-image: url("#{$asset_path}/checkbox/checkbox-unchecked-focused.svg"); } - - &:checked StBin { background-image: url("#{$asset_path}/checkbox/checkbox-checked.svg"); } - - &:focus:checked StBin { background-image: url("#{$asset_path}/checkbox/checkbox-checked-focused.svg"); } -} - -// -// Switches -// -.toggle-switch { - width: 50px; - height: 20px; - background-size: contain; - background-image: url("#{$asset_path}/switch/switch-off.svg"); - - &:checked { background-image: url("#{$asset_path}/switch/switch-on.svg"); } - - .popup-menu-item:active & { - background-image: url("common-assets/switch/switch-off-selected.svg"); - - &:checked { background-image: url("common-assets/switch/switch-on-selected.svg"); } - } -} - -// -// Links -// -.shell-link { - color: $link_color; - - &:hover { color: lighten($link_color,10%); } -} - -// -// Modal Dialogs -// -.headline { font-size: 110%; } -.lightbox { background-color: black; } -.flashspot { background-color: white; } - -.modal-dialog { - color: $fg_color; - background-color: transparentize($bg_color, 1); - border: none; - border-image: url("#{$asset_path}/misc/modal.svg") 9 9 9 67; - padding: 0 5px 6px 5px; - - > StBoxLayout:first-child { - padding: 20px 10px 10px 10px; - } - - &-button-box { - spacing: 10px; - margin: 0px; - padding: 14px 10px; - background: none; - border: none; - border-image: url("#{$asset_path}/misc/button-box.svg") 9 9 9 9; - - .button { - padding-top: 0; - padding-bottom: 0; - height: 30px; - - @extend %osd_button; - } - } - - .run-dialog-entry { - width: 21em; - caret-color: $fg_color; - } - .run-dialog-error-box { - padding-top: 5px; - spacing: 5px; - } - - //.run-dialog-button-box { padding-top: 1em; } - .run-dialog-label { - font-size: 0; - } -} - -//.button-dialog-button-box { -//} - -.show-processes-dialog-subject, -.mount-question-dialog-subject, -.end-session-dialog-subject { //this should be a generic header class - @include fontsize($font-size * 1.2); - font-weight: bold; - color: $fg_color; -} - -// -// End Session Dialog -// -.end-session-dialog { - spacing: 42px; - //border: 3px solid $_bubble_borders_color; - - &-list { - padding-top: 20px; - } - - &-layout { - padding-left: 17px; - &:rtl { padding-right: 17px; } - } - - &-description { - width: 28em; - padding-bottom: 10px; - &:rtl { - text-align: right; - } - } - - &-warning { - width: 28em; - color: $warning_color; - padding-top: 6px; - &:rtl { - text-align: right; - } - } - - &-logout-icon { - border: 0px solid transparent; - border-radius: 2px; - width: 48px; - height: 48px; - background-size: contain; - } - - &-shutdown-icon { - color: $fg_color; - width: 48px; - height: 48px; - } - - &-inhibitor-layout { - spacing: 16px; - max-height: 200px; - padding-right: 10px; - padding-left: 10px; - } - - &-session-list, &-app-list { - spacing: 1em; - } - - &-list-header { - font-weight: bold; - &:rtl { text-align: right; } - } - - &-app-list-item, &-session-list-item { - spacing: 1em; - } - - &-app-list-item-name, &-session-list-item-name { - font-weight: bold; - } - - &-app-list-item-description { - color: lighten($fg_color,5%); - @include fontsize($font-size * 0.9); - } - - // Shutdown Button - .modal-dialog-button:last-child { - color: $destructive_fg_color; - background-color: $destructive_color; - border-color: $destructive_color; - - &:hover { - color: $destructive_fg_color; - background-color: lighten($destructive_color, 9%); - border-color: lighten($destructive_color, 9%); - } - &:active { - color: $destructive_fg_color; - background-color: darken($destructive_color, 5%); - border-color: darken($destructive_color, 5%); - } - } -} - -// -// ShellMountOperation Dialogs -// -.shell-mount-operation-icon { icon-size: 48px; } - -.show-processes-dialog, -.mount-question-dialog { - spacing: 24px; -} - -.show-processes-dialog-subject, -.mount-question-dialog-subject { - padding-top: 10px; - padding-left: 17px; - padding-bottom: 6px; - - &:rtl { - padding-left: 0px; - padding-right: 17px; - } -} - -.mount-question-dialog-subject { - max-width: 500px; -} - -.show-processes-dialog-description, -.mount-question-dialog-description { - padding-left: 17px; - width: 28em; - - &:rtl { - padding-right: 17px; - } -} - -.show-processes-dialog-app-list { - @include fontsize($font-size * 1.1); - max-height: 200px; - padding-top: 24px; - padding-left: 49px; - padding-right: 32px; - - &:rtl { - padding-right: 49px; - padding-left: 32px; - } -} - -.show-processes-dialog-app-list-item { - color: darken($fg_color,10%); - &:hover { color: $fg_color; } - &:ltr { padding-right: 1em; } - &:rtl { padding-left: 1em; } -} - -.show-processes-dialog-app-list-item-icon { - &:ltr { padding-right: 17px; } - &:rtl { padding-left: 17px; } -} - -.show-processes-dialog-app-list-item-name { - @include fontsize($font-size * 1.1); -} - -// -// Password or Authentication Dialog -// -.prompt-dialog { - //this is the width of the entire modal popup - width: 500px; - //border: 3px solid $_bubble_borders_color; - - &-main-layout { - spacing: 24px; - padding: 10px; - } - - &-message-layout { - spacing: 16px; - } - - &-headline { - @include fontsize($font-size * 1.3); - font-weight: bold; - color: $fg_color; - } - - &-descritption:rtl { - text-align: right; - } - - &-password-box { - spacing: 1em; - padding-bottom: 1em; - } - - &-error-label { - @include fontsize($font-size); - color: $error_color; - padding-bottom: 8px; - } - - &-info-label { - @include fontsize($font-size); - padding-bottom: 8px; - } - - &-null-label { - @include fontsize($font-size); - padding-bottom: 8px; - } -} - -.hidden { - color: transparentize(black, 1); -} - -// -// Polkit Dialog -// -.polkit-dialog-user { - - &-layout { - padding-left: 10px; - spacing: 10px; - &:rtl { - padding-left: 0px; - padding-right: 10px; - } - } - - &-root-label { - color: $warning_color; - } - - &-user-icon { - border-radius: 2px; - background-size: contain; - width: 48px; - height: 48px; - } -} - -// -// Network Agent Dialog -// -.network-dialog-secret-table { - spacing-rows: 15px; - spacing-columns: 1em; -} - -.keyring-dialog-control-table { - spacing-rows: 15px; - spacing-columns: 1em; -} - -// -// Popvers/Menus -// -.popup-menu { - min-width: 200px; - color: $fg_color; - border-image: url("#{$asset_path}/menu/menu.svg") 9 9 9 9; - - .popup-menu-arrow { } //defined globally in the TOP BAR - .popup-sub-menu { - background: none; - box-shadow: none; - background-gradient-direction: none !important; - border-image: url("#{$asset_path}/menu/submenu.svg") 9 9 9 9; - } - - .popup-submenu-menu-item:open { - color: $fg_color; - background: none !important; - box-shadow: none; - border-image: url("#{$asset_path}/menu/submenu-open.svg") 9 9 9 9; - } - - .popup-menu-content { padding: 1em 0em 1em 0em; } - .popup-menu-item { - spacing: 12px; - - &:ltr { padding: .4em 3em .4em 0em; } - &:rtl { padding: .4em 0em .4em 3em; } - - &:active, &.selected { - color: $selected_fg_color; - background-color: transparent; - border-image: url("common-assets/menu/menu-hover.svg") 9 9 1 1; - } - - &:insensitive { - color: transparentize($fg_color, 0.5); - background: none; - } - } - - .popup-inactive-menu-item { //all icons and other graphical elements - color: $fg_color; - - &:insensitive { color: $insensitive_fg_color; } - } - - .popup-status-menu-item, - .popup-subtitle-menu-item { color: $fg_color; } - - .popup-menu-item:active { - .popup-status-menu-item, - .popup-subtitle-menu-item { color: $selected_fg_color; } - } - - &.panel-menu { - -boxpointer-gap: 0px; - margin-bottom: 1.75em; - } -} - -.popup-menu-ornament { - text-align: right; - margin-left: 10px; - width: 16px; -} - -.popup-menu-boxpointer { - -arrow-border-radius: 2px !important; - -arrow-background-color: rgba(0,0,0,0.0) !important; - -arrow-border-width: 1px !important; - -arrow-border-color: rgba(0,0,0,0.0) !important; - -arrow-base: 0 !important; - -arrow-rise: 0 !important; - color: $fg_color !important; -} - -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: $osd_bg_color; - -arrow-border-width: 1px; - -arrow-border-color: transparentize(black, 0.6); - -arrow-base: 5; - -arrow-rise: 5; -} - -.popup-separator-menu-item { - -gradient-height: 0px; - //-margin-horizontal: 24px; - height: 2px; //not really the whole box - margin: 0; - background-color: transparent; - background-gradient-direction: none !important; - border: none; - border-image: url("common-assets/menu/menu-separator.svg") 1 1 1 1; -} - -// Background menu -.background-menu { -boxpointer-gap: 4px; -arrow-rise: 0px; } - -// fallback menu -//- odd thing for styling App menu when apparently not running under shell. Light Adwaita styled -// app menu inside the main app window itself rather than the top bar -// - -// -// OSD -// -.osd-window { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 20px; - margin: 32px; - min-width: 64px; - min-height: 64px; - - color: $_shell_fg_color; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; - -.osd-monitor-label { font-size: 3em; } - - .level { - padding: 0; - height: 4px; - background-color: transparentize(black, 0.5); - border-radius: 2px; - color: $selected_bg_color; - } -} - -.resize-popup { - color: $osd_fg_color; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; - padding: 12px; -} - -// -// Alt Tab Switcher -// -.switcher-popup { - padding: 8px; - spacing: 16px; -} - -.switcher-list { - color: $osd_fg_color; - background: none; - border: none; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; - - &-item-container { spacing: 8px; } - - .item-box { - padding: 8px; - border-radius: 2px; - border: 1px solid transparent; - - &:outlined { - padding: 8px; - border: 1px solid $selected_bg_color; - } - - &:selected { - color: $selected_fg_color; - background-color: $selected_bg_color; - border: 1px solid $selected_bg_color; - - } - } - - .thumbnail-box { - padding: 2px; - spacing: 4px; - } - - .thumbnail { - width: 256px; - } - - .separator { - width: 1px; - background: transparentize($fg_color, 0.67); - } -} - -.switcher-arrow { - border-color: rgba(0,0,0,0); - color: $osd_fg_color; - - &:highlighted { - color: $_shell_fg_color; - } -} - -.input-source-switcher-symbol { - font-size: 34pt; - width: 96px; - height: 96px; -} - -// -// Workspace Switcher -// -.workspace-switcher { - - background: transparent; - border: 0px; - border-radius: 0px; - padding: 0px; - spacing: 8px; - - &-group { padding: 12px; } - - &-container { - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; - padding-bottom: 24px; - } -} - -.ws-switcher-active-up, .ws-switcher-active-down { - height: 30px; - background-color: $selected_bg_color; - background-size: 96px; - border-radius: 2px; - border: 1px solid $selected_bg_color; -} - -.ws-switcher-active-up { - background-image: url("common-assets/misc/ws-switch-arrow-up.png"); -} - -.ws-switcher-active-down { - background-image: url("common-assets/misc/ws-switch-arrow-down.png"); -} - -.ws-switcher-box { - height: 96px; - background: transparentize(black, 0.67); - border: 1px solid transparentize(black, 0.67); - border-radius: 2px; -} - -// -// Tiled window previews -// -.tile-preview { - background-color: transparentize($selected_bg_color, 0.65); - border: 1px solid $selected_bg_color; - - &-left.on-primary { - border-radius: $panel-corner-radius 0 0 0; - } - - &-right.on-primary { - border-radius: 0 $panel-corner-radius 0 0; - } - - &-left.tile-preview-right.on-primary { - border-radius: $panel-corner-radius $panel-corner-radius 0 0; - } -} - -// -// Top Bar -// -#panel { - $_panel_fg_color: $_shell_fg_color; - - font-weight: bold; - height: 2.1em; - min-height: 27px; - background-color: transparent !important; - background-gradient-direction: none !important; - border-bottom: 0px !important; - border-image: url('common-assets/panel/panel.svg') 1 1 1 1 !important; - - // Fix dynamic top bar extension - &.dynamic-top-bar-white-btn { border-image: none; } - - &.unlock-screen, - &.login-screen, - &.lock-screen { - background-color: transparent; - border-image: none; - } - - &:overview { border-image: url('common-assets/panel/panel-overview.svg') 1 1 1 1; } - - #panelLeft, #panelCenter { // spacing between activities<>app menu and such - spacing: 8px; - } - - .panel-corner { - -panel-corner-radius: $panel-corner-radius; - -panel-corner-background-color: transparentize(black, 1); - -panel-corner-border-width: 0px; - -panel-corner-border-color: black; - - &:active, &:overview, &:focus { - -panel-corner-border-color: black; - } - - &.lock-screen, &.login-screen, &unlock-screen { - -panel-corner-radius: 0; - -panel-corner-background-color: transparent; - -panel-corner-border-color: transparent; - } - } - - .panel-button { - -natural-hpadding: 10px !important; - -minimum-hpadding: 6px !important; - font-weight: bold; - color: $_panel_fg_color !important; - transition-duration: 100ms; - border-bottom-width: 1px; - border-color: transparent; - - #appMenuIcon { - width: 0; - height: 0; - margin-left: 0px; - margin-right: 0px; - } - - &:hover { - color: $_panel_fg_color !important; - background-color: transparentize(black, 0.83); - border-bottom-width: 1px; - border-color: transparent; - text-shadow: 0 0 rgba(0,0,0,0); - } - - &:active, &:overview, &:focus, &:checked { - color: $selected_fg_color !important; - background:$selected_bg_color, url("common-assets/misc/null.svg"); - border-image: none; - box-shadow: none; - border-bottom-width: 1px !important; - border-color: black; - text-shadow: 0 0 rgba(0,0,0,0); - - & > .system-status-icon { icon-shadow: none; } - } - - .system-status-icon { icon-size: 16px; padding: 0 4px; } - .unlock-screen &, - .login-screen &, - .lock-screen & { - color: lighten($fg_color, 10%); - &:focus, &:hover, &:active { color: lighten($fg_color, 10%); } - } - } - - #panelActivities.panel-button { -natural-hpadding: 12px; } - - .panel-status-indicators-box, - .panel-status-menu-box { - spacing: 2px; - } - - .screencast-indicator { color: $error_color; } - - .clock-display > * > *:last-child { - color: $selected_bg_color; - margin-left: .3em; - } - - .popup-menu-arrow { width: 0; } -} - -// Activities button -#panel #panelActivities.panel-button { - - > * { - background-image: url("common-assets/panel/activities.svg"); - background-position: center top; - width: 24px; - height: 24px; - background-color: transparent !important; - background-gradient-direction: none !important; - border: 0 solid transparent !important; - text-shadow: 0 0 transparent !important; - transition-duration: 0ms !important; - box-shadow: none !important; - color: transparent; - } - - &:active, &:overview, &:focus, &:checked { - background-color: transparent; - box-shadow: none; - border-bottom-width: 1px; - border-color: transparent; - - > * { background-image: url("common-assets/panel/activities-active.svg"); } - } -} - -// a little unstructured mess: - -.system-switch-user-submenu-icon { - icon-size: 24px; - border: 1px solid transparentize(black, 0.8); -} - -#appMenu { - spinner-image: url("common-assets/misc/process-working.svg"); - spacing: 4px; - padding: 0 8px; - - .label-shadow { color: transparent !important; } -} - -.aggregate-menu { - width: 360px; - .popup-menu-icon { - padding: 0 4px; - color: $fg_color; - } - .popup-menu-item:active .popup-menu-icon { - color: $selected_fg_color; - } -} - -.system-menu-action { - padding: 13px; - color: $fg_color !important; - border-radius: 32px; /* wish we could do 50% */ - border: 1px solid transparent !important; - - &:hover, &:focus { - transition-duration: 100ms; - padding: 13px; - color: $fg_color !important; - background-color: transparent !important; - border: 1px solid $selected_bg_color !important; - } - &:active { - color: $selected_fg_color !important; - background-color: $selected_bg_color !important; - border: 1px solid $selected_bg_color !important; - } - - & > StIcon { icon-size: 16px; } -} - -// -// Calendar popover -// -.calendar-vertical-separator { - -stipple-width: 1px; - -stipple-color: transparentize($fg_color, 0.6); - width: 0.3em; -} - -.calendar { - padding: .4em 1.75em .8em 2.5em; -} - -.calendar-month-label { - color: $fg_color !important; - font-weight: bold; - padding: 8px 0; - &:focus {} -} - -.calendar-change-month-back:hover, -.calendar-change-month-back:focus, -.calendar-change-month-back:active, -.calendar-change-month-forward:hover, -.calendar-change-month-forward:focus, -.calendar-change-month-forward:active { - background-color: transparent; -} - -.calendar-change-month-back, -.calendar-change-month-forward { - width: 18px; - height: 12px; - border-radius: 4px; -} - -//arrow back -.calendar-change-month-back { - background-image: url("#{$asset_path}/misc/calendar-arrow-left.svg"); - - &:focus, &:hover { background-image: url("#{$asset_path}/misc/calendar-arrow-left-hover.svg"); } - - &:active { background-image: url("#{$asset_path}/misc/calendar-arrow-left.svg"); } - - &:rtl { - background-image: url("#{$asset_path}/misc/calendar-arrow-right.svg"); - - &:focus, &:hover { background-image: url("#{$asset_path}/misc/calendar-arrow-right-hover.svg"); } - - &:active { background-image: url("#{$asset_path}/misc/calendar-arrow-right.svg"); } - } -} - -//arrow forward -.calendar-change-month-forward { - background-image: url("#{$asset_path}/misc/calendar-arrow-right.svg"); - - &:focus, &:hover { background-image: url("#{$asset_path}/misc/calendar-arrow-right-hover.svg"); } - - &:active { background-image: url("#{$asset_path}/misc/calendar-arrow-right.svg"); } - - &:rtl { - background-image: url("#{$asset_path}/misc/calendar-arrow-left.svg"); - - &:focus, &:hover { background-image: url("#{$asset_path}/misc/calendar-arrow-left-hover.svg"); } - - &:active { background-image: url("#{$asset_path}/misc/calendar-arrow-left.svg"); } - } -} - -.datemenu-date-label { - padding: .4em 1.7em; - font-weight: bold; - text-align: center; - color: $fg_color !important; - border-radius: 4px; - - &:hover, &:focus {} - &:active {} -} - -.calendar-day-base { - font-size: 80%; - text-align: center; - width: 25px; height: 25px; - padding: 0.1em; - margin: 2px; - border-radius: 12.5px; - color: $fg_color !important; - - &:hover, &:focus { - background-color: transparentize(black, 0.9) !important; - color: $fg_color !important; - } - - &:active { - color: $fg_color !important; - background-color: transparentize(black, 0.85) !important; - border-width: 0; //avoid jumparound due to today - } - - &.calendar-day-heading { //day of week heading - color: transparentize($fg_color, 0.15); - margin-top: 1em; - font-size: 70%; - } -} - -.calendar-week-number { - color: transparentize($fg_color, 0.5); - font-weight: normal; -} - -.calendar-day { //border collapse hack - see calendar.js - border-width: 0; - color: transparentize($fg_color, 0.2); -} - -.calendar-day-top { border-top-width: 0; } - -.calendar-day-left { border-left-width: 0; } - -.calendar-work-day {} - -.calendar-nonwork-day { - background-color: transparent; - color: $fg_color !important; - font-weight: bold; -} - -.calendar-today, -.calendar-today:active, -.calendar-today:focus, -.calendar-today:hover { - font-weight: bold; - color: $selected_fg_color !important; - background: $selected_bg_color, url("common-assets/misc/null.svg") !important; - border-width: 0; -} - -.calendar-day-with-events { - color: $selected_bg_color; - font-weight: bold; -} - -.calendar-today.calendar-day-with-events { color: $selected_fg_color; } - -.calendar-other-month-day { - color: transparentize($fg_color, 0.7); - opacity: 1; -} - -.events-table { - width: 320px; - spacing-columns: 6pt; - padding: 0 1.4em; - - &:ltr { padding-right: 1.9em; } - &:rtl { padding-left: 1.9em; } -} - -.events-day-header { - font-weight: bold; - color: transparentize($fg_color, 0.2) !important; - padding-left: 0.4em; - padding-top: 1.2em; - - &:first-child { padding-top: 0; } - &:rtl { - padding-left: 0; - padding-right: 0.4em; - } -} - -.events-day-dayname { - color: transparentize($fg_color, 0.5) !important; - text-align: left; - min-width: 20px; - - &:rtl { text-align: right; } -} - -.events-day-time { - color: transparentize($fg_color, 0.6) !important; - text-align: right; - - &:rtl { text-align: left; } -} - -.events-day-task { - color: $fg_color; - padding-left: 8pt; - - &:rtl { - padding-left: 0px; - padding-right: 8pt; - } -} - - -// -//Activities Ripples -// -.ripple-box { - width: 52px; - height: 52px; - background-image: url("common-assets/misc/corner-ripple-ltr.svg"); - background-size: contain; - - &:rtl { background-image: url("common-assets/misc/corner-ripple-rtl.svg"); } -} - -// not really top bar only -.popup-menu-arrow { width: 16px; height: 16px; } -.popup-menu-icon { icon-size: 16px; } - - -// -//Close buttons -// -.window-close, .notification-close { - background-image: url("common-assets/misc/close.svg"); - background-size: 26px; - height: 26px; - width: 26px; - - &:hover { - background-image: url("common-assets/misc/close-hover.svg"); - background-size: 26px; - height: 26px; - width: 26px; - } - - &:active { - background-image: url("common-assets/misc/close-active.svg"); - background-size: 26px; - height: 26px; - width: 26px; - } -} - -.window-close { - -shell-close-overlap: 11px; -} - -.notification-close { - -shell-close-overlap-x: 8px; - -shell-close-overlap-y: -8px; - - &:rtl { -shell-close-overlap-x: -8px; } -} - -// -// Network Dialogs -// -.nm-dialog { - max-height: 500px; - min-height: 450px; - min-width: 470px; - - &-content { spacing: 20px; } - - &-header-hbox { spacing: 10px; } - - &-airplane-box { spacing: 12px; } - - &-airplane-headline { - font-size: 1.1em; - font-weight: bold; - text-align: center; - } - - &-airplane-text { color: $fg_color; } - - &-header-icon { icon-size: 32px; } - - &-scroll-view { - border: 1px solid $borders_color; - border-radius: 2px; - background-color: $base_color; - } - - &-header { - font-weight: bold; - font-size: 1.2em; - } - - &-item { - font-size: 1em; - border-bottom: 0px solid; - padding: 12px; - spacing: 0px; - - &:selected { - background-color: $selected_bg_color; - color: $selected_fg_color; - } - } - - &-icons { spacing: .5em; } - - &-icon { icon-size: 16px; } -} - -.no-networks-label { color: $insensitive_fg_color; } - -.no-networks-box { spacing: 12px; } - -// -// Overview -// -#overview { spacing: 24px; } - -.overview-controls { padding-bottom: 32px; } - -.window-picker { //container around window thumbnails - -horizontal-spacing: 32px; - -vertical-spacing: 32px; - padding-left: 32px; - padding-right: 32px; - padding-bottom: 48px; - - &.external-monitor { padding: 32px; } -} - -.window-clone-border { - border: 3px solid transparentize($selected_bg_color, 0.2); - border-radius: 4px; - box-shadow: inset 0px 0px 0px 1px transparentize($selected_bg_color, 1); -} - -.window-caption, .window-caption:hover { - spacing: 25px; - color: $osd_fg_color; - background-color: transparentize(black, 0.3); - border-radius: 2px; - padding: 4px 12px; - -shell-caption-spacing: 12px; -} - -// -// Search Entry -// -.search-entry { - width: 320px; - padding: 7px 9px; - border-radius: 20px; - border: 1px solid transparentize(black, 0.75); - background-color: transparentize($entry_bg, 0.1); - - &:focus { - padding: 7px 9px; - } - - .search-entry-icon { - icon-size: 16px; - padding: 0 4px; - color: $fg_color; - } - - &:hover, &:focus { - color: $selected_fg_color; - caret-color: $selected_fg_color; - background-color: $selected_bg_color; - - selection-background-color: $selected_fg_color; - selected-color: $selected_bg_color; - - .search-entry-icon { color: $selected_fg_color; } - } -} - -// -// Search Results -// -#searchResultsBin { max-width: 1000px; } - -#searchResultsContent { - padding-left: 20px; - padding-right: 20px; - spacing: 16px; -} - -// This should be equal to #searchResultsContent spacing -.search-section { spacing: 16px; } - -// This is the space between the provider icon and the results container -.search-section-content { spacing: 32px; } - -// "no results" -.search-statustext { - @extend %status_text; -} - -.list-search-results { spacing: 3px; } - -.search-section-separator { - background-color: transparentize(white, 0.8); - -margin-horizontal: 1.5em; - height: 1px; -} - -.list-search-result-content { spacing: 12px; padding: 12px; } - -.list-search-result-title { font-size: 1.5em; color: $_shell_fg_color; } - -.list-search-result-description { color: darken($_shell_fg_color, 20%); } - -.search-provider-icon { padding: 15px; } -.search-provider-icon-more { - width: 16px; - height: 16px; - background-image: url("common-assets/misc/more-results.svg"); -} - -// -// Dash -// -#dash { - font-size: 1em; - color: $osd_fg_color; - background-color: $dark_sidebar_bg; - border-color: rgba(0,0,0,0.4); - padding: 3px 0px 3px 0px; - border-radius: 0 3px 3px 0; - - &:rtl { border-radius: 3px 0 0 3px; } - - .right &, - &:rtl { - padding: 3px 0px 3px 0px; - } - .bottom & { - padding: 0px 3px 0px 3px; - } - .top & { - padding: 0px 3px 0px 3px; - } - .placeholder { - background-image: url("common-assets/dash/dash-placeholder.svg"); - background-size: contain; - height: 24px; - } - - .empty-dash-drop-target { - width: 24px; - height: 24px; - } -} - -.dash-item-container > StWidget { - padding: 2px 5px 2px 3px; - - .right &, &:rtl { padding: 2px 3px 2px 5px; } - .bottom & { padding: 5px 2px 3px 2px; } - .top & { padding: 3px 2px 5px 2px; } -} - -.dash-label { - border-radius: 3px; - padding: 4px 12px; - color: $_shell_fg_color; - background-color: rgba(0, 0, 0, 0.7); - text-align: center; - -x-offset: 3px; -} - -.bottom .dash-label, .top .dash-label { - -y-offset: 3px; - -x-offset: 0; -} - -.dash-item-container > .app-well-app.running > .overview-icon, -.dash-item-container > .app-well-app.running:hover > .overview-icon, -.dash-item-container > .app-well-app.running:active > .overview-icon, -.dash-item-container > .app-well-app > .overview-icon, -.dash-item-container > .app-well-app:hover > .overview-icon, -.dash-item-container > .app-well-app:active > .overview-icon { - background-color: transparent !important; - background-gradient-direction: none !important; - border: none !important; - border-radius: 0 !important; - background: none !important; -} - - -#dash .app-well-app .overview-icon { - padding: 10px; - padding-left: 13px; -} - -.right #dash .app-well-app .overview-icon, -#dash:rtl .app-well-app .overview-icon { - padding: 10px; - padding-right: 13px; -} - -.bottom #dash .app-well-app .overview-icon { - padding: 10px; - padding-bottom: 13px; -} - -.top #dash .app-well-app .overview-icon { - padding: 10px; - padding-top: 13px; -} - - -#dash .app-well-app:hover .overview-icon { - border-image: url("common-assets/dash/button-hover.svg") 5 5 5 5; -} - -#dash .app-well-app:active .overview-icon { - border-image: url("common-assets/dash/button-active.svg") 5 5 5 5; -} - -#dash .app-well-app.running .overview-icon { - border-image: url("common-assets/dash/button-running.svg") 5 5 5 5; -} - -#dash .app-well-app.running:hover .overview-icon { - border-image: url("common-assets/dash/button-running-hover.svg") 5 5 5 5; -} - -#dash .app-well-app.running:active > .overview-icon { - border-image: url("common-assets/dash/button-running-active.svg") 5 5 5 5; -} - - -.right #dash .app-well-app:hover .overview-icon, -#dash:rtl .app-well-app:hover .overview-icon { - border-image: url("common-assets/dash/button-hover-right.svg") 5 5 5 5; -} - -.right #dash .app-well-app:active .overview-icon, -#dash:rtl .app-well-app:active .overview-icon { - border-image: url("common-assets/dash/button-active-right.svg") 5 5 5 5; -} - -.right #dash .app-well-app.running .overview-icon, -#dash:rtl .app-well-app.running .overview-icon { - border-image: url("common-assets/dash/button-running-right.svg") 5 5 5 5; -} - -.right #dash .app-well-app.running:hover .overview-icon, -#dash:rtl .app-well-app.running:hover .overview-icon { - border-image: url("common-assets/dash/button-running-hover-right.svg") 5 5 5 5; -} - -.right #dash .app-well-app.running:active > .overview-icon, -#dash:rtl .app-well-app.running:active > .overview-icon { - border-image: url("common-assets/dash/button-running-active-right.svg") 5 5 5 5; -} - - -.bottom #dash .app-well-app:hover .overview-icon { - border-image: url("common-assets/dash/button-hover-bottom.svg") 5 5 5 5; -} - -.bottom #dash .app-well-app:active .overview-icon { - border-image: url("common-assets/dash/button-active-bottom.svg") 5 5 5 5; -} - -.bottom #dash .app-well-app.running .overview-icon { - border-image: url("common-assets/dash/button-running-bottom.svg") 5 5 5 5; -} - -.bottom #dash .app-well-app.running:hover .overview-icon { - border-image: url("common-assets/dash/button-running-hover-bottom.svg") 5 5 5 5; -} - -.bottom #dash .app-well-app.running:active > .overview-icon { - border-image: url("common-assets/dash/button-running-active-bottom.svg") 5 5 5 5; -} - - -.top #dash .app-well-app:hover .overview-icon { - border-image: url("common-assets/dash/button-hover-top.svg") 5 5 5 5; -} - -.top #dash .app-well-app:active .overview-icon { - border-image: url("common-assets/dash/button-active-top.svg") 5 5 5 5; -} - -.top #dash .app-well-app.running .overview-icon { - border-image: url("common-assets/dash/button-running-top.svg") 5 5 5 5; -} - -.top #dash .app-well-app.running:hover .overview-icon { - border-image: url("common-assets/dash/button-running-hover-top.svg") 5 5 5 5; -} - -.top #dash .app-well-app.running:active > .overview-icon { - border-image: url("common-assets/dash/button-running-active-top.svg") 5 5 5 5; -} - - -.show-apps .overview-icon { - background-gradient-direction: none !important; - - padding: 11px; - background-color: rgba(0, 0, 0, 0.5); - border-radius: 2px; - border: 0px solid; -} - -.show-apps:hover .overview-icon { - background-gradient-direction: none !important; - - background-color: rgba(0, 0, 0, 0.7); - color: $selected_bg_color; -} - -.show-apps:active .overview-icon, .show-apps:active .show-apps-icon, .show-apps:checked .overview-icon, .show-apps:checked .show-apps-icon { - background-gradient-direction: none !important; - - color: $selected_fg_color; - background-color: $selected_bg_color; - box-shadow: none; - transition-duration: 0ms; -} - -// -// App Vault/Grid -// -.icon-grid { - spacing: 30px; - -shell-grid-horizontal-item-size: 136px; - -shell-grid-vertical-item-size: 136px; - - .overview-icon { icon-size: 96px; } -} - -//.app-display { spacing: 20px; } - -//favorties | all toggle container -.app-view-controls { padding-bottom: 32px; } - -//favorties | all toggle button -.app-view-control { - padding: 4px 32px; - background-gradient-direction: none; - - @include button(osd); - - &:hover { @include button(osd-hover); } - &:checked { - color: $selected_fg_color; - background-color: $selected_bg_color; - border-color: $selected_bg_color; - } - - &:first-child:ltr, - &:last-child:rtl { border-radius: 2px 0 0 2px; border-right-width: 0; } - - &:last-child:ltr, - &:first-child:rtl { border-radius: 0 2px 2px 0; border-left-width: 0;} -} - -// -// Icon Tile -// -.search-provider-icon, -.list-search-result { - @extend %icon_tile; - - &:active, &:checked { background-color: transparentize(darken($osd_bg_color,10%),.1); } - - &:focus, &:selected, &:hover { - background-color: transparentize($osd_fg_color,.6); - transition-duration: 200ms; - } -} -.app-well-app, -.app-well-app.app-folder, -.grid-search-result { - - .overview-icon { - @extend %icon_tile; - } - - &:active .overview-icon, - &:checked .overview-icon { - background-color: transparentize(darken($osd_bg_color,10%),.1); - box-shadow: inset 0 0 $selected_bg_color; - } - - &:hover .overview-icon, - &:focus .overview-icon, - &:selected .overview-icon { - background-color: transparentize($osd_fg_color,.6); - transition-duration: 0ms; - border-image: none; - background-image: none; - } -} - -.app-well-app.running { - > .overview-icon { - @extend %reset_style; - background: none !important; - - text-shadow: black 0px 0px; - border-image: url("common-assets/dash/button-running-bottom.svg") 5 5 5 5; - } - &:hover > .overview-icon { - @extend %reset_style; - - border-image: url("common-assets/dash/button-running-hover-bottom.svg") 5 5 5 5; - } - &:active > .overview-icon, - &:checked > .overview-icon { - @extend %reset_style; - - border-image: url("common-assets/dash/button-running-active-bottom.svg") 5 5 5 5; - } -} - -%icon_tile { - color: $_shell_fg_color; - border-radius: 2px; - padding: 6px; - border: 1px solid transparent; - transition-duration: 0ms; - text-align: center; -} - -// -// Collections -// -.app-well-app.app-folder { - - > .overview-icon { - background-color: darken($dark_sidebar_bg, 8%); - border: 1px solid transparentize(darken($dark_sidebar_bg, 25%), 0.5); - } - - &:hover > .overview-icon { - background-color: lighten($dark_sidebar_bg, 3%); - } - - &:active > .overview-icon, &:checked > .overview-icon { - color: $selected_fg_color; - background-color: $selected_bg_color; - box-shadow: none; - } - - &:focus > .overview-icon { - background-color: $selected_bg_color; - } -} - -.app-folder-popup { //expanded collection - -arrow-border-radius: 2px; - -arrow-background-color: darken($dark_sidebar_bg, 8%); - -arrow-border-color: transparentize(darken($dark_sidebar_bg, 25%), 0.5); - -arrow-border-width: 1px; - -arrow-base: 5; - -arrow-rise: 5; -} - -.app-folder-popup-bin { padding: 5px; } -.app-folder-icon { - padding: 5px; - spacing-rows: 5px; - spacing-columns: 5px; -} - -.page-indicator { - padding: 15px 20px; - - .page-indicator-icon { - width: 18px; - height: 18px; - background-image: url(common-assets/misc/page-indicator-inactive.svg); - } - - &:hover .page-indicator-icon { background-image: url(common-assets/misc/page-indicator-hover.svg); } - &:active .page-indicator-icon { background-image: url(common-assets/misc/page-indicator-active.svg); } - &:checked .page-indicator-icon, - &:checked:active { background-image: url(common-assets/misc/page-indicator-checked.svg); } -} - -.no-frequent-applications-label { @extend %status_text; } - -.app-well-app > .overview-icon.overview-icon-with-label, -.grid-search-result .overview-icon.overview-icon-with-label { - padding: 10px 8px 5px 8px; - spacing: 4px; -} - -// -// Workspace pager -// -.workspace-thumbnails, -.workspace-thumbnails-left { - &, &:rtl { - visible-width: 40px; //amount visible before hover - spacing: 11px; - padding: 12px; - } -} - -.workspace-thumbnails, -.workspace-thumbnails-left:rtl { - padding-right: 7px; - border-image: url("common-assets/dash/dash-right.svg") 9 9 9 9; -} - -.workspace-thumbnails:rtl, -.workspace-thumbnails-left { - padding-left: 7px; - border-image: url("common-assets/dash/dash-left.svg") 9 9 9 9; -} - -.workspace-thumbnail-indicator { - border: 4px solid transparentize($selected_bg_color, 0.2); - border-radius: 1px; - padding: 1px; -} - -//Some hacks I don't even -.search-display > StBoxLayout, -.all-apps, -.frequent-apps > StBoxLayout { - // horizontal padding to make sure scrollbars or dash don't overlap content - padding: 0px 88px 10px 88px; -} - -%status_text { - font-size: 2em; - font-weight: bold; - color: $fg_color; -} - -// -// Notifications & Message Tray -// - -#message-tray { - background: opacify($osd_bg_color, 1); - background-repeat: repeat; - height: 72px; - border: solid transparentize(black, 0.4); - border-width: 0; - border-top-width: 1px; -} - -.message-tray { - - &-summary { height: 72px; } - - &-menu-button { - - StIcon { - padding: 0 20px; - color: transparentize($osd_fg_color, 0.4); - icon-size: 24px; - } - &:hover StIcon, - &:active StIcon, - &:focus StIcon { color: $osd_fg_color; } - } -} - -.no-messages-label { - color: transparentize($osd_fg_color, 0.5); -} - -.summary-boxpointer { - -arrow-border-radius: 3px; - -arrow-background-color: rgba(0,0,0,0.0); - -arrow-base: 0; - -arrow-rise: 0; - -boxpointer-gap: 0; - color: $fg_color; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - padding: 7px; - - .notification { - border-radius: 3px; - background: none !important; - border-image: none; - padding-bottom: 12px; - } - - #summary-right-click-menu { - color: $osd_fg_color; - padding-top: 12px; - padding-bottom: 12px; - - .popup-menu-item:active { - color: $selected_fg_color; - background-color: $selected_bg_color; - } - } - - &-stack-scrollview { - max-height: 18em; - padding-top: 8px; - padding-bottom: 8px; - - &:ltr { padding-right: 8px; } - &:rtl { padding-left: 8px; } - } -} - -.summary-source { - border-radius: 4px; - padding: 0 6px 0 6px; - transition-duration: 100ms; - - &-counter { - background-image: url("common-assets/misc/summary-counter.svg"); - background-size: 26px; - color: $selected_fg_color; - font-size: 10pt; - font-weight: bold; - height: 2.4em; - width: 2.4em; - -shell-counter-overlap-x: 8px; - -shell-counter-overlap-y: 8px; - } - - &-button { - border-radius: 2px; - padding: 6px 3px 6px 3px; - - &:last-child:ltr { padding-right: 6px; } - &:last-child:rtl { padding-left: 6px; } - - .summary-source { @include button(osd) }; - - &:hover .summary-source { @include button(osd-hover) } - - &:focus .summary-source, - &:selected .summary-source { @include button(osd-active); } - } -} - -//Notifications -.url-highlighter { link-color: $link_color; } - -.notification, #notification-container { width: 34em; } - -.notification { - font-size: 1em; - color: $osd_fg_color; - padding: 12px 12px 12px 12px; - spacing-rows: 4px; - spacing-columns: 10px; - border-image: url("common-assets/misc/notification.svg") 9 9 9 9; - - &.multi-line-notification { padding-bottom: 12px; } - - &-unexpanded { - min-height: 40px; // We want to force the actor at a specific size, irrespective - height: 40px; // of its minimum and preferred size, so we override both - } - - &-with-image { min-height: 159px; } - - &-scrollview { - max-height: 10em; - -st-vfade-offset: 0px; - - &:ltr > StScrollBar { padding-left: 6px; } - &:rtl > StScrollBar { padding-right: 6px; } - } - - &-body { spacing: 5px; } - - &-actions { - padding-top: 12px; - spacing: 10px; - } - - &-button { - -st-natural-width: 140px; - padding: 4px 4px 5px; - background-gradient-direction: none; - - @extend %osd_button; - - &:focus { - -st-natural-width: 140px; - padding: 4px 4px 5px; - } - } - - &-icon-button { - border-radius: 5px; - padding: 5px; - background-gradient-direction: none; - - @extend %osd_button; - - &:focus { padding: 5px; } - - > StIcon { - icon-size: 16px; - padding: 8px; - } - } - - StEntry { - padding: 7px; - caret-color: $osd_fg_color; - - @include entry(osd); - - &:focus { @include entry(osd-focus); } - } -} - -.secondary-icon { icon-size: 1.09em; } - -// Chat Bubbles -.chat-body { spacing: 5px; } -.chat-response { margin: 5px; } -.chat-log-message { color: $osd_fg_color; } -.chat-new-group { padding-top: 1em; } -.chat-received { - padding-left: 4px; - - &:rtl { padding-left: 0px; padding-right: 4px; } -} - -StEntry.chat-response { - padding: 7px; - @include entry(osd); - - &:focus { @include entry(osd-focus); } -} - -.chat-sent { - padding-left: 18pt; - color: $selected_bg_color; - - &:rtl { padding-left: 0; padding-right: 18pt; } -} - -.chat-meta-message { - padding-left: 4px; - font-size: 9pt; - font-weight: bold; - color: transparentize($osd_fg_color, 0.4); - - &:rtl { padding-left: 0; padding-right: 4px; } -} - -.subscription-message { font-style: italic; } - -// Hotplug -.hotplug-transient-box { - spacing: 6px; - padding: 2px 72px 2px 12px; -} - -.hotplug-notification-item { - padding: 2px 10px; - @extend %osd_button; - - &:focus { padding: 2px 10px; } -} - -.hotplug-notification-item-icon { - icon-size: 24px; - padding: 2px 5px; -} - -.hotplug-resident-box { spacing: 8px; } - -.hotplug-resident-mount { - spacing: 8px; - border-radius: 2px 0 0 2px; - background-gradient-direction: none; - - @extend %osd_button; -} - -.hotplug-resident-mount-label { - color: inherit; - padding-left: 6px; -} - -.hotplug-resident-mount-icon { - icon-size: 24px; - padding-left: 6px; -} - -.hotplug-resident-eject-icon { - icon-size: 16px; -} - -.hotplug-resident-eject-button { - padding: 7px; - border-radius: 0 2px 2px 0; - color: $osd_fg_color; - border-left: none; -} - -// Magnifier - -.magnifier-zoom-region { - border: 2px solid $selected_bg_color; - &.full-screen { border-width: 0; } -} - -// -// On-Screen Keyboard -// -#keyboard { - background-color: $osd_bg_color; - border-width: 0; - border-top-width: 1px; - border-color: transparentize(black, 0.8); -} - -.keyboard-layout { - spacing: 10px; - padding: 10px; -} - -.keyboard-row { - spacing: 15px; -} - -.keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; - font-weight: bold; - border-radius: 3px; - box-shadow: none; - background-gradient-direction: none; - - @include button(osd); - - &:hover { @include button(osd-hover); } - &:active, &:checked { @include button(osd-active); } - - &:grayed { @include button(osd-insensitive); } -} - -.keyboard-subkeys { //long press on a key popup - color: $osd_fg_color; - padding: 5px; - -arrow-border-radius: 2px; - -arrow-background-color: $osd_bg_color; - -arrow-border-width: 1px; - -arrow-border-color: transparentize(black, 0.6);; - -arrow-base: 20px; - -arrow-rise: 10px; - -boxpointer-gap: 5px; -} - -// -// IBus Candidate Popup -// -.candidate-popup-content { - padding: 0.5em; - spacing: 0.3em; - color: $osd_fg_color; - font-size: 1.15em; -} - - .candidate-index { - padding: 0 0.5em 0 0; - color: lighten($osd_fg_color, 10%); - } - - .candidate-box { - padding: 0.3em 0.5em 0.3em 0.5em; - border-radius: 2px; - color: $osd_fg_color; - &:selected,&:hover { background-color: $selected_bg_color; color: $selected_fg_color; } - } - - .candidate-page-button-box { - height: 2em; - .vertical & { padding-top: 0.5em; } - .horizontal & { padding-left: 0.5em; } - } - - .candidate-page-button { - padding: 4px; - } - - .candidate-page-button-previous { border-radius: 2px 0px 0px 2px; border-right-width: 0; } - .candidate-page-button-next { border-radius: 0px 2px 2px 0px; } - .candidate-page-button-icon { icon-size: 1em; } - -// -// Auth Dialogs & Screen Shield -// -.framed-user-icon { - background-size: contain; - border: 0px solid transparent; - color: $fg_color; - border-radius: 2px; - &:hover { - border-color: transparent; - color: lighten($osd_fg_color,30%); - } -} - -// -// Login Dialog -// -.login-dialog-banner-view { - padding-top: 24px; - max-width: 23em; -} - -.login-dialog { - //reset - border: none; - background-color: transparent; - - .modal-dialog-button-box { spacing: 3px; } - .modal-dialog-button { - padding: 3px 18px; - &:default { - @include button(normal); - &:hover,&:focus { @include button(hover); } - &:active { @include button(active); } - &:insensitive { @include button(insensitive); } - } - } -} - - .login-dialog-logo-bin { padding: 24px 0px; } - .login-dialog-banner { color: darken($osd_fg_color,10%); } - .login-dialog-button-box { spacing: 5px; } - .login-dialog-message-warning { color: $warning_color; } - .login-dialog-message-hint { padding-top: 0; padding-bottom: 20px; } - .login-dialog-user-selection-box { - padding: 100px 0px; - .login-dialog-not-listed-label { - padding-left: 2px; - .login-dialog-not-listed-button:focus &, - .login-dialog-not-listed-button:hover & { - color: $osd_fg_color; - } - } - } - .login-dialog-not-listed-label { - font-size: 90%; - font-weight: bold; - color: darken($osd_fg_color,30%); - padding-top: 1em; - } - - .login-dialog-user-list-view { -st-vfade-offset: 1em; } - .login-dialog-user-list { - spacing: 12px; - padding: .2em; - width: 23em; - &:expanded .login-dialog-user-list-item:focus { background-color: $selected_bg_color; color: $selected_fg_color; } - &:expanded .login-dialog-user-list-item:logged-in { border-right: 2px solid $selected_bg_color; } - } - .login-dialog-user-list-item { - border-radius: 5px; - padding: .2em; - color: darken($osd_fg_color,30%); - &:ltr { padding-right: 1em; } - &:rtl { padding-left: 1em; } - &:hover { background-color: $selected_bg_color; color: $selected_fg_color; } - .login-dialog-timed-login-indicator { - height: 2px; - margin: 2px 0 0 0; - background-color: $osd_fg_color; - } - &:focus .login-dialog-timed-login-indicator { background-color: $selected_fg_color; } - } - - .login-dialog-username, - .user-widget-label { - color: $osd_fg_color; - font-size: 120%; - font-weight: bold; - text-align: left; - padding-left: 15px; - } - .user-widget-label { - &:ltr { padding-left: 18px; } - &:rtl { padding-right: 18px; } - } - - .login-dialog-prompt-layout { - padding-top: 24px; - padding-bottom: 12px; - spacing: 8px; - width: 23em; - } - - .login-dialog-prompt-label { - color: darken($osd_fg_color, 20%); - font-size: 110%; - padding-top: 1em; - } - - .login-dialog-session-list-button StIcon { - icon-size: 1.25em; - } - - .login-dialog-session-list-button { - color: darken($osd_fg_color,30%); - &:hover,&:focus { color: $osd_fg_color; } - &:active { color: darken($osd_fg_color, 50%); } - } - -// -// Screen Shield -// -.screen-shield-arrows { - padding-bottom: 3em; -} - -.screen-shield-arrows Gjs_Arrow { - color: white; - width: 80px; - height: 48px; - -arrow-thickness: 12px; - -arrow-shadow: 0 1px 1px rgba(0,0,0,0.4); -} - -.screen-shield-clock { - color: white; - text-shadow: 0px 1px 2px rgba(0,0,0,0.6); - font-weight: bold; - text-align: center; - padding-bottom: 1.5em; -} - -.screen-shield-clock-time { - font-size: 72pt; - text-shadow: 0px 2px 2px rgba(0,0,0,0.4); -} - -.screen-shield-clock-date { font-size: 28pt; } - -.screen-shield-notifications-container { - spacing: 6px; - width: 30em; - background-color: transparent; - max-height: 500px; - .summary-notification-stack-scrollview { - padding-top: 0; - padding-bottom: 0; - } - - .notification, - .screen-shield-notification-source { - padding: 12px 6px; - border: 1px solid $_bubble_borders_color; - background-color: transparentize($osd_bg_color,0.5); - color: $_bubble_fg_color; - border-radius: 4px; - } - .notification { margin-right: 15px; } //compensate for space allocated to the scrollbar -} - - -.screen-shield-notification-label { - font-weight: bold; - padding: 0px 0px 0px 12px; -} - -.screen-shield-notification-count-text { padding: 0px 0px 0px 12px; } - -#panel.lock-screen { background-color: transparentize($_bubble_bg_color, 0.5); } - -.screen-shield-background { //just the shadow, really - background: black; - box-shadow: 0px 2px 4px transparentize(black,0.6); -} - -#lockDialogGroup { - background: #2e3436 url(misc/noise-texture.png); - background-repeat: repeat; -} - -#screenShieldNotifications { - StButton#vhandle, StButton#hhandle { - background-color: transparentize($bg_color,0.7); - &:hover, &:focus { background-color: transparentize($bg_color,0.5); } - &:active { background-color: transparentize($selected_bg_color,0.5); } - } -} - -// -// Looking Glass -// -#LookingGlassDialog { - spacing: 4px; - padding: 8px 8px 10px 8px; - background-color: transparentize(black, 0.3); - border: 1px solid black; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 2px; - color: $osd_fg_color; - - & > #Toolbar { - padding: 3px; - border: none; - background-color: transparent; - border-radius: 0px; - } - .labels { spacing: 4px; } - - .notebook-tab { - -natural-hpadding: 12px; - -minimum-hpadding: 6px; - font-weight: bold; - color: $osd_fg_color; - transition-duration: 100ms; - padding-left: .3em; - padding-right: .3em; - - &:hover { - color: $_shell_fg_color; - text-shadow: black 0px 2px 2px; - } - &:selected { - border-bottom-width: 0px; - color: $selected_bg_color; - text-shadow: black 0px 2px 2px; - } - } - StBoxLayout#EvalBox { padding: 4px; spacing: 4px; } - StBoxLayout#ResultsArea { spacing: 4px; } -} - -.lg-dialog { - - StEntry { - selection-background-color: $selected_bg_color; - selected-color: $selected_fg_color; - - @include entry(osd); - &:focus { @include entry(osd-focus); } - } - .shell-link { - color: $link_color; - &:hover { color: lighten($link_color,10%); } - } -} - -.lg-completions-text { - font-size: .9em; - font-style: italic; -} - -.lg-obj-inspector-title { - spacing: 4px; -} - -.lg-obj-inspector-button { - border: 1px solid gray; - padding: 4px; - border-radius: 4px; - &:hover { border: 1px solid #fdf6e3; } -} - -#lookingGlassExtensions { padding: 4px; } - -.lg-extensions-list { - padding: 4px; - spacing: 6px; -} - -.lg-extension { - border: 1px solid $osd_borders_color; - border-radius: 2px; - background-color: $osd_bg_color; - padding: 4px; -} - -.lg-extension-name { - font-weight: bold; -} - -.lg-extension-meta { - spacing: 6px; -} - -#LookingGlassPropertyInspector { - background: transparentize(black, 0.3); - border: 1px solid grey; - border-radius: 2px; - padding: 6px; -} diff --git a/common/gnome-shell/3.14/sass/_drawing.scss b/common/gnome-shell/3.14/sass/_drawing.scss deleted file mode 100644 index 23aed9a..0000000 --- a/common/gnome-shell/3.14/sass/_drawing.scss +++ /dev/null @@ -1,167 +0,0 @@ -// Drawing mixins - -// generic drawing of more complex things - -// provide font size in rem, with px fallback -@mixin fontsize($size: 24, $base: 16) { - font-size: round($size) + pt; - //font-size: ($size / $base) * 1rem; -} - -// Entries - -@mixin entry($t, $dark:false) { -// -// Entries drawing function -// - //@extend %reset_style; - - @if $t==normal { - color: $text_color; - background-color: $entry_bg; - border: 1px solid $entry_border; - box-shadow: inset 0 2px 4px transparentize($entry_bg, 0.95); - } - - @if $t==focus { - color: $fg_color; - background-color: $entry_bg; - border: 1px solid $selected_bg_color; - box-shadow: inset 0 2px 4px transparentize($entry_bg, 0.95); - } - - @if $t==insensitive { - color: $insensitive_fg_color; - background-color: mix($entry_bg, $bg_color, 55%); - border-color: 1px solid mix($entry_border, $bg_color, 55%); - box-shadow: inset 0 2px 4px transparentize(mix($entry_bg, $bg_color, 55%), 0.95); - } - - @if $t==osd { - color: $osd_fg_color; - background-color: $osd_entry_bg; - border: 1px solid $osd_entry_border; - box-shadow: inset 0 2px 4px transparentize(black, 0.95); - } - - @if $t==osd-focus { - color: $selected_fg_color; - background-color: $selected_bg_color; - border: 1px solid $selected_bg_color; - box-shadow: inset 0 2px 4px transparentize(black, 0.95); - } - - @if $t==osd-insensitive { - color: transparentize($osd_fg_color, 0.45); - background-color: transparentize($osd_entry_bg, 0.15); - border: 1px solid $osd_entry_border; - box-shadow: inset 0 2px 4px transparentize(black, 0.95); - } -} - -// Buttons - -@mixin button($t) { -// -// Button drawing function -// - //@extend %reset_style; - - text-shadow: 0 1px transparentize($base_color, 1); - - @if $t==normal { - // - // normal button - // - color: $fg_color; - background-color: $button_bg; - border: 1px solid $button_border; - box-shadow: inset 0 2px 4px transparentize($button_bg, 0.95); - } - - @else if $t==focus { - // - // focused button - // - color: $fg_color; - background-color: $button_bg; - border: 1px solid $selected_bg_color; - box-shadow: inset 0 2px 4px transparentize($button_bg, 0.95); - } - - @else if $t==focus-hover { - // - // focused button - // - color: $fg_color; - background-color: $button_bg; - border: 1px solid $selected_bg_color; - box-shadow: inset 0 2px 4px transparentize($button_bg, 0.95); - } - - @else if $t==hover { - // - // hovered button - // - color: $fg_color; - background-color: lighten($button_bg, 5%); - border: 1px solid $button_border; - box-shadow: inset 0 2px 4px transparentize(lighten($button_bg, 5%), 0.95); - } - - @else if $t==active { - // - // pushed button - // - color: $selected_fg_color; - background-color: $selected_bg_color; - border: 1px solid $selected_bg_color; - box-shadow: inset 0 1px transparentize($selected_bg_color, 0.95); - } - - @else if $t==insensitive { - // - // insensitive button - // - color: $insensitive_fg_color; - border: 1px solid transparentize($button_border, 0.45); - background-color: transparentize($button_bg, 0.45); - box-shadow: inset 0 2px 4px transparentize($button_bg, 0.95); - } - - @else if $t==osd { - // - // normal osd button - // - color: $osd_fg_color; - border: 1px solid darken($osd_button_border, 12%); - background-color: $osd_button_bg; - } - - @else if $t==osd-hover { - // - // active osd button - // - color: $osd_fg_color; - border: 1px solid darken($osd_button_border, 22%); - background-color: opacify(lighten($osd_button_bg, 7%), 0.1); - } - - @else if $t==osd-active { - // - // active osd button - // - color: $selected_fg_color; - border: 1px solid $selected_bg_color; - background-color: $selected_bg_color; - } - - @else if $t==osd-insensitive { - // - // insensitive osd button - // - color: $osd_insensitive_fg_color; - border: 1px solid darken($osd_button_border, 12%); - background-color: transparentize($osd_button_bg, 0.15); - } -} diff --git a/common/gnome-shell/3.14/sass/gnome-shell-dark.scss b/common/gnome-shell/3.14/sass/gnome-shell-dark.scss deleted file mode 100644 index 4a61461..0000000 --- a/common/gnome-shell/3.14/sass/gnome-shell-dark.scss +++ /dev/null @@ -1,7 +0,0 @@ -$variant: 'dark'; -$transparency: 'true'; -$darker: 'false'; - -@import "_colors"; //use gtk colors -@import "_drawing"; -@import "_common"; diff --git a/common/gnome-shell/3.14/sass/gnome-shell.scss b/common/gnome-shell/3.14/sass/gnome-shell.scss deleted file mode 100644 index 674f742..0000000 --- a/common/gnome-shell/3.14/sass/gnome-shell.scss +++ /dev/null @@ -1,7 +0,0 @@ -$variant: 'light'; -$transparency: 'true'; -$darker: 'false'; - -@import "_colors"; //use gtk colors -@import "_drawing"; -@import "_common"; diff --git a/common/gnome-shell/3.16/common-assets/dash/dash-left.svg b/common/gnome-shell/3.16/common-assets/dash/dash-left.svg deleted file mode 100644 index 0571ee3..0000000 --- a/common/gnome-shell/3.16/common-assets/dash/dash-left.svg +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/dash/dash-placeholder.svg b/common/gnome-shell/3.16/common-assets/dash/dash-placeholder.svg deleted file mode 100644 index ff43dfc..0000000 --- a/common/gnome-shell/3.16/common-assets/dash/dash-placeholder.svg +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/dash/dash-right.svg b/common/gnome-shell/3.16/common-assets/dash/dash-right.svg deleted file mode 100644 index 1fabd7f..0000000 --- a/common/gnome-shell/3.16/common-assets/dash/dash-right.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/dash/running1.svg b/common/gnome-shell/3.16/common-assets/dash/running1.svg deleted file mode 100644 index 80a50e9..0000000 --- a/common/gnome-shell/3.16/common-assets/dash/running1.svg +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/dash/running2.svg b/common/gnome-shell/3.16/common-assets/dash/running2.svg deleted file mode 100644 index 7921561..0000000 --- a/common/gnome-shell/3.16/common-assets/dash/running2.svg +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/dash/running3.svg b/common/gnome-shell/3.16/common-assets/dash/running3.svg deleted file mode 100644 index abe61a5..0000000 --- a/common/gnome-shell/3.16/common-assets/dash/running3.svg +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/dash/running4.svg b/common/gnome-shell/3.16/common-assets/dash/running4.svg deleted file mode 100644 index a74851b..0000000 --- a/common/gnome-shell/3.16/common-assets/dash/running4.svg +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/menu/menu-hover.svg b/common/gnome-shell/3.16/common-assets/menu/menu-hover.svg deleted file mode 100644 index 6cdbdbe..0000000 --- a/common/gnome-shell/3.16/common-assets/menu/menu-hover.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/menu/menu-separator.svg b/common/gnome-shell/3.16/common-assets/menu/menu-separator.svg deleted file mode 100644 index ce3763c..0000000 --- a/common/gnome-shell/3.16/common-assets/menu/menu-separator.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/misc/bg.svg b/common/gnome-shell/3.16/common-assets/misc/bg.svg deleted file mode 100644 index 1e6d24d..0000000 --- a/common/gnome-shell/3.16/common-assets/misc/bg.svg +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/misc/close-active.svg b/common/gnome-shell/3.16/common-assets/misc/close-active.svg deleted file mode 100644 index 8c060c8..0000000 --- a/common/gnome-shell/3.16/common-assets/misc/close-active.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - -image/svg+xml \ No newline at end of file diff --git a/common/gnome-shell/3.16/common-assets/misc/close-hover.svg b/common/gnome-shell/3.16/common-assets/misc/close-hover.svg deleted file mode 100644 index 0f6121d..0000000 --- a/common/gnome-shell/3.16/common-assets/misc/close-hover.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - -image/svg+xml \ No newline at end of file diff --git a/common/gnome-shell/3.16/common-assets/misc/close.svg b/common/gnome-shell/3.16/common-assets/misc/close.svg deleted file mode 100644 index e44adc7..0000000 --- a/common/gnome-shell/3.16/common-assets/misc/close.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - -image/svg+xml \ No newline at end of file diff --git a/common/gnome-shell/3.16/common-assets/misc/corner-ripple-ltr.svg b/common/gnome-shell/3.16/common-assets/misc/corner-ripple-ltr.svg deleted file mode 100644 index 9409960..0000000 --- a/common/gnome-shell/3.16/common-assets/misc/corner-ripple-ltr.svg +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/misc/corner-ripple-rtl.svg b/common/gnome-shell/3.16/common-assets/misc/corner-ripple-rtl.svg deleted file mode 100644 index e9237cd..0000000 --- a/common/gnome-shell/3.16/common-assets/misc/corner-ripple-rtl.svg +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/misc/more-results.svg b/common/gnome-shell/3.16/common-assets/misc/more-results.svg deleted file mode 100644 index 6645d74..0000000 --- a/common/gnome-shell/3.16/common-assets/misc/more-results.svg +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/misc/osd.svg b/common/gnome-shell/3.16/common-assets/misc/osd.svg deleted file mode 100644 index 57addde..0000000 --- a/common/gnome-shell/3.16/common-assets/misc/osd.svg +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/misc/page-indicator-active.svg b/common/gnome-shell/3.16/common-assets/misc/page-indicator-active.svg deleted file mode 100644 index 846f13d..0000000 --- a/common/gnome-shell/3.16/common-assets/misc/page-indicator-active.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/misc/page-indicator-checked.svg b/common/gnome-shell/3.16/common-assets/misc/page-indicator-checked.svg deleted file mode 100644 index 053ffe7..0000000 --- a/common/gnome-shell/3.16/common-assets/misc/page-indicator-checked.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/misc/page-indicator-hover.svg b/common/gnome-shell/3.16/common-assets/misc/page-indicator-hover.svg deleted file mode 100644 index 1a2692a..0000000 --- a/common/gnome-shell/3.16/common-assets/misc/page-indicator-hover.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/misc/page-indicator-inactive.svg b/common/gnome-shell/3.16/common-assets/misc/page-indicator-inactive.svg deleted file mode 100644 index 3c066d0..0000000 --- a/common/gnome-shell/3.16/common-assets/misc/page-indicator-inactive.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/misc/process-working.svg b/common/gnome-shell/3.16/common-assets/misc/process-working.svg deleted file mode 100644 index 444961b..0000000 --- a/common/gnome-shell/3.16/common-assets/misc/process-working.svg +++ /dev/null @@ -1,287 +0,0 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/misc/ws-switch-arrow-down.png b/common/gnome-shell/3.16/common-assets/misc/ws-switch-arrow-down.png deleted file mode 100644 index a674ad58d7ca2c64e0d5a512ddd9a21578c643e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 879 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGoY)RhkE)4%caKYZ?lYt_f1s;*b zKpodXn9)gNb_Gz7y~NYkmHi$oGq)%MYv{iz3=B+vJY5_^DsH{Kbu!;KQRdjk>mp)W zfwvZQaV0HmZgW|kmaCtoEOy1|NR(1iviii1y(U7^+}VfY6($N;JNE`onIYsHxcADB zt(N9HyLVZB-}Bz~x$Sqm`L*YN?md5b-a}hcHy3PRiBjMV?FI4~J|BOrYDhldoA9Ha z`|H+*If4t!TOXP;Iwy*~sAgo?-&m{3Rd4#i^39`50S@b0_KCFY=lT(H=Fp`eAaAc+ z`~9#NQSp4NPrPnCPW++WP#!2Y<;jJc9jZNyw{5uUJwIF#JGx@ErJCE1nT;LKXJz&5 z!jE6 zoBaGH5zc(4G{7lebN$Z)#iu3h8FcsUJ8^~SyN-C{!f=M|odw7K%S&c17N4iHVP!}0Ii|ejFYl`K3AM>g*l&Y0rQ0 zmCP<;(kTfzl(A5#VdlZ_(YKF3=+Shac6;AX)f|cEH;iT8cvo)qjawx&jcL8?lnr+8 zXM`RoJ)QiIrEI1bgAVh(2)1vm5zId9>mub|i*L9cBDBD?V(a$1QaiFLd-fl24DM`r zdLVkzXZ9QUT9OxJa^9;6{$o@=#-Mx9EI&r;`=;PW)lN4)@N0hj=p7;H%-KG*B-mZQ1q8g8=( zU4>pJcj_+G{t+N_EHj}gs5suKyhG@hXkDiF3(bH-lCARooHHN14&Aqz%l@9ww&zm| sFVdQ&MBb@0Ddig1ONa4 diff --git a/common/gnome-shell/3.16/common-assets/misc/ws-switch-arrow-up.png b/common/gnome-shell/3.16/common-assets/misc/ws-switch-arrow-up.png deleted file mode 100644 index 1b6f6111418f3a8e4f83917db01e152bbb5002c4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 853 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGoY)RhkE)4%caKYZ?lYt_f1s;*b zKpodXn9)gNb_Gz7y~NYkmHi$oGq;G*m6`KG85o!zdAc};RNQ)d)7wKdQKJ20{;4h8 zQ#rPEZP31Ja=M9YS45e!xA{fZ)vgl+);4o+MTuXuYT70!C>S)mD@=^l(Pj0CQ}328 zt?;}!Pt2--%X&`nzWlUvXMXOX#*Jz(&7H>1ePpn{M5%R1lhUZ=_;Twl-jvG#gH=c;FVb;1TN zW$T!PL(bdPCG&l(4d24D`$u(yZo2zH+>YAH>?DN)|75k^E{bQ|osM+Qpr4IH7 zcPu#c@^L<=!M^u%y!z$$i@i{mNe}t+{>NI^qE?3A)iP&{ge%@8aDFZ9w7(ztN2=X;DwDrX`YZNr&#M1a z9II{rOD|@e65^_32Fa?#y$wtXcQp<3H=0Q=9E&?mz$K&{yk6TPhg7!~ix*PgEBOUlJ2pnF2S=+c)ZO5+V z(+^LG&8)kV+>>c~Y|eL^^>>d57~GX8J|waEx - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/panel/activities.svg b/common/gnome-shell/3.16/common-assets/panel/activities.svg deleted file mode 100644 index b3bcad9..0000000 --- a/common/gnome-shell/3.16/common-assets/panel/activities.svg +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/panel/panel-overview.svg b/common/gnome-shell/3.16/common-assets/panel/panel-overview.svg deleted file mode 100644 index 0c21ba4..0000000 --- a/common/gnome-shell/3.16/common-assets/panel/panel-overview.svg +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/panel/panel.svg b/common/gnome-shell/3.16/common-assets/panel/panel.svg deleted file mode 100644 index 1bd946e..0000000 --- a/common/gnome-shell/3.16/common-assets/panel/panel.svg +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/switch/switch-off-selected.svg b/common/gnome-shell/3.16/common-assets/switch/switch-off-selected.svg deleted file mode 100644 index a6bca3a..0000000 --- a/common/gnome-shell/3.16/common-assets/switch/switch-off-selected.svg +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/common-assets/switch/switch-on-selected.svg b/common/gnome-shell/3.16/common-assets/switch/switch-on-selected.svg deleted file mode 100644 index ccf2299..0000000 --- a/common/gnome-shell/3.16/common-assets/switch/switch-on-selected.svg +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/checkbox/checkbox-checked-focused.svg b/common/gnome-shell/3.16/dark-assets/checkbox/checkbox-checked-focused.svg deleted file mode 100644 index 4789a32..0000000 --- a/common/gnome-shell/3.16/dark-assets/checkbox/checkbox-checked-focused.svg +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/checkbox/checkbox-checked.svg b/common/gnome-shell/3.16/dark-assets/checkbox/checkbox-checked.svg deleted file mode 100644 index 8f431e7..0000000 --- a/common/gnome-shell/3.16/dark-assets/checkbox/checkbox-checked.svg +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/checkbox/checkbox-unchecked-focused.svg b/common/gnome-shell/3.16/dark-assets/checkbox/checkbox-unchecked-focused.svg deleted file mode 100644 index 77c4256..0000000 --- a/common/gnome-shell/3.16/dark-assets/checkbox/checkbox-unchecked-focused.svg +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/checkbox/checkbox-unchecked.svg b/common/gnome-shell/3.16/dark-assets/checkbox/checkbox-unchecked.svg deleted file mode 100644 index d7ce8c4..0000000 --- a/common/gnome-shell/3.16/dark-assets/checkbox/checkbox-unchecked.svg +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/menu/menu.svg b/common/gnome-shell/3.16/dark-assets/menu/menu.svg deleted file mode 100644 index 2566cb6..0000000 --- a/common/gnome-shell/3.16/dark-assets/menu/menu.svg +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/menu/submenu-open.svg b/common/gnome-shell/3.16/dark-assets/menu/submenu-open.svg deleted file mode 100644 index bd817b0..0000000 --- a/common/gnome-shell/3.16/dark-assets/menu/submenu-open.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/menu/submenu.svg b/common/gnome-shell/3.16/dark-assets/menu/submenu.svg deleted file mode 100644 index ebab963..0000000 --- a/common/gnome-shell/3.16/dark-assets/menu/submenu.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/misc/button-box.svg b/common/gnome-shell/3.16/dark-assets/misc/button-box.svg deleted file mode 100644 index 48e1932..0000000 --- a/common/gnome-shell/3.16/dark-assets/misc/button-box.svg +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/misc/calendar-arrow-left-hover.svg b/common/gnome-shell/3.16/dark-assets/misc/calendar-arrow-left-hover.svg deleted file mode 100644 index 04ffc1b..0000000 --- a/common/gnome-shell/3.16/dark-assets/misc/calendar-arrow-left-hover.svg +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/misc/calendar-arrow-left.svg b/common/gnome-shell/3.16/dark-assets/misc/calendar-arrow-left.svg deleted file mode 100644 index 38c2368..0000000 --- a/common/gnome-shell/3.16/dark-assets/misc/calendar-arrow-left.svg +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/misc/calendar-arrow-right-hover.svg b/common/gnome-shell/3.16/dark-assets/misc/calendar-arrow-right-hover.svg deleted file mode 100644 index df438fc..0000000 --- a/common/gnome-shell/3.16/dark-assets/misc/calendar-arrow-right-hover.svg +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/misc/calendar-arrow-right.svg b/common/gnome-shell/3.16/dark-assets/misc/calendar-arrow-right.svg deleted file mode 100644 index 2195675..0000000 --- a/common/gnome-shell/3.16/dark-assets/misc/calendar-arrow-right.svg +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/misc/message-active.svg b/common/gnome-shell/3.16/dark-assets/misc/message-active.svg deleted file mode 100644 index 9a72545..0000000 --- a/common/gnome-shell/3.16/dark-assets/misc/message-active.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/misc/message-close-active.svg b/common/gnome-shell/3.16/dark-assets/misc/message-close-active.svg deleted file mode 100644 index cd798c1..0000000 --- a/common/gnome-shell/3.16/dark-assets/misc/message-close-active.svg +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/misc/message-close-hover.svg b/common/gnome-shell/3.16/dark-assets/misc/message-close-hover.svg deleted file mode 100644 index 1456c46..0000000 --- a/common/gnome-shell/3.16/dark-assets/misc/message-close-hover.svg +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/misc/message-close.svg b/common/gnome-shell/3.16/dark-assets/misc/message-close.svg deleted file mode 100644 index a524ba5..0000000 --- a/common/gnome-shell/3.16/dark-assets/misc/message-close.svg +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/misc/message-hover.svg b/common/gnome-shell/3.16/dark-assets/misc/message-hover.svg deleted file mode 100644 index 0b5bd06..0000000 --- a/common/gnome-shell/3.16/dark-assets/misc/message-hover.svg +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/misc/message.svg b/common/gnome-shell/3.16/dark-assets/misc/message.svg deleted file mode 100644 index c9615d6..0000000 --- a/common/gnome-shell/3.16/dark-assets/misc/message.svg +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/misc/modal.svg b/common/gnome-shell/3.16/dark-assets/misc/modal.svg deleted file mode 100644 index fa76036..0000000 --- a/common/gnome-shell/3.16/dark-assets/misc/modal.svg +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/switch/switch-off.svg b/common/gnome-shell/3.16/dark-assets/switch/switch-off.svg deleted file mode 100644 index 3f50bda..0000000 --- a/common/gnome-shell/3.16/dark-assets/switch/switch-off.svg +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/dark-assets/switch/switch-on.svg b/common/gnome-shell/3.16/dark-assets/switch/switch-on.svg deleted file mode 100644 index 0c5f216..0000000 --- a/common/gnome-shell/3.16/dark-assets/switch/switch-on.svg +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/gnome-shell-dark.css b/common/gnome-shell/3.16/gnome-shell-dark.css deleted file mode 100644 index f0125af..0000000 --- a/common/gnome-shell/3.16/gnome-shell-dark.css +++ /dev/null @@ -1,1921 +0,0 @@ -/* Copyright 2009, 2015 Red Hat, Inc. - * - * Portions adapted from Mx's data/style/default.css - * Copyright 2009 Intel Corporation - * - * This program is free software; you can redistribute it and/or modify it - * under the terms and conditions of the GNU Lesser General Public License, - * version 2.1, as published by the Free Software Foundation. - * - * This program is distributed in the hope it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for - * more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. - */ -stage { - font-family: Futura Bk bt, Cantarell, Sans-Serif; - font-size: 9pt; - color: #657b83; } - -.button { - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - border-radius: 2px; } - -.button, .notification-banner .notification-button, -.notification-banner:hover .notification-button, -.notification-banner:focus .notification-button, .hotplug-notification-item { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #083e4b; - border: 1px solid #001317; - box-shadow: inset 0 1px rgba(8, 62, 75, 0.05); } - .button:focus, .notification-banner .notification-button:focus, .hotplug-notification-item:focus { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #083e4b; - border: 1px solid #268bd2; - box-shadow: inset 0 1px rgba(8, 62, 75, 0.05); } - .button:hover, .notification-banner .notification-button:hover, .hotplug-notification-item:hover { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #0a5062; - border: 1px solid #001317; - box-shadow: inset 0 1px rgba(10, 80, 98, 0.05); } - .button:hover:focus, .notification-banner .notification-button:hover:focus, .hotplug-notification-item:hover:focus { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #083e4b; - border: 1px solid #268bd2; - box-shadow: inset 0 1px rgba(8, 62, 75, 0.05); } - .button:active, .notification-banner .notification-button:active, .hotplug-notification-item:active, .button:active:focus, .notification-banner .notification-button:active:focus, .hotplug-notification-item:active:focus { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #001317; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - .button:insensitive, .notification-banner .notification-button:insensitive, .hotplug-notification-item:insensitive { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: rgba(101, 123, 131, 0.45); - border: 1px solid rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); - box-shadow: inset 0 1px rgba(8, 62, 75, 0.05); } - -.modal-dialog-button-box .button { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .modal-dialog-button-box .button:hover { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .modal-dialog-button-box .button:focus { - color: #268bd2; } - .modal-dialog-button-box .button:active { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #fdf6e3; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: #268bd2; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - .modal-dialog-button-box .button:insensitive { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #234b56; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - -StEntry { - padding: 7px; - caret-size: 1px; - selection-background-color: #268bd2; - selected-color: #fdf6e3; - transition-duration: 300ms; - border-radius: 3px; - color: #657b83; - background-color: #073642; - border: 1px solid #001317; - box-shadow: inset 0 2px 4px rgba(7, 54, 66, 0.05); } - StEntry:focus, StEntry:hover { - color: #657b83; - background-color: #073642; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(7, 54, 66, 0.05); } - StEntry:insensitive { - color: rgba(101, 123, 131, 0.45); - background-color: #04313d; - border-color: 1px solid #001e25; - box-shadow: inset 0 2px 4px rgba(4, 49, 61, 0.05); } - StEntry StIcon.capslock-warning { - icon-size: 16px; - warning-color: #cb4b16; - padding: 0 4px; } - -StScrollView.vfade { - -st-vfade-offset: 0px; } - -StScrollView.hfade { - -st-hfade-offset: 0px; } - -StScrollBar { - padding: 8px; } - StScrollView StScrollBar { - min-width: 5px; - min-height: 5px; } - StScrollBar StBin#trough { - background-color: rgba(7, 54, 66, 0.1); - border-radius: 8px; } - StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { - border-radius: 4px; - background-color: #284b55; - border: 0px solid; - margin: 0px; } - StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { - background-color: #1e434d; } - StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { - background-color: #268bd2; } - -.slider { - -slider-height: 4px; - -slider-background-color: #001317; - -slider-border-color: transparent; - -slider-active-background-color: #268bd2; - -slider-active-border-color: transparent; - -slider-border-width: 0; - -slider-handle-radius: 0px; - height: 18px; - border: 0 solid transparent; - border-right-width: 1px; - border-left-width: 5px; - color: transparent; } - .popup-menu-item.selected .slider { - -slider-background-color: rgba(0, 0, 0, 0.2); - -slider-active-background-color: #fdf6e3; } - -.check-box StBoxLayout { - spacing: .8em; } - -.check-box StBin { - width: 16px; - height: 16px; - background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } - -.check-box:focus StBin { - background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } - -.check-box:checked StBin { - background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } - -.check-box:focus:checked StBin { - background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } - -.toggle-switch { - width: 50px; - height: 20px; - background-size: contain; - background-image: url("dark-assets/switch/switch-off.svg"); } - .toggle-switch:checked { - background-image: url("dark-assets/switch/switch-on.svg"); } - .popup-menu-item.selected .toggle-switch { - background-image: url("common-assets/switch/switch-off-selected.svg"); } - .popup-menu-item.selected .toggle-switch:checked { - background-image: url("common-assets/switch/switch-on-selected.svg"); } - -.shell-link { - color: #78b9e6; } - .shell-link:hover { - color: #a3cfee; } - -.headline { - font-size: 110%; } - -.lightbox { - background-color: black; } - -.flashspot { - background-color: white; } - -.modal-dialog { - color: #657b83; - background-color: rgba(0, 43, 54, 0); - border: none; - border-image: url("dark-assets/misc/modal.svg") 9 9 9 67; - padding: 0 5px 6px 5px; } - .modal-dialog > StBoxLayout:first-child { - padding: 20px 10px 10px 10px; } - .modal-dialog-button-box { - spacing: 0; - margin: 0px; - padding: 14px 10px; - background: none; - border: none; - border-image: url("dark-assets/misc/button-box.svg") 9 9 9 9; } - .modal-dialog-button-box .button { - padding-top: 0; - padding-bottom: 0; - height: 30px; } - .modal-dialog .run-dialog-entry { - width: 21em; } - .modal-dialog .run-dialog-error-box { - padding-top: 5px; - spacing: 5px; } - .modal-dialog .run-dialog-label { - font-size: 0; } - -.show-processes-dialog-subject, -.mount-question-dialog-subject, -.end-session-dialog-subject { - font-size: 11pt; - font-weight: bold; - color: #657b83; } - -.end-session-dialog { - spacing: 42px; } - .end-session-dialog-list { - padding-top: 20px; } - .end-session-dialog-layout { - padding-left: 17px; } - .end-session-dialog-layout:rtl { - padding-right: 17px; } - .end-session-dialog-description { - width: 28em; - padding-bottom: 10px; } - .end-session-dialog-description:rtl { - text-align: right; } - .end-session-dialog-warning { - width: 28em; - color: #cb4b16; - padding-top: 6px; } - .end-session-dialog-warning:rtl { - text-align: right; } - .end-session-dialog-logout-icon { - border: 0px solid transparent; - border-radius: 2px; - width: 48px; - height: 48px; - background-size: contain; } - .end-session-dialog-shutdown-icon { - color: #657b83; - width: 48px; - height: 48px; } - .end-session-dialog-inhibitor-layout { - spacing: 16px; - max-height: 200px; - padding-right: 10px; - padding-left: 10px; } - .end-session-dialog-session-list, .end-session-dialog-app-list { - spacing: 1em; } - .end-session-dialog-list-header { - font-weight: bold; } - .end-session-dialog-list-header:rtl { - text-align: right; } - .end-session-dialog-app-list-item, .end-session-dialog-session-list-item { - spacing: 1em; } - .end-session-dialog-app-list-item-name, .end-session-dialog-session-list-item-name { - font-weight: bold; } - .end-session-dialog-app-list-item-description { - color: #708891; - font-size: 8pt; } - .end-session-dialog .button:last-child { - color: white; - background-color: #dc322f; - border-color: #dc322f; } - .end-session-dialog .button:last-child:hover { - color: white; - background-color: #e35956; - border-color: #e35956; } - .end-session-dialog .button:last-child:active { - color: white; - background-color: #cf2623; - border-color: #cf2623; } - -.shell-mount-operation-icon { - icon-size: 48px; } - -.show-processes-dialog, -.mount-question-dialog { - spacing: 24px; } - -.show-processes-dialog-subject, -.mount-question-dialog-subject { - padding-top: 10px; - padding-left: 17px; - padding-bottom: 6px; } - .show-processes-dialog-subject:rtl, - .mount-question-dialog-subject:rtl { - padding-left: 0px; - padding-right: 17px; } - -.mount-question-dialog-subject { - max-width: 500px; } - -.show-processes-dialog-description, -.mount-question-dialog-description { - padding-left: 17px; - width: 28em; } - .show-processes-dialog-description:rtl, - .mount-question-dialog-description:rtl { - padding-right: 17px; } - -.show-processes-dialog-app-list { - font-size: 10pt; - max-height: 200px; - padding-top: 24px; - padding-left: 49px; - padding-right: 32px; } - .show-processes-dialog-app-list:rtl { - padding-right: 49px; - padding-left: 32px; } - -.show-processes-dialog-app-list-item { - color: #4f6066; } - .show-processes-dialog-app-list-item:hover { - color: #657b83; } - .show-processes-dialog-app-list-item:ltr { - padding-right: 1em; } - .show-processes-dialog-app-list-item:rtl { - padding-left: 1em; } - -.show-processes-dialog-app-list-item-icon:ltr { - padding-right: 17px; } - -.show-processes-dialog-app-list-item-icon:rtl { - padding-left: 17px; } - -.show-processes-dialog-app-list-item-name { - font-size: 10pt; } - -.prompt-dialog { - width: 500px; } - .prompt-dialog-main-layout { - spacing: 24px; - padding: 10px; } - .prompt-dialog-message-layout { - spacing: 16px; } - .prompt-dialog-headline { - font-size: 12pt; - font-weight: bold; - color: #657b83; } - .prompt-dialog-descritption:rtl { - text-align: right; } - .prompt-dialog-password-box { - spacing: 1em; - padding-bottom: 1em; } - .prompt-dialog-error-label { - font-size: 9pt; - color: #dc322f; - padding-bottom: 8px; } - .prompt-dialog-info-label { - font-size: 9pt; - padding-bottom: 8px; } - .prompt-dialog-null-label { - font-size: 9pt; - padding-bottom: 8px; } - -.hidden { - color: transparent; } - -.polkit-dialog-user-layout { - padding-left: 10px; - spacing: 10px; } - .polkit-dialog-user-layout:rtl { - padding-left: 0px; - padding-right: 10px; } - -.polkit-dialog-user-root-label { - color: #cb4b16; } - -.polkit-dialog-user-user-icon { - border-radius: 2px; - background-size: contain; - width: 48px; - height: 48px; } - -.network-dialog-secret-table { - spacing-rows: 15px; - spacing-columns: 1em; } - -.keyring-dialog-control-table { - spacing-rows: 15px; - spacing-columns: 1em; } - -.popup-menu { - min-width: 200px; - color: #657b83; - border-image: url("dark-assets/menu/menu.svg") 9 9 9 9; } - .popup-menu .popup-sub-menu { - background: none; - box-shadow: none; - border-image: url("dark-assets/menu/submenu.svg") 9 9 9 9; } - .popup-menu .popup-menu-content { - padding: 1em 0em 1em 0em; } - .popup-menu .popup-menu-item { - spacing: 12px; } - .popup-menu .popup-menu-item:ltr { - padding: .4em 3em .4em 0em; } - .popup-menu .popup-menu-item:rtl { - padding: .4em 0em .4em 3em; } - .popup-menu .popup-menu-item:checked { - font-weight: normal; - background: none; - box-shadow: none; - border-image: url("dark-assets/menu/submenu-open.svg") 9 9 9 9; } - .popup-menu .popup-menu-item:active, .popup-menu .popup-menu-item.selected { - color: #fdf6e3; - background-color: transparent; - border-image: url("common-assets/menu/menu-hover.svg") 9 9 1 1; } - .popup-menu .popup-menu-item:insensitive { - color: rgba(101, 123, 131, 0.5); - background: none; } - .popup-menu .popup-inactive-menu-item { - color: #657b83; } - .popup-menu .popup-inactive-menu-item:insensitive { - color: rgba(101, 123, 131, 0.45); } - .popup-menu.panel-menu { - -boxpointer-gap: 0px; - margin-bottom: 1.75em; } - -.popup-menu-ornament { - text-align: right; - margin-left: 10px; - width: 16px; } - -.popup-menu-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: transparent; - -arrow-border-width: 1px; - -arrow-border-color: transparent; - -arrow-base: 0; - -arrow-rise: 0; } - -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(7, 54, 66, 0.95); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0, 0, 0, 0.4); - -arrow-base: 5; - -arrow-rise: 5; } - -.popup-separator-menu-item { - height: 2px; - margin: 0; - background-color: transparent; - border: none; - border-image: url("common-assets/menu/menu-separator.svg") 1 1 1 1; } - -.background-menu { - -boxpointer-gap: 4px; - -arrow-rise: 0px; } - -.osd-window { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 20px; - margin: 32px; - min-width: 64px; - min-height: 64px; - color: white; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } - .osd-window .osd-monitor-label { - font-size: 3em; } - .osd-window .level { - padding: 0; - height: 4px; - background-color: rgba(0, 0, 0, 0.5); - border-radius: 2px; - color: #268bd2; } - -.resize-popup { - color: #657b83; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; - padding: 12px; } - -.switcher-popup { - padding: 8px; - spacing: 16px; } - -.switcher-list { - background: none; - border: none; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; } - .switcher-list-item-container { - spacing: 8px; } - .switcher-list .item-box { - padding: 8px; - border-radius: 2px; - border: 1px solid transparent; } - .switcher-list .item-box:outlined { - padding: 8px; - border: 1px solid #268bd2; } - .switcher-list .item-box:selected { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; } - .switcher-list .thumbnail-box { - padding: 2px; - spacing: 4px; } - .switcher-list .thumbnail { - width: 256px; } - .switcher-list .separator { - width: 1px; - background: rgba(101, 123, 131, 0.33); } - -.switcher-arrow { - border-color: transparent; - color: #657b83; } - .switcher-arrow:highlighted { - color: white; } - -.input-source-switcher-symbol { - font-size: 34pt; - width: 96px; - height: 96px; } - -.workspace-switcher { - background: transparent; - border: 0px; - border-radius: 0px; - padding: 0px; - spacing: 8px; } - .workspace-switcher-group { - padding: 12px; } - .workspace-switcher-container { - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; - padding-bottom: 24px; } - -.ws-switcher-active-up, .ws-switcher-active-down { - height: 30px; - background-color: #268bd2; - background-size: 96px; - border-radius: 2px; - border: 1px solid #268bd2; } - -.ws-switcher-active-up { - background-image: url("common-assets/misc/ws-switch-arrow-up.png"); } - -.ws-switcher-active-down { - background-image: url("common-assets/misc/ws-switch-arrow-down.png"); } - -.ws-switcher-box { - height: 96px; - background-color: rgba(0, 0, 0, 0.33); - border-color: rgba(0, 0, 0, 0.33); - border-radius: 2px; } - -.tile-preview { - background-color: rgba(38, 139, 210, 0.35); - border: 1px solid #268bd2; } - .tile-preview-left.on-primary { - border-radius: 0px 0 0 0; } - .tile-preview-right.on-primary { - border-radius: 0 0px 0 0; } - .tile-preview-left.tile-preview-right.on-primary { - border-radius: 0px 0px 0 0; } - -#panel { - font-weight: bold; - height: 2.1em; - min-height: 27px; - background-gradient-direction: none; - background-color: transparent; - border-bottom-width: 0; - border-image: url("common-assets/panel/panel.svg") 1 1 1 1; } - #panel.dynamic-top-bar-white-btn { - border-image: none; } - #panel.unlock-screen, #panel.login-screen, #panel.lock-screen { - background-color: transparent; - border-image: none; } - #panel:overview { - border-image: url("common-assets/panel/panel-overview.svg") 1 1 1 1; } - #panel #panelLeft, #panel #panelCenter { - spacing: 8px; } - #panel .panel-corner { - -panel-corner-radius: 0px; - -panel-corner-background-color: transparent; - -panel-corner-border-width: 0px; - -panel-corner-border-color: black; } - #panel .panel-corner:active, #panel .panel-corner:overview, #panel .panel-corner:focus { - -panel-corner-border-color: black; } - #panel .panel-corner.lock-screen, #panel .panel-corner.login-screen, #panel .panel-cornerunlock-screen { - -panel-corner-radius: 0; - -panel-corner-background-color: transparent; - -panel-corner-border-color: transparent; } - #panel .panel-button { - -natural-hpadding: 10px; - -minimum-hpadding: 6px; - font-weight: bold; - color: white; - transition-duration: 100ms; - border-bottom-width: 1px; - border-color: transparent; } - #panel .panel-button .app-menu-icon { - width: 0; - height: 0; - margin-left: 0px; - margin-right: 0px; } - #panel .panel-button:hover { - color: white; - background-color: rgba(0, 0, 0, 0.17); - border-bottom-width: 1px; - border-color: transparent; } - #panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel .panel-button:checked { - color: #fdf6e3; - background-color: #268bd2; - box-shadow: none; - border-bottom-width: 1px; - border-color: black; } - #panel .panel-button:active > .system-status-icon, #panel .panel-button:overview > .system-status-icon, #panel .panel-button:focus > .system-status-icon, #panel .panel-button:checked > .system-status-icon { - icon-shadow: none; } - #panel .panel-button .system-status-icon { - icon-size: 16px; - padding: 0 4px; } - .unlock-screen #panel .panel-button, - .login-screen #panel .panel-button, - .lock-screen #panel .panel-button { - color: #7f949c; } - .unlock-screen #panel .panel-button:focus, .unlock-screen #panel .panel-button:hover, .unlock-screen #panel .panel-button:active, - .login-screen #panel .panel-button:focus, - .login-screen #panel .panel-button:hover, - .login-screen #panel .panel-button:active, - .lock-screen #panel .panel-button:focus, - .lock-screen #panel .panel-button:hover, - .lock-screen #panel .panel-button:active { - color: #7f949c; } - #panel #panelActivities.panel-button { - -natural-hpadding: 12px; } - #panel .panel-status-indicators-box, - #panel .panel-status-menu-box { - spacing: 2px; } - #panel .screencast-indicator { - color: #dc322f; } - #panel .clock-display > * > *:last-child { - color: #268bd2; - margin-left: .3em; } - #panel .popup-menu-arrow { - width: 0; } - -#panel #panelActivities.panel-button > * { - background-image: url("common-assets/panel/activities.svg"); - background-position: center top; - width: 24px; - height: 24px; - background-color: transparent !important; - background-gradient-direction: none !important; - border: 0 solid transparent !important; - text-shadow: 0 0 transparent !important; - transition-duration: 0ms !important; - box-shadow: none !important; - color: transparent; } - -#panel #panelActivities.panel-button:active, #panel #panelActivities.panel-button:overview, #panel #panelActivities.panel-button:focus, #panel #panelActivities.panel-button:checked { - background-color: transparent; - box-shadow: none; - border-bottom-width: 1px; - border-color: transparent; } - #panel #panelActivities.panel-button:active > *, #panel #panelActivities.panel-button:overview > *, #panel #panelActivities.panel-button:focus > *, #panel #panelActivities.panel-button:checked > * { - background-image: url("common-assets/panel/activities-active.svg"); } - -.system-switch-user-submenu-icon { - icon-size: 24px; - border: 1px solid rgba(101, 123, 131, 0.4); } - -#appMenu { - spinner-image: url("common-assets/misc/process-working.svg"); - spacing: 4px; - padding: 0 8px; } - #appMenu .label-shadow { - color: transparent; } - -.aggregate-menu { - width: 360px; } - .aggregate-menu .popup-menu-icon { - padding: 0 4px; } - -.system-menu-action { - padding: 13px; - color: #657b83; - border-radius: 32px; - /* wish we could do 50% */ - border: 1px solid transparent; } - .system-menu-action:hover, .system-menu-action:focus { - transition-duration: 100ms; - padding: 13px; - color: #657b83; - background-color: transparent; - border: 1px solid #268bd2; } - .system-menu-action:active { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; } - .system-menu-action > StIcon { - icon-size: 16px; } - -#calendarArea { - padding: 0.75em 1.0em; } - -.calendar { - margin-bottom: 1em; } - -.calendar, -.datemenu-today-button, -.datemenu-displays-box, -.message-list-sections { - margin: 0 1.5em; } - -.datemenu-calendar-column { - spacing: 0.5em; } - -.datemenu-displays-section { - padding-bottom: 3em; } - -.datemenu-today-button, -.world-clocks-button, -.message-list-section-title { - border-radius: 3px; - padding: .4em; } - -.message-list-section-list:ltr { - padding-left: .4em; } - -.message-list-section-list:rtl { - padding-right: .4em; } - -.datemenu-today-button, -.world-clocks-button, -.message-list-section-title { - padding: 7px 10px 7px 10px; - border: 1px solid rgba(7, 54, 66, 0); } - .datemenu-today-button:hover, .datemenu-today-button:focus, - .world-clocks-button:hover, - .world-clocks-button:focus, - .message-list-section-title:hover, - .message-list-section-title:focus { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #0a5062; - border: 1px solid #001317; - box-shadow: inset 0 1px rgba(10, 80, 98, 0.05); } - .datemenu-today-button:active, - .world-clocks-button:active, - .message-list-section-title:active { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #001317; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - -.datemenu-today-button .date-label { - font-size: 1.5em; } - -.world-clocks-header, -.message-list-section-title { - color: rgba(101, 123, 131, 0.4); - font-weight: bold; } - -.world-clocks-button:active .world-clocks-header { - color: #fdf6e3; } - -.world-clocks-grid { - spacing-rows: 0.4em; } - -.calendar-month-label { - color: #657b83; - font-weight: bold; - padding: 8px 0; } - -.pager-button { - color: transparent; - background-color: transparent; - width: 32px; - border-radius: 2px; } - .pager-button:focus, .pager-button:hover, .pager-button:active { - background-color: transparent; } - -.calendar-change-month-back { - background-image: url("dark-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:focus, .calendar-change-month-back:hover { - background-image: url("dark-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-back:active { - background-image: url("dark-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:rtl { - background-image: url("dark-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { - background-image: url("dark-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-back:rtl:active { - background-image: url("dark-assets/misc/calendar-arrow-right.svg"); } - -.calendar-change-month-forward { - background-image: url("dark-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { - background-image: url("dark-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-forward:active { - background-image: url("dark-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:rtl { - background-image: url("dark-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { - background-image: url("dark-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-forward:rtl:active { - background-image: url("dark-assets/misc/calendar-arrow-left.svg"); } - -.calendar-day-base { - font-size: 80%; - text-align: center; - width: 25px; - height: 25px; - padding: 0.1em; - margin: 2px; - border-radius: 12.5px; } - .calendar-day-base:hover, .calendar-day-base:focus { - background-color: rgba(0, 0, 0, 0.1); } - .calendar-day-base:active { - color: #657b83; - background-color: rgba(0, 0, 0, 0.15); - border-width: 0; } - .calendar-day-base.calendar-day-heading { - color: rgba(101, 123, 131, 0.85); - margin-top: 1em; - font-size: 70%; } - -.calendar-day { - border-width: 0; - color: rgba(101, 123, 131, 0.8); } - -.calendar-day-top { - border-top-width: 0; } - -.calendar-day-left { - border-left-width: 0; } - -.calendar-nonwork-day { - color: #657b83; - font-weight: bold; } - -.calendar-today, -.calendar-today:active, -.calendar-today:focus, -.calendar-today:hover { - font-weight: bold; - color: #fdf6e3; - background-color: #268bd2; - border-width: 0; } - -.calendar-day-with-events { - color: #268bd2; - font-weight: bold; } - -.calendar-today.calendar-day-with-events { - color: #fdf6e3; } - -.calendar-other-month-day { - color: rgba(101, 123, 131, 0.3); - opacity: 1; } - -.message-list { - width: 420px; } - .message-list-sections { - spacing: 1.5em; } - .message-list-section, .message-list-section-list { - spacing: 0.7em; } - .message-list-section-list-title-box { - spacing: 0.4em; } - .message-list-placeholder StIcon { - width: 0; - height: 0; } - .message-list-placeholder StLabel { - color: rgba(101, 123, 131, 0.45); } - .message-list-section-close > StIcon { - icon-size: 18px; - border-radius: 0px; - color: transparent; - background-color: transparent; - background-image: url("dark-assets/misc/message-close.svg"); } - .message-list-section-close:hover > StIcon { - color: transparent; - background-color: transparent; - background-image: url("dark-assets/misc/message-close-hover.svg"); } - .message-list-section-close:active > StIcon { - color: transparent; - background-color: transparent; - background-image: url("dark-assets/misc/message-close-active.svg"); } - -.message { - padding: 4px; - color: #657b83; - border-image: url("dark-assets/misc/message.svg") 9 9 9 9; } - .message:hover, .message:focus { - color: #657b83; - border-image: url("dark-assets/misc/message-hover.svg") 9 9 9 9; } - .message:active { - color: #fdf6e3; - border-image: url("dark-assets/misc/message-active.svg") 9 9 9 9; } - .message-icon-bin { - padding: 8px 0px 8px 8px; } - .message-icon-bin:rtl { - padding: 8px 8px 8px 0px; } - .message-icon-bin > StIcon { - icon-size: 48px; } - .message-secondary-bin { - color: rgba(101, 123, 131, 0.4); } - .message-secondary-bin > StIcon { - icon-size: 16px; } - .message-title { - font-weight: bold; - padding: 2px 0 2px 0; } - .message-content { - padding: 8px; } - -.ripple-box { - width: 52px; - height: 52px; - background-image: url("common-assets/misc/corner-ripple-ltr.svg"); - background-size: contain; } - .ripple-box:rtl { - background-image: url("common-assets/misc/corner-ripple-rtl.svg"); } - -.popup-menu-arrow { - width: 16px; - height: 16px; } - -.popup-menu-icon { - icon-size: 16px; } - -.window-close { - background-image: url("common-assets/misc/close.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - .window-close:hover { - background-image: url("common-assets/misc/close-hover.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - .window-close:active { - background-image: url("common-assets/misc/close-active.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - -.window-close { - -shell-close-overlap: 11px; } - -.nm-dialog { - max-height: 500px; - min-height: 450px; - min-width: 470px; } - .nm-dialog-content { - spacing: 20px; } - .nm-dialog-header-hbox { - spacing: 10px; } - .nm-dialog-airplane-box { - spacing: 12px; } - .nm-dialog-airplane-headline { - font-size: 1.1em; - font-weight: bold; - text-align: center; } - .nm-dialog-airplane-text { - color: #657b83; } - .nm-dialog-header-icon { - icon-size: 32px; } - .nm-dialog-scroll-view { - border: 1px solid #001317; - border-radius: 2px; - background-color: #073642; } - .nm-dialog-header { - font-weight: bold; - font-size: 1.2em; } - .nm-dialog-item { - font-size: 1em; - border-bottom: 0px solid; - padding: 12px; - spacing: 0px; } - .nm-dialog-item:selected { - background-color: #268bd2; - color: #fdf6e3; } - .nm-dialog-icons { - spacing: .5em; } - .nm-dialog-icon { - icon-size: 16px; } - -.no-networks-label { - color: rgba(101, 123, 131, 0.45); } - -.no-networks-box { - spacing: 12px; } - -#overview { - spacing: 24px; } - -.overview-controls { - padding-bottom: 32px; } - -.window-picker { - -horizontal-spacing: 32px; - -vertical-spacing: 32px; - padding-left: 32px; - padding-right: 32px; - padding-bottom: 48px; } - .window-picker.external-monitor { - padding: 32px; } - -.window-clone-border { - border: 3px solid rgba(38, 139, 210, 0.8); - border-radius: 4px; - box-shadow: inset 0px 0px 0px 1px rgba(38, 139, 210, 0); } - -.window-caption, .window-caption:hover { - spacing: 25px; - color: #657b83; - background-color: rgba(0, 0, 0, 0.7); - border-radius: 2px; - padding: 4px 12px; - -shell-caption-spacing: 12px; } - -.search-entry { - width: 320px; - padding: 7px 9px; - border-radius: 20px; - border: 1px solid rgba(0, 0, 0, 0.25); - background-color: rgba(7, 54, 66, 0.9); } - .search-entry:focus { - padding: 7px 9px; } - .search-entry .search-entry-icon { - icon-size: 16px; - padding: 0 4px; - color: #657b83; } - .search-entry:hover, .search-entry:focus { - color: #fdf6e3; - caret-color: #fdf6e3; - background-color: #268bd2; - selection-background-color: #fdf6e3; - selected-color: #268bd2; } - .search-entry:hover .search-entry-icon, .search-entry:focus .search-entry-icon { - color: #fdf6e3; } - -#searchResultsBin { - max-width: 1000px; } - -#searchResultsContent { - padding-left: 20px; - padding-right: 20px; - spacing: 16px; } - -.search-section { - spacing: 16px; } - -.search-section-content { - spacing: 32px; } - -.list-search-results { - spacing: 3px; } - -.search-section-separator { - background-color: rgba(255, 255, 255, 0.2); - -margin-horizontal: 1.5em; - height: 1px; } - -.list-search-result-content { - spacing: 12px; - padding: 12px; } - -.list-search-result-title { - font-size: 1.5em; - color: white; } - -.list-search-result-description { - color: #cccccc; } - -.search-provider-icon { - padding: 15px; } - -.search-provider-icon-more { - width: 16px; - height: 16px; - background-image: url("common-assets/misc/more-results.svg"); } - -#dash { - font-size: 1em; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(0, 0, 0, 0.4); - padding: 4px 0; - border-radius: 0 3px 3px 0; } - #dash:rtl { - border-radius: 3px 0 0 3px; } - .right #dash, #dash:rtl { - padding: 4px 0; } - .top #dash, .bottom #dash { - padding: 0; } - #dash .placeholder { - background-image: url("common-assets/dash/dash-placeholder.svg"); - background-size: contain; - height: 24px; } - #dash .empty-dash-drop-target { - width: 24px; - height: 24px; } - -.dash-item-container > StWidget, .dash-item-container > StWidget:rtl, .right .dash-item-container > StWidget { - padding: 4px 8px; } - -.top .dash-item-container > StWidget, .bottom .dash-item-container > StWidget { - padding: 6px; } - -.dash-label { - border-radius: 3px; - padding: 4px 12px; - color: white; - background-color: rgba(0, 0, 0, 0.7); - text-align: center; - -x-offset: 3px; } - .bottom .dash-label, .top .dash-label { - -y-offset: 3px; - -x-offset: 0; } - -#dash .app-well-app:hover .overview-icon, -.right #dash .app-well-app:hover .overview-icon, -.bottom #dash .app-well-app:hover .overview-icon, -.top #dash .app-well-app:hover .overview-icon { - background-color: #268bd2; } - -#dash .app-well-app:active .overview-icon, -.right #dash .app-well-app:active .overview-icon, -.bottom #dash .app-well-app:active .overview-icon, -.top #dash .app-well-app:active .overview-icon { - box-shadow: none; - background-color: #1e6ea7; } - -#dash .app-well-app-running-dot { - width: 11px; - height: 2px; - margin-bottom: 2px; - background-color: #268bd2; } - -#dashtodockContainer .app-well-app-running-dot { - background: none; - width: 28px; - height: 4px; } - -#dashtodockContainer .running1 .app-well-app-running-dot { - background-image: url("common-assets/dash/running1.svg"); } - -#dashtodockContainer .running2 .app-well-app-running-dot { - background-image: url("common-assets/dash/running2.svg"); } - -#dashtodockContainer .running3 .app-well-app-running-dot { - background-image: url("common-assets/dash/running3.svg"); } - -#dashtodockContainer .running4 .app-well-app-running-dot { - background-image: url("common-assets/dash/running4.svg"); } - -.show-apps .overview-icon { - background-color: rgba(0, 0, 0, 0.5); - border-radius: 2px; - border: 0px solid; } - -.show-apps:hover .overview-icon { - background-color: rgba(0, 0, 0, 0.7); - color: #268bd2; } - -.show-apps:active .overview-icon, -.show-apps:active .show-apps-icon, -.show-apps:checked .overview-icon, -.show-apps:checked .show-apps-icon { - color: #fdf6e3; - background-color: #268bd2; - box-shadow: none; - transition-duration: 0ms; } - -.icon-grid { - spacing: 30px; - -shell-grid-horizontal-item-size: 136px; - -shell-grid-vertical-item-size: 136px; } - .icon-grid .overview-icon { - icon-size: 96px; } - -.app-view-controls { - padding-bottom: 32px; } - -.app-view-control { - padding: 4px 32px; - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .app-view-control:hover { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .app-view-control:checked { - color: #fdf6e3; - background-color: #268bd2; } - .app-view-control:first-child:ltr, .app-view-control:last-child:rtl { - border-radius: 2px 0 0 2px; - border-right-width: 0; } - .app-view-control:last-child:ltr, .app-view-control:first-child:rtl { - border-radius: 0 2px 2px 0; - border-left-width: 0; } - -.search-provider-icon:active, .search-provider-icon:checked, -.list-search-result:active, -.list-search-result:checked { - background-color: rgba(2, 16, 20, 0.85); } - -.search-provider-icon:focus, .search-provider-icon:selected, .search-provider-icon:hover, -.list-search-result:focus, -.list-search-result:selected, -.list-search-result:hover { - background-color: rgba(101, 123, 131, 0.4); - transition-duration: 200ms; } - -.app-well-app:active .overview-icon, -.app-well-app:checked .overview-icon, -.app-well-app.app-folder:active .overview-icon, -.app-well-app.app-folder:checked .overview-icon, -.grid-search-result:active .overview-icon, -.grid-search-result:checked .overview-icon { - background-color: rgba(2, 16, 20, 0.85); - box-shadow: inset 0 0 #268bd2; } - -.app-well-app:hover .overview-icon, -.app-well-app:focus .overview-icon, -.app-well-app:selected .overview-icon, -.app-well-app.app-folder:hover .overview-icon, -.app-well-app.app-folder:focus .overview-icon, -.app-well-app.app-folder:selected .overview-icon, -.grid-search-result:hover .overview-icon, -.grid-search-result:focus .overview-icon, -.grid-search-result:selected .overview-icon { - background-color: rgba(101, 123, 131, 0.4); - transition-duration: 0ms; - border-image: none; - background-image: none; } - -.app-well-app-running-dot { - width: 20px; - height: 2px; - margin-bottom: 4px; - background-color: #268bd2; } - -.search-provider-icon, -.list-search-result, .app-well-app .overview-icon, -.app-well-app.app-folder .overview-icon, -.grid-search-result .overview-icon { - color: white; - border-radius: 2px; - padding: 6px; - border: 1px solid transparent; - transition-duration: 0ms; - text-align: center; } - -.app-well-app.app-folder > .overview-icon { - background-color: rgba(3, 24, 29, 0.95); - border: 1px solid rgba(0, 0, 0, 0.45); } - -.app-well-app.app-folder:hover > .overview-icon { - background-color: rgba(8, 65, 80, 0.95); } - -.app-well-app.app-folder:active > .overview-icon, .app-well-app.app-folder:checked > .overview-icon { - color: #fdf6e3; - background-color: #268bd2; - box-shadow: none; } - -.app-well-app.app-folder:focus > .overview-icon { - background-color: #268bd2; } - -.app-folder-popup { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(3, 24, 29, 0.95); - -arrow-border-color: rgba(0, 0, 0, 0.45); - -arrow-border-width: 1px; - -arrow-base: 5; - -arrow-rise: 5; } - -.app-folder-popup-bin { - padding: 5px; } - -.app-folder-icon { - padding: 5px; - spacing-rows: 5px; - spacing-columns: 5px; } - -.page-indicator { - padding: 15px 20px; } - .page-indicator .page-indicator-icon { - width: 18px; - height: 18px; - background-image: url(common-assets/misc/page-indicator-inactive.svg); } - .page-indicator:hover .page-indicator-icon { - background-image: url(common-assets/misc/page-indicator-hover.svg); } - .page-indicator:active .page-indicator-icon { - background-image: url(common-assets/misc/page-indicator-active.svg); } - .page-indicator:checked .page-indicator-icon, .page-indicator:checked:active { - background-image: url(common-assets/misc/page-indicator-checked.svg); } - -.app-well-app > .overview-icon.overview-icon-with-label, -.grid-search-result .overview-icon.overview-icon-with-label { - padding: 10px 8px 5px 8px; - spacing: 4px; } - -.workspace-thumbnails, .workspace-thumbnails:rtl, -.workspace-thumbnails-left, -.workspace-thumbnails-left:rtl { - visible-width: 40px; - spacing: 11px; - padding: 12px; } - -.workspace-thumbnails, -.workspace-thumbnails-left:rtl { - padding-right: 7px; - border-image: url("common-assets/dash/dash-right.svg") 9 9 9 9; } - -.workspace-thumbnails:rtl, -.workspace-thumbnails-left { - padding-left: 7px; - border-image: url("common-assets/dash/dash-left.svg") 9 9 9 9; } - -.workspace-thumbnail-indicator { - border: 4px solid rgba(38, 139, 210, 0.8); - border-radius: 1px; - padding: 1px; } - -.search-display > StBoxLayout, -.all-apps, -.frequent-apps > StBoxLayout { - padding: 0px 88px 10px 88px; } - -.search-statustext, .no-frequent-applications-label { - font-size: 2em; - font-weight: bold; - color: #657b83; } - -.url-highlighter { - link-color: #78b9e6; } - -.notification-banner, -.notification-banner:hover, -.notification-banner:focus { - font-size: 1em; - width: 34em; - margin: 5px; - padding: 10px; - color: #657b83; - background-color: transparent; - border: 1px solid transparent; - border-image: url("dark-assets/menu/menu.svg") 9 9 9 9; } - .notification-banner .notification-icon, - .notification-banner:hover .notification-icon, - .notification-banner:focus .notification-icon { - padding: 5px; } - .notification-banner .notification-content, - .notification-banner:hover .notification-content, - .notification-banner:focus .notification-content { - padding: 5px; - spacing: 5px; } - .notification-banner .secondary-icon, - .notification-banner:hover .secondary-icon, - .notification-banner:focus .secondary-icon { - icon-size: 1.09em; } - .notification-banner .notification-actions, - .notification-banner:hover .notification-actions, - .notification-banner:focus .notification-actions { - background-color: transparent; - padding: 2px 2px 0 2px; - spacing: 3px; } - .notification-banner .notification-button, - .notification-banner:hover .notification-button, - .notification-banner:focus .notification-button { - padding: 4px 4px 5px; } - .notification-banner .notification-button:first-child, .notification-banner .notification-button:last-child, - .notification-banner:hover .notification-button:first-child, - .notification-banner:hover .notification-button:last-child, - .notification-banner:focus .notification-button:first-child, - .notification-banner:focus .notification-button:last-child { - border-radius: 2px; } - -.secondary-icon { - icon-size: 1.09em; } - -.chat-body { - spacing: 5px; } - -.chat-response { - margin: 5px; } - -.chat-log-message { - color: #657b83; } - -.chat-new-group { - padding-top: 1em; } - -.chat-received { - padding-left: 4px; } - .chat-received:rtl { - padding-left: 0px; - padding-right: 4px; } - -.chat-sent { - padding-left: 18pt; - color: #268bd2; } - .chat-sent:rtl { - padding-left: 0; - padding-right: 18pt; } - -.chat-meta-message { - padding-left: 4px; - font-size: 9pt; - font-weight: bold; - color: rgba(101, 123, 131, 0.6); } - .chat-meta-message:rtl { - padding-left: 0; - padding-right: 4px; } - -.subscription-message { - font-style: italic; } - -.hotplug-transient-box { - spacing: 6px; - padding: 2px 72px 2px 12px; } - -.hotplug-notification-item { - padding: 2px 10px; } - .hotplug-notification-item:focus { - padding: 2px 10px; } - -.hotplug-notification-item-icon { - icon-size: 24px; - padding: 2px 5px; } - -.hotplug-resident-box { - spacing: 8px; } - -.hotplug-resident-mount { - spacing: 8px; - border-radius: 4px; } - .hotplug-resident-mount:hover { - background-color: rgba(0, 43, 54, 0.3); } - -.hotplug-resident-mount-label { - color: inherit; - padding-left: 6px; } - -.hotplug-resident-mount-icon { - icon-size: 24px; - padding-left: 6px; } - -.hotplug-resident-eject-icon { - icon-size: 16px; } - -.hotplug-resident-eject-button { - padding: 7px; - border-radius: 5px; - color: pink; } - -.legacy-tray { - background-color: rgba(5, 36, 44, 0.95); } - .legacy-tray:ltr { - border-radius: 0 2px 0 0; - border-left-width: 0; } - .legacy-tray:rtl { - border-radius: 2px 0 0 0; - border-right-width: 0; } - -.legacy-tray-handle, -.legacy-tray-icon { - padding: 6px; } - .legacy-tray-handle StIcon, - .legacy-tray-icon StIcon { - icon-size: 24px; } - .legacy-tray-handle:hover, .legacy-tray-handle:focus, - .legacy-tray-icon:hover, - .legacy-tray-icon:focus { - background-color: rgba(101, 123, 131, 0.1); } - -.legacy-tray-icon-box { - spacing: 12px; } - .legacy-tray-icon-box:ltr { - padding-left: 12px; } - .legacy-tray-icon-box:rtl { - padding-right: 12px; } - .legacy-tray-icon-box StButton { - width: 24px; - height: 24px; } - -.magnifier-zoom-region { - border: 2px solid #268bd2; } - .magnifier-zoom-region.full-screen { - border-width: 0; } - -#keyboard { - background-color: rgba(7, 54, 66, 0.95); - border-width: 0; - border-top-width: 1px; - border-color: rgba(0, 0, 0, 0.2); } - -.keyboard-layout { - spacing: 10px; - padding: 10px; } - -.keyboard-row { - spacing: 15px; } - -.keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; - font-weight: bold; - border-radius: 3px; - box-shadow: none; - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .keyboard-key:hover { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .keyboard-key:active, .keyboard-key:checked { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #fdf6e3; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: #268bd2; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - .keyboard-key:grayed { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #234b56; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - -.keyboard-subkeys { - color: #657b83; - padding: 5px; - -arrow-border-radius: 2px; - -arrow-background-color: rgba(7, 54, 66, 0.95); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0, 0, 0, 0.4); - -arrow-base: 20px; - -arrow-rise: 10px; - -boxpointer-gap: 5px; } - -.candidate-popup-content { - padding: 0.5em; - spacing: 0.3em; - color: #657b83; - font-size: 1.15em; } - -.candidate-index { - padding: 0 0.5em 0 0; - color: #7f949c; } - -.candidate-box { - padding: 0.3em 0.5em 0.3em 0.5em; - border-radius: 2px; - color: #657b83; } - .candidate-box:selected, .candidate-box:hover { - background-color: #268bd2; - color: #fdf6e3; } - -.candidate-page-button-box { - height: 2em; } - .vertical .candidate-page-button-box { - padding-top: 0.5em; } - .horizontal .candidate-page-button-box { - padding-left: 0.5em; } - -.candidate-page-button { - padding: 4px; } - -.candidate-page-button-previous { - border-radius: 2px 0px 0px 2px; - border-right-width: 0; } - -.candidate-page-button-next { - border-radius: 0px 2px 2px 0px; } - -.candidate-page-button-icon { - icon-size: 1em; } - -.framed-user-icon { - background-size: contain; - border: 0px solid transparent; - color: #657b83; - border-radius: 2px; } - .framed-user-icon:hover { - border-color: transparent; - color: #b8c4c9; } - -.login-dialog-banner-view { - padding-top: 24px; - max-width: 23em; } - -.login-dialog { - border: none; - background-color: transparent; } - .login-dialog .modal-dialog-button-box { - spacing: 3px; } - .login-dialog .modal-dialog-button { - padding: 3px 18px; } - .login-dialog .modal-dialog-button:default { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #083e4b; - border: 1px solid #001317; - box-shadow: inset 0 1px rgba(8, 62, 75, 0.05); } - .login-dialog .modal-dialog-button:default:hover, .login-dialog .modal-dialog-button:default:focus { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #0a5062; - border: 1px solid #001317; - box-shadow: inset 0 1px rgba(10, 80, 98, 0.05); } - .login-dialog .modal-dialog-button:default:active { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #001317; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - .login-dialog .modal-dialog-button:default:insensitive { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: rgba(101, 123, 131, 0.45); - border: 1px solid rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); - box-shadow: inset 0 1px rgba(8, 62, 75, 0.05); } - -.login-dialog-logo-bin { - padding: 24px 0px; } - -.login-dialog-banner { - color: #4f6066; } - -.login-dialog-button-box { - spacing: 5px; } - -.login-dialog-message-warning { - color: #cb4b16; } - -.login-dialog-message-hint { - padding-top: 0; - padding-bottom: 20px; } - -.login-dialog-user-selection-box { - padding: 100px 0px; } - .login-dialog-user-selection-box .login-dialog-not-listed-label { - padding-left: 2px; } - .login-dialog-not-listed-button:focus .login-dialog-user-selection-box .login-dialog-not-listed-label, - .login-dialog-not-listed-button:hover .login-dialog-user-selection-box .login-dialog-not-listed-label { - color: #657b83; } - -.login-dialog-not-listed-label { - font-size: 90%; - font-weight: bold; - color: #222a2d; - padding-top: 1em; } - -.login-dialog-user-list-view { - -st-vfade-offset: 1em; } - -.login-dialog-user-list { - spacing: 12px; - padding: .2em; - width: 23em; } - .login-dialog-user-list:expanded .login-dialog-user-list-item:focus { - background-color: #268bd2; - color: #fdf6e3; } - .login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in { - border-right: 2px solid #268bd2; } - -.login-dialog-user-list-item { - border-radius: 5px; - padding: .2em; - color: #222a2d; } - .login-dialog-user-list-item:ltr { - padding-right: 1em; } - .login-dialog-user-list-item:rtl { - padding-left: 1em; } - .login-dialog-user-list-item:hover { - background-color: #268bd2; - color: #fdf6e3; } - .login-dialog-user-list-item .login-dialog-timed-login-indicator { - height: 2px; - margin: 2px 0 0 0; - background-color: #657b83; } - .login-dialog-user-list-item:focus .login-dialog-timed-login-indicator { - background-color: #fdf6e3; } - -.login-dialog-username, -.user-widget-label { - color: #657b83; - font-size: 120%; - font-weight: bold; - text-align: left; - padding-left: 15px; } - -.user-widget-label:ltr { - padding-left: 18px; } - -.user-widget-label:rtl { - padding-right: 18px; } - -.login-dialog-prompt-layout { - padding-top: 24px; - padding-bottom: 12px; - spacing: 8px; - width: 23em; } - -.login-dialog-prompt-label { - color: #394549; - font-size: 110%; - padding-top: 1em; } - -.login-dialog-session-list-button StIcon { - icon-size: 1.25em; } - -.login-dialog-session-list-button { - color: #222a2d; } - .login-dialog-session-list-button:hover, .login-dialog-session-list-button:focus { - color: #657b83; } - .login-dialog-session-list-button:active { - color: black; } - -.screen-shield-arrows { - padding-bottom: 3em; } - -.screen-shield-arrows Gjs_Arrow { - color: white; - width: 80px; - height: 48px; - -arrow-thickness: 12px; - -arrow-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); } - -.screen-shield-clock { - color: white; - text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6); - font-weight: bold; - text-align: center; - padding-bottom: 1.5em; } - -.screen-shield-clock-time { - font-size: 72pt; - text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4); } - -.screen-shield-clock-date { - font-size: 28pt; } - -.screen-shield-notifications-container { - spacing: 6px; - width: 30em; - background-color: transparent; - max-height: 500px; } - .screen-shield-notifications-container .summary-notification-stack-scrollview { - padding-top: 0; - padding-bottom: 0; } - .screen-shield-notifications-container .notification, - .screen-shield-notifications-container .screen-shield-notification-source { - padding: 12px 6px; - border: 1px solid rgba(101, 123, 131, 0.2); - background-color: rgba(7, 54, 66, 0.45); - color: #657b83; - border-radius: 4px; } - .screen-shield-notifications-container .notification { - margin-right: 15px; } - -.screen-shield-notification-label { - font-weight: bold; - padding: 0px 0px 0px 12px; } - -.screen-shield-notification-count-text { - padding: 0px 0px 0px 12px; } - -#panel.lock-screen { - background-color: rgba(7, 54, 66, 0.5); } - -.screen-shield-background { - background: black; - box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4); } - -#lockDialogGroup { - background: #2e3436 url(misc/noise-texture.png); - background-repeat: repeat; } - -#screenShieldNotifications StButton#vhandle, #screenShieldNotifications StButton#hhandle { - background-color: rgba(0, 43, 54, 0.3); } - #screenShieldNotifications StButton#vhandle:hover, #screenShieldNotifications StButton#vhandle:focus, #screenShieldNotifications StButton#hhandle:hover, #screenShieldNotifications StButton#hhandle:focus { - background-color: rgba(0, 43, 54, 0.5); } - #screenShieldNotifications StButton#vhandle:active, #screenShieldNotifications StButton#hhandle:active { - background-color: rgba(38, 139, 210, 0.5); } - -#LookingGlassDialog { - spacing: 4px; - padding: 8px 8px 10px 8px; - background-color: rgba(0, 0, 0, 0.7); - border: 1px solid black; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 2px; - color: #657b83; } - #LookingGlassDialog > #Toolbar { - padding: 3px; - border: none; - background-color: transparent; - border-radius: 0px; } - #LookingGlassDialog .labels { - spacing: 4px; } - #LookingGlassDialog .notebook-tab { - -natural-hpadding: 12px; - -minimum-hpadding: 6px; - font-weight: bold; - color: #657b83; - transition-duration: 100ms; - padding-left: .3em; - padding-right: .3em; } - #LookingGlassDialog .notebook-tab:hover { - color: white; - text-shadow: black 0px 2px 2px; } - #LookingGlassDialog .notebook-tab:selected { - border-bottom-width: 0px; - color: #268bd2; - text-shadow: black 0px 2px 2px; } - #LookingGlassDialog StBoxLayout#EvalBox { - padding: 4px; - spacing: 4px; } - #LookingGlassDialog StBoxLayout#ResultsArea { - spacing: 4px; } - -.lg-dialog StEntry { - selection-background-color: #268bd2; - selected-color: #fdf6e3; - color: #657b83; - background-color: rgba(18, 137, 167, 0.35); - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .lg-dialog StEntry:focus { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - -.lg-dialog .shell-link { - color: #78b9e6; } - .lg-dialog .shell-link:hover { - color: #a3cfee; } - -.lg-completions-text { - font-size: .9em; - font-style: italic; } - -.lg-obj-inspector-title { - spacing: 4px; } - -.lg-obj-inspector-button { - border: 1px solid gray; - padding: 4px; - border-radius: 4px; } - .lg-obj-inspector-button:hover { - border: 1px solid #fdf6e3; } - -#lookingGlassExtensions { - padding: 4px; } - -.lg-extensions-list { - padding: 4px; - spacing: 6px; } - -.lg-extension { - border: 1px solid rgba(0, 0, 0, 0.7); - border-radius: 2px; - background-color: rgba(7, 54, 66, 0.95); - padding: 4px; } - -.lg-extension-name { - font-weight: bold; } - -.lg-extension-meta { - spacing: 6px; } - -#LookingGlassPropertyInspector { - background: rgba(0, 0, 0, 0.7); - border: 1px solid grey; - border-radius: 2px; - padding: 6px; } diff --git a/common/gnome-shell/3.16/gnome-shell.css b/common/gnome-shell/3.16/gnome-shell.css deleted file mode 100644 index d8dbaba..0000000 --- a/common/gnome-shell/3.16/gnome-shell.css +++ /dev/null @@ -1,1921 +0,0 @@ -/* Copyright 2009, 2015 Red Hat, Inc. - * - * Portions adapted from Mx's data/style/default.css - * Copyright 2009 Intel Corporation - * - * This program is free software; you can redistribute it and/or modify it - * under the terms and conditions of the GNU Lesser General Public License, - * version 2.1, as published by the Free Software Foundation. - * - * This program is distributed in the hope it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for - * more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. - */ -stage { - font-family: Futura Bk bt, Cantarell, Sans-Serif; - font-size: 9pt; - color: #5c616c; } - -.button { - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - border-radius: 2px; } - -.button, .notification-banner .notification-button, -.notification-banner:hover .notification-button, -.notification-banner:focus .notification-button, .hotplug-notification-item { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: #fbfbfc; - border: 1px solid #657b83; - box-shadow: inset 0 1px rgba(251, 251, 252, 0.05); } - .button:focus, .notification-banner .notification-button:focus, .hotplug-notification-item:focus { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: #fbfbfc; - border: 1px solid #268bd2; - box-shadow: inset 0 1px rgba(251, 251, 252, 0.05); } - .button:hover, .notification-banner .notification-button:hover, .hotplug-notification-item:hover { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: white; - border: 1px solid #657b83; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); } - .button:hover:focus, .notification-banner .notification-button:hover:focus, .hotplug-notification-item:hover:focus { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: #fbfbfc; - border: 1px solid #268bd2; - box-shadow: inset 0 1px rgba(251, 251, 252, 0.05); } - .button:active, .notification-banner .notification-button:active, .hotplug-notification-item:active, .button:active:focus, .notification-banner .notification-button:active:focus, .hotplug-notification-item:active:focus { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - .button:insensitive, .notification-banner .notification-button:insensitive, .hotplug-notification-item:insensitive { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: rgba(92, 97, 108, 0.55); - border: 1px solid rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); - box-shadow: inset 0 1px rgba(251, 251, 252, 0.05); } - -.modal-dialog-button-box .button { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .modal-dialog-button-box .button:hover { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .modal-dialog-button-box .button:focus { - color: #268bd2; } - .modal-dialog-button-box .button:active { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #fdf6e3; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: #268bd2; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - .modal-dialog-button-box .button:insensitive { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #234b56; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - -StEntry { - padding: 7px; - caret-size: 1px; - selection-background-color: #268bd2; - selected-color: #fdf6e3; - transition-duration: 300ms; - border-radius: 3px; - color: #5c616c; - background-color: #fdf6e3; - border: 1px solid #657b83; - box-shadow: inset 0 2px 4px rgba(253, 246, 227, 0.05); } - StEntry:focus, StEntry:hover { - color: #5c616c; - background-color: #fdf6e3; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(253, 246, 227, 0.05); } - StEntry:insensitive { - color: rgba(92, 97, 108, 0.55); - background-color: #f9f6ec; - border-color: 1px solid #a6b2b7; - box-shadow: inset 0 2px 4px rgba(249, 246, 236, 0.05); } - StEntry StIcon.capslock-warning { - icon-size: 16px; - warning-color: #cb4b16; - padding: 0 4px; } - -StScrollView.vfade { - -st-vfade-offset: 0px; } - -StScrollView.hfade { - -st-hfade-offset: 0px; } - -StScrollBar { - padding: 8px; } - StScrollView StScrollBar { - min-width: 5px; - min-height: 5px; } - StScrollBar StBin#trough { - background-color: rgba(253, 246, 227, 0.1); - border-radius: 8px; } - StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { - border-radius: 4px; - background-color: #b8babf; - border: 0px solid; - margin: 0px; } - StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { - background-color: #c7c9cd; } - StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { - background-color: #268bd2; } - -.slider { - -slider-height: 4px; - -slider-background-color: #657b83; - -slider-border-color: transparent; - -slider-active-background-color: #268bd2; - -slider-active-border-color: transparent; - -slider-border-width: 0; - -slider-handle-radius: 0px; - height: 18px; - border: 0 solid transparent; - border-right-width: 1px; - border-left-width: 5px; - color: transparent; } - .popup-menu-item.selected .slider { - -slider-background-color: rgba(0, 0, 0, 0.2); - -slider-active-background-color: #fdf6e3; } - -.check-box StBoxLayout { - spacing: .8em; } - -.check-box StBin { - width: 16px; - height: 16px; - background-image: url("light-assets/checkbox/checkbox-unchecked.svg"); } - -.check-box:focus StBin { - background-image: url("light-assets/checkbox/checkbox-unchecked-focused.svg"); } - -.check-box:checked StBin { - background-image: url("light-assets/checkbox/checkbox-checked.svg"); } - -.check-box:focus:checked StBin { - background-image: url("light-assets/checkbox/checkbox-checked-focused.svg"); } - -.toggle-switch { - width: 50px; - height: 20px; - background-size: contain; - background-image: url("light-assets/switch/switch-off.svg"); } - .toggle-switch:checked { - background-image: url("light-assets/switch/switch-on.svg"); } - .popup-menu-item.selected .toggle-switch { - background-image: url("common-assets/switch/switch-off-selected.svg"); } - .popup-menu-item.selected .toggle-switch:checked { - background-image: url("common-assets/switch/switch-on-selected.svg"); } - -.shell-link { - color: #1e6ea7; } - .shell-link:hover { - color: #268bd2; } - -.headline { - font-size: 110%; } - -.lightbox { - background-color: black; } - -.flashspot { - background-color: white; } - -.modal-dialog { - color: #5c616c; - background-color: rgba(245, 246, 247, 0); - border: none; - border-image: url("light-assets/misc/modal.svg") 9 9 9 67; - padding: 0 5px 6px 5px; } - .modal-dialog > StBoxLayout:first-child { - padding: 20px 10px 10px 10px; } - .modal-dialog-button-box { - spacing: 0; - margin: 0px; - padding: 14px 10px; - background: none; - border: none; - border-image: url("light-assets/misc/button-box.svg") 9 9 9 9; } - .modal-dialog-button-box .button { - padding-top: 0; - padding-bottom: 0; - height: 30px; } - .modal-dialog .run-dialog-entry { - width: 21em; } - .modal-dialog .run-dialog-error-box { - padding-top: 5px; - spacing: 5px; } - .modal-dialog .run-dialog-label { - font-size: 0; } - -.show-processes-dialog-subject, -.mount-question-dialog-subject, -.end-session-dialog-subject { - font-size: 11pt; - font-weight: bold; - color: #5c616c; } - -.end-session-dialog { - spacing: 42px; } - .end-session-dialog-list { - padding-top: 20px; } - .end-session-dialog-layout { - padding-left: 17px; } - .end-session-dialog-layout:rtl { - padding-right: 17px; } - .end-session-dialog-description { - width: 28em; - padding-bottom: 10px; } - .end-session-dialog-description:rtl { - text-align: right; } - .end-session-dialog-warning { - width: 28em; - color: #cb4b16; - padding-top: 6px; } - .end-session-dialog-warning:rtl { - text-align: right; } - .end-session-dialog-logout-icon { - border: 0px solid transparent; - border-radius: 2px; - width: 48px; - height: 48px; - background-size: contain; } - .end-session-dialog-shutdown-icon { - color: #5c616c; - width: 48px; - height: 48px; } - .end-session-dialog-inhibitor-layout { - spacing: 16px; - max-height: 200px; - padding-right: 10px; - padding-left: 10px; } - .end-session-dialog-session-list, .end-session-dialog-app-list { - spacing: 1em; } - .end-session-dialog-list-header { - font-weight: bold; } - .end-session-dialog-list-header:rtl { - text-align: right; } - .end-session-dialog-app-list-item, .end-session-dialog-session-list-item { - spacing: 1em; } - .end-session-dialog-app-list-item-name, .end-session-dialog-session-list-item-name { - font-weight: bold; } - .end-session-dialog-app-list-item-description { - color: #686d7a; - font-size: 8pt; } - .end-session-dialog .button:last-child { - color: white; - background-color: #dc322f; - border-color: #dc322f; } - .end-session-dialog .button:last-child:hover { - color: white; - background-color: #e35956; - border-color: #e35956; } - .end-session-dialog .button:last-child:active { - color: white; - background-color: #cf2623; - border-color: #cf2623; } - -.shell-mount-operation-icon { - icon-size: 48px; } - -.show-processes-dialog, -.mount-question-dialog { - spacing: 24px; } - -.show-processes-dialog-subject, -.mount-question-dialog-subject { - padding-top: 10px; - padding-left: 17px; - padding-bottom: 6px; } - .show-processes-dialog-subject:rtl, - .mount-question-dialog-subject:rtl { - padding-left: 0px; - padding-right: 17px; } - -.mount-question-dialog-subject { - max-width: 500px; } - -.show-processes-dialog-description, -.mount-question-dialog-description { - padding-left: 17px; - width: 28em; } - .show-processes-dialog-description:rtl, - .mount-question-dialog-description:rtl { - padding-right: 17px; } - -.show-processes-dialog-app-list { - font-size: 10pt; - max-height: 200px; - padding-top: 24px; - padding-left: 49px; - padding-right: 32px; } - .show-processes-dialog-app-list:rtl { - padding-right: 49px; - padding-left: 32px; } - -.show-processes-dialog-app-list-item { - color: #454850; } - .show-processes-dialog-app-list-item:hover { - color: #5c616c; } - .show-processes-dialog-app-list-item:ltr { - padding-right: 1em; } - .show-processes-dialog-app-list-item:rtl { - padding-left: 1em; } - -.show-processes-dialog-app-list-item-icon:ltr { - padding-right: 17px; } - -.show-processes-dialog-app-list-item-icon:rtl { - padding-left: 17px; } - -.show-processes-dialog-app-list-item-name { - font-size: 10pt; } - -.prompt-dialog { - width: 500px; } - .prompt-dialog-main-layout { - spacing: 24px; - padding: 10px; } - .prompt-dialog-message-layout { - spacing: 16px; } - .prompt-dialog-headline { - font-size: 12pt; - font-weight: bold; - color: #5c616c; } - .prompt-dialog-descritption:rtl { - text-align: right; } - .prompt-dialog-password-box { - spacing: 1em; - padding-bottom: 1em; } - .prompt-dialog-error-label { - font-size: 9pt; - color: #dc322f; - padding-bottom: 8px; } - .prompt-dialog-info-label { - font-size: 9pt; - padding-bottom: 8px; } - .prompt-dialog-null-label { - font-size: 9pt; - padding-bottom: 8px; } - -.hidden { - color: transparent; } - -.polkit-dialog-user-layout { - padding-left: 10px; - spacing: 10px; } - .polkit-dialog-user-layout:rtl { - padding-left: 0px; - padding-right: 10px; } - -.polkit-dialog-user-root-label { - color: #cb4b16; } - -.polkit-dialog-user-user-icon { - border-radius: 2px; - background-size: contain; - width: 48px; - height: 48px; } - -.network-dialog-secret-table { - spacing-rows: 15px; - spacing-columns: 1em; } - -.keyring-dialog-control-table { - spacing-rows: 15px; - spacing-columns: 1em; } - -.popup-menu { - min-width: 200px; - color: #5c616c; - border-image: url("light-assets/menu/menu.svg") 9 9 9 9; } - .popup-menu .popup-sub-menu { - background: none; - box-shadow: none; - border-image: url("light-assets/menu/submenu.svg") 9 9 9 9; } - .popup-menu .popup-menu-content { - padding: 1em 0em 1em 0em; } - .popup-menu .popup-menu-item { - spacing: 12px; } - .popup-menu .popup-menu-item:ltr { - padding: .4em 3em .4em 0em; } - .popup-menu .popup-menu-item:rtl { - padding: .4em 0em .4em 3em; } - .popup-menu .popup-menu-item:checked { - font-weight: normal; - background: none; - box-shadow: none; - border-image: url("light-assets/menu/submenu-open.svg") 9 9 9 9; } - .popup-menu .popup-menu-item:active, .popup-menu .popup-menu-item.selected { - color: #fdf6e3; - background-color: transparent; - border-image: url("common-assets/menu/menu-hover.svg") 9 9 1 1; } - .popup-menu .popup-menu-item:insensitive { - color: rgba(92, 97, 108, 0.5); - background: none; } - .popup-menu .popup-inactive-menu-item { - color: #5c616c; } - .popup-menu .popup-inactive-menu-item:insensitive { - color: rgba(92, 97, 108, 0.55); } - .popup-menu.panel-menu { - -boxpointer-gap: 0px; - margin-bottom: 1.75em; } - -.popup-menu-ornament { - text-align: right; - margin-left: 10px; - width: 16px; } - -.popup-menu-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: transparent; - -arrow-border-width: 1px; - -arrow-border-color: transparent; - -arrow-base: 0; - -arrow-rise: 0; } - -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(7, 54, 66, 0.95); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0, 0, 0, 0.4); - -arrow-base: 5; - -arrow-rise: 5; } - -.popup-separator-menu-item { - height: 2px; - margin: 0; - background-color: transparent; - border: none; - border-image: url("common-assets/menu/menu-separator.svg") 1 1 1 1; } - -.background-menu { - -boxpointer-gap: 4px; - -arrow-rise: 0px; } - -.osd-window { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 20px; - margin: 32px; - min-width: 64px; - min-height: 64px; - color: white; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } - .osd-window .osd-monitor-label { - font-size: 3em; } - .osd-window .level { - padding: 0; - height: 4px; - background-color: rgba(0, 0, 0, 0.5); - border-radius: 2px; - color: #268bd2; } - -.resize-popup { - color: #657b83; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; - padding: 12px; } - -.switcher-popup { - padding: 8px; - spacing: 16px; } - -.switcher-list { - background: none; - border: none; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; } - .switcher-list-item-container { - spacing: 8px; } - .switcher-list .item-box { - padding: 8px; - border-radius: 2px; - border: 1px solid transparent; } - .switcher-list .item-box:outlined { - padding: 8px; - border: 1px solid #268bd2; } - .switcher-list .item-box:selected { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; } - .switcher-list .thumbnail-box { - padding: 2px; - spacing: 4px; } - .switcher-list .thumbnail { - width: 256px; } - .switcher-list .separator { - width: 1px; - background: rgba(92, 97, 108, 0.33); } - -.switcher-arrow { - border-color: transparent; - color: #657b83; } - .switcher-arrow:highlighted { - color: white; } - -.input-source-switcher-symbol { - font-size: 34pt; - width: 96px; - height: 96px; } - -.workspace-switcher { - background: transparent; - border: 0px; - border-radius: 0px; - padding: 0px; - spacing: 8px; } - .workspace-switcher-group { - padding: 12px; } - .workspace-switcher-container { - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; - padding-bottom: 24px; } - -.ws-switcher-active-up, .ws-switcher-active-down { - height: 30px; - background-color: #268bd2; - background-size: 96px; - border-radius: 2px; - border: 1px solid #268bd2; } - -.ws-switcher-active-up { - background-image: url("common-assets/misc/ws-switch-arrow-up.png"); } - -.ws-switcher-active-down { - background-image: url("common-assets/misc/ws-switch-arrow-down.png"); } - -.ws-switcher-box { - height: 96px; - background-color: rgba(0, 0, 0, 0.33); - border-color: rgba(0, 0, 0, 0.33); - border-radius: 2px; } - -.tile-preview { - background-color: rgba(38, 139, 210, 0.35); - border: 1px solid #268bd2; } - .tile-preview-left.on-primary { - border-radius: 0px 0 0 0; } - .tile-preview-right.on-primary { - border-radius: 0 0px 0 0; } - .tile-preview-left.tile-preview-right.on-primary { - border-radius: 0px 0px 0 0; } - -#panel { - font-weight: bold; - height: 2.1em; - min-height: 27px; - background-gradient-direction: none; - background-color: transparent; - border-bottom-width: 0; - border-image: url("common-assets/panel/panel.svg") 1 1 1 1; } - #panel.dynamic-top-bar-white-btn { - border-image: none; } - #panel.unlock-screen, #panel.login-screen, #panel.lock-screen { - background-color: transparent; - border-image: none; } - #panel:overview { - border-image: url("common-assets/panel/panel-overview.svg") 1 1 1 1; } - #panel #panelLeft, #panel #panelCenter { - spacing: 8px; } - #panel .panel-corner { - -panel-corner-radius: 0px; - -panel-corner-background-color: transparent; - -panel-corner-border-width: 0px; - -panel-corner-border-color: black; } - #panel .panel-corner:active, #panel .panel-corner:overview, #panel .panel-corner:focus { - -panel-corner-border-color: black; } - #panel .panel-corner.lock-screen, #panel .panel-corner.login-screen, #panel .panel-cornerunlock-screen { - -panel-corner-radius: 0; - -panel-corner-background-color: transparent; - -panel-corner-border-color: transparent; } - #panel .panel-button { - -natural-hpadding: 10px; - -minimum-hpadding: 6px; - font-weight: bold; - color: white; - transition-duration: 100ms; - border-bottom-width: 1px; - border-color: transparent; } - #panel .panel-button .app-menu-icon { - width: 0; - height: 0; - margin-left: 0px; - margin-right: 0px; } - #panel .panel-button:hover { - color: white; - background-color: rgba(0, 0, 0, 0.17); - border-bottom-width: 1px; - border-color: transparent; } - #panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel .panel-button:checked { - color: #fdf6e3; - background-color: #268bd2; - box-shadow: none; - border-bottom-width: 1px; - border-color: black; } - #panel .panel-button:active > .system-status-icon, #panel .panel-button:overview > .system-status-icon, #panel .panel-button:focus > .system-status-icon, #panel .panel-button:checked > .system-status-icon { - icon-shadow: none; } - #panel .panel-button .system-status-icon { - icon-size: 16px; - padding: 0 4px; } - .unlock-screen #panel .panel-button, - .login-screen #panel .panel-button, - .lock-screen #panel .panel-button { - color: #737a88; } - .unlock-screen #panel .panel-button:focus, .unlock-screen #panel .panel-button:hover, .unlock-screen #panel .panel-button:active, - .login-screen #panel .panel-button:focus, - .login-screen #panel .panel-button:hover, - .login-screen #panel .panel-button:active, - .lock-screen #panel .panel-button:focus, - .lock-screen #panel .panel-button:hover, - .lock-screen #panel .panel-button:active { - color: #737a88; } - #panel #panelActivities.panel-button { - -natural-hpadding: 12px; } - #panel .panel-status-indicators-box, - #panel .panel-status-menu-box { - spacing: 2px; } - #panel .screencast-indicator { - color: #dc322f; } - #panel .clock-display > * > *:last-child { - color: #268bd2; - margin-left: .3em; } - #panel .popup-menu-arrow { - width: 0; } - -#panel #panelActivities.panel-button > * { - background-image: url("common-assets/panel/activities.svg"); - background-position: center top; - width: 24px; - height: 24px; - background-color: transparent !important; - background-gradient-direction: none !important; - border: 0 solid transparent !important; - text-shadow: 0 0 transparent !important; - transition-duration: 0ms !important; - box-shadow: none !important; - color: transparent; } - -#panel #panelActivities.panel-button:active, #panel #panelActivities.panel-button:overview, #panel #panelActivities.panel-button:focus, #panel #panelActivities.panel-button:checked { - background-color: transparent; - box-shadow: none; - border-bottom-width: 1px; - border-color: transparent; } - #panel #panelActivities.panel-button:active > *, #panel #panelActivities.panel-button:overview > *, #panel #panelActivities.panel-button:focus > *, #panel #panelActivities.panel-button:checked > * { - background-image: url("common-assets/panel/activities-active.svg"); } - -.system-switch-user-submenu-icon { - icon-size: 24px; - border: 1px solid rgba(92, 97, 108, 0.4); } - -#appMenu { - spinner-image: url("common-assets/misc/process-working.svg"); - spacing: 4px; - padding: 0 8px; } - #appMenu .label-shadow { - color: transparent; } - -.aggregate-menu { - width: 360px; } - .aggregate-menu .popup-menu-icon { - padding: 0 4px; } - -.system-menu-action { - padding: 13px; - color: #5c616c; - border-radius: 32px; - /* wish we could do 50% */ - border: 1px solid transparent; } - .system-menu-action:hover, .system-menu-action:focus { - transition-duration: 100ms; - padding: 13px; - color: #5c616c; - background-color: transparent; - border: 1px solid #268bd2; } - .system-menu-action:active { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; } - .system-menu-action > StIcon { - icon-size: 16px; } - -#calendarArea { - padding: 0.75em 1.0em; } - -.calendar { - margin-bottom: 1em; } - -.calendar, -.datemenu-today-button, -.datemenu-displays-box, -.message-list-sections { - margin: 0 1.5em; } - -.datemenu-calendar-column { - spacing: 0.5em; } - -.datemenu-displays-section { - padding-bottom: 3em; } - -.datemenu-today-button, -.world-clocks-button, -.message-list-section-title { - border-radius: 3px; - padding: .4em; } - -.message-list-section-list:ltr { - padding-left: .4em; } - -.message-list-section-list:rtl { - padding-right: .4em; } - -.datemenu-today-button, -.world-clocks-button, -.message-list-section-title { - padding: 7px 10px 7px 10px; - border: 1px solid rgba(253, 246, 227, 0); } - .datemenu-today-button:hover, .datemenu-today-button:focus, - .world-clocks-button:hover, - .world-clocks-button:focus, - .message-list-section-title:hover, - .message-list-section-title:focus { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: white; - border: 1px solid #657b83; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); } - .datemenu-today-button:active, - .world-clocks-button:active, - .message-list-section-title:active { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - -.datemenu-today-button .date-label { - font-size: 1.5em; } - -.world-clocks-header, -.message-list-section-title { - color: rgba(92, 97, 108, 0.4); - font-weight: bold; } - -.world-clocks-button:active .world-clocks-header { - color: #fdf6e3; } - -.world-clocks-grid { - spacing-rows: 0.4em; } - -.calendar-month-label { - color: #5c616c; - font-weight: bold; - padding: 8px 0; } - -.pager-button { - color: transparent; - background-color: transparent; - width: 32px; - border-radius: 2px; } - .pager-button:focus, .pager-button:hover, .pager-button:active { - background-color: transparent; } - -.calendar-change-month-back { - background-image: url("light-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:focus, .calendar-change-month-back:hover { - background-image: url("light-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-back:active { - background-image: url("light-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:rtl { - background-image: url("light-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { - background-image: url("light-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-back:rtl:active { - background-image: url("light-assets/misc/calendar-arrow-right.svg"); } - -.calendar-change-month-forward { - background-image: url("light-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { - background-image: url("light-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-forward:active { - background-image: url("light-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:rtl { - background-image: url("light-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { - background-image: url("light-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-forward:rtl:active { - background-image: url("light-assets/misc/calendar-arrow-left.svg"); } - -.calendar-day-base { - font-size: 80%; - text-align: center; - width: 25px; - height: 25px; - padding: 0.1em; - margin: 2px; - border-radius: 12.5px; } - .calendar-day-base:hover, .calendar-day-base:focus { - background-color: rgba(0, 0, 0, 0.1); } - .calendar-day-base:active { - color: #5c616c; - background-color: rgba(0, 0, 0, 0.15); - border-width: 0; } - .calendar-day-base.calendar-day-heading { - color: rgba(92, 97, 108, 0.85); - margin-top: 1em; - font-size: 70%; } - -.calendar-day { - border-width: 0; - color: rgba(92, 97, 108, 0.8); } - -.calendar-day-top { - border-top-width: 0; } - -.calendar-day-left { - border-left-width: 0; } - -.calendar-nonwork-day { - color: #5c616c; - font-weight: bold; } - -.calendar-today, -.calendar-today:active, -.calendar-today:focus, -.calendar-today:hover { - font-weight: bold; - color: #fdf6e3; - background-color: #268bd2; - border-width: 0; } - -.calendar-day-with-events { - color: #268bd2; - font-weight: bold; } - -.calendar-today.calendar-day-with-events { - color: #fdf6e3; } - -.calendar-other-month-day { - color: rgba(92, 97, 108, 0.3); - opacity: 1; } - -.message-list { - width: 420px; } - .message-list-sections { - spacing: 1.5em; } - .message-list-section, .message-list-section-list { - spacing: 0.7em; } - .message-list-section-list-title-box { - spacing: 0.4em; } - .message-list-placeholder StIcon { - width: 0; - height: 0; } - .message-list-placeholder StLabel { - color: rgba(92, 97, 108, 0.55); } - .message-list-section-close > StIcon { - icon-size: 18px; - border-radius: 0px; - color: transparent; - background-color: transparent; - background-image: url("light-assets/misc/message-close.svg"); } - .message-list-section-close:hover > StIcon { - color: transparent; - background-color: transparent; - background-image: url("light-assets/misc/message-close-hover.svg"); } - .message-list-section-close:active > StIcon { - color: transparent; - background-color: transparent; - background-image: url("light-assets/misc/message-close-active.svg"); } - -.message { - padding: 4px; - color: #5c616c; - border-image: url("light-assets/misc/message.svg") 9 9 9 9; } - .message:hover, .message:focus { - color: #5c616c; - border-image: url("light-assets/misc/message-hover.svg") 9 9 9 9; } - .message:active { - color: #fdf6e3; - border-image: url("light-assets/misc/message-active.svg") 9 9 9 9; } - .message-icon-bin { - padding: 8px 0px 8px 8px; } - .message-icon-bin:rtl { - padding: 8px 8px 8px 0px; } - .message-icon-bin > StIcon { - icon-size: 48px; } - .message-secondary-bin { - color: rgba(92, 97, 108, 0.4); } - .message-secondary-bin > StIcon { - icon-size: 16px; } - .message-title { - font-weight: bold; - padding: 2px 0 2px 0; } - .message-content { - padding: 8px; } - -.ripple-box { - width: 52px; - height: 52px; - background-image: url("common-assets/misc/corner-ripple-ltr.svg"); - background-size: contain; } - .ripple-box:rtl { - background-image: url("common-assets/misc/corner-ripple-rtl.svg"); } - -.popup-menu-arrow { - width: 16px; - height: 16px; } - -.popup-menu-icon { - icon-size: 16px; } - -.window-close { - background-image: url("common-assets/misc/close.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - .window-close:hover { - background-image: url("common-assets/misc/close-hover.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - .window-close:active { - background-image: url("common-assets/misc/close-active.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - -.window-close { - -shell-close-overlap: 11px; } - -.nm-dialog { - max-height: 500px; - min-height: 450px; - min-width: 470px; } - .nm-dialog-content { - spacing: 20px; } - .nm-dialog-header-hbox { - spacing: 10px; } - .nm-dialog-airplane-box { - spacing: 12px; } - .nm-dialog-airplane-headline { - font-size: 1.1em; - font-weight: bold; - text-align: center; } - .nm-dialog-airplane-text { - color: #5c616c; } - .nm-dialog-header-icon { - icon-size: 32px; } - .nm-dialog-scroll-view { - border: 1px solid #dcdfe3; - border-radius: 2px; - background-color: #fdf6e3; } - .nm-dialog-header { - font-weight: bold; - font-size: 1.2em; } - .nm-dialog-item { - font-size: 1em; - border-bottom: 0px solid; - padding: 12px; - spacing: 0px; } - .nm-dialog-item:selected { - background-color: #268bd2; - color: #fdf6e3; } - .nm-dialog-icons { - spacing: .5em; } - .nm-dialog-icon { - icon-size: 16px; } - -.no-networks-label { - color: rgba(92, 97, 108, 0.55); } - -.no-networks-box { - spacing: 12px; } - -#overview { - spacing: 24px; } - -.overview-controls { - padding-bottom: 32px; } - -.window-picker { - -horizontal-spacing: 32px; - -vertical-spacing: 32px; - padding-left: 32px; - padding-right: 32px; - padding-bottom: 48px; } - .window-picker.external-monitor { - padding: 32px; } - -.window-clone-border { - border: 3px solid rgba(38, 139, 210, 0.8); - border-radius: 4px; - box-shadow: inset 0px 0px 0px 1px rgba(38, 139, 210, 0); } - -.window-caption, .window-caption:hover { - spacing: 25px; - color: #657b83; - background-color: rgba(0, 0, 0, 0.7); - border-radius: 2px; - padding: 4px 12px; - -shell-caption-spacing: 12px; } - -.search-entry { - width: 320px; - padding: 7px 9px; - border-radius: 20px; - border: 1px solid rgba(0, 0, 0, 0.25); - background-color: rgba(253, 246, 227, 0.9); } - .search-entry:focus { - padding: 7px 9px; } - .search-entry .search-entry-icon { - icon-size: 16px; - padding: 0 4px; - color: #5c616c; } - .search-entry:hover, .search-entry:focus { - color: #fdf6e3; - caret-color: #fdf6e3; - background-color: #268bd2; - selection-background-color: #fdf6e3; - selected-color: #268bd2; } - .search-entry:hover .search-entry-icon, .search-entry:focus .search-entry-icon { - color: #fdf6e3; } - -#searchResultsBin { - max-width: 1000px; } - -#searchResultsContent { - padding-left: 20px; - padding-right: 20px; - spacing: 16px; } - -.search-section { - spacing: 16px; } - -.search-section-content { - spacing: 32px; } - -.list-search-results { - spacing: 3px; } - -.search-section-separator { - background-color: rgba(255, 255, 255, 0.2); - -margin-horizontal: 1.5em; - height: 1px; } - -.list-search-result-content { - spacing: 12px; - padding: 12px; } - -.list-search-result-title { - font-size: 1.5em; - color: white; } - -.list-search-result-description { - color: #cccccc; } - -.search-provider-icon { - padding: 15px; } - -.search-provider-icon-more { - width: 16px; - height: 16px; - background-image: url("common-assets/misc/more-results.svg"); } - -#dash { - font-size: 1em; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(0, 0, 0, 0.4); - padding: 4px 0; - border-radius: 0 3px 3px 0; } - #dash:rtl { - border-radius: 3px 0 0 3px; } - .right #dash, #dash:rtl { - padding: 4px 0; } - .top #dash, .bottom #dash { - padding: 0; } - #dash .placeholder { - background-image: url("common-assets/dash/dash-placeholder.svg"); - background-size: contain; - height: 24px; } - #dash .empty-dash-drop-target { - width: 24px; - height: 24px; } - -.dash-item-container > StWidget, .dash-item-container > StWidget:rtl, .right .dash-item-container > StWidget { - padding: 4px 8px; } - -.top .dash-item-container > StWidget, .bottom .dash-item-container > StWidget { - padding: 6px; } - -.dash-label { - border-radius: 3px; - padding: 4px 12px; - color: white; - background-color: rgba(0, 0, 0, 0.7); - text-align: center; - -x-offset: 3px; } - .bottom .dash-label, .top .dash-label { - -y-offset: 3px; - -x-offset: 0; } - -#dash .app-well-app:hover .overview-icon, -.right #dash .app-well-app:hover .overview-icon, -.bottom #dash .app-well-app:hover .overview-icon, -.top #dash .app-well-app:hover .overview-icon { - background-color: #268bd2; } - -#dash .app-well-app:active .overview-icon, -.right #dash .app-well-app:active .overview-icon, -.bottom #dash .app-well-app:active .overview-icon, -.top #dash .app-well-app:active .overview-icon { - box-shadow: none; - background-color: #1e6ea7; } - -#dash .app-well-app-running-dot { - width: 11px; - height: 2px; - margin-bottom: 2px; - background-color: #268bd2; } - -#dashtodockContainer .app-well-app-running-dot { - background: none; - width: 28px; - height: 4px; } - -#dashtodockContainer .running1 .app-well-app-running-dot { - background-image: url("common-assets/dash/running1.svg"); } - -#dashtodockContainer .running2 .app-well-app-running-dot { - background-image: url("common-assets/dash/running2.svg"); } - -#dashtodockContainer .running3 .app-well-app-running-dot { - background-image: url("common-assets/dash/running3.svg"); } - -#dashtodockContainer .running4 .app-well-app-running-dot { - background-image: url("common-assets/dash/running4.svg"); } - -.show-apps .overview-icon { - background-color: rgba(0, 0, 0, 0.5); - border-radius: 2px; - border: 0px solid; } - -.show-apps:hover .overview-icon { - background-color: rgba(0, 0, 0, 0.7); - color: #268bd2; } - -.show-apps:active .overview-icon, -.show-apps:active .show-apps-icon, -.show-apps:checked .overview-icon, -.show-apps:checked .show-apps-icon { - color: #fdf6e3; - background-color: #268bd2; - box-shadow: none; - transition-duration: 0ms; } - -.icon-grid { - spacing: 30px; - -shell-grid-horizontal-item-size: 136px; - -shell-grid-vertical-item-size: 136px; } - .icon-grid .overview-icon { - icon-size: 96px; } - -.app-view-controls { - padding-bottom: 32px; } - -.app-view-control { - padding: 4px 32px; - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .app-view-control:hover { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .app-view-control:checked { - color: #fdf6e3; - background-color: #268bd2; } - .app-view-control:first-child:ltr, .app-view-control:last-child:rtl { - border-radius: 2px 0 0 2px; - border-right-width: 0; } - .app-view-control:last-child:ltr, .app-view-control:first-child:rtl { - border-radius: 0 2px 2px 0; - border-left-width: 0; } - -.search-provider-icon:active, .search-provider-icon:checked, -.list-search-result:active, -.list-search-result:checked { - background-color: rgba(2, 16, 20, 0.85); } - -.search-provider-icon:focus, .search-provider-icon:selected, .search-provider-icon:hover, -.list-search-result:focus, -.list-search-result:selected, -.list-search-result:hover { - background-color: rgba(101, 123, 131, 0.4); - transition-duration: 200ms; } - -.app-well-app:active .overview-icon, -.app-well-app:checked .overview-icon, -.app-well-app.app-folder:active .overview-icon, -.app-well-app.app-folder:checked .overview-icon, -.grid-search-result:active .overview-icon, -.grid-search-result:checked .overview-icon { - background-color: rgba(2, 16, 20, 0.85); - box-shadow: inset 0 0 #268bd2; } - -.app-well-app:hover .overview-icon, -.app-well-app:focus .overview-icon, -.app-well-app:selected .overview-icon, -.app-well-app.app-folder:hover .overview-icon, -.app-well-app.app-folder:focus .overview-icon, -.app-well-app.app-folder:selected .overview-icon, -.grid-search-result:hover .overview-icon, -.grid-search-result:focus .overview-icon, -.grid-search-result:selected .overview-icon { - background-color: rgba(101, 123, 131, 0.4); - transition-duration: 0ms; - border-image: none; - background-image: none; } - -.app-well-app-running-dot { - width: 20px; - height: 2px; - margin-bottom: 4px; - background-color: #268bd2; } - -.search-provider-icon, -.list-search-result, .app-well-app .overview-icon, -.app-well-app.app-folder .overview-icon, -.grid-search-result .overview-icon { - color: white; - border-radius: 2px; - padding: 6px; - border: 1px solid transparent; - transition-duration: 0ms; - text-align: center; } - -.app-well-app.app-folder > .overview-icon { - background-color: rgba(3, 24, 29, 0.95); - border: 1px solid rgba(0, 0, 0, 0.45); } - -.app-well-app.app-folder:hover > .overview-icon { - background-color: rgba(8, 65, 80, 0.95); } - -.app-well-app.app-folder:active > .overview-icon, .app-well-app.app-folder:checked > .overview-icon { - color: #fdf6e3; - background-color: #268bd2; - box-shadow: none; } - -.app-well-app.app-folder:focus > .overview-icon { - background-color: #268bd2; } - -.app-folder-popup { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(3, 24, 29, 0.95); - -arrow-border-color: rgba(0, 0, 0, 0.45); - -arrow-border-width: 1px; - -arrow-base: 5; - -arrow-rise: 5; } - -.app-folder-popup-bin { - padding: 5px; } - -.app-folder-icon { - padding: 5px; - spacing-rows: 5px; - spacing-columns: 5px; } - -.page-indicator { - padding: 15px 20px; } - .page-indicator .page-indicator-icon { - width: 18px; - height: 18px; - background-image: url(common-assets/misc/page-indicator-inactive.svg); } - .page-indicator:hover .page-indicator-icon { - background-image: url(common-assets/misc/page-indicator-hover.svg); } - .page-indicator:active .page-indicator-icon { - background-image: url(common-assets/misc/page-indicator-active.svg); } - .page-indicator:checked .page-indicator-icon, .page-indicator:checked:active { - background-image: url(common-assets/misc/page-indicator-checked.svg); } - -.app-well-app > .overview-icon.overview-icon-with-label, -.grid-search-result .overview-icon.overview-icon-with-label { - padding: 10px 8px 5px 8px; - spacing: 4px; } - -.workspace-thumbnails, .workspace-thumbnails:rtl, -.workspace-thumbnails-left, -.workspace-thumbnails-left:rtl { - visible-width: 40px; - spacing: 11px; - padding: 12px; } - -.workspace-thumbnails, -.workspace-thumbnails-left:rtl { - padding-right: 7px; - border-image: url("common-assets/dash/dash-right.svg") 9 9 9 9; } - -.workspace-thumbnails:rtl, -.workspace-thumbnails-left { - padding-left: 7px; - border-image: url("common-assets/dash/dash-left.svg") 9 9 9 9; } - -.workspace-thumbnail-indicator { - border: 4px solid rgba(38, 139, 210, 0.8); - border-radius: 1px; - padding: 1px; } - -.search-display > StBoxLayout, -.all-apps, -.frequent-apps > StBoxLayout { - padding: 0px 88px 10px 88px; } - -.search-statustext, .no-frequent-applications-label { - font-size: 2em; - font-weight: bold; - color: #5c616c; } - -.url-highlighter { - link-color: #1e6ea7; } - -.notification-banner, -.notification-banner:hover, -.notification-banner:focus { - font-size: 1em; - width: 34em; - margin: 5px; - padding: 10px; - color: #5c616c; - background-color: transparent; - border: 1px solid transparent; - border-image: url("light-assets/menu/menu.svg") 9 9 9 9; } - .notification-banner .notification-icon, - .notification-banner:hover .notification-icon, - .notification-banner:focus .notification-icon { - padding: 5px; } - .notification-banner .notification-content, - .notification-banner:hover .notification-content, - .notification-banner:focus .notification-content { - padding: 5px; - spacing: 5px; } - .notification-banner .secondary-icon, - .notification-banner:hover .secondary-icon, - .notification-banner:focus .secondary-icon { - icon-size: 1.09em; } - .notification-banner .notification-actions, - .notification-banner:hover .notification-actions, - .notification-banner:focus .notification-actions { - background-color: transparent; - padding: 2px 2px 0 2px; - spacing: 3px; } - .notification-banner .notification-button, - .notification-banner:hover .notification-button, - .notification-banner:focus .notification-button { - padding: 4px 4px 5px; } - .notification-banner .notification-button:first-child, .notification-banner .notification-button:last-child, - .notification-banner:hover .notification-button:first-child, - .notification-banner:hover .notification-button:last-child, - .notification-banner:focus .notification-button:first-child, - .notification-banner:focus .notification-button:last-child { - border-radius: 2px; } - -.secondary-icon { - icon-size: 1.09em; } - -.chat-body { - spacing: 5px; } - -.chat-response { - margin: 5px; } - -.chat-log-message { - color: #5c616c; } - -.chat-new-group { - padding-top: 1em; } - -.chat-received { - padding-left: 4px; } - .chat-received:rtl { - padding-left: 0px; - padding-right: 4px; } - -.chat-sent { - padding-left: 18pt; - color: #268bd2; } - .chat-sent:rtl { - padding-left: 0; - padding-right: 18pt; } - -.chat-meta-message { - padding-left: 4px; - font-size: 9pt; - font-weight: bold; - color: rgba(92, 97, 108, 0.6); } - .chat-meta-message:rtl { - padding-left: 0; - padding-right: 4px; } - -.subscription-message { - font-style: italic; } - -.hotplug-transient-box { - spacing: 6px; - padding: 2px 72px 2px 12px; } - -.hotplug-notification-item { - padding: 2px 10px; } - .hotplug-notification-item:focus { - padding: 2px 10px; } - -.hotplug-notification-item-icon { - icon-size: 24px; - padding: 2px 5px; } - -.hotplug-resident-box { - spacing: 8px; } - -.hotplug-resident-mount { - spacing: 8px; - border-radius: 4px; } - .hotplug-resident-mount:hover { - background-color: rgba(245, 246, 247, 0.3); } - -.hotplug-resident-mount-label { - color: inherit; - padding-left: 6px; } - -.hotplug-resident-mount-icon { - icon-size: 24px; - padding-left: 6px; } - -.hotplug-resident-eject-icon { - icon-size: 16px; } - -.hotplug-resident-eject-button { - padding: 7px; - border-radius: 5px; - color: pink; } - -.legacy-tray { - background-color: rgba(5, 36, 44, 0.95); } - .legacy-tray:ltr { - border-radius: 0 2px 0 0; - border-left-width: 0; } - .legacy-tray:rtl { - border-radius: 2px 0 0 0; - border-right-width: 0; } - -.legacy-tray-handle, -.legacy-tray-icon { - padding: 6px; } - .legacy-tray-handle StIcon, - .legacy-tray-icon StIcon { - icon-size: 24px; } - .legacy-tray-handle:hover, .legacy-tray-handle:focus, - .legacy-tray-icon:hover, - .legacy-tray-icon:focus { - background-color: rgba(92, 97, 108, 0.1); } - -.legacy-tray-icon-box { - spacing: 12px; } - .legacy-tray-icon-box:ltr { - padding-left: 12px; } - .legacy-tray-icon-box:rtl { - padding-right: 12px; } - .legacy-tray-icon-box StButton { - width: 24px; - height: 24px; } - -.magnifier-zoom-region { - border: 2px solid #268bd2; } - .magnifier-zoom-region.full-screen { - border-width: 0; } - -#keyboard { - background-color: rgba(7, 54, 66, 0.95); - border-width: 0; - border-top-width: 1px; - border-color: rgba(0, 0, 0, 0.2); } - -.keyboard-layout { - spacing: 10px; - padding: 10px; } - -.keyboard-row { - spacing: 15px; } - -.keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; - font-weight: bold; - border-radius: 3px; - box-shadow: none; - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .keyboard-key:hover { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .keyboard-key:active, .keyboard-key:checked { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #fdf6e3; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: #268bd2; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - .keyboard-key:grayed { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #234b56; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - -.keyboard-subkeys { - color: #657b83; - padding: 5px; - -arrow-border-radius: 2px; - -arrow-background-color: rgba(7, 54, 66, 0.95); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0, 0, 0, 0.4); - -arrow-base: 20px; - -arrow-rise: 10px; - -boxpointer-gap: 5px; } - -.candidate-popup-content { - padding: 0.5em; - spacing: 0.3em; - color: #657b83; - font-size: 1.15em; } - -.candidate-index { - padding: 0 0.5em 0 0; - color: #7f949c; } - -.candidate-box { - padding: 0.3em 0.5em 0.3em 0.5em; - border-radius: 2px; - color: #657b83; } - .candidate-box:selected, .candidate-box:hover { - background-color: #268bd2; - color: #fdf6e3; } - -.candidate-page-button-box { - height: 2em; } - .vertical .candidate-page-button-box { - padding-top: 0.5em; } - .horizontal .candidate-page-button-box { - padding-left: 0.5em; } - -.candidate-page-button { - padding: 4px; } - -.candidate-page-button-previous { - border-radius: 2px 0px 0px 2px; - border-right-width: 0; } - -.candidate-page-button-next { - border-radius: 0px 2px 2px 0px; } - -.candidate-page-button-icon { - icon-size: 1em; } - -.framed-user-icon { - background-size: contain; - border: 0px solid transparent; - color: #5c616c; - border-radius: 2px; } - .framed-user-icon:hover { - border-color: transparent; - color: #b8c4c9; } - -.login-dialog-banner-view { - padding-top: 24px; - max-width: 23em; } - -.login-dialog { - border: none; - background-color: transparent; } - .login-dialog .modal-dialog-button-box { - spacing: 3px; } - .login-dialog .modal-dialog-button { - padding: 3px 18px; } - .login-dialog .modal-dialog-button:default { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: #fbfbfc; - border: 1px solid #657b83; - box-shadow: inset 0 1px rgba(251, 251, 252, 0.05); } - .login-dialog .modal-dialog-button:default:hover, .login-dialog .modal-dialog-button:default:focus { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: white; - border: 1px solid #657b83; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); } - .login-dialog .modal-dialog-button:default:active { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - .login-dialog .modal-dialog-button:default:insensitive { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: rgba(92, 97, 108, 0.55); - border: 1px solid rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); - box-shadow: inset 0 1px rgba(251, 251, 252, 0.05); } - -.login-dialog-logo-bin { - padding: 24px 0px; } - -.login-dialog-banner { - color: #4f6066; } - -.login-dialog-button-box { - spacing: 5px; } - -.login-dialog-message-warning { - color: #cb4b16; } - -.login-dialog-message-hint { - padding-top: 0; - padding-bottom: 20px; } - -.login-dialog-user-selection-box { - padding: 100px 0px; } - .login-dialog-user-selection-box .login-dialog-not-listed-label { - padding-left: 2px; } - .login-dialog-not-listed-button:focus .login-dialog-user-selection-box .login-dialog-not-listed-label, - .login-dialog-not-listed-button:hover .login-dialog-user-selection-box .login-dialog-not-listed-label { - color: #657b83; } - -.login-dialog-not-listed-label { - font-size: 90%; - font-weight: bold; - color: #222a2d; - padding-top: 1em; } - -.login-dialog-user-list-view { - -st-vfade-offset: 1em; } - -.login-dialog-user-list { - spacing: 12px; - padding: .2em; - width: 23em; } - .login-dialog-user-list:expanded .login-dialog-user-list-item:focus { - background-color: #268bd2; - color: #fdf6e3; } - .login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in { - border-right: 2px solid #268bd2; } - -.login-dialog-user-list-item { - border-radius: 5px; - padding: .2em; - color: #222a2d; } - .login-dialog-user-list-item:ltr { - padding-right: 1em; } - .login-dialog-user-list-item:rtl { - padding-left: 1em; } - .login-dialog-user-list-item:hover { - background-color: #268bd2; - color: #fdf6e3; } - .login-dialog-user-list-item .login-dialog-timed-login-indicator { - height: 2px; - margin: 2px 0 0 0; - background-color: #657b83; } - .login-dialog-user-list-item:focus .login-dialog-timed-login-indicator { - background-color: #fdf6e3; } - -.login-dialog-username, -.user-widget-label { - color: #657b83; - font-size: 120%; - font-weight: bold; - text-align: left; - padding-left: 15px; } - -.user-widget-label:ltr { - padding-left: 18px; } - -.user-widget-label:rtl { - padding-right: 18px; } - -.login-dialog-prompt-layout { - padding-top: 24px; - padding-bottom: 12px; - spacing: 8px; - width: 23em; } - -.login-dialog-prompt-label { - color: #394549; - font-size: 110%; - padding-top: 1em; } - -.login-dialog-session-list-button StIcon { - icon-size: 1.25em; } - -.login-dialog-session-list-button { - color: #222a2d; } - .login-dialog-session-list-button:hover, .login-dialog-session-list-button:focus { - color: #657b83; } - .login-dialog-session-list-button:active { - color: black; } - -.screen-shield-arrows { - padding-bottom: 3em; } - -.screen-shield-arrows Gjs_Arrow { - color: white; - width: 80px; - height: 48px; - -arrow-thickness: 12px; - -arrow-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); } - -.screen-shield-clock { - color: white; - text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6); - font-weight: bold; - text-align: center; - padding-bottom: 1.5em; } - -.screen-shield-clock-time { - font-size: 72pt; - text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4); } - -.screen-shield-clock-date { - font-size: 28pt; } - -.screen-shield-notifications-container { - spacing: 6px; - width: 30em; - background-color: transparent; - max-height: 500px; } - .screen-shield-notifications-container .summary-notification-stack-scrollview { - padding-top: 0; - padding-bottom: 0; } - .screen-shield-notifications-container .notification, - .screen-shield-notifications-container .screen-shield-notification-source { - padding: 12px 6px; - border: 1px solid rgba(101, 123, 131, 0.2); - background-color: rgba(7, 54, 66, 0.45); - color: #657b83; - border-radius: 4px; } - .screen-shield-notifications-container .notification { - margin-right: 15px; } - -.screen-shield-notification-label { - font-weight: bold; - padding: 0px 0px 0px 12px; } - -.screen-shield-notification-count-text { - padding: 0px 0px 0px 12px; } - -#panel.lock-screen { - background-color: rgba(7, 54, 66, 0.5); } - -.screen-shield-background { - background: black; - box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4); } - -#lockDialogGroup { - background: #2e3436 url(misc/noise-texture.png); - background-repeat: repeat; } - -#screenShieldNotifications StButton#vhandle, #screenShieldNotifications StButton#hhandle { - background-color: rgba(245, 246, 247, 0.3); } - #screenShieldNotifications StButton#vhandle:hover, #screenShieldNotifications StButton#vhandle:focus, #screenShieldNotifications StButton#hhandle:hover, #screenShieldNotifications StButton#hhandle:focus { - background-color: rgba(245, 246, 247, 0.5); } - #screenShieldNotifications StButton#vhandle:active, #screenShieldNotifications StButton#hhandle:active { - background-color: rgba(38, 139, 210, 0.5); } - -#LookingGlassDialog { - spacing: 4px; - padding: 8px 8px 10px 8px; - background-color: rgba(0, 0, 0, 0.7); - border: 1px solid black; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 2px; - color: #657b83; } - #LookingGlassDialog > #Toolbar { - padding: 3px; - border: none; - background-color: transparent; - border-radius: 0px; } - #LookingGlassDialog .labels { - spacing: 4px; } - #LookingGlassDialog .notebook-tab { - -natural-hpadding: 12px; - -minimum-hpadding: 6px; - font-weight: bold; - color: #657b83; - transition-duration: 100ms; - padding-left: .3em; - padding-right: .3em; } - #LookingGlassDialog .notebook-tab:hover { - color: white; - text-shadow: black 0px 2px 2px; } - #LookingGlassDialog .notebook-tab:selected { - border-bottom-width: 0px; - color: #268bd2; - text-shadow: black 0px 2px 2px; } - #LookingGlassDialog StBoxLayout#EvalBox { - padding: 4px; - spacing: 4px; } - #LookingGlassDialog StBoxLayout#ResultsArea { - spacing: 4px; } - -.lg-dialog StEntry { - selection-background-color: #268bd2; - selected-color: #fdf6e3; - color: #657b83; - background-color: rgba(18, 137, 167, 0.35); - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .lg-dialog StEntry:focus { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - -.lg-dialog .shell-link { - color: #1e6ea7; } - .lg-dialog .shell-link:hover { - color: #268bd2; } - -.lg-completions-text { - font-size: .9em; - font-style: italic; } - -.lg-obj-inspector-title { - spacing: 4px; } - -.lg-obj-inspector-button { - border: 1px solid gray; - padding: 4px; - border-radius: 4px; } - .lg-obj-inspector-button:hover { - border: 1px solid #fdf6e3; } - -#lookingGlassExtensions { - padding: 4px; } - -.lg-extensions-list { - padding: 4px; - spacing: 6px; } - -.lg-extension { - border: 1px solid rgba(0, 0, 0, 0.7); - border-radius: 2px; - background-color: rgba(7, 54, 66, 0.95); - padding: 4px; } - -.lg-extension-name { - font-weight: bold; } - -.lg-extension-meta { - spacing: 6px; } - -#LookingGlassPropertyInspector { - background: rgba(0, 0, 0, 0.7); - border: 1px solid grey; - border-radius: 2px; - padding: 6px; } diff --git a/common/gnome-shell/3.16/light-assets/checkbox/checkbox-checked-focused.svg b/common/gnome-shell/3.16/light-assets/checkbox/checkbox-checked-focused.svg deleted file mode 100644 index 712a930..0000000 --- a/common/gnome-shell/3.16/light-assets/checkbox/checkbox-checked-focused.svg +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/checkbox/checkbox-checked.svg b/common/gnome-shell/3.16/light-assets/checkbox/checkbox-checked.svg deleted file mode 100644 index 3e695f2..0000000 --- a/common/gnome-shell/3.16/light-assets/checkbox/checkbox-checked.svg +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/checkbox/checkbox-unchecked-focused.svg b/common/gnome-shell/3.16/light-assets/checkbox/checkbox-unchecked-focused.svg deleted file mode 100644 index 89b2c49..0000000 --- a/common/gnome-shell/3.16/light-assets/checkbox/checkbox-unchecked-focused.svg +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/checkbox/checkbox-unchecked.svg b/common/gnome-shell/3.16/light-assets/checkbox/checkbox-unchecked.svg deleted file mode 100644 index 08ee9e5..0000000 --- a/common/gnome-shell/3.16/light-assets/checkbox/checkbox-unchecked.svg +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/menu/menu.svg b/common/gnome-shell/3.16/light-assets/menu/menu.svg deleted file mode 100644 index c734734..0000000 --- a/common/gnome-shell/3.16/light-assets/menu/menu.svg +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/menu/submenu-open.svg b/common/gnome-shell/3.16/light-assets/menu/submenu-open.svg deleted file mode 100644 index 8062443..0000000 --- a/common/gnome-shell/3.16/light-assets/menu/submenu-open.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/menu/submenu.svg b/common/gnome-shell/3.16/light-assets/menu/submenu.svg deleted file mode 100644 index 766c82e..0000000 --- a/common/gnome-shell/3.16/light-assets/menu/submenu.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/misc/button-box.svg b/common/gnome-shell/3.16/light-assets/misc/button-box.svg deleted file mode 100644 index 414081a..0000000 --- a/common/gnome-shell/3.16/light-assets/misc/button-box.svg +++ /dev/null @@ -1,92 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/misc/calendar-arrow-left-hover.svg b/common/gnome-shell/3.16/light-assets/misc/calendar-arrow-left-hover.svg deleted file mode 100644 index 04ffc1b..0000000 --- a/common/gnome-shell/3.16/light-assets/misc/calendar-arrow-left-hover.svg +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/misc/calendar-arrow-left.svg b/common/gnome-shell/3.16/light-assets/misc/calendar-arrow-left.svg deleted file mode 100644 index 38c2368..0000000 --- a/common/gnome-shell/3.16/light-assets/misc/calendar-arrow-left.svg +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/misc/calendar-arrow-right-hover.svg b/common/gnome-shell/3.16/light-assets/misc/calendar-arrow-right-hover.svg deleted file mode 100644 index df438fc..0000000 --- a/common/gnome-shell/3.16/light-assets/misc/calendar-arrow-right-hover.svg +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/misc/calendar-arrow-right.svg b/common/gnome-shell/3.16/light-assets/misc/calendar-arrow-right.svg deleted file mode 100644 index 2195675..0000000 --- a/common/gnome-shell/3.16/light-assets/misc/calendar-arrow-right.svg +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/misc/message-active.svg b/common/gnome-shell/3.16/light-assets/misc/message-active.svg deleted file mode 100644 index 1261935..0000000 --- a/common/gnome-shell/3.16/light-assets/misc/message-active.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/misc/message-close-active.svg b/common/gnome-shell/3.16/light-assets/misc/message-close-active.svg deleted file mode 100644 index cd798c1..0000000 --- a/common/gnome-shell/3.16/light-assets/misc/message-close-active.svg +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/misc/message-close-hover.svg b/common/gnome-shell/3.16/light-assets/misc/message-close-hover.svg deleted file mode 100644 index f1c40f2..0000000 --- a/common/gnome-shell/3.16/light-assets/misc/message-close-hover.svg +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/misc/message-close.svg b/common/gnome-shell/3.16/light-assets/misc/message-close.svg deleted file mode 100644 index d098bc9..0000000 --- a/common/gnome-shell/3.16/light-assets/misc/message-close.svg +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/misc/message-hover.svg b/common/gnome-shell/3.16/light-assets/misc/message-hover.svg deleted file mode 100644 index 153a888..0000000 --- a/common/gnome-shell/3.16/light-assets/misc/message-hover.svg +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/misc/message.svg b/common/gnome-shell/3.16/light-assets/misc/message.svg deleted file mode 100644 index d4096ee..0000000 --- a/common/gnome-shell/3.16/light-assets/misc/message.svg +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/misc/modal.svg b/common/gnome-shell/3.16/light-assets/misc/modal.svg deleted file mode 100644 index 31894db..0000000 --- a/common/gnome-shell/3.16/light-assets/misc/modal.svg +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/switch/switch-off.svg b/common/gnome-shell/3.16/light-assets/switch/switch-off.svg deleted file mode 100644 index c07aa05..0000000 --- a/common/gnome-shell/3.16/light-assets/switch/switch-off.svg +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/light-assets/switch/switch-on.svg b/common/gnome-shell/3.16/light-assets/switch/switch-on.svg deleted file mode 100644 index fe9b2d0..0000000 --- a/common/gnome-shell/3.16/light-assets/switch/switch-on.svg +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.16/sass/_colors.scss b/common/gnome-shell/3.16/sass/_colors.scss deleted file mode 100644 index fac334a..0000000 --- a/common/gnome-shell/3.16/sass/_colors.scss +++ /dev/null @@ -1,101 +0,0 @@ -// When color definition differs for dark and light variant, -// it gets @if ed depending on $variant - - -$base_color: if($variant =='light', #fdf6e3, #073642); -$text_color: if($variant == 'light', #5c616c, #657b83); -$bg_color: if($variant =='light', #F5F6F7, #002b36); -$fg_color: if($variant =='light', #5c616c, #657b83); - -$selected_fg_color: #fdf6e3; -$selected_bg_color: #268bd2; -$selected_borders_color: darken($selected_bg_color, 20%); -$borders_color: if($variant =='light', darken($bg_color,9%), darken($bg_color,6%)); - -$link_color: if($variant == 'light', darken($selected_bg_color,10%), - lighten($selected_bg_color,20%)); -$link_visited_color: if($variant == 'light', darken($selected_bg_color,20%), - lighten($selected_bg_color,10%)); - -$selection_mode_bg: if($transparency == 'true', transparentize($selected_bg_color, 0.05), $selected_bg_color); -$selection_mode_fg: $selected_fg_color; -$warning_color: #cb4b16; -$error_color: #dc322f; -$warning_fg_color: white; -$error_fg_color: white; -$success_color: #859900; -$destructive_color: #dc322f; -$suggested_color: #2aa198; -$destructive_fg_color: white; -$suggested_fg_color: white; - -$drop_target_color: #b58900; - -//insensitive state derived colors -$insensitive_fg_color: if($variant == 'light', transparentize($fg_color, 0.45), transparentize($fg_color, 0.55)); -$insensitive_bg_color: if($variant == 'light', mix($bg_color, $base_color, 40%), lighten($bg_color, 2%)); - -$header_bg: red; -@if $transparency=='true' and $variant=='light' { $header_bg: transparentize(#eee8d5, 0.05); } -@if $transparency=='false' and $variant=='light' { $header_bg: #eee8d5; } -@if $transparency=='true' and ($variant=='dark' or $darker=='true') { $header_bg: transparentize(#002b36, 0.03); } -@if $transparency=='false' and ($variant=='dark' or $darker=='true') { $header_bg: #002b36; } - -$header_bg_backdrop: if($darker == 'true' or $variant == 'dark', lighten($header_bg, 1.5%), lighten($header_bg, 3%)); - -$header_border: if($variant == 'light' and $darker=='false', darken($header_bg, 7%), darken($header_bg, 4%)); - -$header_fg: if($variant == 'light', saturate(transparentize($fg_color, 0.2), 10%), saturate(transparentize($fg_color, 0.2), 10%)); -$header_fg: if($darker == 'true', saturate(transparentize(#657b83, 0.2), 10%), $header_fg); - -$dark_sidebar_bg: if($transparency == 'true', transparentize(#073642, 0.05), #073642); -$dark_sidebar_fg: #657b83; -$dark_sidebar_border: if($variant == 'light', $dark_sidebar_bg, darken($dark_sidebar_bg, 5%)); - -$osd_fg_color: $dark_sidebar_fg; -$osd_bg_color: $dark_sidebar_bg; - -$osd_button_bg: transparentize(lighten($osd_bg_color, 22%), 0.6); -$osd_button_border: transparentize(darken($osd_bg_color, 12%), 0.6); - -$osd_entry_bg: transparentize(lighten($osd_bg_color, 22%), 0.6); -$osd_entry_border: transparentize(darken($osd_bg_color, 12%), 0.6); - -$osd_insensitive_bg_color: darken($osd_bg_color, 3%); -$osd_insensitive_fg_color: mix($osd_fg_color, opacify($osd_bg_color, 1), 30%); -$osd_borders_color: transparentize(black, 0.3); - -$panel_bg: darken($dark_sidebar_bg, 4.7%); -$panel_fg: $dark_sidebar_fg; - -$entry_bg: if($variant=='light', $base_color, lighten($base_color, 0%)); -$entry_border: if($variant == 'light', #657b83, darken($borders_color, 0%)); - -$header_entry_bg: if($darker == 'true' or $variant == 'dark', transparentize(lighten($header_bg, 22%), 0.6), transparentize($base_color, 0.1)); -$header_entry_border: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 12%), 0.6), transparentize($header_fg, 0.7)); - -$button_bg: if($variant == 'light', lighten($bg_color, 2%), lighten($base_color, 2%)); -$button_border: $entry_border; - -$header_button_bg: if($darker == 'true' or $variant == 'dark', transparentize(lighten($header_bg, 22%), 0.6), transparentize($button_bg, 0.1)); -$header_button_border: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 12%), 0.6), transparentize($header_fg, 0.7)); - -//WM Buttons - -// Close -$wm_button_close_bg: if($variant == 'light' and $darker == 'false', #f46067, #dc322f); -$wm_button_close_hover_bg: if($variant == 'light' and $darker == 'false', #f68086, #cb4b16); -$wm_button_close_active_bg: if($variant == 'light' and $darker == 'false', #f13039, #dc322f); - -$wm_icon_close_bg: if($variant == 'light' and $darker == 'false',#657b83 , #002b36); - -// Minimize, Maximize -$wm_button_hover_bg: if($variant == 'light' and $darker == 'false', #fdfdfd, #657b83); -$wm_button_active_bg: $selected_bg_color; - -$wm_button_hover_border: if($variant == 'light' and $darker == 'false', #D1D3DA, #002b36); - -$wm_icon_bg: if($variant == 'light' and $darker == 'false', #90949E, #93a1a1); -$wm_icon_unfocused_bg: if($variant == 'light' and $darker == 'false', #B6B8C0, #657b83); -$wm_icon_hover_bg: if($variant == 'light' and $darker == 'false', #7A7F8B, #93a1a1); -$wm_icon_active_bg: $selected_fg_color; diff --git a/common/gnome-shell/3.16/sass/_common.scss b/common/gnome-shell/3.16/sass/_common.scss deleted file mode 100644 index bc8ca6c..0000000 --- a/common/gnome-shell/3.16/sass/_common.scss +++ /dev/null @@ -1,2256 +0,0 @@ -//This is the RIGHT PLACE to edit the stylesheet - -$panel-corner-radius: 0px; -$asset_path: if($variant == 'dark', dark-assets, light-assets); - -/* Copyright 2009, 2015 Red Hat, Inc. - * - * Portions adapted from Mx's data/style/default.css - * Copyright 2009 Intel Corporation - * - * This program is free software; you can redistribute it and/or modify it - * under the terms and conditions of the GNU Lesser General Public License, - * version 2.1, as published by the Free Software Foundation. - * - * This program is distributed in the hope it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for - * more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. - */ - -// -// Globals -// -$font-size: 9; -$font-family: Futura Bk bt, Cantarell, Sans-Serif; -$_bubble_bg_color: opacify($osd_bg_color,0.25); -$_bubble_fg_color: $osd_fg_color; -$_bubble_borders_color: transparentize($osd_fg_color,0.8); -$_shell_fg_color: white; - -stage { - font-family: $font-family; - @include fontsize($font-size); - color: $fg_color; -} - -%reset_style { - background-color: transparent !important; - background-gradient-direction: none !important; - border: none !important; - border-radius: 0 !important; -} - -// -// Buttons -// -.button { - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - border-radius: 2px; - - @extend %button; -} - -%button { - @include button(normal); - - &:focus { @include button(focus); } - &:hover { @include button(hover); } - &:hover:focus { @include button(focus-hover); } - &:active, &:active:focus { @include button(active); } - &:insensitive { @include button(insensitive); } -} - -%osd_button { - @include button(osd); - - &:hover { @include button(osd-hover); } - &:focus { color: $selected_bg_color; } - &:active { @include button(osd-active); } - &:insensitive { @include button(osd-insensitive); } -} - -// -// Entries -// -StEntry { - padding: 7px; - caret-size: 1px; - selection-background-color: $selected_bg_color; - selected-color: $selected_fg_color; - transition-duration: 300ms; - border-radius: 3px; - - @include entry(normal); - - &:focus, &:hover { @include entry(focus); } - &:insensitive { @include entry(insensitive); } - - StIcon.capslock-warning { - icon-size: 16px; - warning-color: $warning_color; - padding: 0 4px; - } -} - -// -// Scrollbars -// -StScrollView { - &.vfade { -st-vfade-offset: 0px; } - &.hfade { -st-hfade-offset: 0px; } -} - -StScrollBar { - - padding: 8px; - - StScrollView & { - min-width: 5px; - min-height: 5px; - } - - StBin#trough { - background-color: transparentize($base_color, 0.9); - border-radius: 8px; - } - - StButton#vhandle, StButton#hhandle { - border-radius: 4px; - background-color: mix($fg_color, $bg_color, 40%); - border: 0px solid; - margin: 0px; - - &:hover { background-color: mix($fg_color, $bg_color, 30%); } - - &:active { background-color: $selected_bg_color; } - } -} - -// -// Slider -// -.slider { - -slider-height: 4px; - -slider-background-color: $button_border; //background of the trough - -slider-border-color: transparentize(black, 1); //trough border color - -slider-active-background-color: $selected_bg_color; //active trough fill - -slider-active-border-color: transparentize(black, 1); //active trough border - -slider-border-width: 0; - -slider-handle-radius: 0px; - height: 18px; - border: 0 solid transparent; - border-right-width: 1px; - border-left-width: 5px; - color: transparent; - - .popup-menu-item.selected & { - -slider-background-color: transparentize(black, 0.8); - -slider-active-background-color: $selected_fg_color; - } -} - -// -// Check Boxes -// -.check-box { - - StBoxLayout { spacing: .8em; } - - StBin { - width: 16px; - height: 16px; - background-image: url("#{$asset_path}/checkbox/checkbox-unchecked.svg"); - } - - &:focus StBin { background-image: url("#{$asset_path}/checkbox/checkbox-unchecked-focused.svg"); } - - &:checked StBin { background-image: url("#{$asset_path}/checkbox/checkbox-checked.svg"); } - - &:focus:checked StBin { background-image: url("#{$asset_path}/checkbox/checkbox-checked-focused.svg"); } -} - -// -// Switches -// -.toggle-switch { - width: 50px; - height: 20px; - background-size: contain; - background-image: url("#{$asset_path}/switch/switch-off.svg"); - - &:checked { background-image: url("#{$asset_path}/switch/switch-on.svg"); } - - .popup-menu-item.selected & { - background-image: url("common-assets/switch/switch-off-selected.svg"); - - &:checked { background-image: url("common-assets/switch/switch-on-selected.svg"); } - } -} - -// -// Links -// -.shell-link { - color: $link_color; - - &:hover { color: lighten($link_color,10%); } -} - -// -// Modal Dialogs -// -.headline { font-size: 110%; } -.lightbox { background-color: black; } -.flashspot { background-color: white; } - -.modal-dialog { - color: $fg_color; - background-color: transparentize($bg_color, 1); - border: none; - border-image: url("#{$asset_path}/misc/modal.svg") 9 9 9 67; - padding: 0 5px 6px 5px; - - > StBoxLayout:first-child { - padding: 20px 10px 10px 10px; - } - - &-button-box { - spacing: 0; - margin: 0px; - padding: 14px 10px; - background: none; - border: none; - border-image: url("#{$asset_path}/misc/button-box.svg") 9 9 9 9; - - .button { - padding-top: 0; - padding-bottom: 0; - height: 30px; - - @extend %osd_button; - } - } - - .run-dialog-entry { width: 21em; } - .run-dialog-error-box { - padding-top: 5px; - spacing: 5px; - } - - //.run-dialog-button-box { padding-top: 1em; } - .run-dialog-label { - font-size: 0; - } -} - -//.button-dialog-button-box { -//} - -.show-processes-dialog-subject, -.mount-question-dialog-subject, -.end-session-dialog-subject { //this should be a generic header class - @include fontsize($font-size * 1.2); - font-weight: bold; - color: $fg_color; -} - -// -// End Session Dialog -// -.end-session-dialog { - spacing: 42px; - //border: 3px solid $_bubble_borders_color; - - &-list { - padding-top: 20px; - } - - &-layout { - padding-left: 17px; - &:rtl { padding-right: 17px; } - } - - &-description { - width: 28em; - padding-bottom: 10px; - &:rtl { - text-align: right; - } - } - - &-warning { - width: 28em; - color: $warning_color; - padding-top: 6px; - &:rtl { - text-align: right; - } - } - - &-logout-icon { - border: 0px solid transparent; - border-radius: 2px; - width: 48px; - height: 48px; - background-size: contain; - } - - &-shutdown-icon { - color: $fg_color; - width: 48px; - height: 48px; - } - - &-inhibitor-layout { - spacing: 16px; - max-height: 200px; - padding-right: 10px; - padding-left: 10px; - } - - &-session-list, &-app-list { - spacing: 1em; - } - - &-list-header { - font-weight: bold; - &:rtl { text-align: right; } - } - - &-app-list-item, &-session-list-item { - spacing: 1em; - } - - &-app-list-item-name, &-session-list-item-name { - font-weight: bold; - } - - &-app-list-item-description { - color: lighten($fg_color,5%); - @include fontsize($font-size * 0.9); - } - - // Shutdown Button - .button:last-child { - color: $destructive_fg_color; - background-color: $destructive_color; - border-color: $destructive_color; - - &:hover { - color: $destructive_fg_color; - background-color: lighten($destructive_color, 9%); - border-color: lighten($destructive_color, 9%); - } - &:active { - color: $destructive_fg_color; - background-color: darken($destructive_color, 5%); - border-color: darken($destructive_color, 5%); - } - } -} - -// -// ShellMountOperation Dialogs -// -.shell-mount-operation-icon { icon-size: 48px; } - -.show-processes-dialog, -.mount-question-dialog { - spacing: 24px; -} - -.show-processes-dialog-subject, -.mount-question-dialog-subject { - padding-top: 10px; - padding-left: 17px; - padding-bottom: 6px; - - &:rtl { - padding-left: 0px; - padding-right: 17px; - } -} - -.mount-question-dialog-subject { - max-width: 500px; -} - -.show-processes-dialog-description, -.mount-question-dialog-description { - padding-left: 17px; - width: 28em; - - &:rtl { - padding-right: 17px; - } -} - -.show-processes-dialog-app-list { - @include fontsize($font-size * 1.1); - max-height: 200px; - padding-top: 24px; - padding-left: 49px; - padding-right: 32px; - - &:rtl { - padding-right: 49px; - padding-left: 32px; - } -} - -.show-processes-dialog-app-list-item { - color: darken($fg_color,10%); - &:hover { color: $fg_color; } - &:ltr { padding-right: 1em; } - &:rtl { padding-left: 1em; } -} - -.show-processes-dialog-app-list-item-icon { - &:ltr { padding-right: 17px; } - &:rtl { padding-left: 17px; } -} - -.show-processes-dialog-app-list-item-name { - @include fontsize($font-size * 1.1); -} - -// -// Password or Authentication Dialog -// -.prompt-dialog { - //this is the width of the entire modal popup - width: 500px; - //border: 3px solid $_bubble_borders_color; - - &-main-layout { - spacing: 24px; - padding: 10px; - } - - &-message-layout { - spacing: 16px; - } - - &-headline { - @include fontsize($font-size * 1.3); - font-weight: bold; - color: $fg_color; - } - - &-descritption:rtl { - text-align: right; - } - - &-password-box { - spacing: 1em; - padding-bottom: 1em; - } - - &-error-label { - @include fontsize($font-size); - color: $error_color; - padding-bottom: 8px; - } - - &-info-label { - @include fontsize($font-size); - padding-bottom: 8px; - } - - &-null-label { - @include fontsize($font-size); - padding-bottom: 8px; - } -} - -.hidden { - color: transparentize(black, 1); -} - -// -// Polkit Dialog -// -.polkit-dialog-user { - - &-layout { - padding-left: 10px; - spacing: 10px; - &:rtl { - padding-left: 0px; - padding-right: 10px; - } - } - - &-root-label { - color: $warning_color; - } - - &-user-icon { - border-radius: 2px; - background-size: contain; - width: 48px; - height: 48px; - } -} - -// -// Network Agent Dialog -// -.network-dialog-secret-table { - spacing-rows: 15px; - spacing-columns: 1em; -} - -.keyring-dialog-control-table { - spacing-rows: 15px; - spacing-columns: 1em; -} - -// -// Popvers/Menus -// -.popup-menu { - min-width: 200px; - color: $fg_color; - border-image: url("#{$asset_path}/menu/menu.svg") 9 9 9 9; - - .popup-menu-arrow { } //defined globally in the TOP BAR - .popup-sub-menu { - background: none; - box-shadow: none; - border-image: url("#{$asset_path}/menu/submenu.svg") 9 9 9 9; - } - - .popup-menu-content { padding: 1em 0em 1em 0em; } - .popup-menu-item { - spacing: 12px; - - &:ltr { padding: .4em 3em .4em 0em; } - &:rtl { padding: .4em 0em .4em 3em; } - - &:checked { - font-weight: normal; - background: none; - box-shadow: none; - border-image: url("#{$asset_path}/menu/submenu-open.svg") 9 9 9 9; - } - - &:active, &.selected { - color: $selected_fg_color; - background-color: transparent; - border-image: url("common-assets/menu/menu-hover.svg") 9 9 1 1; - } - - &:insensitive { - color: transparentize($fg_color, 0.5); - background: none; - } - } - - .popup-inactive-menu-item { //all icons and other graphical elements - color: $fg_color; - - &:insensitive { color: $insensitive_fg_color; } - } - //.popup-status-menu-item { font-weight: normal; color: pink; } //dunno what that is - &.panel-menu { - -boxpointer-gap: 0px; - margin-bottom: 1.75em; - } -} - -.popup-menu-ornament { - text-align: right; - margin-left: 10px; - width: 16px; -} - -.popup-menu-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(0,0,0,0.0); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0,0,0,0.0); - -arrow-base: 0; - -arrow-rise: 0; -} - -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: $osd_bg_color; - -arrow-border-width: 1px; - -arrow-border-color: transparentize(black, 0.6); - -arrow-base: 5; - -arrow-rise: 5; -} - -.popup-separator-menu-item { - //-margin-horizontal: 24px; - height: 2px; //not really the whole box - margin: 0; - background-color: transparent; - border: none; - border-image: url("common-assets/menu/menu-separator.svg") 1 1 1 1; -} - -// Background menu -.background-menu { -boxpointer-gap: 4px; -arrow-rise: 0px; } - -// fallback menu -//- odd thing for styling App menu when apparently not running under shell. Light Adwaita styled -// app menu inside the main app window itself rather than the top bar -// - -// -// OSD -// -.osd-window { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 20px; - margin: 32px; - min-width: 64px; - min-height: 64px; - - color: $_shell_fg_color; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; - -.osd-monitor-label { font-size: 3em; } - - .level { - padding: 0; - height: 4px; - background-color: transparentize(black, 0.5); - border-radius: 2px; - color: $selected_bg_color; - } -} - -.resize-popup { - color: $osd_fg_color; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; - padding: 12px; -} - -// -// Alt Tab Switcher -// -.switcher-popup { - padding: 8px; - spacing: 16px; -} - -.switcher-list { - background: none; - border: none; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; - - &-item-container { spacing: 8px; } - - .item-box { - padding: 8px; - border-radius: 2px; - border: 1px solid transparent; - - &:outlined { - padding: 8px; - border: 1px solid $selected_bg_color; - } - - &:selected { - color: $selected_fg_color; - background-color: $selected_bg_color; - border: 1px solid $selected_bg_color; - - } - } - - .thumbnail-box { - padding: 2px; - spacing: 4px; - } - - .thumbnail { - width: 256px; - } - - .separator { - width: 1px; - background: transparentize($fg_color, 0.67); - } -} - -.switcher-arrow { - border-color: rgba(0,0,0,0); - color: $osd_fg_color; - - &:highlighted { - color: $_shell_fg_color; - } -} - -.input-source-switcher-symbol { - font-size: 34pt; - width: 96px; - height: 96px; -} - -// -// Workspace Switcher -// -.workspace-switcher { - - background: transparent; - border: 0px; - border-radius: 0px; - padding: 0px; - spacing: 8px; - - &-group { padding: 12px; } - - &-container { - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; - padding-bottom: 24px; - } -} - -.ws-switcher-active-up, .ws-switcher-active-down { - height: 30px; - background-color: $selected_bg_color; - background-size: 96px; - border-radius: 2px; - border: 1px solid $selected_bg_color; -} - -.ws-switcher-active-up { - background-image: url("common-assets/misc/ws-switch-arrow-up.png"); -} - -.ws-switcher-active-down { - background-image: url("common-assets/misc/ws-switch-arrow-down.png"); -} - -.ws-switcher-box { - height: 96px; - background-color: transparentize(black, 0.67); - border-color: transparentize(black, 0.67); - border-radius: 2px; -} - -// -// Tiled window previews -// -.tile-preview { - background-color: transparentize($selected_bg_color, 0.65); - border: 1px solid $selected_bg_color; - - &-left.on-primary { - border-radius: $panel-corner-radius 0 0 0; - } - - &-right.on-primary { - border-radius: 0 $panel-corner-radius 0 0; - } - - &-left.tile-preview-right.on-primary { - border-radius: $panel-corner-radius $panel-corner-radius 0 0; - } -} - -// -// Top Bar -// -#panel { - $_panel_fg_color: $_shell_fg_color; - - font-weight: bold; - height: 2.1em; - min-height: 27px; - background-gradient-direction: none; - background-color: transparent; - border-bottom-width: 0; - border-image: url('common-assets/panel/panel.svg') 1 1 1 1; - - // Fix dynamic top bar extension - &.dynamic-top-bar-white-btn { border-image: none; } - - &.unlock-screen, - &.login-screen, - &.lock-screen { - background-color: transparent; - border-image: none; - } - - &:overview { border-image: url('common-assets/panel/panel-overview.svg') 1 1 1 1; } - - #panelLeft, #panelCenter { // spacing between activities<>app menu and such - spacing: 8px; - } - - .panel-corner { - -panel-corner-radius: $panel-corner-radius; - -panel-corner-background-color: transparentize(black, 1); - -panel-corner-border-width: 0px; - -panel-corner-border-color: black; - - &:active, &:overview, &:focus { - -panel-corner-border-color: black; - } - - &.lock-screen, &.login-screen, &unlock-screen { - -panel-corner-radius: 0; - -panel-corner-background-color: transparent; - -panel-corner-border-color: transparent; - } - } - - .panel-button { - -natural-hpadding: 10px; - -minimum-hpadding: 6px; - font-weight: bold; - color: $_panel_fg_color; - transition-duration: 100ms; - border-bottom-width: 1px; - border-color: transparent; - - .app-menu-icon { - width: 0; - height: 0; - margin-left: 0px; - margin-right: 0px; - } - - &:hover { - color: $_panel_fg_color; - background-color: transparentize(black, 0.83); - border-bottom-width: 1px; - border-color: transparent; - } - - &:active, &:overview, &:focus, &:checked { - color: $selected_fg_color; - background-color: $selected_bg_color; - box-shadow: none; - border-bottom-width: 1px; - border-color: black; - - & > .system-status-icon { icon-shadow: none; } - } - - .system-status-icon { icon-size: 16px; padding: 0 4px; } - .unlock-screen &, - .login-screen &, - .lock-screen & { - color: lighten($fg_color, 10%); - &:focus, &:hover, &:active { color: lighten($fg_color, 10%); } - } - } - - #panelActivities.panel-button { -natural-hpadding: 12px; } - - .panel-status-indicators-box, - .panel-status-menu-box { - spacing: 2px; - } - - .screencast-indicator { color: $error_color; } - - .clock-display > * > *:last-child { - color: $selected_bg_color; - margin-left: .3em; - } - - .popup-menu-arrow { width: 0; } -} - -// Activities button -#panel #panelActivities.panel-button { - - > * { - background-image: url("common-assets/panel/activities.svg"); - background-position: center top; - width: 24px; - height: 24px; - background-color: transparent !important; - background-gradient-direction: none !important; - border: 0 solid transparent !important; - text-shadow: 0 0 transparent !important; - transition-duration: 0ms !important; - box-shadow: none !important; - color: transparent; - } - - &:active, &:overview, &:focus, &:checked { - background-color: transparent; - box-shadow: none; - border-bottom-width: 1px; - border-color: transparent; - - > * { background-image: url("common-assets/panel/activities-active.svg"); } - } -} - -// a little unstructured mess: - -.system-switch-user-submenu-icon { - icon-size: 24px; - border: 1px solid transparentize($fg_color,0.6); -} - -#appMenu { - spinner-image: url("common-assets/misc/process-working.svg"); - spacing: 4px; - padding: 0 8px; - - .label-shadow { color: transparent; } -} - -.aggregate-menu { - width: 360px; - .popup-menu-icon { padding: 0 4px; } -} - -.system-menu-action { - padding: 13px; - color: $fg_color; - border-radius: 32px; /* wish we could do 50% */ - border: 1px solid transparent; - - &:hover, &:focus { - transition-duration: 100ms; - padding: 13px; - color: $fg_color; - background-color: transparent; - border: 1px solid $selected_bg_color; - } - &:active { - color: $selected_fg_color; - background-color: $selected_bg_color; - border: 1px solid $selected_bg_color; - } - - & > StIcon { icon-size: 16px; } -} - -// -// Calendar popover -// -#calendarArea { - padding: 0.75em 1.0em; -} - -.calendar { - margin-bottom: 1em; -} - -.calendar, -.datemenu-today-button, -.datemenu-displays-box, -.message-list-sections { - margin: 0 1.5em; -} - -.datemenu-calendar-column { spacing: 0.5em; } -.datemenu-displays-section { padding-bottom: 3em; } - -.datemenu-today-button, -.world-clocks-button, -.message-list-section-title { - border-radius: 3px; - padding: .4em; -} - -.message-list-section-list:ltr { - padding-left: .4em; -} - -.message-list-section-list:rtl { - padding-right: .4em; -} - -.datemenu-today-button, -.world-clocks-button, -.message-list-section-title { - padding: 7px 10px 7px 10px; - border: 1px solid transparentize($base_color, 1); - - &:hover, &:focus { @include button(hover); } - &:active { @include button(active); } -} - -.datemenu-today-button .day-label { -} - -.datemenu-today-button .date-label { - font-size: 1.5em; -} - -.world-clocks-header, -.message-list-section-title { - color: transparentize($fg_color, 0.6); - font-weight: bold; -} - -.world-clocks-button:active .world-clocks-header { - color: $selected_fg_color; -} - -.world-clocks-grid { - spacing-rows: 0.4em; -} - -.calendar-month-label { - color: $fg_color; - font-weight: bold; - padding: 8px 0; - &:focus {} -} - -.pager-button { - color: transparent; - background-color: transparent; - width: 32px; - border-radius: 2px; - - &:focus, &:hover, &:active { background-color: transparent; } -} - -//arrow back -.calendar-change-month-back { - background-image: url("#{$asset_path}/misc/calendar-arrow-left.svg"); - - &:focus, &:hover { background-image: url("#{$asset_path}/misc/calendar-arrow-left-hover.svg"); } - - &:active { background-image: url("#{$asset_path}/misc/calendar-arrow-left.svg"); } - - &:rtl { - background-image: url("#{$asset_path}/misc/calendar-arrow-right.svg"); - - &:focus, &:hover { background-image: url("#{$asset_path}/misc/calendar-arrow-right-hover.svg"); } - - &:active { background-image: url("#{$asset_path}/misc/calendar-arrow-right.svg"); } - } -} - -//arrow forward -.calendar-change-month-forward { - background-image: url("#{$asset_path}/misc/calendar-arrow-right.svg"); - - &:focus, &:hover { background-image: url("#{$asset_path}/misc/calendar-arrow-right-hover.svg"); } - - &:active { background-image: url("#{$asset_path}/misc/calendar-arrow-right.svg"); } - - &:rtl { - background-image: url("#{$asset_path}/misc/calendar-arrow-left.svg"); - - &:focus, &:hover { background-image: url("#{$asset_path}/misc/calendar-arrow-left-hover.svg"); } - - &:active { background-image: url("#{$asset_path}/misc/calendar-arrow-left.svg"); } - } -} - -.calendar-day-base { - font-size: 80%; - text-align: center; - width: 25px; height: 25px; - padding: 0.1em; - margin: 2px; - border-radius: 12.5px; - - &:hover, &:focus { background-color: transparentize(black, 0.9); } - - &:active { - color: $fg_color; - background-color: transparentize(black, 0.85); - border-width: 0; //avoid jumparound due to today - } - - &.calendar-day-heading { //day of week heading - color: transparentize($fg_color, 0.15); - margin-top: 1em; - font-size: 70%; - } -} - -.calendar-day { //border collapse hack - see calendar.js - border-width: 0; - color: transparentize($fg_color, 0.2); -} - -.calendar-day-top { border-top-width: 0; } - -.calendar-day-left { border-left-width: 0; } - -.calendar-work-day {} - -.calendar-nonwork-day { - color: $fg_color; - font-weight: bold; -} - -.calendar-today, -.calendar-today:active, -.calendar-today:focus, -.calendar-today:hover { - font-weight: bold; - color: $selected_fg_color; - background-color: $selected_bg_color; - border-width: 0; -} - -.calendar-day-with-events { - color: $selected_bg_color; - font-weight: bold; -} - -.calendar-today.calendar-day-with-events { color: $selected_fg_color; } - -.calendar-other-month-day { - color: transparentize($fg_color, 0.7); - opacity: 1; -} - -// -// Message list -// -.message-list { - width: 420px; - - &-sections { spacing: 1.5em; } - - &-section, - &-section-list { spacing: 0.7em; } - - &-section-list-title-box { spacing: 0.4em; } - - &-placeholder { - StIcon { width: 0; height: 0; } - StLabel { color: $insensitive_fg_color; } - } - - &-section-close { - - > StIcon { - icon-size: 18px; - border-radius: 0px; - color: transparent; - background-color: transparent; - background-image: url('#{$asset_path}/misc/message-close.svg'); - } - &:hover > StIcon { - color: transparent; - background-color: transparent; - background-image: url('#{$asset_path}/misc/message-close-hover.svg'); - } - &:active > StIcon { - color: transparent; - background-color: transparent; - background-image: url('#{$asset_path}/misc/message-close-active.svg'); - } - - } -} - -.message { - padding: 4px; - color: $fg_color; - border-image: url("#{$asset_path}/misc/message.svg") 9 9 9 9; - - &:hover, &:focus { - color: $fg_color; - border-image: url("#{$asset_path}/misc/message-hover.svg") 9 9 9 9; - } - - &:active { - color: $selected_fg_color; - border-image: url("#{$asset_path}/misc/message-active.svg") 9 9 9 9; - } - - &-icon-bin { - padding: 8px 0px 8px 8px; - - &:rtl { padding: 8px 8px 8px 0px; } - - > StIcon { icon-size: 48px; } - } - - &-secondary-bin { color: transparentize($fg_color, 0.6); } - &-secondary-bin > StIcon { icon-size: 16px; } - - &-title { - font-weight: bold; - padding: 2px 0 2px 0; - } - - &-content { padding: 8px; } -} - - -// -//Activities Ripples -// -.ripple-box { - width: 52px; - height: 52px; - background-image: url("common-assets/misc/corner-ripple-ltr.svg"); - background-size: contain; - - &:rtl { background-image: url("common-assets/misc/corner-ripple-rtl.svg"); } -} - -// not really top bar only -.popup-menu-arrow { width: 16px; height: 16px; } -.popup-menu-icon { icon-size: 16px; } - - -// -//Close buttons -// -.window-close { - background-image: url("common-assets/misc/close.svg"); - background-size: 26px; - height: 26px; - width: 26px; - - &:hover { - background-image: url("common-assets/misc/close-hover.svg"); - background-size: 26px; - height: 26px; - width: 26px; - } - - &:active { - background-image: url("common-assets/misc/close-active.svg"); - background-size: 26px; - height: 26px; - width: 26px; - } -} - -.window-close { - -shell-close-overlap: 11px; -} - -// -// Network Dialogs -// -.nm-dialog { - max-height: 500px; - min-height: 450px; - min-width: 470px; - - &-content { spacing: 20px; } - - &-header-hbox { spacing: 10px; } - - &-airplane-box { spacing: 12px; } - - &-airplane-headline { - font-size: 1.1em; - font-weight: bold; - text-align: center; - } - - &-airplane-text { color: $fg_color; } - - &-header-icon { icon-size: 32px; } - - &-scroll-view { - border: 1px solid $borders_color; - border-radius: 2px; - background-color: $base_color; - } - - &-header { - font-weight: bold; - font-size: 1.2em; - } - - &-item { - font-size: 1em; - border-bottom: 0px solid; - padding: 12px; - spacing: 0px; - - &:selected { - background-color: $selected_bg_color; - color: $selected_fg_color; - } - } - - &-icons { spacing: .5em; } - - &-icon { icon-size: 16px; } -} - -.no-networks-label { color: $insensitive_fg_color; } - -.no-networks-box { spacing: 12px; } - -// -// Overview -// -#overview { spacing: 24px; } - -.overview-controls { padding-bottom: 32px; } - -.window-picker { //container around window thumbnails - -horizontal-spacing: 32px; - -vertical-spacing: 32px; - padding-left: 32px; - padding-right: 32px; - padding-bottom: 48px; - - &.external-monitor { padding: 32px; } -} - -.window-clone-border { - border: 3px solid transparentize($selected_bg_color, 0.2); - border-radius: 4px; - box-shadow: inset 0px 0px 0px 1px transparentize($selected_bg_color, 1); -} - -.window-caption, .window-caption:hover { - spacing: 25px; - color: $osd_fg_color; - background-color: transparentize(black, 0.3); - border-radius: 2px; - padding: 4px 12px; - -shell-caption-spacing: 12px; -} - -// -// Search Entry -// -.search-entry { - width: 320px; - padding: 7px 9px; - border-radius: 20px; - border: 1px solid transparentize(black, 0.75); - background-color: transparentize($entry_bg, 0.1); - - &:focus { - padding: 7px 9px; - } - - .search-entry-icon { - icon-size: 16px; - padding: 0 4px; - color: $fg_color; - } - - &:hover, &:focus { - color: $selected_fg_color; - caret-color: $selected_fg_color; - background-color: $selected_bg_color; - - selection-background-color: $selected_fg_color; - selected-color: $selected_bg_color; - - .search-entry-icon { color: $selected_fg_color; } - } -} - -// -// Search Results -// -#searchResultsBin { max-width: 1000px; } - -#searchResultsContent { - padding-left: 20px; - padding-right: 20px; - spacing: 16px; -} - -// This should be equal to #searchResultsContent spacing -.search-section { spacing: 16px; } - -// This is the space between the provider icon and the results container -.search-section-content { spacing: 32px; } - -// "no results" -.search-statustext { - @extend %status_text; -} - -.list-search-results { spacing: 3px; } - -.search-section-separator { - background-color: transparentize(white, 0.8); - -margin-horizontal: 1.5em; - height: 1px; -} - -.list-search-result-content { spacing: 12px; padding: 12px; } - -.list-search-result-title { font-size: 1.5em; color: $_shell_fg_color; } - -.list-search-result-description { color: darken($_shell_fg_color, 20%); } - -.search-provider-icon { padding: 15px; } -.search-provider-icon-more { - width: 16px; - height: 16px; - background-image: url("common-assets/misc/more-results.svg"); -} - -// -// Dash -// -#dash { - font-size: 1em; - color: $osd_fg_color; - background-color: $dark_sidebar_bg; - border-color: rgba(0,0,0,0.4); - padding: 4px 0; - border-radius: 0 3px 3px 0; - - &:rtl { border-radius: 3px 0 0 3px; } - - .right &, - &:rtl { padding: 4px 0; } - - .top &, .bottom & { padding: 0; } - - .placeholder { - background-image: url("common-assets/dash/dash-placeholder.svg"); - background-size: contain; - height: 24px; - } - - .empty-dash-drop-target { - width: 24px; - height: 24px; - } -} - -.dash-item-container > StWidget { - - &, &:rtl, .right & { padding: 4px 8px; } - - .top &, .bottom & { padding: 6px; } -} - -//osd tooltip -.dash-label { - border-radius: 3px; - padding: 4px 12px; - color: $_shell_fg_color; - background-color: transparentize(black, 0.3); - text-align: center; - -x-offset: 3px; - - .bottom &, .top & { - -y-offset: 3px; - -x-offset: 0; - } -} - -// Dash Buttons -#dash .app-well-app { - - &:hover .overview-icon, - .right &:hover .overview-icon, - .bottom &:hover .overview-icon, - .top &:hover .overview-icon { - background-color: $selected_bg_color; - } - - &:active .overview-icon, - .right &:active .overview-icon, - .bottom &:active .overview-icon, - .top &:active .overview-icon { - box-shadow: none; - background-color: darken($selected_bg_color, 10%); - } - - &-running-dot { - width: 11px; - height: 2px; - margin-bottom: 2px; - background-color: $selected_bg_color; - } -} - -#dashtodockContainer { - .app-well-app-running-dot { - background: none; - width: 28px; - height: 4px; - } - - @each $var in 1, 2, 3, 4 { - .running#{$var} .app-well-app-running-dot { - background-image: url("common-assets/dash/running#{$var}.svg"); - } - } -} - -.show-apps { - - .overview-icon { - background-color: transparentize(black, 0.5); - border-radius: 2px; - border: 0px solid; - } - - &:hover .overview-icon { - background-color: transparentize(black, 0.3); - color: $selected_bg_color; - } - - &:active .overview-icon, - &:active .show-apps-icon, - &:checked .overview-icon, - &:checked .show-apps-icon { - color: $selected_fg_color; - background-color: $selected_bg_color; - box-shadow: none; - transition-duration: 0ms; - } -} - -// -// App Vault/Grid -// -.icon-grid { - spacing: 30px; - -shell-grid-horizontal-item-size: 136px; - -shell-grid-vertical-item-size: 136px; - - .overview-icon { icon-size: 96px; } -} - -//.app-display { spacing: 20px; } - -//favorties | all toggle container -.app-view-controls { padding-bottom: 32px; } - -//favorties | all toggle button -.app-view-control { - padding: 4px 32px; - - @include button(osd); - - &:hover { @include button(osd-hover); } - &:checked { - color: $selected_fg_color; - background-color: $selected_bg_color; - } - - &:first-child:ltr, - &:last-child:rtl { border-radius: 2px 0 0 2px; border-right-width: 0; } - - &:last-child:ltr, - &:first-child:rtl { border-radius: 0 2px 2px 0; border-left-width: 0;} -} - -// -// Icon Tile -// -.search-provider-icon, -.list-search-result { - @extend %icon_tile; - - &:active, &:checked { background-color: transparentize(darken($osd_bg_color,10%),.1); } - - &:focus, &:selected, &:hover { - background-color: transparentize($osd_fg_color,.6); - transition-duration: 200ms; - } -} -.app-well-app, -.app-well-app.app-folder, -.grid-search-result { - - .overview-icon { - @extend %icon_tile; - } - - &:active .overview-icon, - &:checked .overview-icon { - background-color: transparentize(darken($osd_bg_color,10%),.1); - box-shadow: inset 0 0 $selected_bg_color; - } - - &:hover .overview-icon, - &:focus .overview-icon, - &:selected .overview-icon { - background-color: transparentize($osd_fg_color,.6); - transition-duration: 0ms; - border-image: none; - background-image: none; - } -} - -.app-well-app-running-dot { //running apps indicator - width: 20px; - height: 2px; - margin-bottom: 4px; - background-color: $selected_bg_color; -} - -%icon_tile { - color: $_shell_fg_color; - border-radius: 2px; - padding: 6px; - border: 1px solid transparent; - transition-duration: 0ms; - text-align: center; -} - -// -// Collections -// -.app-well-app.app-folder { - - > .overview-icon { - background-color: darken($dark_sidebar_bg, 8%); - border: 1px solid transparentize(darken($dark_sidebar_bg, 25%), 0.5); - } - - &:hover > .overview-icon { - background-color: lighten($dark_sidebar_bg, 3%); - } - - &:active > .overview-icon, &:checked > .overview-icon { - color: $selected_fg_color; - background-color: $selected_bg_color; - box-shadow: none; - } - - &:focus > .overview-icon { - background-color: $selected_bg_color; - } -} - -.app-folder-popup { //expanded collection - -arrow-border-radius: 2px; - -arrow-background-color: darken($dark_sidebar_bg, 8%); - -arrow-border-color: transparentize(darken($dark_sidebar_bg, 25%), 0.5); - -arrow-border-width: 1px; - -arrow-base: 5; - -arrow-rise: 5; -} - -.app-folder-popup-bin { padding: 5px; } -.app-folder-icon { - padding: 5px; - spacing-rows: 5px; - spacing-columns: 5px; -} - -.page-indicator { - padding: 15px 20px; - - .page-indicator-icon { - width: 18px; - height: 18px; - background-image: url(common-assets/misc/page-indicator-inactive.svg); - } - - &:hover .page-indicator-icon { background-image: url(common-assets/misc/page-indicator-hover.svg); } - &:active .page-indicator-icon { background-image: url(common-assets/misc/page-indicator-active.svg); } - &:checked .page-indicator-icon, - &:checked:active { background-image: url(common-assets/misc/page-indicator-checked.svg); } -} - -.no-frequent-applications-label { @extend %status_text; } - -.app-well-app > .overview-icon.overview-icon-with-label, -.grid-search-result .overview-icon.overview-icon-with-label { - padding: 10px 8px 5px 8px; - spacing: 4px; -} - -// -// Workspace pager -// -.workspace-thumbnails, -.workspace-thumbnails-left { - &, &:rtl { - visible-width: 40px; //amount visible before hover - spacing: 11px; - padding: 12px; - } -} - -.workspace-thumbnails, -.workspace-thumbnails-left:rtl { - padding-right: 7px; - border-image: url("common-assets/dash/dash-right.svg") 9 9 9 9; -} - -.workspace-thumbnails:rtl, -.workspace-thumbnails-left { - padding-left: 7px; - border-image: url("common-assets/dash/dash-left.svg") 9 9 9 9; -} - -.workspace-thumbnail-indicator { - border: 4px solid transparentize($selected_bg_color, 0.2); - border-radius: 1px; - padding: 1px; -} - -//Some hacks I don't even -.search-display > StBoxLayout, -.all-apps, -.frequent-apps > StBoxLayout { - // horizontal padding to make sure scrollbars or dash don't overlap content - padding: 0px 88px 10px 88px; -} - -%status_text { - font-size: 2em; - font-weight: bold; - color: $fg_color; -} - -// -// Notifications & Message Tray -// -.url-highlighter { link-color: $link_color; } - -// Banners -.notification-banner, -.notification-banner:hover, -.notification-banner:focus { - font-size: 1em; - width: 34em; - margin: 5px; - padding: 10px; - color: $fg_color; - background-color: transparent; - border: 1px solid transparent; - border-image: url("#{$asset_path}/menu/menu.svg") 9 9 9 9; - - .notification-icon { padding: 5px; } - - .notification-content { padding: 5px; spacing: 5px; } - - .secondary-icon { icon-size: 1.09em; } - - .notification-actions { - background-color: transparent; - padding: 2px 2px 0 2px; - spacing: 3px; - } - .notification-button { - padding: 4px 4px 5px; - @extend %button; - - &:first-child, &:last-child { border-radius: 2px; } - } -} - -.secondary-icon { icon-size: 1.09em; } - -// Chat Bubbles -.chat-body { spacing: 5px; } -.chat-response { margin: 5px; } -.chat-log-message { color: $fg_color; } -.chat-new-group { padding-top: 1em; } -.chat-received { - padding-left: 4px; - - &:rtl { padding-left: 0px; padding-right: 4px; } -} - -.chat-sent { - padding-left: 18pt; - color: $selected_bg_color; - - &:rtl { padding-left: 0; padding-right: 18pt; } -} - -.chat-meta-message { - padding-left: 4px; - font-size: 9pt; - font-weight: bold; - color: transparentize($fg_color, 0.4); - - &:rtl { padding-left: 0; padding-right: 4px; } -} - -.subscription-message { font-style: italic; } - -// Hotplug -.hotplug-transient-box { - spacing: 6px; - padding: 2px 72px 2px 12px; -} - -.hotplug-notification-item { - padding: 2px 10px; - @extend %button; - - &:focus { padding: 2px 10px; } -} - -.hotplug-notification-item-icon { - icon-size: 24px; - padding: 2px 5px; -} - -.hotplug-resident-box { spacing: 8px; } - -.hotplug-resident-mount { - spacing: 8px; - border-radius: 4px; - &:hover { background-color: transparentize($bg_color,0.7); } -} - -.hotplug-resident-mount-label { - color: inherit; - padding-left: 6px; -} - -.hotplug-resident-mount-icon { - icon-size: 24px; - padding-left: 6px; -} - -.hotplug-resident-eject-icon { - icon-size: 16px; -} - -.hotplug-resident-eject-button { - padding: 7px; - border-radius: 5px; - color: pink; -} - -// Eeeky things - -$legacy_icon_size: 24px; - -.legacy-tray { - background-color: $panel_bg; - - &:ltr { border-radius: 0 2px 0 0; border-left-width: 0; } - &:rtl { border-radius: 2px 0 0 0; border-right-width: 0; } -} - -.legacy-tray-handle, -.legacy-tray-icon { - padding: 6px; - & StIcon { icon-size: $legacy_icon_size; } - &:hover, &:focus { background-color: transparentize($fg_color,0.9); } -} - -.legacy-tray-icon-box { - spacing: 12px; - &:ltr { padding-left: 12px; } - &:rtl { padding-right: 12px; } - & StButton { width: $legacy_icon_size; height: $legacy_icon_size } -} - -// Magnifier - -.magnifier-zoom-region { - border: 2px solid $selected_bg_color; - &.full-screen { border-width: 0; } -} - -// -// On-Screen Keyboard -// -#keyboard { - background-color: $osd_bg_color; - border-width: 0; - border-top-width: 1px; - border-color: transparentize(black, 0.8); -} - -.keyboard-layout { - spacing: 10px; - padding: 10px; -} - -.keyboard-row { - spacing: 15px; -} - -.keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; - font-weight: bold; - border-radius: 3px; - box-shadow: none; - - @include button(osd); - - &:hover { @include button(osd-hover); } - &:active, &:checked { @include button(osd-active); } - - &:grayed { @include button(osd-insensitive); } -} - -.keyboard-subkeys { //long press on a key popup - color: $osd_fg_color; - padding: 5px; - -arrow-border-radius: 2px; - -arrow-background-color: $osd_bg_color; - -arrow-border-width: 1px; - -arrow-border-color: transparentize(black, 0.6);; - -arrow-base: 20px; - -arrow-rise: 10px; - -boxpointer-gap: 5px; -} - -// -// IBus Candidate Popup -// -.candidate-popup-content { - padding: 0.5em; - spacing: 0.3em; - color: $osd_fg_color; - font-size: 1.15em; -} - - .candidate-index { - padding: 0 0.5em 0 0; - color: lighten($osd_fg_color, 10%); - } - - .candidate-box { - padding: 0.3em 0.5em 0.3em 0.5em; - border-radius: 2px; - color: $osd_fg_color; - &:selected,&:hover { background-color: $selected_bg_color; color: $selected_fg_color; } - } - - .candidate-page-button-box { - height: 2em; - .vertical & { padding-top: 0.5em; } - .horizontal & { padding-left: 0.5em; } - } - - .candidate-page-button { - padding: 4px; - } - - .candidate-page-button-previous { border-radius: 2px 0px 0px 2px; border-right-width: 0; } - .candidate-page-button-next { border-radius: 0px 2px 2px 0px; } - .candidate-page-button-icon { icon-size: 1em; } - -// -// Auth Dialogs & Screen Shield -// -.framed-user-icon { - background-size: contain; - border: 0px solid transparent; - color: $fg_color; - border-radius: 2px; - &:hover { - border-color: transparent; - color: lighten($osd_fg_color,30%); - } -} - -// -// Login Dialog -// -.login-dialog-banner-view { - padding-top: 24px; - max-width: 23em; -} - -.login-dialog { - //reset - border: none; - background-color: transparent; - - .modal-dialog-button-box { spacing: 3px; } - .modal-dialog-button { - padding: 3px 18px; - &:default { - @include button(normal); - &:hover,&:focus { @include button(hover); } - &:active { @include button(active); } - &:insensitive { @include button(insensitive); } - } - } -} - - .login-dialog-logo-bin { padding: 24px 0px; } - .login-dialog-banner { color: darken($osd_fg_color,10%); } - .login-dialog-button-box { spacing: 5px; } - .login-dialog-message-warning { color: $warning_color; } - .login-dialog-message-hint { padding-top: 0; padding-bottom: 20px; } - .login-dialog-user-selection-box { - padding: 100px 0px; - .login-dialog-not-listed-label { - padding-left: 2px; - .login-dialog-not-listed-button:focus &, - .login-dialog-not-listed-button:hover & { - color: $osd_fg_color; - } - } - } - .login-dialog-not-listed-label { - font-size: 90%; - font-weight: bold; - color: darken($osd_fg_color,30%); - padding-top: 1em; - } - - .login-dialog-user-list-view { -st-vfade-offset: 1em; } - .login-dialog-user-list { - spacing: 12px; - padding: .2em; - width: 23em; - &:expanded .login-dialog-user-list-item:focus { background-color: $selected_bg_color; color: $selected_fg_color; } - &:expanded .login-dialog-user-list-item:logged-in { border-right: 2px solid $selected_bg_color; } - } - .login-dialog-user-list-item { - border-radius: 5px; - padding: .2em; - color: darken($osd_fg_color,30%); - &:ltr { padding-right: 1em; } - &:rtl { padding-left: 1em; } - &:hover { background-color: $selected_bg_color; color: $selected_fg_color; } - .login-dialog-timed-login-indicator { - height: 2px; - margin: 2px 0 0 0; - background-color: $osd_fg_color; - } - &:focus .login-dialog-timed-login-indicator { background-color: $selected_fg_color; } - } - - .login-dialog-username, - .user-widget-label { - color: $osd_fg_color; - font-size: 120%; - font-weight: bold; - text-align: left; - padding-left: 15px; - } - .user-widget-label { - &:ltr { padding-left: 18px; } - &:rtl { padding-right: 18px; } - } - - .login-dialog-prompt-layout { - padding-top: 24px; - padding-bottom: 12px; - spacing: 8px; - width: 23em; - } - - .login-dialog-prompt-label { - color: darken($osd_fg_color, 20%); - font-size: 110%; - padding-top: 1em; - } - - .login-dialog-session-list-button StIcon { - icon-size: 1.25em; - } - - .login-dialog-session-list-button { - color: darken($osd_fg_color,30%); - &:hover,&:focus { color: $osd_fg_color; } - &:active { color: darken($osd_fg_color, 50%); } - } - -// -// Screen Shield -// -.screen-shield-arrows { - padding-bottom: 3em; -} - -.screen-shield-arrows Gjs_Arrow { - color: white; - width: 80px; - height: 48px; - -arrow-thickness: 12px; - -arrow-shadow: 0 1px 1px rgba(0,0,0,0.4); -} - -.screen-shield-clock { - color: white; - text-shadow: 0px 1px 2px rgba(0,0,0,0.6); - font-weight: bold; - text-align: center; - padding-bottom: 1.5em; -} - -.screen-shield-clock-time { - font-size: 72pt; - text-shadow: 0px 2px 2px rgba(0,0,0,0.4); -} - -.screen-shield-clock-date { font-size: 28pt; } - -.screen-shield-notifications-container { - spacing: 6px; - width: 30em; - background-color: transparent; - max-height: 500px; - .summary-notification-stack-scrollview { - padding-top: 0; - padding-bottom: 0; - } - - .notification, - .screen-shield-notification-source { - padding: 12px 6px; - border: 1px solid $_bubble_borders_color; - background-color: transparentize($osd_bg_color,0.5); - color: $_bubble_fg_color; - border-radius: 4px; - } - .notification { margin-right: 15px; } //compensate for space allocated to the scrollbar -} - - -.screen-shield-notification-label { - font-weight: bold; - padding: 0px 0px 0px 12px; -} - -.screen-shield-notification-count-text { padding: 0px 0px 0px 12px; } - -#panel.lock-screen { background-color: transparentize($_bubble_bg_color, 0.5); } - -.screen-shield-background { //just the shadow, really - background: black; - box-shadow: 0px 2px 4px transparentize(black,0.6); -} - -#lockDialogGroup { - background: #2e3436 url(misc/noise-texture.png); - background-repeat: repeat; -} - -#screenShieldNotifications { - StButton#vhandle, StButton#hhandle { - background-color: transparentize($bg_color,0.7); - &:hover, &:focus { background-color: transparentize($bg_color,0.5); } - &:active { background-color: transparentize($selected_bg_color,0.5); } - } -} - -// -// Looking Glass -// -#LookingGlassDialog { - spacing: 4px; - padding: 8px 8px 10px 8px; - background-color: transparentize(black, 0.3); - border: 1px solid black; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 2px; - color: $osd_fg_color; - - & > #Toolbar { - padding: 3px; - border: none; - background-color: transparent; - border-radius: 0px; - } - .labels { spacing: 4px; } - - .notebook-tab { - -natural-hpadding: 12px; - -minimum-hpadding: 6px; - font-weight: bold; - color: $osd_fg_color; - transition-duration: 100ms; - padding-left: .3em; - padding-right: .3em; - - &:hover { - color: $_shell_fg_color; - text-shadow: black 0px 2px 2px; - } - &:selected { - border-bottom-width: 0px; - color: $selected_bg_color; - text-shadow: black 0px 2px 2px; - } - } - StBoxLayout#EvalBox { padding: 4px; spacing: 4px; } - StBoxLayout#ResultsArea { spacing: 4px; } -} - -.lg-dialog { - - StEntry { - selection-background-color: $selected_bg_color; - selected-color: $selected_fg_color; - - @include entry(osd); - &:focus { @include entry(osd-focus); } - } - .shell-link { - color: $link_color; - &:hover { color: lighten($link_color,10%); } - } -} - -.lg-completions-text { - font-size: .9em; - font-style: italic; -} - -.lg-obj-inspector-title { - spacing: 4px; -} - -.lg-obj-inspector-button { - border: 1px solid gray; - padding: 4px; - border-radius: 4px; - &:hover { border: 1px solid #fdf6e3; } -} - -#lookingGlassExtensions { padding: 4px; } - -.lg-extensions-list { - padding: 4px; - spacing: 6px; -} - -.lg-extension { - border: 1px solid $osd_borders_color; - border-radius: 2px; - background-color: $osd_bg_color; - padding: 4px; -} - -.lg-extension-name { - font-weight: bold; -} - -.lg-extension-meta { - spacing: 6px; -} - -#LookingGlassPropertyInspector { - background: transparentize(black, 0.3); - border: 1px solid grey; - border-radius: 2px; - padding: 6px; -} diff --git a/common/gnome-shell/3.16/sass/_drawing.scss b/common/gnome-shell/3.16/sass/_drawing.scss deleted file mode 100644 index c074950..0000000 --- a/common/gnome-shell/3.16/sass/_drawing.scss +++ /dev/null @@ -1,171 +0,0 @@ -// Drawing mixins - -// generic drawing of more complex things - -// provide font size in rem, with px fallback -@mixin fontsize($size: 24, $base: 16) { - font-size: round($size) + pt; - //font-size: ($size / $base) * 1rem; -} - -// Entries - -@mixin entry($t, $dark:false) { -// -// Entries drawing function -// - //@extend %reset_style; - - @if $t==normal { - color: $text_color; - background-color: $entry_bg; - border: 1px solid $entry_border; - box-shadow: inset 0 2px 4px transparentize($entry_bg, 0.95); - } - - @if $t==focus { - color: $fg_color; - background-color: $entry_bg; - border: 1px solid $selected_bg_color; - box-shadow: inset 0 2px 4px transparentize($entry_bg, 0.95); - } - - @if $t==insensitive { - color: $insensitive_fg_color; - background-color: mix($entry_bg, $bg_color, 55%); - border-color: 1px solid mix($entry_border, $bg_color, 55%); - box-shadow: inset 0 2px 4px transparentize(mix($entry_bg, $bg_color, 55%), 0.95); - } - - @if $t==osd { - color: $osd_fg_color; - background-color: $osd_entry_bg; - border: 1px solid $osd_entry_border; - box-shadow: inset 0 2px 4px transparentize(black, 0.95); - } - - @if $t==osd-focus { - color: $selected_fg_color; - background-color: $selected_bg_color; - border: 1px solid $osd_entry_border; - box-shadow: inset 0 2px 4px transparentize(black, 0.95); - } - - @if $t==osd-insensitive { - color: transparentize($osd_fg_color, 0.45); - background-color: transparentize($osd_entry_bg, 0.15); - border: 1px solid $osd_entry_border; - box-shadow: inset 0 2px 4px transparentize(black, 0.95); - } -} - -// Buttons - -@mixin button($t) { -// -// Button drawing function -// - //@extend %reset_style; - - text-shadow: 0 1px transparentize($base_color, 1); - - @if $t==normal { - // - // normal button - // - color: $fg_color; - background-color: $button_bg; - border: 1px solid $button_border; - box-shadow: inset 0 1px transparentize($button_bg, 0.95); - } - - @else if $t==focus { - // - // focused button - // - color: $fg_color; - background-color: $button_bg; - border: 1px solid $selected_bg_color; - box-shadow: inset 0 1px transparentize($button_bg, 0.95); - } - - @else if $t==focus-hover { - // - // focused button - // - color: $fg_color; - background-color: $button_bg; - border: 1px solid $selected_bg_color; - box-shadow: inset 0 1px transparentize($button_bg, 0.95); - } - - @else if $t==hover { - // - // hovered button - // - color: $fg_color; - background-color: lighten($button_bg, 5%); - border: 1px solid $button_border; - box-shadow: inset 0 1px transparentize(lighten($button_bg, 5%), 0.95); - } - - @else if $t==active { - // - // pushed button - // - color: $selected_fg_color; - background-color: $selected_bg_color; - border: 1px solid if($variant=='light', $selected_bg_color, $button_border); - box-shadow: inset 0 1px transparentize($selected_bg_color, 0.95); - } - - @else if $t==insensitive { - // - // insensitive button - // - color: $insensitive_fg_color; - border: 1px solid transparentize($button_border, 0.45); - background-color: transparentize($button_bg, 0.45); - box-shadow: inset 0 1px transparentize($button_bg, 0.95); - } - - @else if $t==osd { - // - // normal osd button - // - color: $osd_fg_color; - border: 1px solid $osd_button_border; - background-color: $osd_button_bg; - box-shadow: inset 0 1px transparentize(black, 0.95); - } - - @else if $t==osd-hover { - // - // active osd button - // - color: $osd_fg_color; - border: 1px solid $osd_button_border; - background-color: opacify(lighten($osd_button_bg, 7%), 0.1); - box-shadow: inset 0 1px transparentize(black, 0.95); - } - - @else if $t==osd-active { - // - // active osd button - // - color: $selected_fg_color; - border: 1px solid $osd_button_border; - background-color: $selected_bg_color; - box-shadow: inset 0 1px transparentize($selected_bg_color, 0.95); - } - - @else if $t==osd-insensitive { - // - // insensitive osd button - // - color: $osd_insensitive_fg_color; - border: 1px solid $osd_button_border; - background-color: transparentize($osd_button_bg, 0.15); - box-shadow: inset 0 1px transparentize(black, 0.95); - } -} diff --git a/common/gnome-shell/3.16/sass/gnome-shell-dark.scss b/common/gnome-shell/3.16/sass/gnome-shell-dark.scss deleted file mode 100644 index 4a61461..0000000 --- a/common/gnome-shell/3.16/sass/gnome-shell-dark.scss +++ /dev/null @@ -1,7 +0,0 @@ -$variant: 'dark'; -$transparency: 'true'; -$darker: 'false'; - -@import "_colors"; //use gtk colors -@import "_drawing"; -@import "_common"; diff --git a/common/gnome-shell/3.16/sass/gnome-shell.scss b/common/gnome-shell/3.16/sass/gnome-shell.scss deleted file mode 100644 index 674f742..0000000 --- a/common/gnome-shell/3.16/sass/gnome-shell.scss +++ /dev/null @@ -1,7 +0,0 @@ -$variant: 'light'; -$transparency: 'true'; -$darker: 'false'; - -@import "_colors"; //use gtk colors -@import "_drawing"; -@import "_common"; diff --git a/common/gnome-shell/3.18/common-assets/dash/dash-left.svg b/common/gnome-shell/3.18/common-assets/dash/dash-left.svg deleted file mode 100644 index 0571ee3..0000000 --- a/common/gnome-shell/3.18/common-assets/dash/dash-left.svg +++ /dev/null @@ -1,72 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/dash/dash-placeholder.svg b/common/gnome-shell/3.18/common-assets/dash/dash-placeholder.svg deleted file mode 100644 index ff43dfc..0000000 --- a/common/gnome-shell/3.18/common-assets/dash/dash-placeholder.svg +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/dash/dash-right.svg b/common/gnome-shell/3.18/common-assets/dash/dash-right.svg deleted file mode 100644 index 1fabd7f..0000000 --- a/common/gnome-shell/3.18/common-assets/dash/dash-right.svg +++ /dev/null @@ -1,77 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/dash/running1.svg b/common/gnome-shell/3.18/common-assets/dash/running1.svg deleted file mode 100644 index 80a50e9..0000000 --- a/common/gnome-shell/3.18/common-assets/dash/running1.svg +++ /dev/null @@ -1,162 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/dash/running2.svg b/common/gnome-shell/3.18/common-assets/dash/running2.svg deleted file mode 100644 index 7921561..0000000 --- a/common/gnome-shell/3.18/common-assets/dash/running2.svg +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/dash/running3.svg b/common/gnome-shell/3.18/common-assets/dash/running3.svg deleted file mode 100644 index abe61a5..0000000 --- a/common/gnome-shell/3.18/common-assets/dash/running3.svg +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/dash/running4.svg b/common/gnome-shell/3.18/common-assets/dash/running4.svg deleted file mode 100644 index a74851b..0000000 --- a/common/gnome-shell/3.18/common-assets/dash/running4.svg +++ /dev/null @@ -1,183 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/menu/menu-hover.svg b/common/gnome-shell/3.18/common-assets/menu/menu-hover.svg deleted file mode 100644 index 6cdbdbe..0000000 --- a/common/gnome-shell/3.18/common-assets/menu/menu-hover.svg +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/menu/menu-separator.svg b/common/gnome-shell/3.18/common-assets/menu/menu-separator.svg deleted file mode 100644 index ce3763c..0000000 --- a/common/gnome-shell/3.18/common-assets/menu/menu-separator.svg +++ /dev/null @@ -1,60 +0,0 @@ - - - - - - - - - - image/svg+xml - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/misc/bg.svg b/common/gnome-shell/3.18/common-assets/misc/bg.svg deleted file mode 100644 index 1e6d24d..0000000 --- a/common/gnome-shell/3.18/common-assets/misc/bg.svg +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/misc/calendar-today.svg b/common/gnome-shell/3.18/common-assets/misc/calendar-today.svg deleted file mode 100644 index b307094..0000000 --- a/common/gnome-shell/3.18/common-assets/misc/calendar-today.svg +++ /dev/null @@ -1,205 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/misc/close-active.svg b/common/gnome-shell/3.18/common-assets/misc/close-active.svg deleted file mode 100644 index 8c060c8..0000000 --- a/common/gnome-shell/3.18/common-assets/misc/close-active.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - -image/svg+xml \ No newline at end of file diff --git a/common/gnome-shell/3.18/common-assets/misc/close-hover.svg b/common/gnome-shell/3.18/common-assets/misc/close-hover.svg deleted file mode 100644 index 0f6121d..0000000 --- a/common/gnome-shell/3.18/common-assets/misc/close-hover.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - -image/svg+xml \ No newline at end of file diff --git a/common/gnome-shell/3.18/common-assets/misc/close.svg b/common/gnome-shell/3.18/common-assets/misc/close.svg deleted file mode 100644 index e44adc7..0000000 --- a/common/gnome-shell/3.18/common-assets/misc/close.svg +++ /dev/null @@ -1,100 +0,0 @@ - - - -image/svg+xml \ No newline at end of file diff --git a/common/gnome-shell/3.18/common-assets/misc/corner-ripple-ltr.svg b/common/gnome-shell/3.18/common-assets/misc/corner-ripple-ltr.svg deleted file mode 100644 index 9409960..0000000 --- a/common/gnome-shell/3.18/common-assets/misc/corner-ripple-ltr.svg +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/misc/corner-ripple-rtl.svg b/common/gnome-shell/3.18/common-assets/misc/corner-ripple-rtl.svg deleted file mode 100644 index e9237cd..0000000 --- a/common/gnome-shell/3.18/common-assets/misc/corner-ripple-rtl.svg +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/misc/more-results.svg b/common/gnome-shell/3.18/common-assets/misc/more-results.svg deleted file mode 100644 index 70ab1dd..0000000 --- a/common/gnome-shell/3.18/common-assets/misc/more-results.svg +++ /dev/null @@ -1,167 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/misc/osd.svg b/common/gnome-shell/3.18/common-assets/misc/osd.svg deleted file mode 100644 index 57addde..0000000 --- a/common/gnome-shell/3.18/common-assets/misc/osd.svg +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/misc/page-indicator-active.svg b/common/gnome-shell/3.18/common-assets/misc/page-indicator-active.svg deleted file mode 100644 index 846f13d..0000000 --- a/common/gnome-shell/3.18/common-assets/misc/page-indicator-active.svg +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/misc/page-indicator-checked.svg b/common/gnome-shell/3.18/common-assets/misc/page-indicator-checked.svg deleted file mode 100644 index 053ffe7..0000000 --- a/common/gnome-shell/3.18/common-assets/misc/page-indicator-checked.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/misc/page-indicator-hover.svg b/common/gnome-shell/3.18/common-assets/misc/page-indicator-hover.svg deleted file mode 100644 index 1a2692a..0000000 --- a/common/gnome-shell/3.18/common-assets/misc/page-indicator-hover.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/misc/page-indicator-inactive.svg b/common/gnome-shell/3.18/common-assets/misc/page-indicator-inactive.svg deleted file mode 100644 index 3c066d0..0000000 --- a/common/gnome-shell/3.18/common-assets/misc/page-indicator-inactive.svg +++ /dev/null @@ -1,67 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/misc/process-working.svg b/common/gnome-shell/3.18/common-assets/misc/process-working.svg deleted file mode 100644 index f3d67d4..0000000 --- a/common/gnome-shell/3.18/common-assets/misc/process-working.svg +++ /dev/null @@ -1,409 +0,0 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/common/gnome-shell/3.18/common-assets/misc/ws-switch-arrow-down.png b/common/gnome-shell/3.18/common-assets/misc/ws-switch-arrow-down.png deleted file mode 100644 index a674ad58d7ca2c64e0d5a512ddd9a21578c643e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 879 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGoY)RhkE)4%caKYZ?lYt_f1s;*b zKpodXn9)gNb_Gz7y~NYkmHi$oGq)%MYv{iz3=B+vJY5_^DsH{Kbu!;KQRdjk>mp)W zfwvZQaV0HmZgW|kmaCtoEOy1|NR(1iviii1y(U7^+}VfY6($N;JNE`onIYsHxcADB zt(N9HyLVZB-}Bz~x$Sqm`L*YN?md5b-a}hcHy3PRiBjMV?FI4~J|BOrYDhldoA9Ha z`|H+*If4t!TOXP;Iwy*~sAgo?-&m{3Rd4#i^39`50S@b0_KCFY=lT(H=Fp`eAaAc+ z`~9#NQSp4NPrPnCPW++WP#!2Y<;jJc9jZNyw{5uUJwIF#JGx@ErJCE1nT;LKXJz&5 z!jE6 zoBaGH5zc(4G{7lebN$Z)#iu3h8FcsUJ8^~SyN-C{!f=M|odw7K%S&c17N4iHVP!}0Ii|ejFYl`K3AM>g*l&Y0rQ0 zmCP<;(kTfzl(A5#VdlZ_(YKF3=+Shac6;AX)f|cEH;iT8cvo)qjawx&jcL8?lnr+8 zXM`RoJ)QiIrEI1bgAVh(2)1vm5zId9>mub|i*L9cBDBD?V(a$1QaiFLd-fl24DM`r zdLVkzXZ9QUT9OxJa^9;6{$o@=#-Mx9EI&r;`=;PW)lN4)@N0hj=p7;H%-KG*B-mZQ1q8g8=( zU4>pJcj_+G{t+N_EHj}gs5suKyhG@hXkDiF3(bH-lCARooHHN14&Aqz%l@9ww&zm| sFVdQ&MBb@0Ddig1ONa4 diff --git a/common/gnome-shell/3.18/common-assets/misc/ws-switch-arrow-up.png b/common/gnome-shell/3.18/common-assets/misc/ws-switch-arrow-up.png deleted file mode 100644 index 1b6f6111418f3a8e4f83917db01e152bbb5002c4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 853 zcmeAS@N?(olHy`uVBq!ia0vp^2_VeD1|%QND7OGoY)RhkE)4%caKYZ?lYt_f1s;*b zKpodXn9)gNb_Gz7y~NYkmHi$oGq;G*m6`KG85o!zdAc};RNQ)d)7wKdQKJ20{;4h8 zQ#rPEZP31Ja=M9YS45e!xA{fZ)vgl+);4o+MTuXuYT70!C>S)mD@=^l(Pj0CQ}328 zt?;}!Pt2--%X&`nzWlUvXMXOX#*Jz(&7H>1ePpn{M5%R1lhUZ=_;Twl-jvG#gH=c;FVb;1TN zW$T!PL(bdPCG&l(4d24D`$u(yZo2zH+>YAH>?DN)|75k^E{bQ|osM+Qpr4IH7 zcPu#c@^L<=!M^u%y!z$$i@i{mNe}t+{>NI^qE?3A)iP&{ge%@8aDFZ9w7(ztN2=X;DwDrX`YZNr&#M1a z9II{rOD|@e65^_32Fa?#y$wtXcQp<3H=0Q=9E&?mz$K&{yk6TPhg7!~ix*PgEBOUlJ2pnF2S=+c)ZO5+V z(+^LG&8)kV+>>c~Y|eL^^>>d57~GX8J|waEx - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/panel/activities.svg b/common/gnome-shell/3.18/common-assets/panel/activities.svg deleted file mode 100644 index b3bcad9..0000000 --- a/common/gnome-shell/3.18/common-assets/panel/activities.svg +++ /dev/null @@ -1,158 +0,0 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/panel/panel-overview.svg b/common/gnome-shell/3.18/common-assets/panel/panel-overview.svg deleted file mode 100644 index 0c21ba4..0000000 --- a/common/gnome-shell/3.18/common-assets/panel/panel-overview.svg +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/panel/panel.svg b/common/gnome-shell/3.18/common-assets/panel/panel.svg deleted file mode 100644 index 1bd946e..0000000 --- a/common/gnome-shell/3.18/common-assets/panel/panel.svg +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/switch/switch-off-selected.svg b/common/gnome-shell/3.18/common-assets/switch/switch-off-selected.svg deleted file mode 100644 index 35888f4..0000000 --- a/common/gnome-shell/3.18/common-assets/switch/switch-off-selected.svg +++ /dev/null @@ -1,229 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/common-assets/switch/switch-on-selected.svg b/common/gnome-shell/3.18/common-assets/switch/switch-on-selected.svg deleted file mode 100644 index 2f782c7..0000000 --- a/common/gnome-shell/3.18/common-assets/switch/switch-on-selected.svg +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/checkbox/checkbox-checked-focused.svg b/common/gnome-shell/3.18/dark-assets/checkbox/checkbox-checked-focused.svg deleted file mode 100644 index 4789a32..0000000 --- a/common/gnome-shell/3.18/dark-assets/checkbox/checkbox-checked-focused.svg +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/checkbox/checkbox-checked.svg b/common/gnome-shell/3.18/dark-assets/checkbox/checkbox-checked.svg deleted file mode 100644 index 8f431e7..0000000 --- a/common/gnome-shell/3.18/dark-assets/checkbox/checkbox-checked.svg +++ /dev/null @@ -1,214 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/checkbox/checkbox-unchecked-focused.svg b/common/gnome-shell/3.18/dark-assets/checkbox/checkbox-unchecked-focused.svg deleted file mode 100644 index 77c4256..0000000 --- a/common/gnome-shell/3.18/dark-assets/checkbox/checkbox-unchecked-focused.svg +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/checkbox/checkbox-unchecked.svg b/common/gnome-shell/3.18/dark-assets/checkbox/checkbox-unchecked.svg deleted file mode 100644 index d7ce8c4..0000000 --- a/common/gnome-shell/3.18/dark-assets/checkbox/checkbox-unchecked.svg +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/menu/menu.svg b/common/gnome-shell/3.18/dark-assets/menu/menu.svg deleted file mode 100644 index 2566cb6..0000000 --- a/common/gnome-shell/3.18/dark-assets/menu/menu.svg +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/menu/submenu-open.svg b/common/gnome-shell/3.18/dark-assets/menu/submenu-open.svg deleted file mode 100644 index bd817b0..0000000 --- a/common/gnome-shell/3.18/dark-assets/menu/submenu-open.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/menu/submenu.svg b/common/gnome-shell/3.18/dark-assets/menu/submenu.svg deleted file mode 100644 index ebab963..0000000 --- a/common/gnome-shell/3.18/dark-assets/menu/submenu.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/misc/calendar-arrow-left-hover.svg b/common/gnome-shell/3.18/dark-assets/misc/calendar-arrow-left-hover.svg deleted file mode 100644 index 04ffc1b..0000000 --- a/common/gnome-shell/3.18/dark-assets/misc/calendar-arrow-left-hover.svg +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/misc/calendar-arrow-left.svg b/common/gnome-shell/3.18/dark-assets/misc/calendar-arrow-left.svg deleted file mode 100644 index 38c2368..0000000 --- a/common/gnome-shell/3.18/dark-assets/misc/calendar-arrow-left.svg +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/misc/calendar-arrow-right-hover.svg b/common/gnome-shell/3.18/dark-assets/misc/calendar-arrow-right-hover.svg deleted file mode 100644 index df438fc..0000000 --- a/common/gnome-shell/3.18/dark-assets/misc/calendar-arrow-right-hover.svg +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/misc/calendar-arrow-right.svg b/common/gnome-shell/3.18/dark-assets/misc/calendar-arrow-right.svg deleted file mode 100644 index 2195675..0000000 --- a/common/gnome-shell/3.18/dark-assets/misc/calendar-arrow-right.svg +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/misc/message-active.svg b/common/gnome-shell/3.18/dark-assets/misc/message-active.svg deleted file mode 100644 index 1261935..0000000 --- a/common/gnome-shell/3.18/dark-assets/misc/message-active.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/misc/message-close-active.svg b/common/gnome-shell/3.18/dark-assets/misc/message-close-active.svg deleted file mode 100644 index cd798c1..0000000 --- a/common/gnome-shell/3.18/dark-assets/misc/message-close-active.svg +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/misc/message-close-hover.svg b/common/gnome-shell/3.18/dark-assets/misc/message-close-hover.svg deleted file mode 100644 index 1456c46..0000000 --- a/common/gnome-shell/3.18/dark-assets/misc/message-close-hover.svg +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/misc/message-close.svg b/common/gnome-shell/3.18/dark-assets/misc/message-close.svg deleted file mode 100644 index a524ba5..0000000 --- a/common/gnome-shell/3.18/dark-assets/misc/message-close.svg +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/misc/message-hover.svg b/common/gnome-shell/3.18/dark-assets/misc/message-hover.svg deleted file mode 100644 index 0b5bd06..0000000 --- a/common/gnome-shell/3.18/dark-assets/misc/message-hover.svg +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/misc/message.svg b/common/gnome-shell/3.18/dark-assets/misc/message.svg deleted file mode 100644 index c9615d6..0000000 --- a/common/gnome-shell/3.18/dark-assets/misc/message.svg +++ /dev/null @@ -1,96 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/misc/modal.svg b/common/gnome-shell/3.18/dark-assets/misc/modal.svg deleted file mode 100644 index 8d726af..0000000 --- a/common/gnome-shell/3.18/dark-assets/misc/modal.svg +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/switch/switch-off.svg b/common/gnome-shell/3.18/dark-assets/switch/switch-off.svg deleted file mode 100644 index 3f50bda..0000000 --- a/common/gnome-shell/3.18/dark-assets/switch/switch-off.svg +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/dark-assets/switch/switch-on.svg b/common/gnome-shell/3.18/dark-assets/switch/switch-on.svg deleted file mode 100644 index 0c5f216..0000000 --- a/common/gnome-shell/3.18/dark-assets/switch/switch-on.svg +++ /dev/null @@ -1,239 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/gnome-shell-dark.css b/common/gnome-shell/3.18/gnome-shell-dark.css deleted file mode 100644 index 9d66b62..0000000 --- a/common/gnome-shell/3.18/gnome-shell-dark.css +++ /dev/null @@ -1,2061 +0,0 @@ -/* Copyright 2009, 2015 Red Hat, Inc. - * - * Portions adapted from Mx's data/style/default.css - * Copyright 2009 Intel Corporation - * - * This program is free software; you can redistribute it and/or modify it - * under the terms and conditions of the GNU Lesser General Public License, - * version 2.1, as published by the Free Software Foundation. - * - * This program is distributed in the hope it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for - * more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. - */ -stage { - font-family: Futura Bk bt, Cantarell, Sans-Serif; - font-size: 9pt; - color: #657b83; } - -.button { - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - border-radius: 2px; } - -.button, .notification-banner .notification-button, -.notification-banner:hover .notification-button, -.notification-banner:focus .notification-button, .hotplug-notification-item { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #083e4b; - border: 1px solid #001317; - box-shadow: inset 0 1px rgba(8, 62, 75, 0.05); } - .button:focus, .notification-banner .notification-button:focus, .hotplug-notification-item:focus { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #083e4b; - border: 1px solid #268bd2; - box-shadow: inset 0 1px rgba(8, 62, 75, 0.05); } - .button:hover, .notification-banner .notification-button:hover, .hotplug-notification-item:hover { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #0a5062; - border: 1px solid #001317; - box-shadow: inset 0 1px rgba(10, 80, 98, 0.05); } - .button:hover:focus, .notification-banner .notification-button:hover:focus, .hotplug-notification-item:hover:focus { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #083e4b; - border: 1px solid #268bd2; - box-shadow: inset 0 1px rgba(8, 62, 75, 0.05); } - .button:active, .notification-banner .notification-button:active, .hotplug-notification-item:active, .button:active:focus, .notification-banner .notification-button:active:focus, .hotplug-notification-item:active:focus { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #001317; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - .button:insensitive, .notification-banner .notification-button:insensitive, .hotplug-notification-item:insensitive { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: rgba(101, 123, 131, 0.45); - border: 1px solid rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); - box-shadow: inset 0 1px rgba(8, 62, 75, 0.05); } - -StEntry { - padding: 7px; - caret-size: 1px; - caret-color: #657b83; - selection-background-color: #268bd2; - selected-color: #fdf6e3; - transition-duration: 300ms; - border-radius: 3px; - color: #657b83; - background-color: #073642; - border: 1px solid #001317; - box-shadow: inset 0 2px 4px rgba(7, 54, 66, 0.05); } - StEntry:focus, StEntry:hover { - color: #657b83; - background-color: #073642; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(7, 54, 66, 0.05); } - StEntry:insensitive { - color: rgba(101, 123, 131, 0.45); - background-color: #04313d; - border-color: 1px solid #001e25; - box-shadow: inset 0 2px 4px rgba(4, 49, 61, 0.05); } - StEntry StIcon.capslock-warning { - icon-size: 16px; - warning-color: #cb4b16; - padding: 0 4px; } - -StScrollView.vfade { - -st-vfade-offset: 0px; } - -StScrollView.hfade { - -st-hfade-offset: 0px; } - -StScrollBar { - padding: 8px; } - StScrollView StScrollBar { - min-width: 5px; - min-height: 5px; } - StScrollBar StBin#trough { - background-color: rgba(7, 54, 66, 0.1); - border-radius: 8px; } - StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { - border-radius: 4px; - background-color: #284b55; - border: 0px solid; - margin: 0px; } - StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { - background-color: #1e434d; } - StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { - background-color: #268bd2; } - -.slider { - -slider-height: 4px; - -slider-background-color: #001317; - -slider-border-color: transparent; - -slider-active-background-color: #268bd2; - -slider-active-border-color: transparent; - -slider-border-width: 0; - -slider-handle-radius: 0px; - height: 18px; - border: 0 solid transparent; - border-right-width: 1px; - border-left-width: 5px; - color: transparent; } - .popup-menu-item.selected .slider { - -slider-background-color: rgba(0, 0, 0, 0.2); - -slider-active-background-color: #fdf6e3; } - -.check-box StBoxLayout { - spacing: .8em; } - -.check-box StBin { - width: 16px; - height: 16px; - background-image: url("dark-assets/checkbox/checkbox-unchecked.svg"); } - -.check-box:focus StBin { - background-image: url("dark-assets/checkbox/checkbox-unchecked-focused.svg"); } - -.check-box:checked StBin { - background-image: url("dark-assets/checkbox/checkbox-checked.svg"); } - -.check-box:focus:checked StBin { - background-image: url("dark-assets/checkbox/checkbox-checked-focused.svg"); } - -.toggle-switch { - width: 50px; - height: 20px; - background-size: contain; - background-image: url("dark-assets/switch/switch-off.svg"); } - .toggle-switch:checked { - background-image: url("dark-assets/switch/switch-on.svg"); } - .popup-menu-item.selected .toggle-switch { - background-image: url("common-assets/switch/switch-off-selected.svg"); } - .popup-menu-item.selected .toggle-switch:checked { - background-image: url("common-assets/switch/switch-on-selected.svg"); } - -.shell-link { - color: #78b9e6; } - .shell-link:hover { - color: #a3cfee; } - -.headline { - font-size: 110%; } - -.lightbox { - background-color: black; } - -.flashspot { - background-color: white; } - -.modal-dialog { - color: #657b83; - background-color: rgba(0, 43, 54, 0); - border: none; - border-image: url("dark-assets/misc/modal.svg") 9 9 9 67; - padding: 0 5px 6px 5px; } - .modal-dialog .modal-dialog-content-box { - padding: 20px 10px 10px 10px; } - .modal-dialog-linked-button { - height: 38px; - padding: 0; - box-shadow: inset 0 0 black; - border-top-width: 1px; - border-bottom-width: 0; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(3, 24, 29, 0.95); } - .modal-dialog-linked-button:hover { - background-color: rgba(9, 73, 89, 0.95); } - .modal-dialog-linked-button:focus { - color: #268bd2; } - .modal-dialog-linked-button:active { - color: #fdf6e3; - background-color: #268bd2; } - .modal-dialog-linked-button:insensitive { - color: rgba(101, 123, 131, 0.5); - background-color: rgba(6, 46, 57, 0.95); } - .modal-dialog-linked-button:first-child { - border-radius: 0px 0px 0px 2px; } - .modal-dialog-linked-button:last-child { - border-right-width: 0px; - border-radius: 0px 0px 2px 0px; } - .modal-dialog-linked-button:first-child:last-child { - border-right-width: 0px; - border-radius: 0px 0px 2px 2px; } - .modal-dialog .run-dialog-entry { - width: 21em; } - .modal-dialog .run-dialog-error-box { - padding-top: 5px; - spacing: 5px; } - .modal-dialog .run-dialog-label { - font-size: 0; } - -.show-processes-dialog-subject, -.mount-question-dialog-subject, -.end-session-dialog-subject { - font-size: 11pt; - font-weight: bold; - color: #657b83; } - -.end-session-dialog { - spacing: 42px; } - .end-session-dialog-list { - padding-top: 20px; } - .end-session-dialog-layout { - padding-left: 17px; } - .end-session-dialog-layout:rtl { - padding-right: 17px; } - .end-session-dialog-description { - width: 28em; - padding-bottom: 10px; } - .end-session-dialog-description:rtl { - text-align: right; } - .end-session-dialog-warning { - width: 28em; - color: #cb4b16; - padding-top: 6px; } - .end-session-dialog-warning:rtl { - text-align: right; } - .end-session-dialog-logout-icon { - border: 0px solid transparent; - border-radius: 2px; - width: 48px; - height: 48px; - background-size: contain; } - .end-session-dialog-shutdown-icon { - color: #657b83; - width: 48px; - height: 48px; } - .end-session-dialog-inhibitor-layout { - spacing: 16px; - max-height: 200px; - padding-right: 10px; - padding-left: 10px; } - .end-session-dialog-session-list, .end-session-dialog-app-list { - spacing: 1em; } - .end-session-dialog-list-header { - font-weight: bold; } - .end-session-dialog-list-header:rtl { - text-align: right; } - .end-session-dialog-app-list-item, .end-session-dialog-session-list-item { - spacing: 1em; } - .end-session-dialog-app-list-item-name, .end-session-dialog-session-list-item-name { - font-weight: bold; } - .end-session-dialog-app-list-item-description { - color: #708891; - font-size: 8pt; } - .end-session-dialog .modal-dialog-linked-button:last-child { - color: white; - background-color: #dc322f; } - .end-session-dialog .modal-dialog-linked-button:last-child:hover { - color: white; - background-color: #e35956; } - .end-session-dialog .modal-dialog-linked-button:last-child:active { - color: white; - background-color: #cf2623; } - -.shell-mount-operation-icon { - icon-size: 48px; } - -.show-processes-dialog, -.mount-question-dialog { - spacing: 24px; } - -.show-processes-dialog-subject, -.mount-question-dialog-subject { - padding-top: 10px; - padding-left: 17px; - padding-bottom: 6px; } - .show-processes-dialog-subject:rtl, - .mount-question-dialog-subject:rtl { - padding-left: 0px; - padding-right: 17px; } - -.mount-question-dialog-subject { - max-width: 500px; } - -.show-processes-dialog-description, -.mount-question-dialog-description { - padding-left: 17px; - width: 28em; } - .show-processes-dialog-description:rtl, - .mount-question-dialog-description:rtl { - padding-right: 17px; } - -.show-processes-dialog-app-list { - font-size: 10pt; - max-height: 200px; - padding-top: 24px; - padding-left: 49px; - padding-right: 32px; } - .show-processes-dialog-app-list:rtl { - padding-right: 49px; - padding-left: 32px; } - -.show-processes-dialog-app-list-item { - color: #4f6066; } - .show-processes-dialog-app-list-item:hover { - color: #657b83; } - .show-processes-dialog-app-list-item:ltr { - padding-right: 1em; } - .show-processes-dialog-app-list-item:rtl { - padding-left: 1em; } - -.show-processes-dialog-app-list-item-icon:ltr { - padding-right: 17px; } - -.show-processes-dialog-app-list-item-icon:rtl { - padding-left: 17px; } - -.show-processes-dialog-app-list-item-name { - font-size: 10pt; } - -.prompt-dialog { - width: 500px; } - .prompt-dialog-main-layout { - spacing: 24px; - padding: 10px; } - .prompt-dialog-message-layout { - spacing: 16px; } - .prompt-dialog-headline { - font-size: 12pt; - font-weight: bold; - color: #657b83; } - .prompt-dialog-descritption:rtl { - text-align: right; } - .prompt-dialog-password-box { - spacing: 1em; - padding-bottom: 1em; } - .prompt-dialog-error-label { - font-size: 9pt; - color: #dc322f; - padding-bottom: 8px; } - .prompt-dialog-info-label { - font-size: 9pt; - padding-bottom: 8px; } - .prompt-dialog-null-label { - font-size: 9pt; - padding-bottom: 8px; } - -.hidden { - color: transparent; } - -.polkit-dialog-user-layout { - padding-left: 10px; - spacing: 10px; } - .polkit-dialog-user-layout:rtl { - padding-left: 0px; - padding-right: 10px; } - -.polkit-dialog-user-root-label { - color: #cb4b16; } - -.polkit-dialog-user-user-icon { - border-radius: 2px; - background-size: contain; - width: 48px; - height: 48px; } - -.audio-device-selection-dialog { - spacing: 30px; } - -.audio-selection-content { - spacing: 20px; - padding: 24px; } - -.audio-selection-title { - font-weight: bold; - text-align: center; } - -.audio-selection-box { - spacing: 20px; } - -.audio-selection-device { - border: 1px solid #001317; - border-radius: 3px; } - .audio-selection-device:active, .audio-selection-device:hover, .audio-selection-device:focus { - background-color: #268bd2; - border-color: #268bd2; } - -.audio-selection-device-box { - padding: 20px; - spacing: 20px; } - -.audio-selection-device-icon { - icon-size: 64px; } - -.access-dialog { - spacing: 30px; } - .access-dialog-main-layout { - padding: 12px 20px 0; - spacing: 12px; } - .access-dialog-content { - max-width: 28em; - spacing: 20px; } - .access-dialog-icon { - min-width: 48px; - icon-size: 48px; } - .access-dialog-title { - font-weight: bold; } - .access-dialog-subtitle { - color: #657b83; - font-weight: bold; } - -.geolocation-dialog { - spacing: 30px; } - .geolocation-dialog-main-layout { - spacing: 12px; } - .geolocation-dialog-content { - spacing: 20px; } - .geolocation-dialog-icon { - icon-size: 48px; } - .geolocation-dialog-title { - font-weight: bold; } - .geolocation-dialog-reason { - color: #657b83; - font-weight: bold; } - -.network-dialog-secret-table { - spacing-rows: 15px; - spacing-columns: 1em; } - -.keyring-dialog-control-table { - spacing-rows: 15px; - spacing-columns: 1em; } - -.popup-menu { - min-width: 15em; - color: #657b83; - border-image: url("dark-assets/menu/menu.svg") 9 9 9 9; } - .popup-menu .popup-sub-menu { - background: none; - box-shadow: none; - border-image: url("dark-assets/menu/submenu.svg") 9 9 9 9; } - .popup-menu .popup-menu-content { - padding: 1em 0em 1em 0em; } - .popup-menu .popup-menu-item { - spacing: 12px; } - .popup-menu .popup-menu-item:ltr { - padding: .4em 3em .4em 0em; } - .popup-menu .popup-menu-item:rtl { - padding: .4em 0em .4em 3em; } - .popup-menu .popup-menu-item:checked { - font-weight: normal; - background: none; - box-shadow: none; - border-image: url("dark-assets/menu/submenu-open.svg") 9 9 9 9; } - .popup-menu .popup-menu-item:active, .popup-menu .popup-menu-item.selected { - color: #fdf6e3; - background-color: transparent; - border-image: url("common-assets/menu/menu-hover.svg") 9 9 1 1; } - .popup-menu .popup-menu-item:insensitive { - color: rgba(101, 123, 131, 0.5); - background: none; } - .popup-menu .popup-inactive-menu-item { - color: #657b83; } - .popup-menu .popup-inactive-menu-item:insensitive { - color: rgba(101, 123, 131, 0.45); } - .popup-menu.panel-menu { - -boxpointer-gap: 0px; - margin-bottom: 1.75em; } - -.popup-menu-ornament { - text-align: right; - margin-left: 10px; - width: 16px; } - -.popup-menu-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: transparent; - -arrow-border-width: 1px; - -arrow-border-color: transparent; - -arrow-base: 0; - -arrow-rise: 0; } - -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(7, 54, 66, 0.95); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0, 0, 0, 0.4); - -arrow-base: 5; - -arrow-rise: 5; } - -.popup-separator-menu-item { - height: 2px; - margin: 0; - background-color: transparent; - border: none; - border-image: url("common-assets/menu/menu-separator.svg") 1 1 1 1; } - -.background-menu { - -boxpointer-gap: 4px; - -arrow-rise: 0px; } - -.osd-window { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 20px; - margin: 32px; - min-width: 64px; - min-height: 64px; - color: white; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } - .osd-window .osd-monitor-label { - font-size: 3em; } - .osd-window .level { - padding: 0; - height: 4px; - background-color: rgba(0, 0, 0, 0.5); - border-radius: 2px; - color: #268bd2; } - .osd-window .level-bar { - background-color: #268bd2; - border-radius: 2px; } - -.resize-popup { - color: #657b83; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; - padding: 12px; } - -.switcher-popup { - padding: 8px; - spacing: 16px; } - -.switcher-list { - background: none; - border: none; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; } - .switcher-list-item-container { - spacing: 8px; } - .switcher-list .item-box { - padding: 8px; - border-radius: 2px; - border: 1px solid transparent; } - .switcher-list .item-box:outlined { - padding: 8px; - border: 1px solid #268bd2; } - .switcher-list .item-box:selected { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; } - .switcher-list .thumbnail-box { - padding: 2px; - spacing: 4px; } - .switcher-list .thumbnail { - width: 256px; } - .switcher-list .separator { - width: 1px; - background: rgba(101, 123, 131, 0.33); } - -.switcher-arrow { - border-color: transparent; - color: #657b83; } - .switcher-arrow:highlighted { - color: white; } - -.input-source-switcher-symbol { - font-size: 34pt; - width: 96px; - height: 96px; } - -.cycler-highlight { - border: 5px solid #268bd2; } - -.workspace-switcher { - background: transparent; - border: 0px; - border-radius: 0px; - padding: 0px; - spacing: 8px; } - .workspace-switcher-group { - padding: 12px; } - .workspace-switcher-container { - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; - padding-bottom: 24px; } - -.ws-switcher-active-up, .ws-switcher-active-down { - height: 30px; - background-color: #268bd2; - background-size: 96px; - border-radius: 2px; - border: 1px solid #268bd2; } - -.ws-switcher-active-up { - background-image: url("common-assets/misc/ws-switch-arrow-up.png"); } - -.ws-switcher-active-down { - background-image: url("common-assets/misc/ws-switch-arrow-down.png"); } - -.ws-switcher-box { - height: 96px; - background-color: rgba(0, 0, 0, 0.33); - border-color: rgba(0, 0, 0, 0.33); - border-radius: 2px; } - -.tile-preview { - background-color: rgba(38, 139, 210, 0.35); - border: 1px solid #268bd2; } - .tile-preview-left.on-primary { - border-radius: 0px 0 0 0; } - .tile-preview-right.on-primary { - border-radius: 0 0px 0 0; } - .tile-preview-left.tile-preview-right.on-primary { - border-radius: 0px 0px 0 0; } - -#panel { - font-weight: bold; - height: 2.1em; - min-height: 27px; - background-gradient-direction: none; - background-color: transparent; - border-bottom-width: 0; - border-image: url("common-assets/panel/panel.svg") 1 1 1 1; } - #panel.dynamic-top-bar-white-btn { - border-image: none; } - #panel.unlock-screen, #panel.login-screen, #panel.lock-screen { - background-color: transparent; - border-image: none; } - #panel:overview { - border-image: url("common-assets/panel/panel-overview.svg") 1 1 1 1; } - #panel #panelLeft, #panel #panelCenter { - spacing: 8px; } - #panel .panel-corner { - -panel-corner-radius: 0px; - -panel-corner-background-color: transparent; - -panel-corner-border-width: 0px; - -panel-corner-border-color: black; } - #panel .panel-corner:active, #panel .panel-corner:overview, #panel .panel-corner:focus { - -panel-corner-border-color: black; } - #panel .panel-corner.lock-screen, #panel .panel-corner.login-screen, #panel .panel-cornerunlock-screen { - -panel-corner-radius: 0; - -panel-corner-background-color: transparent; - -panel-corner-border-color: transparent; } - #panel .panel-button { - -natural-hpadding: 10px; - -minimum-hpadding: 6px; - font-weight: bold; - color: white; - transition-duration: 100ms; - border-bottom-width: 1px; - border-color: transparent; } - #panel .panel-button .app-menu-icon { - width: 0; - height: 0; - margin-left: 0px; - margin-right: 0px; } - #panel .panel-button:hover { - color: white; - background-color: rgba(0, 0, 0, 0.17); - border-bottom-width: 1px; - border-color: transparent; } - #panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel .panel-button:checked { - color: #fdf6e3; - background-color: #268bd2; - box-shadow: none; - border-bottom-width: 1px; - border-color: black; } - #panel .panel-button:active > .system-status-icon, #panel .panel-button:overview > .system-status-icon, #panel .panel-button:focus > .system-status-icon, #panel .panel-button:checked > .system-status-icon { - icon-shadow: none; } - #panel .panel-button .system-status-icon { - icon-size: 16px; - padding: 0 4px; } - .unlock-screen #panel .panel-button, - .login-screen #panel .panel-button, - .lock-screen #panel .panel-button { - color: #7f949c; } - .unlock-screen #panel .panel-button:focus, .unlock-screen #panel .panel-button:hover, .unlock-screen #panel .panel-button:active, - .login-screen #panel .panel-button:focus, - .login-screen #panel .panel-button:hover, - .login-screen #panel .panel-button:active, - .lock-screen #panel .panel-button:focus, - .lock-screen #panel .panel-button:hover, - .lock-screen #panel .panel-button:active { - color: #7f949c; } - #panel #panelActivities.panel-button { - -natural-hpadding: 12px; } - #panel .panel-status-indicators-box, - #panel .panel-status-menu-box { - spacing: 2px; } - #panel .power-status.panel-status-indicators-box { - spacing: 0; } - #panel .screencast-indicator { - color: #dc322f; } - #panel .clock-display > * > *:last-child { - color: #268bd2; - margin-left: .3em; } - #panel .popup-menu-arrow { - width: 0; } - -#panel #panelActivities.panel-button > * { - background-image: url("common-assets/panel/activities.svg"); - background-position: center top; - width: 24px; - height: 24px; - background-color: transparent !important; - background-gradient-direction: none !important; - border: 0 solid transparent !important; - text-shadow: 0 0 transparent !important; - transition-duration: 0ms !important; - box-shadow: none !important; - color: transparent; } - -#panel #panelActivities.panel-button:active, #panel #panelActivities.panel-button:overview, #panel #panelActivities.panel-button:focus, #panel #panelActivities.panel-button:checked { - background-color: transparent; - box-shadow: none; - border-bottom-width: 1px; - border-color: transparent; } - #panel #panelActivities.panel-button:active > *, #panel #panelActivities.panel-button:overview > *, #panel #panelActivities.panel-button:focus > *, #panel #panelActivities.panel-button:checked > * { - background-image: url("common-assets/panel/activities-active.svg"); } - -.system-switch-user-submenu-icon { - icon-size: 20px; - padding: 0 2px; } - -.system-switch-user-submenu-icon.default-icon { - icon-size: 16px; - padding: 0 4px; } - -#appMenu { - spinner-image: url("common-assets/misc/process-working.svg"); - spacing: 4px; - padding: 0 8px; } - #appMenu .label-shadow { - color: transparent; } - -.aggregate-menu { - min-width: 23.5em; } - .aggregate-menu .popup-menu-icon { - padding: 0 4px; } - -.system-menu-action { - padding: 13px; - color: #657b83; - border-radius: 32px; - /* wish we could do 50% */ - border: 1px solid transparent; } - .system-menu-action:hover, .system-menu-action:focus { - transition-duration: 100ms; - padding: 13px; - color: #657b83; - background-color: transparent; - border: 1px solid #268bd2; } - .system-menu-action:active { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; } - .system-menu-action > StIcon { - icon-size: 16px; } - -#calendarArea { - padding: 0.75em 1.0em; } - -.calendar { - margin-bottom: 1em; } - -.calendar, -.datemenu-today-button, -.datemenu-displays-box, -.message-list-sections { - margin: 0 0.4em; } - -.datemenu-calendar-column { - spacing: 0.5em; - border: none; } - -.datemenu-displays-section { - padding-bottom: 3em; } - -.datemenu-today-button, -.world-clocks-button, -.weather-button, -.message-list-section-title, -.events-section-title { - border-radius: 3px; - padding: .4em; } - -.message-list-section-list:ltr { - padding-left: .4em; } - -.message-list-section-list:rtl { - padding-right: .4em; } - -.datemenu-today-button, -.world-clocks-button, -.weather-button, -.message-list-section-title, -.events-section-title { - padding: 7px 10px 7px 10px; - border: 1px solid rgba(7, 54, 66, 0); } - .datemenu-today-button:hover, .datemenu-today-button:focus, - .world-clocks-button:hover, - .world-clocks-button:focus, - .weather-button:hover, - .weather-button:focus, - .message-list-section-title:hover, - .message-list-section-title:focus, - .events-section-title:hover, - .events-section-title:focus { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #0a5062; - border: 1px solid #001317; - box-shadow: inset 0 1px rgba(10, 80, 98, 0.05); } - .datemenu-today-button:active, - .world-clocks-button:active, - .weather-button:active, - .message-list-section-title:active, - .events-section-title:active { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #001317; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - -.datemenu-today-button .date-label { - font-size: 1.5em; } - -.world-clocks-header, -.weather-header, -.message-list-section-title, -.events-section-title { - color: rgba(101, 123, 131, 0.4); - font-weight: bold; } - -.world-clocks-button:active .world-clocks-header, -.weather-button:active .weather-header { - color: #fdf6e3; } - -.world-clocks-grid { - spacing-rows: 0.4em; } - -.weather-box { - spacing: 0.4em; } - -.calendar-month-label { - color: #657b83; - font-weight: bold; - padding: 8px 0; } - -.pager-button { - color: transparent; - background-color: transparent; - width: 32px; - border-radius: 2px; } - .pager-button:focus, .pager-button:hover, .pager-button:active { - background-color: transparent; } - -.calendar-change-month-back { - background-image: url("dark-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:focus, .calendar-change-month-back:hover { - background-image: url("dark-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-back:active { - background-image: url("dark-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:rtl { - background-image: url("dark-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { - background-image: url("dark-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-back:rtl:active { - background-image: url("dark-assets/misc/calendar-arrow-right.svg"); } - -.calendar-change-month-forward { - background-image: url("dark-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { - background-image: url("dark-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-forward:active { - background-image: url("dark-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:rtl { - background-image: url("dark-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { - background-image: url("dark-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-forward:rtl:active { - background-image: url("dark-assets/misc/calendar-arrow-left.svg"); } - -.calendar-day-base { - font-size: 80%; - text-align: center; - width: 25px; - height: 25px; - padding: 0.1em; - margin: 2px; - border-radius: 12.5px; } - .calendar-day-base:hover, .calendar-day-base:focus { - background-color: rgba(0, 0, 0, 0.1); } - .calendar-day-base:active, .calendar-day-base:selected { - color: #657b83; - background-color: rgba(0, 0, 0, 0.15); - border-width: 0; } - .calendar-day-base.calendar-day-heading { - color: rgba(101, 123, 131, 0.85); - margin-top: 1em; - font-size: 70%; } - -.calendar-day { - border-width: 0; - color: rgba(101, 123, 131, 0.8); } - -.calendar-day-top { - border-top-width: 0; } - -.calendar-day-left { - border-left-width: 0; } - -.calendar-nonwork-day { - color: #657b83; - font-weight: bold; } - -.calendar-today, -.calendar-today:active, -.calendar-today:selected, -.calendar-today:focus, -.calendar-today:hover { - font-weight: bold; - color: #fdf6e3; - background-color: #268bd2; - border-width: 0; } - -.calendar-day-with-events { - font-weight: bold; - background-image: url("common-assets/misc/calendar-today.svg"); } - -.calendar-today.calendar-day-with-events { - color: #fdf6e3; } - -.calendar-other-month-day { - color: rgba(101, 123, 131, 0.3); - opacity: 1; } - -.calendar-week-number { - font-size: 70%; - font-weight: bold; - width: 2.3em; - height: 1.8em; - border-radius: 2px; - padding: 0.5em 0 0; - margin: 6px; - background-color: rgba(101, 123, 131, 0.3); - color: #002b36; } - -.message-list { - width: 31.5em; } - .message-list-sections { - spacing: 1.5em; } - .message-list-section, .message-list-section-list { - spacing: 0.7em; } - .message-list-section-list-title-box { - spacing: 0.4em; } - .message-list-placeholder StIcon { - width: 0; - height: 0; } - .message-list-placeholder StLabel { - color: rgba(101, 123, 131, 0.45); } - .message-list-clear-button.button { - margin: 1.5em 1.5em 0; - padding: 4px 12px; } - .message-list-section-close > StIcon { - icon-size: 18px; - border-radius: 0px; - color: transparent; - background-color: transparent; - background-image: url("dark-assets/misc/message-close.svg"); } - .message-list-section-close:hover > StIcon { - color: transparent; - background-color: transparent; - background-image: url("dark-assets/misc/message-close-hover.svg"); } - .message-list-section-close:active > StIcon { - color: transparent; - background-color: transparent; - background-image: url("dark-assets/misc/message-close-active.svg"); } - -.message { - padding: 4px; - color: #657b83; - border-image: url("dark-assets/misc/message.svg") 9 9 9 9; } - .message:hover, .message:focus { - color: #657b83; - border-image: url("dark-assets/misc/message-hover.svg") 9 9 9 9; } - .message:active { - color: #fdf6e3; - border-image: url("dark-assets/misc/message-active.svg") 9 9 9 9; } - .message-icon-bin { - padding: 8px 0px 8px 8px; } - .message-icon-bin:rtl { - padding: 8px 8px 8px 0px; } - .message-icon-bin > StIcon { - color: inherit; } - .message-secondary-bin, - .message-secondary-bin > .event-time { - color: rgba(101, 123, 131, 0.6); - font-size: 0.9em; } - .message-secondary-bin:ltr, - .message-secondary-bin > .event-time:ltr { - padding-left: 8px; } - .message-secondary-bin:rtl, - .message-secondary-bin > .event-time:rtl { - padding-right: 8px; } - .message:active .message-secondary-bin, - .message:active .message-secondary-bin > .event-time { - color: rgba(253, 246, 227, 0.6); } - .message-secondary-bin > StIcon { - icon-size: 16px; } - .message-title { - color: inherit; - font-weight: bold; - font-size: 1em; - padding: 2px 0 2px 0; } - .message-content { - color: inherit; - padding: 8px; - font-size: 1em; } - -.message-media-control { - padding: 6px; - color: #657b83; } - .message-media-control:last-child:ltr { - padding-right: 18px; } - .message-media-control:last-child:rtl { - padding-left: 18px; } - .message-media-control:hover { - color: rgba(101, 123, 131, 0.7); } - .message-media-control:active { - color: #268bd2; } - .message-media-control:insensitive { - color: rgba(101, 123, 131, 0.45); } - -.message:active .message-media-control { - color: #fdf6e3; } - -.media-message-cover-icon { - icon-size: 32px; } - .media-message-cover-icon.fallback { - color: rgba(101, 123, 131, 0.45); - background-color: #002b36; - border-radius: 2px; - icon-size: 16px; - padding: 8px; - border: 1px solid #001317; } - -.ripple-box { - width: 52px; - height: 52px; - background-image: url("common-assets/misc/corner-ripple-ltr.svg"); - background-size: contain; } - .ripple-box:rtl { - background-image: url("common-assets/misc/corner-ripple-rtl.svg"); } - -.popup-menu-arrow { - width: 16px; - height: 16px; } - -.popup-menu-icon { - icon-size: 16px; } - -.window-close { - background-image: url("common-assets/misc/close.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - .window-close:hover { - background-image: url("common-assets/misc/close-hover.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - .window-close:active { - background-image: url("common-assets/misc/close-active.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - -.window-close { - -shell-close-overlap: 11px; } - -.nm-dialog { - max-height: 500px; - min-height: 450px; - min-width: 470px; } - .nm-dialog-content { - spacing: 20px; - padding: 10px; } - .nm-dialog-header-hbox { - spacing: 10px; } - .nm-dialog-airplane-box { - spacing: 12px; } - .nm-dialog-airplane-headline { - font-size: 1.1em; - font-weight: bold; - text-align: center; } - .nm-dialog-airplane-text { - color: #657b83; } - .nm-dialog-header-icon { - icon-size: 32px; } - .nm-dialog-scroll-view { - border: 1px solid #001317; - border-radius: 2px; - background-color: #073642; } - .nm-dialog-header { - font-weight: bold; - font-size: 1.2em; } - .nm-dialog-item { - font-size: 1em; - border-bottom: 0px solid; - padding: 12px; - spacing: 0px; } - .nm-dialog-item:selected { - background-color: #268bd2; - color: #fdf6e3; } - .nm-dialog-icons { - spacing: .5em; } - .nm-dialog-icon { - icon-size: 16px; } - -.no-networks-label { - color: rgba(101, 123, 131, 0.45); } - -.no-networks-box { - spacing: 12px; } - -#overview { - spacing: 24px; } - -.overview-controls { - padding-bottom: 32px; } - -.window-picker { - -horizontal-spacing: 32px; - -vertical-spacing: 32px; - padding-left: 32px; - padding-right: 32px; - padding-bottom: 48px; } - .window-picker.external-monitor { - padding: 32px; } - -.window-clone-border { - border: 3px solid rgba(38, 139, 210, 0.8); - border-radius: 4px; - box-shadow: inset 0px 0px 0px 1px rgba(38, 139, 210, 0); } - -.window-caption, .window-caption:hover { - spacing: 25px; - color: #657b83; - background-color: rgba(0, 0, 0, 0.7); - border-radius: 2px; - padding: 4px 12px; - -shell-caption-spacing: 12px; } - -.search-entry { - width: 320px; - padding: 7px 9px; - border-radius: 20px; - border: 1px solid rgba(0, 0, 0, 0.25); - background-color: rgba(7, 54, 66, 0.9); } - .search-entry:focus { - padding: 7px 9px; } - .search-entry .search-entry-icon { - icon-size: 16px; - padding: 0 4px; - color: #657b83; } - .search-entry:hover, .search-entry:focus { - color: #fdf6e3; - caret-color: #fdf6e3; - background-color: #268bd2; - selection-background-color: #fdf6e3; - selected-color: #268bd2; } - .search-entry:hover .search-entry-icon, .search-entry:focus .search-entry-icon { - color: #fdf6e3; } - -#searchResultsBin { - max-width: 1000px; } - -#searchResultsContent { - padding-left: 20px; - padding-right: 20px; - spacing: 16px; } - -.search-section { - spacing: 16px; } - -.search-section-content { - spacing: 32px; } - -.list-search-results { - spacing: 3px; } - -.search-section-separator { - background-color: rgba(255, 255, 255, 0.2); - -margin-horizontal: 1.5em; - height: 1px; } - -.list-search-result-content { - spacing: 12px; - padding: 12px; } - -.list-search-result-title { - font-size: 1.5em; - color: white; } - -.list-search-result-description { - color: #cccccc; } - -.search-provider-icon { - padding: 15px; } - -.search-provider-icon-more { - width: 16px; - height: 16px; - background-image: url("common-assets/misc/more-results.svg"); } - -#dash { - font-size: 1em; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(0, 0, 0, 0.4); - padding: 4px 0; - border-radius: 0 3px 3px 0; } - #dash:rtl { - border-radius: 3px 0 0 3px; } - .right #dash, #dash:rtl { - padding: 4px 0; } - .top #dash, .bottom #dash { - padding: 0; } - #dash .placeholder { - background-image: url("common-assets/dash/dash-placeholder.svg"); - background-size: contain; - height: 24px; } - #dash .empty-dash-drop-target { - width: 24px; - height: 24px; } - -.dash-item-container > StWidget, .dash-item-container > StWidget:rtl, .right .dash-item-container > StWidget { - padding: 4px 8px; } - -.top .dash-item-container > StWidget, .bottom .dash-item-container > StWidget { - padding: 6px; } - -.dash-label { - border-radius: 3px; - padding: 4px 12px; - color: white; - background-color: rgba(0, 0, 0, 0.7); - text-align: center; - -x-offset: 3px; } - .bottom .dash-label, .top .dash-label { - -y-offset: 3px; - -x-offset: 0; } - -#dash .app-well-app:hover .overview-icon, -.right #dash .app-well-app:hover .overview-icon, -.bottom #dash .app-well-app:hover .overview-icon, -.top #dash .app-well-app:hover .overview-icon { - background-color: #268bd2; } - -#dash .app-well-app:active .overview-icon, -.right #dash .app-well-app:active .overview-icon, -.bottom #dash .app-well-app:active .overview-icon, -.top #dash .app-well-app:active .overview-icon { - box-shadow: none; - background-color: #1e6ea7; } - -#dash .app-well-app-running-dot { - width: 11px; - height: 2px; - margin-bottom: 2px; - background-color: #268bd2; } - -#dashtodockContainer .app-well-app-running-dot { - background: none; - width: 28px; - height: 4px; } - -#dashtodockContainer .running1 .app-well-app-running-dot { - background-image: url("common-assets/dash/running1.svg"); } - -#dashtodockContainer .running2 .app-well-app-running-dot { - background-image: url("common-assets/dash/running2.svg"); } - -#dashtodockContainer .running3 .app-well-app-running-dot { - background-image: url("common-assets/dash/running3.svg"); } - -#dashtodockContainer .running4 .app-well-app-running-dot { - background-image: url("common-assets/dash/running4.svg"); } - -.show-apps .overview-icon { - background-color: rgba(0, 0, 0, 0.5); - border-radius: 2px; - border: 0px solid; } - -.show-apps:hover .overview-icon { - background-color: rgba(0, 0, 0, 0.7); - color: #268bd2; } - -.show-apps:active .overview-icon, -.show-apps:active .show-apps-icon, -.show-apps:checked .overview-icon, -.show-apps:checked .show-apps-icon { - color: #fdf6e3; - background-color: #268bd2; - box-shadow: none; - transition-duration: 0ms; } - -.icon-grid { - spacing: 30px; - -shell-grid-horizontal-item-size: 136px; - -shell-grid-vertical-item-size: 136px; } - .icon-grid .overview-icon { - icon-size: 96px; } - -.app-view-controls { - padding-bottom: 32px; } - -.app-view-control { - padding: 4px 32px; - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .app-view-control:hover { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .app-view-control:checked { - color: #fdf6e3; - background-color: #268bd2; } - .app-view-control:first-child:ltr, .app-view-control:last-child:rtl { - border-radius: 2px 0 0 2px; - border-right-width: 0; } - .app-view-control:last-child:ltr, .app-view-control:first-child:rtl { - border-radius: 0 2px 2px 0; - border-left-width: 0; } - -.search-provider-icon:active, .search-provider-icon:checked, -.list-search-result:active, -.list-search-result:checked { - background-color: rgba(2, 16, 20, 0.85); } - -.search-provider-icon:focus, .search-provider-icon:selected, .search-provider-icon:hover, -.list-search-result:focus, -.list-search-result:selected, -.list-search-result:hover { - background-color: rgba(101, 123, 131, 0.4); - transition-duration: 200ms; } - -.app-well-app:active .overview-icon, -.app-well-app:checked .overview-icon, -.app-well-app.app-folder:active .overview-icon, -.app-well-app.app-folder:checked .overview-icon, -.grid-search-result:active .overview-icon, -.grid-search-result:checked .overview-icon { - background-color: rgba(2, 16, 20, 0.85); - box-shadow: inset 0 0 #268bd2; } - -.app-well-app:hover .overview-icon, -.app-well-app:focus .overview-icon, -.app-well-app:selected .overview-icon, -.app-well-app.app-folder:hover .overview-icon, -.app-well-app.app-folder:focus .overview-icon, -.app-well-app.app-folder:selected .overview-icon, -.grid-search-result:hover .overview-icon, -.grid-search-result:focus .overview-icon, -.grid-search-result:selected .overview-icon { - background-color: rgba(101, 123, 131, 0.4); - transition-duration: 0ms; - border-image: none; - background-image: none; } - -.app-well-app-running-dot { - width: 20px; - height: 2px; - margin-bottom: 4px; - background-color: #268bd2; } - -.search-provider-icon, -.list-search-result, .app-well-app .overview-icon, -.app-well-app.app-folder .overview-icon, -.grid-search-result .overview-icon { - color: white; - border-radius: 2px; - padding: 6px; - border: 1px solid transparent; - transition-duration: 0ms; - text-align: center; } - -.app-well-app.app-folder > .overview-icon { - background-color: rgba(3, 24, 29, 0.95); - border: 1px solid rgba(0, 0, 0, 0.45); } - -.app-well-app.app-folder:hover > .overview-icon { - background-color: rgba(8, 65, 80, 0.95); } - -.app-well-app.app-folder:active > .overview-icon, .app-well-app.app-folder:checked > .overview-icon { - color: #fdf6e3; - background-color: #268bd2; - box-shadow: none; } - -.app-well-app.app-folder:focus > .overview-icon { - background-color: #268bd2; } - -.app-folder-popup { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(3, 24, 29, 0.95); - -arrow-border-color: rgba(0, 0, 0, 0.45); - -arrow-border-width: 1px; - -arrow-base: 5; - -arrow-rise: 5; } - -.app-folder-popup-bin { - padding: 5px; } - -.app-folder-icon { - padding: 5px; - spacing-rows: 5px; - spacing-columns: 5px; } - -.page-indicator { - padding: 15px 20px; } - .page-indicator .page-indicator-icon { - width: 18px; - height: 18px; - background-image: url(common-assets/misc/page-indicator-inactive.svg); } - .page-indicator:hover .page-indicator-icon { - background-image: url(common-assets/misc/page-indicator-hover.svg); } - .page-indicator:active .page-indicator-icon { - background-image: url(common-assets/misc/page-indicator-active.svg); } - .page-indicator:checked .page-indicator-icon, .page-indicator:checked:active { - background-image: url(common-assets/misc/page-indicator-checked.svg); } - -.app-well-app > .overview-icon.overview-icon-with-label, -.grid-search-result .overview-icon.overview-icon-with-label { - padding: 10px 8px 5px 8px; - spacing: 4px; } - -.workspace-thumbnails, .workspace-thumbnails:rtl, -.workspace-thumbnails-left, -.workspace-thumbnails-left:rtl { - visible-width: 40px; - spacing: 11px; - padding: 12px; } - -.workspace-thumbnails, -.workspace-thumbnails-left:rtl { - padding-right: 7px; - border-image: url("common-assets/dash/dash-right.svg") 9 9 9 9; } - -.workspace-thumbnails:rtl, -.workspace-thumbnails-left { - padding-left: 7px; - border-image: url("common-assets/dash/dash-left.svg") 9 9 9 9; } - -.workspace-thumbnail-indicator { - border: 4px solid rgba(38, 139, 210, 0.8); - border-radius: 1px; - padding: 1px; } - -.search-display > StBoxLayout, -.all-apps, -.frequent-apps > StBoxLayout { - padding: 0px 88px 10px 88px; } - -.search-statustext, .no-frequent-applications-label { - font-size: 2em; - font-weight: bold; - color: #657b83; } - -.url-highlighter { - link-color: #78b9e6; } - -.notification-banner, -.notification-banner:hover, -.notification-banner:focus { - font-size: 1em; - width: 34em; - margin: 5px; - padding: 10px; - color: #657b83; - background-color: transparent; - border: 1px solid transparent; - border-image: url("dark-assets/menu/menu.svg") 9 9 9 9; } - .notification-banner .notification-icon, - .notification-banner:hover .notification-icon, - .notification-banner:focus .notification-icon { - padding: 5px; } - .notification-banner .notification-content, - .notification-banner:hover .notification-content, - .notification-banner:focus .notification-content { - padding: 5px; - spacing: 5px; } - .notification-banner .secondary-icon, - .notification-banner:hover .secondary-icon, - .notification-banner:focus .secondary-icon { - icon-size: 1.09em; } - .notification-banner .notification-actions, - .notification-banner:hover .notification-actions, - .notification-banner:focus .notification-actions { - background-color: transparent; - padding: 2px 2px 0 2px; - spacing: 3px; } - .notification-banner .notification-button, - .notification-banner:hover .notification-button, - .notification-banner:focus .notification-button { - padding: 4px 4px 5px; } - .notification-banner .notification-button:first-child, .notification-banner .notification-button:last-child, - .notification-banner:hover .notification-button:first-child, - .notification-banner:hover .notification-button:last-child, - .notification-banner:focus .notification-button:first-child, - .notification-banner:focus .notification-button:last-child { - border-radius: 2px; } - -.secondary-icon { - icon-size: 1.09em; } - -.chat-body { - spacing: 5px; } - -.chat-response { - margin: 5px; } - -.chat-log-message { - color: #657b83; } - -.chat-new-group { - padding-top: 1em; } - -.chat-received { - padding-left: 4px; } - .chat-received:rtl { - padding-left: 0px; - padding-right: 4px; } - -.chat-sent { - padding-left: 18pt; - color: #268bd2; } - .chat-sent:rtl { - padding-left: 0; - padding-right: 18pt; } - -.chat-meta-message { - padding-left: 4px; - font-size: 9pt; - font-weight: bold; - color: rgba(101, 123, 131, 0.6); } - .chat-meta-message:rtl { - padding-left: 0; - padding-right: 4px; } - -.subscription-message { - font-style: italic; } - -.hotplug-transient-box { - spacing: 6px; - padding: 2px 72px 2px 12px; } - -.hotplug-notification-item { - padding: 2px 10px; } - .hotplug-notification-item:focus { - padding: 2px 10px; } - -.hotplug-notification-item-icon { - icon-size: 24px; - padding: 2px 5px; } - -.hotplug-resident-box { - spacing: 8px; } - -.hotplug-resident-mount { - spacing: 8px; - border-radius: 4px; } - .hotplug-resident-mount:hover { - background-color: rgba(0, 43, 54, 0.3); } - -.hotplug-resident-mount-label { - color: inherit; - padding-left: 6px; } - -.hotplug-resident-mount-icon { - icon-size: 24px; - padding-left: 6px; } - -.hotplug-resident-eject-icon { - icon-size: 16px; } - -.hotplug-resident-eject-button { - padding: 7px; - border-radius: 5px; - color: pink; } - -.legacy-tray { - background-color: rgba(5, 36, 44, 0.95); } - .legacy-tray:ltr { - border-radius: 0 2px 0 0; - border-left-width: 0; } - .legacy-tray:rtl { - border-radius: 2px 0 0 0; - border-right-width: 0; } - -.legacy-tray-handle, -.legacy-tray-icon { - padding: 6px; } - .legacy-tray-handle StIcon, - .legacy-tray-icon StIcon { - icon-size: 24px; } - .legacy-tray-handle:hover, .legacy-tray-handle:focus, - .legacy-tray-icon:hover, - .legacy-tray-icon:focus { - background-color: rgba(101, 123, 131, 0.1); } - -.legacy-tray-icon-box { - spacing: 12px; } - .legacy-tray-icon-box:ltr { - padding-left: 12px; } - .legacy-tray-icon-box:rtl { - padding-right: 12px; } - .legacy-tray-icon-box StButton { - width: 24px; - height: 24px; } - -.masterslider.smaller .masterlabel, -.masterslider.smaller .slider { - min-width: 155px; } - -.magnifier-zoom-region { - border: 2px solid #268bd2; } - .magnifier-zoom-region.full-screen { - border-width: 0; } - -#keyboard { - background-color: rgba(7, 54, 66, 0.95); - border-width: 0; - border-top-width: 1px; - border-color: rgba(0, 0, 0, 0.2); } - -.keyboard-layout { - spacing: 10px; - padding: 10px; } - -.keyboard-row { - spacing: 15px; } - -.keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; - font-weight: bold; - border-radius: 3px; - box-shadow: none; - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .keyboard-key:hover { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .keyboard-key:active, .keyboard-key:checked { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #fdf6e3; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: #268bd2; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - .keyboard-key:grayed { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #234b56; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - -.keyboard-subkeys { - color: #657b83; - padding: 5px; - -arrow-border-radius: 2px; - -arrow-background-color: rgba(7, 54, 66, 0.95); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0, 0, 0, 0.4); - -arrow-base: 20px; - -arrow-rise: 10px; - -boxpointer-gap: 5px; } - -.candidate-popup-content { - padding: 0.5em; - spacing: 0.3em; - color: #657b83; - font-size: 1.15em; } - -.candidate-index { - padding: 0 0.5em 0 0; - color: #7f949c; } - -.candidate-box { - padding: 0.3em 0.5em 0.3em 0.5em; - border-radius: 2px; - color: #657b83; } - .candidate-box:selected, .candidate-box:hover { - background-color: #268bd2; - color: #fdf6e3; } - -.candidate-page-button-box { - height: 2em; } - .vertical .candidate-page-button-box { - padding-top: 0.5em; } - .horizontal .candidate-page-button-box { - padding-left: 0.5em; } - -.candidate-page-button { - padding: 4px; } - -.candidate-page-button-previous { - border-radius: 2px 0px 0px 2px; - border-right-width: 0; } - -.candidate-page-button-next { - border-radius: 0px 2px 2px 0px; } - -.candidate-page-button-icon { - icon-size: 1em; } - -.framed-user-icon { - background-size: contain; - border: 0px solid transparent; - color: #657b83; - border-radius: 2px; } - .framed-user-icon:hover { - border-color: transparent; - color: #b8c4c9; } - -.login-dialog-banner-view { - padding-top: 24px; - max-width: 23em; } - -.login-dialog { - border: none; - background-color: transparent; } - .login-dialog .modal-dialog-button-box { - spacing: 3px; } - .login-dialog .modal-dialog-button { - padding: 3px 18px; } - .login-dialog .modal-dialog-button:default { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #083e4b; - border: 1px solid #001317; - box-shadow: inset 0 1px rgba(8, 62, 75, 0.05); } - .login-dialog .modal-dialog-button:default:hover, .login-dialog .modal-dialog-button:default:focus { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #657b83; - background-color: #0a5062; - border: 1px solid #001317; - box-shadow: inset 0 1px rgba(10, 80, 98, 0.05); } - .login-dialog .modal-dialog-button:default:active { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #001317; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - .login-dialog .modal-dialog-button:default:insensitive { - text-shadow: 0 1px rgba(7, 54, 66, 0); - color: rgba(101, 123, 131, 0.45); - border: 1px solid rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); - box-shadow: inset 0 1px rgba(8, 62, 75, 0.05); } - -.login-dialog-logo-bin { - padding: 24px 0px; } - -.login-dialog-banner { - color: #4f6066; } - -.login-dialog-button-box { - spacing: 5px; } - -.login-dialog-message-warning { - color: #cb4b16; } - -.login-dialog-message-hint { - padding-top: 0; - padding-bottom: 20px; } - -.login-dialog-user-selection-box { - padding: 100px 0px; } - .login-dialog-user-selection-box .login-dialog-not-listed-label { - padding-left: 2px; } - .login-dialog-not-listed-button:focus .login-dialog-user-selection-box .login-dialog-not-listed-label, - .login-dialog-not-listed-button:hover .login-dialog-user-selection-box .login-dialog-not-listed-label { - color: #657b83; } - -.login-dialog-not-listed-label { - font-size: 90%; - font-weight: bold; - color: #222a2d; - padding-top: 1em; } - -.login-dialog-user-list-view { - -st-vfade-offset: 1em; } - -.login-dialog-user-list { - spacing: 12px; - padding: .2em; - width: 23em; } - .login-dialog-user-list:expanded .login-dialog-user-list-item:focus { - background-color: #268bd2; - color: #fdf6e3; } - .login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in { - border-right: 2px solid #268bd2; } - -.login-dialog-user-list-item { - border-radius: 5px; - padding: .2em; - color: #222a2d; } - .login-dialog-user-list-item:ltr { - padding-right: 1em; } - .login-dialog-user-list-item:rtl { - padding-left: 1em; } - .login-dialog-user-list-item:hover { - background-color: #268bd2; - color: #fdf6e3; } - .login-dialog-user-list-item .login-dialog-timed-login-indicator { - height: 2px; - margin: 2px 0 0 0; - background-color: #657b83; } - .login-dialog-user-list-item:focus .login-dialog-timed-login-indicator { - background-color: #fdf6e3; } - -.login-dialog-username, -.user-widget-label { - color: #657b83; - font-size: 120%; - font-weight: bold; - text-align: left; - padding-left: 15px; } - -.user-widget-label:ltr { - padding-left: 18px; } - -.user-widget-label:rtl { - padding-right: 18px; } - -.login-dialog-prompt-layout { - padding-top: 24px; - padding-bottom: 12px; - spacing: 8px; - width: 23em; } - -.login-dialog-prompt-label { - color: #394549; - font-size: 110%; - padding-top: 1em; } - -.login-dialog-session-list-button StIcon { - icon-size: 1.25em; } - -.login-dialog-session-list-button { - color: #222a2d; } - .login-dialog-session-list-button:hover, .login-dialog-session-list-button:focus { - color: #657b83; } - .login-dialog-session-list-button:active { - color: black; } - -.screen-shield-arrows { - padding-bottom: 3em; } - -.screen-shield-arrows Gjs_Arrow { - color: white; - width: 80px; - height: 48px; - -arrow-thickness: 12px; - -arrow-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); } - -.screen-shield-clock { - color: white; - text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6); - font-weight: bold; - text-align: center; - padding-bottom: 1.5em; } - -.screen-shield-clock-time { - font-size: 72pt; - text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4); } - -.screen-shield-clock-date { - font-size: 28pt; } - -.screen-shield-notifications-container { - spacing: 6px; - width: 30em; - background-color: transparent; - max-height: 500px; } - .screen-shield-notifications-container .summary-notification-stack-scrollview { - padding-top: 0; - padding-bottom: 0; } - .screen-shield-notifications-container .notification, - .screen-shield-notifications-container .screen-shield-notification-source { - padding: 12px 6px; - border: 1px solid rgba(101, 123, 131, 0.2); - background-color: rgba(7, 54, 66, 0.45); - color: #657b83; - border-radius: 4px; } - .screen-shield-notifications-container .notification { - margin-right: 15px; } - -.screen-shield-notification-label { - font-weight: bold; - padding: 0px 0px 0px 12px; } - -.screen-shield-notification-count-text { - padding: 0px 0px 0px 12px; } - -#panel.lock-screen { - background-color: rgba(7, 54, 66, 0.5); } - -.screen-shield-background { - background: black; - box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4); } - -#lockDialogGroup { - background: #2e3436 url(misc/noise-texture.png); - background-repeat: repeat; } - -#screenShieldNotifications StButton#vhandle, #screenShieldNotifications StButton#hhandle { - background-color: rgba(0, 43, 54, 0.3); } - #screenShieldNotifications StButton#vhandle:hover, #screenShieldNotifications StButton#vhandle:focus, #screenShieldNotifications StButton#hhandle:hover, #screenShieldNotifications StButton#hhandle:focus { - background-color: rgba(0, 43, 54, 0.5); } - #screenShieldNotifications StButton#vhandle:active, #screenShieldNotifications StButton#hhandle:active { - background-color: rgba(38, 139, 210, 0.5); } - -#LookingGlassDialog { - spacing: 4px; - padding: 8px 8px 10px 8px; - background-color: rgba(0, 0, 0, 0.7); - border: 1px solid black; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 2px; - color: #657b83; } - #LookingGlassDialog > #Toolbar { - padding: 3px; - border: none; - background-color: transparent; - border-radius: 0px; } - #LookingGlassDialog .labels { - spacing: 4px; } - #LookingGlassDialog .notebook-tab { - -natural-hpadding: 12px; - -minimum-hpadding: 6px; - font-weight: bold; - color: #657b83; - transition-duration: 100ms; - padding-left: .3em; - padding-right: .3em; } - #LookingGlassDialog .notebook-tab:hover { - color: white; - text-shadow: black 0px 2px 2px; } - #LookingGlassDialog .notebook-tab:selected { - border-bottom-width: 0px; - color: #268bd2; - text-shadow: black 0px 2px 2px; } - #LookingGlassDialog StBoxLayout#EvalBox { - padding: 4px; - spacing: 4px; } - #LookingGlassDialog StBoxLayout#ResultsArea { - spacing: 4px; } - -.lg-dialog StEntry { - caret-color: #fdf6e3; - selection-background-color: #268bd2; - selected-color: #fdf6e3; - color: #657b83; - background-color: rgba(18, 137, 167, 0.35); - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .lg-dialog StEntry:focus { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); - selection-background-color: #fdf6e3; - selected-color: #268bd2; } - -.lg-dialog .shell-link { - color: #78b9e6; } - .lg-dialog .shell-link:hover { - color: #a3cfee; } - -.lg-completions-text { - font-size: .9em; - font-style: italic; } - -.lg-obj-inspector-title { - spacing: 4px; } - -.lg-obj-inspector-button { - border: 1px solid gray; - padding: 4px; - border-radius: 4px; } - .lg-obj-inspector-button:hover { - border: 1px solid #fdf6e3; } - -#lookingGlassExtensions { - padding: 4px; } - -.lg-extensions-list { - padding: 4px; - spacing: 6px; } - -.lg-extension { - border: 1px solid rgba(0, 0, 0, 0.7); - border-radius: 2px; - background-color: rgba(7, 54, 66, 0.95); - padding: 4px; } - -.lg-extension-name { - font-weight: bold; } - -.lg-extension-meta { - spacing: 6px; } - -#LookingGlassPropertyInspector { - background: rgba(0, 0, 0, 0.7); - border: 1px solid grey; - border-radius: 2px; - padding: 6px; } diff --git a/common/gnome-shell/3.18/gnome-shell.css b/common/gnome-shell/3.18/gnome-shell.css deleted file mode 100644 index 97b47fc..0000000 --- a/common/gnome-shell/3.18/gnome-shell.css +++ /dev/null @@ -1,2061 +0,0 @@ -/* Copyright 2009, 2015 Red Hat, Inc. - * - * Portions adapted from Mx's data/style/default.css - * Copyright 2009 Intel Corporation - * - * This program is free software; you can redistribute it and/or modify it - * under the terms and conditions of the GNU Lesser General Public License, - * version 2.1, as published by the Free Software Foundation. - * - * This program is distributed in the hope it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for - * more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. - */ -stage { - font-family: Futura Bk bt, Cantarell, Sans-Serif; - font-size: 9pt; - color: #5c616c; } - -.button { - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - border-radius: 2px; } - -.button, .notification-banner .notification-button, -.notification-banner:hover .notification-button, -.notification-banner:focus .notification-button, .hotplug-notification-item { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: #fbfbfc; - border: 1px solid #657b83; - box-shadow: inset 0 1px rgba(251, 251, 252, 0.05); } - .button:focus, .notification-banner .notification-button:focus, .hotplug-notification-item:focus { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: #fbfbfc; - border: 1px solid #268bd2; - box-shadow: inset 0 1px rgba(251, 251, 252, 0.05); } - .button:hover, .notification-banner .notification-button:hover, .hotplug-notification-item:hover { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: white; - border: 1px solid #657b83; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); } - .button:hover:focus, .notification-banner .notification-button:hover:focus, .hotplug-notification-item:hover:focus { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: #fbfbfc; - border: 1px solid #268bd2; - box-shadow: inset 0 1px rgba(251, 251, 252, 0.05); } - .button:active, .notification-banner .notification-button:active, .hotplug-notification-item:active, .button:active:focus, .notification-banner .notification-button:active:focus, .hotplug-notification-item:active:focus { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - .button:insensitive, .notification-banner .notification-button:insensitive, .hotplug-notification-item:insensitive { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: rgba(92, 97, 108, 0.55); - border: 1px solid rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); - box-shadow: inset 0 1px rgba(251, 251, 252, 0.05); } - -StEntry { - padding: 7px; - caret-size: 1px; - caret-color: #5c616c; - selection-background-color: #268bd2; - selected-color: #fdf6e3; - transition-duration: 300ms; - border-radius: 3px; - color: #5c616c; - background-color: #fdf6e3; - border: 1px solid #657b83; - box-shadow: inset 0 2px 4px rgba(253, 246, 227, 0.05); } - StEntry:focus, StEntry:hover { - color: #5c616c; - background-color: #fdf6e3; - border: 1px solid #268bd2; - box-shadow: inset 0 2px 4px rgba(253, 246, 227, 0.05); } - StEntry:insensitive { - color: rgba(92, 97, 108, 0.55); - background-color: #f9f6ec; - border-color: 1px solid #a6b2b7; - box-shadow: inset 0 2px 4px rgba(249, 246, 236, 0.05); } - StEntry StIcon.capslock-warning { - icon-size: 16px; - warning-color: #cb4b16; - padding: 0 4px; } - -StScrollView.vfade { - -st-vfade-offset: 0px; } - -StScrollView.hfade { - -st-hfade-offset: 0px; } - -StScrollBar { - padding: 8px; } - StScrollView StScrollBar { - min-width: 5px; - min-height: 5px; } - StScrollBar StBin#trough { - background-color: rgba(253, 246, 227, 0.1); - border-radius: 8px; } - StScrollBar StButton#vhandle, StScrollBar StButton#hhandle { - border-radius: 4px; - background-color: #b8babf; - border: 0px solid; - margin: 0px; } - StScrollBar StButton#vhandle:hover, StScrollBar StButton#hhandle:hover { - background-color: #c7c9cd; } - StScrollBar StButton#vhandle:active, StScrollBar StButton#hhandle:active { - background-color: #268bd2; } - -.slider { - -slider-height: 4px; - -slider-background-color: #657b83; - -slider-border-color: transparent; - -slider-active-background-color: #268bd2; - -slider-active-border-color: transparent; - -slider-border-width: 0; - -slider-handle-radius: 0px; - height: 18px; - border: 0 solid transparent; - border-right-width: 1px; - border-left-width: 5px; - color: transparent; } - .popup-menu-item.selected .slider { - -slider-background-color: rgba(0, 0, 0, 0.2); - -slider-active-background-color: #fdf6e3; } - -.check-box StBoxLayout { - spacing: .8em; } - -.check-box StBin { - width: 16px; - height: 16px; - background-image: url("light-assets/checkbox/checkbox-unchecked.svg"); } - -.check-box:focus StBin { - background-image: url("light-assets/checkbox/checkbox-unchecked-focused.svg"); } - -.check-box:checked StBin { - background-image: url("light-assets/checkbox/checkbox-checked.svg"); } - -.check-box:focus:checked StBin { - background-image: url("light-assets/checkbox/checkbox-checked-focused.svg"); } - -.toggle-switch { - width: 50px; - height: 20px; - background-size: contain; - background-image: url("light-assets/switch/switch-off.svg"); } - .toggle-switch:checked { - background-image: url("light-assets/switch/switch-on.svg"); } - .popup-menu-item.selected .toggle-switch { - background-image: url("common-assets/switch/switch-off-selected.svg"); } - .popup-menu-item.selected .toggle-switch:checked { - background-image: url("common-assets/switch/switch-on-selected.svg"); } - -.shell-link { - color: #1e6ea7; } - .shell-link:hover { - color: #268bd2; } - -.headline { - font-size: 110%; } - -.lightbox { - background-color: black; } - -.flashspot { - background-color: white; } - -.modal-dialog { - color: #5c616c; - background-color: rgba(245, 246, 247, 0); - border: none; - border-image: url("light-assets/misc/modal.svg") 9 9 9 67; - padding: 0 5px 6px 5px; } - .modal-dialog .modal-dialog-content-box { - padding: 20px 10px 10px 10px; } - .modal-dialog-linked-button { - height: 39px; - padding: 0; - box-shadow: inset 0 0 black; - border-top-width: 0px; - border-bottom-width: 0; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(5, 35, 43, 0.95); } - .modal-dialog-linked-button:hover { - background-color: rgba(9, 73, 89, 0.95); } - .modal-dialog-linked-button:focus { - color: #268bd2; } - .modal-dialog-linked-button:active { - color: #fdf6e3; - background-color: #268bd2; } - .modal-dialog-linked-button:insensitive { - color: rgba(101, 123, 131, 0.5); - background-color: rgba(6, 46, 57, 0.95); } - .modal-dialog-linked-button:first-child { - border-radius: 0px 0px 0px 2px; } - .modal-dialog-linked-button:last-child { - border-right-width: 0px; - border-radius: 0px 0px 2px 0px; } - .modal-dialog-linked-button:first-child:last-child { - border-right-width: 0px; - border-radius: 0px 0px 2px 2px; } - .modal-dialog .run-dialog-entry { - width: 21em; } - .modal-dialog .run-dialog-error-box { - padding-top: 5px; - spacing: 5px; } - .modal-dialog .run-dialog-label { - font-size: 0; } - -.show-processes-dialog-subject, -.mount-question-dialog-subject, -.end-session-dialog-subject { - font-size: 11pt; - font-weight: bold; - color: #5c616c; } - -.end-session-dialog { - spacing: 42px; } - .end-session-dialog-list { - padding-top: 20px; } - .end-session-dialog-layout { - padding-left: 17px; } - .end-session-dialog-layout:rtl { - padding-right: 17px; } - .end-session-dialog-description { - width: 28em; - padding-bottom: 10px; } - .end-session-dialog-description:rtl { - text-align: right; } - .end-session-dialog-warning { - width: 28em; - color: #cb4b16; - padding-top: 6px; } - .end-session-dialog-warning:rtl { - text-align: right; } - .end-session-dialog-logout-icon { - border: 0px solid transparent; - border-radius: 2px; - width: 48px; - height: 48px; - background-size: contain; } - .end-session-dialog-shutdown-icon { - color: #5c616c; - width: 48px; - height: 48px; } - .end-session-dialog-inhibitor-layout { - spacing: 16px; - max-height: 200px; - padding-right: 10px; - padding-left: 10px; } - .end-session-dialog-session-list, .end-session-dialog-app-list { - spacing: 1em; } - .end-session-dialog-list-header { - font-weight: bold; } - .end-session-dialog-list-header:rtl { - text-align: right; } - .end-session-dialog-app-list-item, .end-session-dialog-session-list-item { - spacing: 1em; } - .end-session-dialog-app-list-item-name, .end-session-dialog-session-list-item-name { - font-weight: bold; } - .end-session-dialog-app-list-item-description { - color: #686d7a; - font-size: 8pt; } - .end-session-dialog .modal-dialog-linked-button:last-child { - color: white; - background-color: #dc322f; } - .end-session-dialog .modal-dialog-linked-button:last-child:hover { - color: white; - background-color: #e35956; } - .end-session-dialog .modal-dialog-linked-button:last-child:active { - color: white; - background-color: #cf2623; } - -.shell-mount-operation-icon { - icon-size: 48px; } - -.show-processes-dialog, -.mount-question-dialog { - spacing: 24px; } - -.show-processes-dialog-subject, -.mount-question-dialog-subject { - padding-top: 10px; - padding-left: 17px; - padding-bottom: 6px; } - .show-processes-dialog-subject:rtl, - .mount-question-dialog-subject:rtl { - padding-left: 0px; - padding-right: 17px; } - -.mount-question-dialog-subject { - max-width: 500px; } - -.show-processes-dialog-description, -.mount-question-dialog-description { - padding-left: 17px; - width: 28em; } - .show-processes-dialog-description:rtl, - .mount-question-dialog-description:rtl { - padding-right: 17px; } - -.show-processes-dialog-app-list { - font-size: 10pt; - max-height: 200px; - padding-top: 24px; - padding-left: 49px; - padding-right: 32px; } - .show-processes-dialog-app-list:rtl { - padding-right: 49px; - padding-left: 32px; } - -.show-processes-dialog-app-list-item { - color: #454850; } - .show-processes-dialog-app-list-item:hover { - color: #5c616c; } - .show-processes-dialog-app-list-item:ltr { - padding-right: 1em; } - .show-processes-dialog-app-list-item:rtl { - padding-left: 1em; } - -.show-processes-dialog-app-list-item-icon:ltr { - padding-right: 17px; } - -.show-processes-dialog-app-list-item-icon:rtl { - padding-left: 17px; } - -.show-processes-dialog-app-list-item-name { - font-size: 10pt; } - -.prompt-dialog { - width: 500px; } - .prompt-dialog-main-layout { - spacing: 24px; - padding: 10px; } - .prompt-dialog-message-layout { - spacing: 16px; } - .prompt-dialog-headline { - font-size: 12pt; - font-weight: bold; - color: #5c616c; } - .prompt-dialog-descritption:rtl { - text-align: right; } - .prompt-dialog-password-box { - spacing: 1em; - padding-bottom: 1em; } - .prompt-dialog-error-label { - font-size: 9pt; - color: #dc322f; - padding-bottom: 8px; } - .prompt-dialog-info-label { - font-size: 9pt; - padding-bottom: 8px; } - .prompt-dialog-null-label { - font-size: 9pt; - padding-bottom: 8px; } - -.hidden { - color: transparent; } - -.polkit-dialog-user-layout { - padding-left: 10px; - spacing: 10px; } - .polkit-dialog-user-layout:rtl { - padding-left: 0px; - padding-right: 10px; } - -.polkit-dialog-user-root-label { - color: #cb4b16; } - -.polkit-dialog-user-user-icon { - border-radius: 2px; - background-size: contain; - width: 48px; - height: 48px; } - -.audio-device-selection-dialog { - spacing: 30px; } - -.audio-selection-content { - spacing: 20px; - padding: 24px; } - -.audio-selection-title { - font-weight: bold; - text-align: center; } - -.audio-selection-box { - spacing: 20px; } - -.audio-selection-device { - border: 1px solid #dcdfe3; - border-radius: 3px; } - .audio-selection-device:active, .audio-selection-device:hover, .audio-selection-device:focus { - background-color: #268bd2; - border-color: #268bd2; } - -.audio-selection-device-box { - padding: 20px; - spacing: 20px; } - -.audio-selection-device-icon { - icon-size: 64px; } - -.access-dialog { - spacing: 30px; } - .access-dialog-main-layout { - padding: 12px 20px 0; - spacing: 12px; } - .access-dialog-content { - max-width: 28em; - spacing: 20px; } - .access-dialog-icon { - min-width: 48px; - icon-size: 48px; } - .access-dialog-title { - font-weight: bold; } - .access-dialog-subtitle { - color: #5c616c; - font-weight: bold; } - -.geolocation-dialog { - spacing: 30px; } - .geolocation-dialog-main-layout { - spacing: 12px; } - .geolocation-dialog-content { - spacing: 20px; } - .geolocation-dialog-icon { - icon-size: 48px; } - .geolocation-dialog-title { - font-weight: bold; } - .geolocation-dialog-reason { - color: #5c616c; - font-weight: bold; } - -.network-dialog-secret-table { - spacing-rows: 15px; - spacing-columns: 1em; } - -.keyring-dialog-control-table { - spacing-rows: 15px; - spacing-columns: 1em; } - -.popup-menu { - min-width: 15em; - color: #5c616c; - border-image: url("light-assets/menu/menu.svg") 9 9 9 9; } - .popup-menu .popup-sub-menu { - background: none; - box-shadow: none; - border-image: url("light-assets/menu/submenu.svg") 9 9 9 9; } - .popup-menu .popup-menu-content { - padding: 1em 0em 1em 0em; } - .popup-menu .popup-menu-item { - spacing: 12px; } - .popup-menu .popup-menu-item:ltr { - padding: .4em 3em .4em 0em; } - .popup-menu .popup-menu-item:rtl { - padding: .4em 0em .4em 3em; } - .popup-menu .popup-menu-item:checked { - font-weight: normal; - background: none; - box-shadow: none; - border-image: url("light-assets/menu/submenu-open.svg") 9 9 9 9; } - .popup-menu .popup-menu-item:active, .popup-menu .popup-menu-item.selected { - color: #fdf6e3; - background-color: transparent; - border-image: url("common-assets/menu/menu-hover.svg") 9 9 1 1; } - .popup-menu .popup-menu-item:insensitive { - color: rgba(92, 97, 108, 0.5); - background: none; } - .popup-menu .popup-inactive-menu-item { - color: #5c616c; } - .popup-menu .popup-inactive-menu-item:insensitive { - color: rgba(92, 97, 108, 0.55); } - .popup-menu.panel-menu { - -boxpointer-gap: 0px; - margin-bottom: 1.75em; } - -.popup-menu-ornament { - text-align: right; - margin-left: 10px; - width: 16px; } - -.popup-menu-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: transparent; - -arrow-border-width: 1px; - -arrow-border-color: transparent; - -arrow-base: 0; - -arrow-rise: 0; } - -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(7, 54, 66, 0.95); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0, 0, 0, 0.4); - -arrow-base: 5; - -arrow-rise: 5; } - -.popup-separator-menu-item { - height: 2px; - margin: 0; - background-color: transparent; - border: none; - border-image: url("common-assets/menu/menu-separator.svg") 1 1 1 1; } - -.background-menu { - -boxpointer-gap: 4px; - -arrow-rise: 0px; } - -.osd-window { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 20px; - margin: 32px; - min-width: 64px; - min-height: 64px; - color: white; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; } - .osd-window .osd-monitor-label { - font-size: 3em; } - .osd-window .level { - padding: 0; - height: 4px; - background-color: rgba(0, 0, 0, 0.5); - border-radius: 2px; - color: #268bd2; } - .osd-window .level-bar { - background-color: #268bd2; - border-radius: 2px; } - -.resize-popup { - color: #657b83; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; - padding: 12px; } - -.switcher-popup { - padding: 8px; - spacing: 16px; } - -.switcher-list { - background: none; - border: none; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; } - .switcher-list-item-container { - spacing: 8px; } - .switcher-list .item-box { - padding: 8px; - border-radius: 2px; - border: 1px solid transparent; } - .switcher-list .item-box:outlined { - padding: 8px; - border: 1px solid #268bd2; } - .switcher-list .item-box:selected { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; } - .switcher-list .thumbnail-box { - padding: 2px; - spacing: 4px; } - .switcher-list .thumbnail { - width: 256px; } - .switcher-list .separator { - width: 1px; - background: rgba(92, 97, 108, 0.33); } - -.switcher-arrow { - border-color: transparent; - color: #657b83; } - .switcher-arrow:highlighted { - color: white; } - -.input-source-switcher-symbol { - font-size: 34pt; - width: 96px; - height: 96px; } - -.cycler-highlight { - border: 5px solid #268bd2; } - -.workspace-switcher { - background: transparent; - border: 0px; - border-radius: 0px; - padding: 0px; - spacing: 8px; } - .workspace-switcher-group { - padding: 12px; } - .workspace-switcher-container { - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; - padding-bottom: 24px; } - -.ws-switcher-active-up, .ws-switcher-active-down { - height: 30px; - background-color: #268bd2; - background-size: 96px; - border-radius: 2px; - border: 1px solid #268bd2; } - -.ws-switcher-active-up { - background-image: url("common-assets/misc/ws-switch-arrow-up.png"); } - -.ws-switcher-active-down { - background-image: url("common-assets/misc/ws-switch-arrow-down.png"); } - -.ws-switcher-box { - height: 96px; - background-color: rgba(0, 0, 0, 0.33); - border-color: rgba(0, 0, 0, 0.33); - border-radius: 2px; } - -.tile-preview { - background-color: rgba(38, 139, 210, 0.35); - border: 1px solid #268bd2; } - .tile-preview-left.on-primary { - border-radius: 0px 0 0 0; } - .tile-preview-right.on-primary { - border-radius: 0 0px 0 0; } - .tile-preview-left.tile-preview-right.on-primary { - border-radius: 0px 0px 0 0; } - -#panel { - font-weight: bold; - height: 2.1em; - min-height: 27px; - background-gradient-direction: none; - background-color: transparent; - border-bottom-width: 0; - border-image: url("common-assets/panel/panel.svg") 1 1 1 1; } - #panel.dynamic-top-bar-white-btn { - border-image: none; } - #panel.unlock-screen, #panel.login-screen, #panel.lock-screen { - background-color: transparent; - border-image: none; } - #panel:overview { - border-image: url("common-assets/panel/panel-overview.svg") 1 1 1 1; } - #panel #panelLeft, #panel #panelCenter { - spacing: 8px; } - #panel .panel-corner { - -panel-corner-radius: 0px; - -panel-corner-background-color: transparent; - -panel-corner-border-width: 0px; - -panel-corner-border-color: black; } - #panel .panel-corner:active, #panel .panel-corner:overview, #panel .panel-corner:focus { - -panel-corner-border-color: black; } - #panel .panel-corner.lock-screen, #panel .panel-corner.login-screen, #panel .panel-cornerunlock-screen { - -panel-corner-radius: 0; - -panel-corner-background-color: transparent; - -panel-corner-border-color: transparent; } - #panel .panel-button { - -natural-hpadding: 10px; - -minimum-hpadding: 6px; - font-weight: bold; - color: white; - transition-duration: 100ms; - border-bottom-width: 1px; - border-color: transparent; } - #panel .panel-button .app-menu-icon { - width: 0; - height: 0; - margin-left: 0px; - margin-right: 0px; } - #panel .panel-button:hover { - color: white; - background-color: rgba(0, 0, 0, 0.17); - border-bottom-width: 1px; - border-color: transparent; } - #panel .panel-button:active, #panel .panel-button:overview, #panel .panel-button:focus, #panel .panel-button:checked { - color: #fdf6e3; - background-color: #268bd2; - box-shadow: none; - border-bottom-width: 1px; - border-color: black; } - #panel .panel-button:active > .system-status-icon, #panel .panel-button:overview > .system-status-icon, #panel .panel-button:focus > .system-status-icon, #panel .panel-button:checked > .system-status-icon { - icon-shadow: none; } - #panel .panel-button .system-status-icon { - icon-size: 16px; - padding: 0 4px; } - .unlock-screen #panel .panel-button, - .login-screen #panel .panel-button, - .lock-screen #panel .panel-button { - color: #737a88; } - .unlock-screen #panel .panel-button:focus, .unlock-screen #panel .panel-button:hover, .unlock-screen #panel .panel-button:active, - .login-screen #panel .panel-button:focus, - .login-screen #panel .panel-button:hover, - .login-screen #panel .panel-button:active, - .lock-screen #panel .panel-button:focus, - .lock-screen #panel .panel-button:hover, - .lock-screen #panel .panel-button:active { - color: #737a88; } - #panel #panelActivities.panel-button { - -natural-hpadding: 12px; } - #panel .panel-status-indicators-box, - #panel .panel-status-menu-box { - spacing: 2px; } - #panel .power-status.panel-status-indicators-box { - spacing: 0; } - #panel .screencast-indicator { - color: #dc322f; } - #panel .clock-display > * > *:last-child { - color: #268bd2; - margin-left: .3em; } - #panel .popup-menu-arrow { - width: 0; } - -#panel #panelActivities.panel-button > * { - background-image: url("common-assets/panel/activities.svg"); - background-position: center top; - width: 24px; - height: 24px; - background-color: transparent !important; - background-gradient-direction: none !important; - border: 0 solid transparent !important; - text-shadow: 0 0 transparent !important; - transition-duration: 0ms !important; - box-shadow: none !important; - color: transparent; } - -#panel #panelActivities.panel-button:active, #panel #panelActivities.panel-button:overview, #panel #panelActivities.panel-button:focus, #panel #panelActivities.panel-button:checked { - background-color: transparent; - box-shadow: none; - border-bottom-width: 1px; - border-color: transparent; } - #panel #panelActivities.panel-button:active > *, #panel #panelActivities.panel-button:overview > *, #panel #panelActivities.panel-button:focus > *, #panel #panelActivities.panel-button:checked > * { - background-image: url("common-assets/panel/activities-active.svg"); } - -.system-switch-user-submenu-icon { - icon-size: 20px; - padding: 0 2px; } - -.system-switch-user-submenu-icon.default-icon { - icon-size: 16px; - padding: 0 4px; } - -#appMenu { - spinner-image: url("common-assets/misc/process-working.svg"); - spacing: 4px; - padding: 0 8px; } - #appMenu .label-shadow { - color: transparent; } - -.aggregate-menu { - min-width: 23.5em; } - .aggregate-menu .popup-menu-icon { - padding: 0 4px; } - -.system-menu-action { - padding: 13px; - color: #5c616c; - border-radius: 32px; - /* wish we could do 50% */ - border: 1px solid transparent; } - .system-menu-action:hover, .system-menu-action:focus { - transition-duration: 100ms; - padding: 13px; - color: #5c616c; - background-color: transparent; - border: 1px solid #268bd2; } - .system-menu-action:active { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; } - .system-menu-action > StIcon { - icon-size: 16px; } - -#calendarArea { - padding: 0.75em 1.0em; } - -.calendar { - margin-bottom: 1em; } - -.calendar, -.datemenu-today-button, -.datemenu-displays-box, -.message-list-sections { - margin: 0 0.4em; } - -.datemenu-calendar-column { - spacing: 0.5em; - border: none; } - -.datemenu-displays-section { - padding-bottom: 3em; } - -.datemenu-today-button, -.world-clocks-button, -.weather-button, -.message-list-section-title, -.events-section-title { - border-radius: 3px; - padding: .4em; } - -.message-list-section-list:ltr { - padding-left: .4em; } - -.message-list-section-list:rtl { - padding-right: .4em; } - -.datemenu-today-button, -.world-clocks-button, -.weather-button, -.message-list-section-title, -.events-section-title { - padding: 7px 10px 7px 10px; - border: 1px solid rgba(253, 246, 227, 0); } - .datemenu-today-button:hover, .datemenu-today-button:focus, - .world-clocks-button:hover, - .world-clocks-button:focus, - .weather-button:hover, - .weather-button:focus, - .message-list-section-title:hover, - .message-list-section-title:focus, - .events-section-title:hover, - .events-section-title:focus { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: white; - border: 1px solid #657b83; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); } - .datemenu-today-button:active, - .world-clocks-button:active, - .weather-button:active, - .message-list-section-title:active, - .events-section-title:active { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - -.datemenu-today-button .date-label { - font-size: 1.5em; } - -.world-clocks-header, -.weather-header, -.message-list-section-title, -.events-section-title { - color: rgba(92, 97, 108, 0.4); - font-weight: bold; } - -.world-clocks-button:active .world-clocks-header, -.weather-button:active .weather-header { - color: #fdf6e3; } - -.world-clocks-grid { - spacing-rows: 0.4em; } - -.weather-box { - spacing: 0.4em; } - -.calendar-month-label { - color: #5c616c; - font-weight: bold; - padding: 8px 0; } - -.pager-button { - color: transparent; - background-color: transparent; - width: 32px; - border-radius: 2px; } - .pager-button:focus, .pager-button:hover, .pager-button:active { - background-color: transparent; } - -.calendar-change-month-back { - background-image: url("light-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:focus, .calendar-change-month-back:hover { - background-image: url("light-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-back:active { - background-image: url("light-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-back:rtl { - background-image: url("light-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-back:rtl:focus, .calendar-change-month-back:rtl:hover { - background-image: url("light-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-back:rtl:active { - background-image: url("light-assets/misc/calendar-arrow-right.svg"); } - -.calendar-change-month-forward { - background-image: url("light-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:focus, .calendar-change-month-forward:hover { - background-image: url("light-assets/misc/calendar-arrow-right-hover.svg"); } - .calendar-change-month-forward:active { - background-image: url("light-assets/misc/calendar-arrow-right.svg"); } - .calendar-change-month-forward:rtl { - background-image: url("light-assets/misc/calendar-arrow-left.svg"); } - .calendar-change-month-forward:rtl:focus, .calendar-change-month-forward:rtl:hover { - background-image: url("light-assets/misc/calendar-arrow-left-hover.svg"); } - .calendar-change-month-forward:rtl:active { - background-image: url("light-assets/misc/calendar-arrow-left.svg"); } - -.calendar-day-base { - font-size: 80%; - text-align: center; - width: 25px; - height: 25px; - padding: 0.1em; - margin: 2px; - border-radius: 12.5px; } - .calendar-day-base:hover, .calendar-day-base:focus { - background-color: rgba(0, 0, 0, 0.1); } - .calendar-day-base:active, .calendar-day-base:selected { - color: #5c616c; - background-color: rgba(0, 0, 0, 0.15); - border-width: 0; } - .calendar-day-base.calendar-day-heading { - color: rgba(92, 97, 108, 0.85); - margin-top: 1em; - font-size: 70%; } - -.calendar-day { - border-width: 0; - color: rgba(92, 97, 108, 0.8); } - -.calendar-day-top { - border-top-width: 0; } - -.calendar-day-left { - border-left-width: 0; } - -.calendar-nonwork-day { - color: #5c616c; - font-weight: bold; } - -.calendar-today, -.calendar-today:active, -.calendar-today:selected, -.calendar-today:focus, -.calendar-today:hover { - font-weight: bold; - color: #fdf6e3; - background-color: #268bd2; - border-width: 0; } - -.calendar-day-with-events { - font-weight: bold; - background-image: url("common-assets/misc/calendar-today.svg"); } - -.calendar-today.calendar-day-with-events { - color: #fdf6e3; } - -.calendar-other-month-day { - color: rgba(92, 97, 108, 0.3); - opacity: 1; } - -.calendar-week-number { - font-size: 70%; - font-weight: bold; - width: 2.3em; - height: 1.8em; - border-radius: 2px; - padding: 0.5em 0 0; - margin: 6px; - background-color: rgba(92, 97, 108, 0.3); - color: #F5F6F7; } - -.message-list { - width: 31.5em; } - .message-list-sections { - spacing: 1.5em; } - .message-list-section, .message-list-section-list { - spacing: 0.7em; } - .message-list-section-list-title-box { - spacing: 0.4em; } - .message-list-placeholder StIcon { - width: 0; - height: 0; } - .message-list-placeholder StLabel { - color: rgba(92, 97, 108, 0.55); } - .message-list-clear-button.button { - margin: 1.5em 1.5em 0; - padding: 4px 12px; } - .message-list-section-close > StIcon { - icon-size: 18px; - border-radius: 0px; - color: transparent; - background-color: transparent; - background-image: url("light-assets/misc/message-close.svg"); } - .message-list-section-close:hover > StIcon { - color: transparent; - background-color: transparent; - background-image: url("light-assets/misc/message-close-hover.svg"); } - .message-list-section-close:active > StIcon { - color: transparent; - background-color: transparent; - background-image: url("light-assets/misc/message-close-active.svg"); } - -.message { - padding: 4px; - color: #5c616c; - border-image: url("light-assets/misc/message.svg") 9 9 9 9; } - .message:hover, .message:focus { - color: #5c616c; - border-image: url("light-assets/misc/message-hover.svg") 9 9 9 9; } - .message:active { - color: #fdf6e3; - border-image: url("light-assets/misc/message-active.svg") 9 9 9 9; } - .message-icon-bin { - padding: 8px 0px 8px 8px; } - .message-icon-bin:rtl { - padding: 8px 8px 8px 0px; } - .message-icon-bin > StIcon { - color: inherit; } - .message-secondary-bin, - .message-secondary-bin > .event-time { - color: rgba(92, 97, 108, 0.6); - font-size: 0.9em; } - .message-secondary-bin:ltr, - .message-secondary-bin > .event-time:ltr { - padding-left: 8px; } - .message-secondary-bin:rtl, - .message-secondary-bin > .event-time:rtl { - padding-right: 8px; } - .message:active .message-secondary-bin, - .message:active .message-secondary-bin > .event-time { - color: rgba(253, 246, 227, 0.6); } - .message-secondary-bin > StIcon { - icon-size: 16px; } - .message-title { - color: inherit; - font-weight: bold; - font-size: 1em; - padding: 2px 0 2px 0; } - .message-content { - color: inherit; - padding: 8px; - font-size: 1em; } - -.message-media-control { - padding: 6px; - color: #5c616c; } - .message-media-control:last-child:ltr { - padding-right: 18px; } - .message-media-control:last-child:rtl { - padding-left: 18px; } - .message-media-control:hover { - color: rgba(92, 97, 108, 0.7); } - .message-media-control:active { - color: #268bd2; } - .message-media-control:insensitive { - color: rgba(92, 97, 108, 0.55); } - -.message:active .message-media-control { - color: #fdf6e3; } - -.media-message-cover-icon { - icon-size: 32px; } - .media-message-cover-icon.fallback { - color: rgba(92, 97, 108, 0.55); - background-color: #F5F6F7; - border-radius: 2px; - icon-size: 16px; - padding: 8px; - border: 1px solid #dcdfe3; } - -.ripple-box { - width: 52px; - height: 52px; - background-image: url("common-assets/misc/corner-ripple-ltr.svg"); - background-size: contain; } - .ripple-box:rtl { - background-image: url("common-assets/misc/corner-ripple-rtl.svg"); } - -.popup-menu-arrow { - width: 16px; - height: 16px; } - -.popup-menu-icon { - icon-size: 16px; } - -.window-close { - background-image: url("common-assets/misc/close.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - .window-close:hover { - background-image: url("common-assets/misc/close-hover.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - .window-close:active { - background-image: url("common-assets/misc/close-active.svg"); - background-size: 26px; - height: 26px; - width: 26px; } - -.window-close { - -shell-close-overlap: 11px; } - -.nm-dialog { - max-height: 500px; - min-height: 450px; - min-width: 470px; } - .nm-dialog-content { - spacing: 20px; - padding: 10px; } - .nm-dialog-header-hbox { - spacing: 10px; } - .nm-dialog-airplane-box { - spacing: 12px; } - .nm-dialog-airplane-headline { - font-size: 1.1em; - font-weight: bold; - text-align: center; } - .nm-dialog-airplane-text { - color: #5c616c; } - .nm-dialog-header-icon { - icon-size: 32px; } - .nm-dialog-scroll-view { - border: 1px solid #dcdfe3; - border-radius: 2px; - background-color: #fdf6e3; } - .nm-dialog-header { - font-weight: bold; - font-size: 1.2em; } - .nm-dialog-item { - font-size: 1em; - border-bottom: 0px solid; - padding: 12px; - spacing: 0px; } - .nm-dialog-item:selected { - background-color: #268bd2; - color: #fdf6e3; } - .nm-dialog-icons { - spacing: .5em; } - .nm-dialog-icon { - icon-size: 16px; } - -.no-networks-label { - color: rgba(92, 97, 108, 0.55); } - -.no-networks-box { - spacing: 12px; } - -#overview { - spacing: 24px; } - -.overview-controls { - padding-bottom: 32px; } - -.window-picker { - -horizontal-spacing: 32px; - -vertical-spacing: 32px; - padding-left: 32px; - padding-right: 32px; - padding-bottom: 48px; } - .window-picker.external-monitor { - padding: 32px; } - -.window-clone-border { - border: 3px solid rgba(38, 139, 210, 0.8); - border-radius: 4px; - box-shadow: inset 0px 0px 0px 1px rgba(38, 139, 210, 0); } - -.window-caption, .window-caption:hover { - spacing: 25px; - color: #657b83; - background-color: rgba(0, 0, 0, 0.7); - border-radius: 2px; - padding: 4px 12px; - -shell-caption-spacing: 12px; } - -.search-entry { - width: 320px; - padding: 7px 9px; - border-radius: 20px; - border: 1px solid rgba(0, 0, 0, 0.25); - background-color: rgba(253, 246, 227, 0.9); } - .search-entry:focus { - padding: 7px 9px; } - .search-entry .search-entry-icon { - icon-size: 16px; - padding: 0 4px; - color: #5c616c; } - .search-entry:hover, .search-entry:focus { - color: #fdf6e3; - caret-color: #fdf6e3; - background-color: #268bd2; - selection-background-color: #fdf6e3; - selected-color: #268bd2; } - .search-entry:hover .search-entry-icon, .search-entry:focus .search-entry-icon { - color: #fdf6e3; } - -#searchResultsBin { - max-width: 1000px; } - -#searchResultsContent { - padding-left: 20px; - padding-right: 20px; - spacing: 16px; } - -.search-section { - spacing: 16px; } - -.search-section-content { - spacing: 32px; } - -.list-search-results { - spacing: 3px; } - -.search-section-separator { - background-color: rgba(255, 255, 255, 0.2); - -margin-horizontal: 1.5em; - height: 1px; } - -.list-search-result-content { - spacing: 12px; - padding: 12px; } - -.list-search-result-title { - font-size: 1.5em; - color: white; } - -.list-search-result-description { - color: #cccccc; } - -.search-provider-icon { - padding: 15px; } - -.search-provider-icon-more { - width: 16px; - height: 16px; - background-image: url("common-assets/misc/more-results.svg"); } - -#dash { - font-size: 1em; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(0, 0, 0, 0.4); - padding: 4px 0; - border-radius: 0 3px 3px 0; } - #dash:rtl { - border-radius: 3px 0 0 3px; } - .right #dash, #dash:rtl { - padding: 4px 0; } - .top #dash, .bottom #dash { - padding: 0; } - #dash .placeholder { - background-image: url("common-assets/dash/dash-placeholder.svg"); - background-size: contain; - height: 24px; } - #dash .empty-dash-drop-target { - width: 24px; - height: 24px; } - -.dash-item-container > StWidget, .dash-item-container > StWidget:rtl, .right .dash-item-container > StWidget { - padding: 4px 8px; } - -.top .dash-item-container > StWidget, .bottom .dash-item-container > StWidget { - padding: 6px; } - -.dash-label { - border-radius: 3px; - padding: 4px 12px; - color: white; - background-color: rgba(0, 0, 0, 0.7); - text-align: center; - -x-offset: 3px; } - .bottom .dash-label, .top .dash-label { - -y-offset: 3px; - -x-offset: 0; } - -#dash .app-well-app:hover .overview-icon, -.right #dash .app-well-app:hover .overview-icon, -.bottom #dash .app-well-app:hover .overview-icon, -.top #dash .app-well-app:hover .overview-icon { - background-color: #268bd2; } - -#dash .app-well-app:active .overview-icon, -.right #dash .app-well-app:active .overview-icon, -.bottom #dash .app-well-app:active .overview-icon, -.top #dash .app-well-app:active .overview-icon { - box-shadow: none; - background-color: #1e6ea7; } - -#dash .app-well-app-running-dot { - width: 11px; - height: 2px; - margin-bottom: 2px; - background-color: #268bd2; } - -#dashtodockContainer .app-well-app-running-dot { - background: none; - width: 28px; - height: 4px; } - -#dashtodockContainer .running1 .app-well-app-running-dot { - background-image: url("common-assets/dash/running1.svg"); } - -#dashtodockContainer .running2 .app-well-app-running-dot { - background-image: url("common-assets/dash/running2.svg"); } - -#dashtodockContainer .running3 .app-well-app-running-dot { - background-image: url("common-assets/dash/running3.svg"); } - -#dashtodockContainer .running4 .app-well-app-running-dot { - background-image: url("common-assets/dash/running4.svg"); } - -.show-apps .overview-icon { - background-color: rgba(0, 0, 0, 0.5); - border-radius: 2px; - border: 0px solid; } - -.show-apps:hover .overview-icon { - background-color: rgba(0, 0, 0, 0.7); - color: #268bd2; } - -.show-apps:active .overview-icon, -.show-apps:active .show-apps-icon, -.show-apps:checked .overview-icon, -.show-apps:checked .show-apps-icon { - color: #fdf6e3; - background-color: #268bd2; - box-shadow: none; - transition-duration: 0ms; } - -.icon-grid { - spacing: 30px; - -shell-grid-horizontal-item-size: 136px; - -shell-grid-vertical-item-size: 136px; } - .icon-grid .overview-icon { - icon-size: 96px; } - -.app-view-controls { - padding-bottom: 32px; } - -.app-view-control { - padding: 4px 32px; - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .app-view-control:hover { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .app-view-control:checked { - color: #fdf6e3; - background-color: #268bd2; } - .app-view-control:first-child:ltr, .app-view-control:last-child:rtl { - border-radius: 2px 0 0 2px; - border-right-width: 0; } - .app-view-control:last-child:ltr, .app-view-control:first-child:rtl { - border-radius: 0 2px 2px 0; - border-left-width: 0; } - -.search-provider-icon:active, .search-provider-icon:checked, -.list-search-result:active, -.list-search-result:checked { - background-color: rgba(2, 16, 20, 0.85); } - -.search-provider-icon:focus, .search-provider-icon:selected, .search-provider-icon:hover, -.list-search-result:focus, -.list-search-result:selected, -.list-search-result:hover { - background-color: rgba(101, 123, 131, 0.4); - transition-duration: 200ms; } - -.app-well-app:active .overview-icon, -.app-well-app:checked .overview-icon, -.app-well-app.app-folder:active .overview-icon, -.app-well-app.app-folder:checked .overview-icon, -.grid-search-result:active .overview-icon, -.grid-search-result:checked .overview-icon { - background-color: rgba(2, 16, 20, 0.85); - box-shadow: inset 0 0 #268bd2; } - -.app-well-app:hover .overview-icon, -.app-well-app:focus .overview-icon, -.app-well-app:selected .overview-icon, -.app-well-app.app-folder:hover .overview-icon, -.app-well-app.app-folder:focus .overview-icon, -.app-well-app.app-folder:selected .overview-icon, -.grid-search-result:hover .overview-icon, -.grid-search-result:focus .overview-icon, -.grid-search-result:selected .overview-icon { - background-color: rgba(101, 123, 131, 0.4); - transition-duration: 0ms; - border-image: none; - background-image: none; } - -.app-well-app-running-dot { - width: 20px; - height: 2px; - margin-bottom: 4px; - background-color: #268bd2; } - -.search-provider-icon, -.list-search-result, .app-well-app .overview-icon, -.app-well-app.app-folder .overview-icon, -.grid-search-result .overview-icon { - color: white; - border-radius: 2px; - padding: 6px; - border: 1px solid transparent; - transition-duration: 0ms; - text-align: center; } - -.app-well-app.app-folder > .overview-icon { - background-color: rgba(3, 24, 29, 0.95); - border: 1px solid rgba(0, 0, 0, 0.45); } - -.app-well-app.app-folder:hover > .overview-icon { - background-color: rgba(8, 65, 80, 0.95); } - -.app-well-app.app-folder:active > .overview-icon, .app-well-app.app-folder:checked > .overview-icon { - color: #fdf6e3; - background-color: #268bd2; - box-shadow: none; } - -.app-well-app.app-folder:focus > .overview-icon { - background-color: #268bd2; } - -.app-folder-popup { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(3, 24, 29, 0.95); - -arrow-border-color: rgba(0, 0, 0, 0.45); - -arrow-border-width: 1px; - -arrow-base: 5; - -arrow-rise: 5; } - -.app-folder-popup-bin { - padding: 5px; } - -.app-folder-icon { - padding: 5px; - spacing-rows: 5px; - spacing-columns: 5px; } - -.page-indicator { - padding: 15px 20px; } - .page-indicator .page-indicator-icon { - width: 18px; - height: 18px; - background-image: url(common-assets/misc/page-indicator-inactive.svg); } - .page-indicator:hover .page-indicator-icon { - background-image: url(common-assets/misc/page-indicator-hover.svg); } - .page-indicator:active .page-indicator-icon { - background-image: url(common-assets/misc/page-indicator-active.svg); } - .page-indicator:checked .page-indicator-icon, .page-indicator:checked:active { - background-image: url(common-assets/misc/page-indicator-checked.svg); } - -.app-well-app > .overview-icon.overview-icon-with-label, -.grid-search-result .overview-icon.overview-icon-with-label { - padding: 10px 8px 5px 8px; - spacing: 4px; } - -.workspace-thumbnails, .workspace-thumbnails:rtl, -.workspace-thumbnails-left, -.workspace-thumbnails-left:rtl { - visible-width: 40px; - spacing: 11px; - padding: 12px; } - -.workspace-thumbnails, -.workspace-thumbnails-left:rtl { - padding-right: 7px; - border-image: url("common-assets/dash/dash-right.svg") 9 9 9 9; } - -.workspace-thumbnails:rtl, -.workspace-thumbnails-left { - padding-left: 7px; - border-image: url("common-assets/dash/dash-left.svg") 9 9 9 9; } - -.workspace-thumbnail-indicator { - border: 4px solid rgba(38, 139, 210, 0.8); - border-radius: 1px; - padding: 1px; } - -.search-display > StBoxLayout, -.all-apps, -.frequent-apps > StBoxLayout { - padding: 0px 88px 10px 88px; } - -.search-statustext, .no-frequent-applications-label { - font-size: 2em; - font-weight: bold; - color: #5c616c; } - -.url-highlighter { - link-color: #1e6ea7; } - -.notification-banner, -.notification-banner:hover, -.notification-banner:focus { - font-size: 1em; - width: 34em; - margin: 5px; - padding: 10px; - color: #5c616c; - background-color: transparent; - border: 1px solid transparent; - border-image: url("light-assets/menu/menu.svg") 9 9 9 9; } - .notification-banner .notification-icon, - .notification-banner:hover .notification-icon, - .notification-banner:focus .notification-icon { - padding: 5px; } - .notification-banner .notification-content, - .notification-banner:hover .notification-content, - .notification-banner:focus .notification-content { - padding: 5px; - spacing: 5px; } - .notification-banner .secondary-icon, - .notification-banner:hover .secondary-icon, - .notification-banner:focus .secondary-icon { - icon-size: 1.09em; } - .notification-banner .notification-actions, - .notification-banner:hover .notification-actions, - .notification-banner:focus .notification-actions { - background-color: transparent; - padding: 2px 2px 0 2px; - spacing: 3px; } - .notification-banner .notification-button, - .notification-banner:hover .notification-button, - .notification-banner:focus .notification-button { - padding: 4px 4px 5px; } - .notification-banner .notification-button:first-child, .notification-banner .notification-button:last-child, - .notification-banner:hover .notification-button:first-child, - .notification-banner:hover .notification-button:last-child, - .notification-banner:focus .notification-button:first-child, - .notification-banner:focus .notification-button:last-child { - border-radius: 2px; } - -.secondary-icon { - icon-size: 1.09em; } - -.chat-body { - spacing: 5px; } - -.chat-response { - margin: 5px; } - -.chat-log-message { - color: #5c616c; } - -.chat-new-group { - padding-top: 1em; } - -.chat-received { - padding-left: 4px; } - .chat-received:rtl { - padding-left: 0px; - padding-right: 4px; } - -.chat-sent { - padding-left: 18pt; - color: #268bd2; } - .chat-sent:rtl { - padding-left: 0; - padding-right: 18pt; } - -.chat-meta-message { - padding-left: 4px; - font-size: 9pt; - font-weight: bold; - color: rgba(92, 97, 108, 0.6); } - .chat-meta-message:rtl { - padding-left: 0; - padding-right: 4px; } - -.subscription-message { - font-style: italic; } - -.hotplug-transient-box { - spacing: 6px; - padding: 2px 72px 2px 12px; } - -.hotplug-notification-item { - padding: 2px 10px; } - .hotplug-notification-item:focus { - padding: 2px 10px; } - -.hotplug-notification-item-icon { - icon-size: 24px; - padding: 2px 5px; } - -.hotplug-resident-box { - spacing: 8px; } - -.hotplug-resident-mount { - spacing: 8px; - border-radius: 4px; } - .hotplug-resident-mount:hover { - background-color: rgba(245, 246, 247, 0.3); } - -.hotplug-resident-mount-label { - color: inherit; - padding-left: 6px; } - -.hotplug-resident-mount-icon { - icon-size: 24px; - padding-left: 6px; } - -.hotplug-resident-eject-icon { - icon-size: 16px; } - -.hotplug-resident-eject-button { - padding: 7px; - border-radius: 5px; - color: pink; } - -.legacy-tray { - background-color: rgba(5, 36, 44, 0.95); } - .legacy-tray:ltr { - border-radius: 0 2px 0 0; - border-left-width: 0; } - .legacy-tray:rtl { - border-radius: 2px 0 0 0; - border-right-width: 0; } - -.legacy-tray-handle, -.legacy-tray-icon { - padding: 6px; } - .legacy-tray-handle StIcon, - .legacy-tray-icon StIcon { - icon-size: 24px; } - .legacy-tray-handle:hover, .legacy-tray-handle:focus, - .legacy-tray-icon:hover, - .legacy-tray-icon:focus { - background-color: rgba(92, 97, 108, 0.1); } - -.legacy-tray-icon-box { - spacing: 12px; } - .legacy-tray-icon-box:ltr { - padding-left: 12px; } - .legacy-tray-icon-box:rtl { - padding-right: 12px; } - .legacy-tray-icon-box StButton { - width: 24px; - height: 24px; } - -.masterslider.smaller .masterlabel, -.masterslider.smaller .slider { - min-width: 155px; } - -.magnifier-zoom-region { - border: 2px solid #268bd2; } - .magnifier-zoom-region.full-screen { - border-width: 0; } - -#keyboard { - background-color: rgba(7, 54, 66, 0.95); - border-width: 0; - border-top-width: 1px; - border-color: rgba(0, 0, 0, 0.2); } - -.keyboard-layout { - spacing: 10px; - padding: 10px; } - -.keyboard-row { - spacing: 15px; } - -.keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; - font-weight: bold; - border-radius: 3px; - box-shadow: none; - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .keyboard-key:hover { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #657b83; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - .keyboard-key:active, .keyboard-key:checked { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #fdf6e3; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: #268bd2; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - .keyboard-key:grayed { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #234b56; - border: 1px solid rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); - box-shadow: inset 0 1px rgba(0, 0, 0, 0.05); } - -.keyboard-subkeys { - color: #657b83; - padding: 5px; - -arrow-border-radius: 2px; - -arrow-background-color: rgba(7, 54, 66, 0.95); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0, 0, 0, 0.4); - -arrow-base: 20px; - -arrow-rise: 10px; - -boxpointer-gap: 5px; } - -.candidate-popup-content { - padding: 0.5em; - spacing: 0.3em; - color: #657b83; - font-size: 1.15em; } - -.candidate-index { - padding: 0 0.5em 0 0; - color: #7f949c; } - -.candidate-box { - padding: 0.3em 0.5em 0.3em 0.5em; - border-radius: 2px; - color: #657b83; } - .candidate-box:selected, .candidate-box:hover { - background-color: #268bd2; - color: #fdf6e3; } - -.candidate-page-button-box { - height: 2em; } - .vertical .candidate-page-button-box { - padding-top: 0.5em; } - .horizontal .candidate-page-button-box { - padding-left: 0.5em; } - -.candidate-page-button { - padding: 4px; } - -.candidate-page-button-previous { - border-radius: 2px 0px 0px 2px; - border-right-width: 0; } - -.candidate-page-button-next { - border-radius: 0px 2px 2px 0px; } - -.candidate-page-button-icon { - icon-size: 1em; } - -.framed-user-icon { - background-size: contain; - border: 0px solid transparent; - color: #5c616c; - border-radius: 2px; } - .framed-user-icon:hover { - border-color: transparent; - color: #b8c4c9; } - -.login-dialog-banner-view { - padding-top: 24px; - max-width: 23em; } - -.login-dialog { - border: none; - background-color: transparent; } - .login-dialog .modal-dialog-button-box { - spacing: 3px; } - .login-dialog .modal-dialog-button { - padding: 3px 18px; } - .login-dialog .modal-dialog-button:default { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: #fbfbfc; - border: 1px solid #657b83; - box-shadow: inset 0 1px rgba(251, 251, 252, 0.05); } - .login-dialog .modal-dialog-button:default:hover, .login-dialog .modal-dialog-button:default:focus { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #5c616c; - background-color: white; - border: 1px solid #657b83; - box-shadow: inset 0 1px rgba(255, 255, 255, 0.05); } - .login-dialog .modal-dialog-button:default:active { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid #268bd2; - box-shadow: inset 0 1px rgba(38, 139, 210, 0.05); } - .login-dialog .modal-dialog-button:default:insensitive { - text-shadow: 0 1px rgba(253, 246, 227, 0); - color: rgba(92, 97, 108, 0.55); - border: 1px solid rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); - box-shadow: inset 0 1px rgba(251, 251, 252, 0.05); } - -.login-dialog-logo-bin { - padding: 24px 0px; } - -.login-dialog-banner { - color: #4f6066; } - -.login-dialog-button-box { - spacing: 5px; } - -.login-dialog-message-warning { - color: #cb4b16; } - -.login-dialog-message-hint { - padding-top: 0; - padding-bottom: 20px; } - -.login-dialog-user-selection-box { - padding: 100px 0px; } - .login-dialog-user-selection-box .login-dialog-not-listed-label { - padding-left: 2px; } - .login-dialog-not-listed-button:focus .login-dialog-user-selection-box .login-dialog-not-listed-label, - .login-dialog-not-listed-button:hover .login-dialog-user-selection-box .login-dialog-not-listed-label { - color: #657b83; } - -.login-dialog-not-listed-label { - font-size: 90%; - font-weight: bold; - color: #222a2d; - padding-top: 1em; } - -.login-dialog-user-list-view { - -st-vfade-offset: 1em; } - -.login-dialog-user-list { - spacing: 12px; - padding: .2em; - width: 23em; } - .login-dialog-user-list:expanded .login-dialog-user-list-item:focus { - background-color: #268bd2; - color: #fdf6e3; } - .login-dialog-user-list:expanded .login-dialog-user-list-item:logged-in { - border-right: 2px solid #268bd2; } - -.login-dialog-user-list-item { - border-radius: 5px; - padding: .2em; - color: #222a2d; } - .login-dialog-user-list-item:ltr { - padding-right: 1em; } - .login-dialog-user-list-item:rtl { - padding-left: 1em; } - .login-dialog-user-list-item:hover { - background-color: #268bd2; - color: #fdf6e3; } - .login-dialog-user-list-item .login-dialog-timed-login-indicator { - height: 2px; - margin: 2px 0 0 0; - background-color: #657b83; } - .login-dialog-user-list-item:focus .login-dialog-timed-login-indicator { - background-color: #fdf6e3; } - -.login-dialog-username, -.user-widget-label { - color: #657b83; - font-size: 120%; - font-weight: bold; - text-align: left; - padding-left: 15px; } - -.user-widget-label:ltr { - padding-left: 18px; } - -.user-widget-label:rtl { - padding-right: 18px; } - -.login-dialog-prompt-layout { - padding-top: 24px; - padding-bottom: 12px; - spacing: 8px; - width: 23em; } - -.login-dialog-prompt-label { - color: #394549; - font-size: 110%; - padding-top: 1em; } - -.login-dialog-session-list-button StIcon { - icon-size: 1.25em; } - -.login-dialog-session-list-button { - color: #222a2d; } - .login-dialog-session-list-button:hover, .login-dialog-session-list-button:focus { - color: #657b83; } - .login-dialog-session-list-button:active { - color: black; } - -.screen-shield-arrows { - padding-bottom: 3em; } - -.screen-shield-arrows Gjs_Arrow { - color: white; - width: 80px; - height: 48px; - -arrow-thickness: 12px; - -arrow-shadow: 0 1px 1px rgba(0, 0, 0, 0.4); } - -.screen-shield-clock { - color: white; - text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.6); - font-weight: bold; - text-align: center; - padding-bottom: 1.5em; } - -.screen-shield-clock-time { - font-size: 72pt; - text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.4); } - -.screen-shield-clock-date { - font-size: 28pt; } - -.screen-shield-notifications-container { - spacing: 6px; - width: 30em; - background-color: transparent; - max-height: 500px; } - .screen-shield-notifications-container .summary-notification-stack-scrollview { - padding-top: 0; - padding-bottom: 0; } - .screen-shield-notifications-container .notification, - .screen-shield-notifications-container .screen-shield-notification-source { - padding: 12px 6px; - border: 1px solid rgba(101, 123, 131, 0.2); - background-color: rgba(7, 54, 66, 0.45); - color: #657b83; - border-radius: 4px; } - .screen-shield-notifications-container .notification { - margin-right: 15px; } - -.screen-shield-notification-label { - font-weight: bold; - padding: 0px 0px 0px 12px; } - -.screen-shield-notification-count-text { - padding: 0px 0px 0px 12px; } - -#panel.lock-screen { - background-color: rgba(7, 54, 66, 0.5); } - -.screen-shield-background { - background: black; - box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4); } - -#lockDialogGroup { - background: #2e3436 url(misc/noise-texture.png); - background-repeat: repeat; } - -#screenShieldNotifications StButton#vhandle, #screenShieldNotifications StButton#hhandle { - background-color: rgba(245, 246, 247, 0.3); } - #screenShieldNotifications StButton#vhandle:hover, #screenShieldNotifications StButton#vhandle:focus, #screenShieldNotifications StButton#hhandle:hover, #screenShieldNotifications StButton#hhandle:focus { - background-color: rgba(245, 246, 247, 0.5); } - #screenShieldNotifications StButton#vhandle:active, #screenShieldNotifications StButton#hhandle:active { - background-color: rgba(38, 139, 210, 0.5); } - -#LookingGlassDialog { - spacing: 4px; - padding: 8px 8px 10px 8px; - background-color: rgba(0, 0, 0, 0.7); - border: 1px solid black; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 2px; - color: #657b83; } - #LookingGlassDialog > #Toolbar { - padding: 3px; - border: none; - background-color: transparent; - border-radius: 0px; } - #LookingGlassDialog .labels { - spacing: 4px; } - #LookingGlassDialog .notebook-tab { - -natural-hpadding: 12px; - -minimum-hpadding: 6px; - font-weight: bold; - color: #657b83; - transition-duration: 100ms; - padding-left: .3em; - padding-right: .3em; } - #LookingGlassDialog .notebook-tab:hover { - color: white; - text-shadow: black 0px 2px 2px; } - #LookingGlassDialog .notebook-tab:selected { - border-bottom-width: 0px; - color: #268bd2; - text-shadow: black 0px 2px 2px; } - #LookingGlassDialog StBoxLayout#EvalBox { - padding: 4px; - spacing: 4px; } - #LookingGlassDialog StBoxLayout#ResultsArea { - spacing: 4px; } - -.lg-dialog StEntry { - caret-color: #fdf6e3; - selection-background-color: #268bd2; - selected-color: #fdf6e3; - color: #657b83; - background-color: rgba(18, 137, 167, 0.35); - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); } - .lg-dialog StEntry:focus { - color: #fdf6e3; - background-color: #268bd2; - border: 1px solid rgba(1, 9, 11, 0.35); - box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05); - selection-background-color: #fdf6e3; - selected-color: #268bd2; } - -.lg-dialog .shell-link { - color: #1e6ea7; } - .lg-dialog .shell-link:hover { - color: #268bd2; } - -.lg-completions-text { - font-size: .9em; - font-style: italic; } - -.lg-obj-inspector-title { - spacing: 4px; } - -.lg-obj-inspector-button { - border: 1px solid gray; - padding: 4px; - border-radius: 4px; } - .lg-obj-inspector-button:hover { - border: 1px solid #fdf6e3; } - -#lookingGlassExtensions { - padding: 4px; } - -.lg-extensions-list { - padding: 4px; - spacing: 6px; } - -.lg-extension { - border: 1px solid rgba(0, 0, 0, 0.7); - border-radius: 2px; - background-color: rgba(7, 54, 66, 0.95); - padding: 4px; } - -.lg-extension-name { - font-weight: bold; } - -.lg-extension-meta { - spacing: 6px; } - -#LookingGlassPropertyInspector { - background: rgba(0, 0, 0, 0.7); - border: 1px solid grey; - border-radius: 2px; - padding: 6px; } diff --git a/common/gnome-shell/3.18/light-assets/checkbox/checkbox-checked-focused.svg b/common/gnome-shell/3.18/light-assets/checkbox/checkbox-checked-focused.svg deleted file mode 100644 index 712a930..0000000 --- a/common/gnome-shell/3.18/light-assets/checkbox/checkbox-checked-focused.svg +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/light-assets/checkbox/checkbox-checked.svg b/common/gnome-shell/3.18/light-assets/checkbox/checkbox-checked.svg deleted file mode 100644 index 3e695f2..0000000 --- a/common/gnome-shell/3.18/light-assets/checkbox/checkbox-checked.svg +++ /dev/null @@ -1,268 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/light-assets/checkbox/checkbox-unchecked-focused.svg b/common/gnome-shell/3.18/light-assets/checkbox/checkbox-unchecked-focused.svg deleted file mode 100644 index 89b2c49..0000000 --- a/common/gnome-shell/3.18/light-assets/checkbox/checkbox-unchecked-focused.svg +++ /dev/null @@ -1,160 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/light-assets/checkbox/checkbox-unchecked.svg b/common/gnome-shell/3.18/light-assets/checkbox/checkbox-unchecked.svg deleted file mode 100644 index 08ee9e5..0000000 --- a/common/gnome-shell/3.18/light-assets/checkbox/checkbox-unchecked.svg +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/light-assets/menu/menu.svg b/common/gnome-shell/3.18/light-assets/menu/menu.svg deleted file mode 100644 index c734734..0000000 --- a/common/gnome-shell/3.18/light-assets/menu/menu.svg +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/light-assets/menu/submenu-open.svg b/common/gnome-shell/3.18/light-assets/menu/submenu-open.svg deleted file mode 100644 index 8062443..0000000 --- a/common/gnome-shell/3.18/light-assets/menu/submenu-open.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/light-assets/menu/submenu.svg b/common/gnome-shell/3.18/light-assets/menu/submenu.svg deleted file mode 100644 index 766c82e..0000000 --- a/common/gnome-shell/3.18/light-assets/menu/submenu.svg +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/light-assets/misc/calendar-arrow-left-hover.svg b/common/gnome-shell/3.18/light-assets/misc/calendar-arrow-left-hover.svg deleted file mode 100644 index 04ffc1b..0000000 --- a/common/gnome-shell/3.18/light-assets/misc/calendar-arrow-left-hover.svg +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/light-assets/misc/calendar-arrow-left.svg b/common/gnome-shell/3.18/light-assets/misc/calendar-arrow-left.svg deleted file mode 100644 index 38c2368..0000000 --- a/common/gnome-shell/3.18/light-assets/misc/calendar-arrow-left.svg +++ /dev/null @@ -1,169 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/light-assets/misc/calendar-arrow-right-hover.svg b/common/gnome-shell/3.18/light-assets/misc/calendar-arrow-right-hover.svg deleted file mode 100644 index df438fc..0000000 --- a/common/gnome-shell/3.18/light-assets/misc/calendar-arrow-right-hover.svg +++ /dev/null @@ -1,172 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/light-assets/misc/calendar-arrow-right.svg b/common/gnome-shell/3.18/light-assets/misc/calendar-arrow-right.svg deleted file mode 100644 index 2195675..0000000 --- a/common/gnome-shell/3.18/light-assets/misc/calendar-arrow-right.svg +++ /dev/null @@ -1,171 +0,0 @@ - - - - - - - - image/svg+xml - - Gnome Symbolic Icon Theme - - - - - - - - Gnome Symbolic Icon Theme - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/light-assets/misc/message-active.svg b/common/gnome-shell/3.18/light-assets/misc/message-active.svg deleted file mode 100644 index 8774f96..0000000 --- a/common/gnome-shell/3.18/light-assets/misc/message-active.svg +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/common/gnome-shell/3.18/light-assets/misc/message-close-active.svg b/common/gnome-shell/3.18/light-assets/misc/message-close-active.svg deleted file mode 100644 index cd798c1..0000000 --- a/common/gnome-shell/3.18/light-assets/misc/message-close-active.svg +++ /dev/null @@ -1,155 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/light-assets/misc/message-close-hover.svg b/common/gnome-shell/3.18/light-assets/misc/message-close-hover.svg deleted file mode 100644 index f1c40f2..0000000 --- a/common/gnome-shell/3.18/light-assets/misc/message-close-hover.svg +++ /dev/null @@ -1,138 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/light-assets/misc/message-close.svg b/common/gnome-shell/3.18/light-assets/misc/message-close.svg deleted file mode 100644 index d098bc9..0000000 --- a/common/gnome-shell/3.18/light-assets/misc/message-close.svg +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/light-assets/misc/message-hover.svg b/common/gnome-shell/3.18/light-assets/misc/message-hover.svg deleted file mode 100644 index 153a888..0000000 --- a/common/gnome-shell/3.18/light-assets/misc/message-hover.svg +++ /dev/null @@ -1,112 +0,0 @@ - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/light-assets/misc/message.svg b/common/gnome-shell/3.18/light-assets/misc/message.svg deleted file mode 100644 index d4096ee..0000000 --- a/common/gnome-shell/3.18/light-assets/misc/message.svg +++ /dev/null @@ -1,103 +0,0 @@ - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/light-assets/misc/modal.svg b/common/gnome-shell/3.18/light-assets/misc/modal.svg deleted file mode 100644 index 21b8bfc..0000000 --- a/common/gnome-shell/3.18/light-assets/misc/modal.svg +++ /dev/null @@ -1,143 +0,0 @@ - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/light-assets/switch/switch-off.svg b/common/gnome-shell/3.18/light-assets/switch/switch-off.svg deleted file mode 100644 index c07aa05..0000000 --- a/common/gnome-shell/3.18/light-assets/switch/switch-off.svg +++ /dev/null @@ -1,201 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/light-assets/switch/switch-on.svg b/common/gnome-shell/3.18/light-assets/switch/switch-on.svg deleted file mode 100644 index fe9b2d0..0000000 --- a/common/gnome-shell/3.18/light-assets/switch/switch-on.svg +++ /dev/null @@ -1,274 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gnome-shell/3.18/sass/_colors.scss b/common/gnome-shell/3.18/sass/_colors.scss deleted file mode 100644 index fac334a..0000000 --- a/common/gnome-shell/3.18/sass/_colors.scss +++ /dev/null @@ -1,101 +0,0 @@ -// When color definition differs for dark and light variant, -// it gets @if ed depending on $variant - - -$base_color: if($variant =='light', #fdf6e3, #073642); -$text_color: if($variant == 'light', #5c616c, #657b83); -$bg_color: if($variant =='light', #F5F6F7, #002b36); -$fg_color: if($variant =='light', #5c616c, #657b83); - -$selected_fg_color: #fdf6e3; -$selected_bg_color: #268bd2; -$selected_borders_color: darken($selected_bg_color, 20%); -$borders_color: if($variant =='light', darken($bg_color,9%), darken($bg_color,6%)); - -$link_color: if($variant == 'light', darken($selected_bg_color,10%), - lighten($selected_bg_color,20%)); -$link_visited_color: if($variant == 'light', darken($selected_bg_color,20%), - lighten($selected_bg_color,10%)); - -$selection_mode_bg: if($transparency == 'true', transparentize($selected_bg_color, 0.05), $selected_bg_color); -$selection_mode_fg: $selected_fg_color; -$warning_color: #cb4b16; -$error_color: #dc322f; -$warning_fg_color: white; -$error_fg_color: white; -$success_color: #859900; -$destructive_color: #dc322f; -$suggested_color: #2aa198; -$destructive_fg_color: white; -$suggested_fg_color: white; - -$drop_target_color: #b58900; - -//insensitive state derived colors -$insensitive_fg_color: if($variant == 'light', transparentize($fg_color, 0.45), transparentize($fg_color, 0.55)); -$insensitive_bg_color: if($variant == 'light', mix($bg_color, $base_color, 40%), lighten($bg_color, 2%)); - -$header_bg: red; -@if $transparency=='true' and $variant=='light' { $header_bg: transparentize(#eee8d5, 0.05); } -@if $transparency=='false' and $variant=='light' { $header_bg: #eee8d5; } -@if $transparency=='true' and ($variant=='dark' or $darker=='true') { $header_bg: transparentize(#002b36, 0.03); } -@if $transparency=='false' and ($variant=='dark' or $darker=='true') { $header_bg: #002b36; } - -$header_bg_backdrop: if($darker == 'true' or $variant == 'dark', lighten($header_bg, 1.5%), lighten($header_bg, 3%)); - -$header_border: if($variant == 'light' and $darker=='false', darken($header_bg, 7%), darken($header_bg, 4%)); - -$header_fg: if($variant == 'light', saturate(transparentize($fg_color, 0.2), 10%), saturate(transparentize($fg_color, 0.2), 10%)); -$header_fg: if($darker == 'true', saturate(transparentize(#657b83, 0.2), 10%), $header_fg); - -$dark_sidebar_bg: if($transparency == 'true', transparentize(#073642, 0.05), #073642); -$dark_sidebar_fg: #657b83; -$dark_sidebar_border: if($variant == 'light', $dark_sidebar_bg, darken($dark_sidebar_bg, 5%)); - -$osd_fg_color: $dark_sidebar_fg; -$osd_bg_color: $dark_sidebar_bg; - -$osd_button_bg: transparentize(lighten($osd_bg_color, 22%), 0.6); -$osd_button_border: transparentize(darken($osd_bg_color, 12%), 0.6); - -$osd_entry_bg: transparentize(lighten($osd_bg_color, 22%), 0.6); -$osd_entry_border: transparentize(darken($osd_bg_color, 12%), 0.6); - -$osd_insensitive_bg_color: darken($osd_bg_color, 3%); -$osd_insensitive_fg_color: mix($osd_fg_color, opacify($osd_bg_color, 1), 30%); -$osd_borders_color: transparentize(black, 0.3); - -$panel_bg: darken($dark_sidebar_bg, 4.7%); -$panel_fg: $dark_sidebar_fg; - -$entry_bg: if($variant=='light', $base_color, lighten($base_color, 0%)); -$entry_border: if($variant == 'light', #657b83, darken($borders_color, 0%)); - -$header_entry_bg: if($darker == 'true' or $variant == 'dark', transparentize(lighten($header_bg, 22%), 0.6), transparentize($base_color, 0.1)); -$header_entry_border: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 12%), 0.6), transparentize($header_fg, 0.7)); - -$button_bg: if($variant == 'light', lighten($bg_color, 2%), lighten($base_color, 2%)); -$button_border: $entry_border; - -$header_button_bg: if($darker == 'true' or $variant == 'dark', transparentize(lighten($header_bg, 22%), 0.6), transparentize($button_bg, 0.1)); -$header_button_border: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 12%), 0.6), transparentize($header_fg, 0.7)); - -//WM Buttons - -// Close -$wm_button_close_bg: if($variant == 'light' and $darker == 'false', #f46067, #dc322f); -$wm_button_close_hover_bg: if($variant == 'light' and $darker == 'false', #f68086, #cb4b16); -$wm_button_close_active_bg: if($variant == 'light' and $darker == 'false', #f13039, #dc322f); - -$wm_icon_close_bg: if($variant == 'light' and $darker == 'false',#657b83 , #002b36); - -// Minimize, Maximize -$wm_button_hover_bg: if($variant == 'light' and $darker == 'false', #fdfdfd, #657b83); -$wm_button_active_bg: $selected_bg_color; - -$wm_button_hover_border: if($variant == 'light' and $darker == 'false', #D1D3DA, #002b36); - -$wm_icon_bg: if($variant == 'light' and $darker == 'false', #90949E, #93a1a1); -$wm_icon_unfocused_bg: if($variant == 'light' and $darker == 'false', #B6B8C0, #657b83); -$wm_icon_hover_bg: if($variant == 'light' and $darker == 'false', #7A7F8B, #93a1a1); -$wm_icon_active_bg: $selected_fg_color; diff --git a/common/gnome-shell/3.18/sass/_common.scss b/common/gnome-shell/3.18/sass/_common.scss deleted file mode 100644 index 6e8cba1..0000000 --- a/common/gnome-shell/3.18/sass/_common.scss +++ /dev/null @@ -1,2465 +0,0 @@ -//This is the RIGHT PLACE to edit the stylesheet - -$panel-corner-radius: 0px; -$asset_path: if($variant == 'dark', dark-assets, light-assets); - -/* Copyright 2009, 2015 Red Hat, Inc. - * - * Portions adapted from Mx's data/style/default.css - * Copyright 2009 Intel Corporation - * - * This program is free software; you can redistribute it and/or modify it - * under the terms and conditions of the GNU Lesser General Public License, - * version 2.1, as published by the Free Software Foundation. - * - * This program is distributed in the hope it will be useful, but WITHOUT ANY - * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS - * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for - * more details. - * - * You should have received a copy of the GNU Lesser General Public License - * along with this program; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA. - */ - -// -// Globals -// -$font-size: 9; -$font-family: Futura Bk bt, Cantarell, Sans-Serif; -$_bubble_bg_color: opacify($osd_bg_color,0.25); -$_bubble_fg_color: $osd_fg_color; -$_bubble_borders_color: transparentize($osd_fg_color,0.8); -$_shell_fg_color: white; - -stage { - font-family: $font-family; - @include fontsize($font-size); - color: $fg_color; -} - -%reset_style { - background-color: transparent !important; - background-gradient-direction: none !important; - border: none !important; - border-radius: 0 !important; -} - -// -// Buttons -// -.button { - min-height: 20px; - padding: 5px 32px; - transition-duration: 0; - border-radius: 2px; - - @extend %button; -} - -%button { - @include button(normal); - - &:focus { @include button(focus); } - &:hover { @include button(hover); } - &:hover:focus { @include button(focus-hover); } - &:active, &:active:focus { @include button(active); } - &:insensitive { @include button(insensitive); } -} - -%osd_button { - @include button(osd); - - &:hover { @include button(osd-hover); } - &:focus { color: $selected_bg_color; } - &:active { @include button(osd-active); } - &:insensitive { @include button(osd-insensitive); } -} - -// -// Entries -// -StEntry { - padding: 7px; - caret-size: 1px; - caret-color: $fg_color; - selection-background-color: $selected_bg_color; - selected-color: $selected_fg_color; - transition-duration: 300ms; - border-radius: 3px; - - @include entry(normal); - - &:focus, &:hover { @include entry(focus); } - &:insensitive { @include entry(insensitive); } - - StIcon.capslock-warning { - icon-size: 16px; - warning-color: $warning_color; - padding: 0 4px; - } -} - -// -// Scrollbars -// -StScrollView { - &.vfade { -st-vfade-offset: 0px; } - &.hfade { -st-hfade-offset: 0px; } -} - -StScrollBar { - - padding: 8px; - - StScrollView & { - min-width: 5px; - min-height: 5px; - } - - StBin#trough { - background-color: transparentize($base_color, 0.9); - border-radius: 8px; - } - - StButton#vhandle, StButton#hhandle { - border-radius: 4px; - background-color: mix($fg_color, $bg_color, 40%); - border: 0px solid; - margin: 0px; - - &:hover { background-color: mix($fg_color, $bg_color, 30%); } - - &:active { background-color: $selected_bg_color; } - } -} - -// -// Slider -// -.slider { - -slider-height: 4px; - -slider-background-color: $button_border; //background of the trough - -slider-border-color: transparentize(black, 1); //trough border color - -slider-active-background-color: $selected_bg_color; //active trough fill - -slider-active-border-color: transparentize(black, 1); //active trough border - -slider-border-width: 0; - -slider-handle-radius: 0px; - height: 18px; - border: 0 solid transparent; - border-right-width: 1px; - border-left-width: 5px; - color: transparent; - - .popup-menu-item.selected & { - -slider-background-color: transparentize(black, 0.8); - -slider-active-background-color: $selected_fg_color; - } -} - -// -// Check Boxes -// -.check-box { - - StBoxLayout { spacing: .8em; } - - StBin { - width: 16px; - height: 16px; - background-image: url("#{$asset_path}/checkbox/checkbox-unchecked.svg"); - } - - &:focus StBin { background-image: url("#{$asset_path}/checkbox/checkbox-unchecked-focused.svg"); } - - &:checked StBin { background-image: url("#{$asset_path}/checkbox/checkbox-checked.svg"); } - - &:focus:checked StBin { background-image: url("#{$asset_path}/checkbox/checkbox-checked-focused.svg"); } -} - -// -// Switches -// -.toggle-switch { - width: 50px; - height: 20px; - background-size: contain; - background-image: url("#{$asset_path}/switch/switch-off.svg"); - - &:checked { background-image: url("#{$asset_path}/switch/switch-on.svg"); } - - .popup-menu-item.selected & { - background-image: url("common-assets/switch/switch-off-selected.svg"); - - &:checked { background-image: url("common-assets/switch/switch-on-selected.svg"); } - } -} - -// -// Links -// -.shell-link { - color: $link_color; - - &:hover { color: lighten($link_color,10%); } -} - -// -// Modal Dialogs -// -.headline { font-size: 110%; } -.lightbox { background-color: black; } -.flashspot { background-color: white; } - -.modal-dialog { - color: $fg_color; - background-color: transparentize($bg_color, 1); - border: none; - border-image: url("#{$asset_path}/misc/modal.svg") 9 9 9 67; - padding: 0 5px 6px 5px; - - .modal-dialog-content-box { - padding: 20px 10px 10px 10px; - } - - &-linked-button { - height: if($variant=='light', 39px, 38px); - padding: 0; - box-shadow: inset 0 0 black; - border-top-width: if($variant=='light', 0px, 1px); - border-bottom-width: 0; - - color: $osd_fg_color; - background-color: $osd_bg_color; - border-color: if($variant=='light', darken($osd_bg_color, 5%), darken($osd_bg_color, 8%)); - - &:hover { background-color: lighten($osd_bg_color, 5%); } - &:focus { color: $selected_bg_color; } - &:active { - color: $selected_fg_color; - background-color: $selected_bg_color; - } - &:insensitive { - color: transparentize($osd_fg_color, 0.5); - background-color: darken($osd_bg_color, 2%); - } - - &:first-child { - border-radius: 0px 0px 0px 2px; - } - &:last-child { - border-right-width: 0px; - border-radius: 0px 0px 2px 0px; - } - &:first-child:last-child { - border-right-width: 0px; - border-radius: 0px 0px 2px 2px; - } - } - - .run-dialog-entry { width: 21em; } - .run-dialog-error-box { - padding-top: 5px; - spacing: 5px; - } - - //.run-dialog-button-box { padding-top: 1em; } - .run-dialog-label { - font-size: 0; - } -} - -.show-processes-dialog-subject, -.mount-question-dialog-subject, -.end-session-dialog-subject { //this should be a generic header class - @include fontsize($font-size * 1.2); - font-weight: bold; - color: $fg_color; -} - -// -// End Session Dialog -// -.end-session-dialog { - spacing: 42px; - //border: 3px solid $_bubble_borders_color; - - &-list { - padding-top: 20px; - } - - &-layout { - padding-left: 17px; - &:rtl { padding-right: 17px; } - } - - &-description { - width: 28em; - padding-bottom: 10px; - &:rtl { - text-align: right; - } - } - - &-warning { - width: 28em; - color: $warning_color; - padding-top: 6px; - &:rtl { - text-align: right; - } - } - - &-logout-icon { - border: 0px solid transparent; - border-radius: 2px; - width: 48px; - height: 48px; - background-size: contain; - } - - &-shutdown-icon { - color: $fg_color; - width: 48px; - height: 48px; - } - - &-inhibitor-layout { - spacing: 16px; - max-height: 200px; - padding-right: 10px; - padding-left: 10px; - } - - &-session-list, &-app-list { - spacing: 1em; - } - - &-list-header { - font-weight: bold; - &:rtl { text-align: right; } - } - - &-app-list-item, &-session-list-item { - spacing: 1em; - } - - &-app-list-item-name, &-session-list-item-name { - font-weight: bold; - } - - &-app-list-item-description { - color: lighten($fg_color,5%); - @include fontsize($font-size * 0.9); - } - - .modal-dialog-linked-button:last-child { - color: $destructive_fg_color; - background-color: $destructive_color; - - &:hover { - color: $destructive_fg_color; - background-color: lighten($destructive_color, 9%); - } - &:active { - color: $destructive_fg_color; - background-color: darken($destructive_color, 5%); - } - } -} - -// -// ShellMountOperation Dialogs -// -.shell-mount-operation-icon { icon-size: 48px; } - -.show-processes-dialog, -.mount-question-dialog { - spacing: 24px; -} - -.show-processes-dialog-subject, -.mount-question-dialog-subject { - padding-top: 10px; - padding-left: 17px; - padding-bottom: 6px; - - &:rtl { - padding-left: 0px; - padding-right: 17px; - } -} - -.mount-question-dialog-subject { - max-width: 500px; -} - -.show-processes-dialog-description, -.mount-question-dialog-description { - padding-left: 17px; - width: 28em; - - &:rtl { - padding-right: 17px; - } -} - -.show-processes-dialog-app-list { - @include fontsize($font-size * 1.1); - max-height: 200px; - padding-top: 24px; - padding-left: 49px; - padding-right: 32px; - - &:rtl { - padding-right: 49px; - padding-left: 32px; - } -} - -.show-processes-dialog-app-list-item { - color: darken($fg_color,10%); - &:hover { color: $fg_color; } - &:ltr { padding-right: 1em; } - &:rtl { padding-left: 1em; } -} - -.show-processes-dialog-app-list-item-icon { - &:ltr { padding-right: 17px; } - &:rtl { padding-left: 17px; } -} - -.show-processes-dialog-app-list-item-name { - @include fontsize($font-size * 1.1); -} - -// -// Password or Authentication Dialog -// -.prompt-dialog { - //this is the width of the entire modal popup - width: 500px; - //border: 3px solid $_bubble_borders_color; - - &-main-layout { - spacing: 24px; - padding: 10px; - } - - &-message-layout { - spacing: 16px; - } - - &-headline { - @include fontsize($font-size * 1.3); - font-weight: bold; - color: $fg_color; - } - - &-descritption:rtl { - text-align: right; - } - - &-password-box { - spacing: 1em; - padding-bottom: 1em; - } - - &-error-label { - @include fontsize($font-size); - color: $error_color; - padding-bottom: 8px; - } - - &-info-label { - @include fontsize($font-size); - padding-bottom: 8px; - } - - &-null-label { - @include fontsize($font-size); - padding-bottom: 8px; - } -} - -.hidden { - color: transparentize(black, 1); -} - -// -// Polkit Dialog -// -.polkit-dialog-user { - - &-layout { - padding-left: 10px; - spacing: 10px; - &:rtl { - padding-left: 0px; - padding-right: 10px; - } - } - - &-root-label { - color: $warning_color; - } - - &-user-icon { - border-radius: 2px; - background-size: contain; - width: 48px; - height: 48px; - } -} - -// -// Audio selection dialog -// -.audio-device-selection-dialog { spacing: 30px; } - -.audio-selection { - - &-content { - spacing: 20px; - padding: 24px; - } - - &-title { - font-weight: bold; - text-align: center; - } - - &-box { spacing: 20px; } - - &-device { - border: 1px solid $borders_color; - border-radius: 3px; - - &:active,&:hover,&:focus { - background-color: $selected_bg_color; - border-color: $selected_bg_color; - } - } - - &-device-box { - padding: 20px; - spacing: 20px; - } - - &-device-icon { icon-size: 64px; } -} - -// -// Access Dialog -// -.access-dialog { - spacing: 30px; - - &-main-layout { - padding: 12px 20px 0; - spacing: 12px; - } - - &-content { - max-width: 28em; - spacing: 20px; - } - - &-icon { - min-width: 48px; - icon-size: 48px; - } - - &-title { - font-weight: bold; - } - - &-subtitle { - color: $fg_color; - font-weight: bold; - } -} - -// -// Geolocation Dialog -// -.geolocation-dialog { - spacing: 30px; - - &-main-layout { spacing: 12px; } - &-content { spacing: 20px; } - &-icon { icon-size: 48px; } - &-title { font-weight: bold; } - - &-reason { - color: $fg_color; - font-weight: bold; - } -} - -// -// Network Agent Dialog -// -.network-dialog-secret-table { - spacing-rows: 15px; - spacing-columns: 1em; -} - -.keyring-dialog-control-table { - spacing-rows: 15px; - spacing-columns: 1em; -} - -// -// Popvers/Menus -// -.popup-menu { - min-width: 15em; - color: $fg_color; - border-image: url("#{$asset_path}/menu/menu.svg") 9 9 9 9; - - .popup-menu-arrow { } //defined globally in the TOP BAR - .popup-sub-menu { - background: none; - box-shadow: none; - border-image: url("#{$asset_path}/menu/submenu.svg") 9 9 9 9; - } - - .popup-menu-content { padding: 1em 0em 1em 0em; } - .popup-menu-item { - spacing: 12px; - - &:ltr { padding: .4em 3em .4em 0em; } - &:rtl { padding: .4em 0em .4em 3em; } - - &:checked { - font-weight: normal; - background: none; - box-shadow: none; - border-image: url("#{$asset_path}/menu/submenu-open.svg") 9 9 9 9; - } - - &:active, &.selected { - color: $selected_fg_color; - background-color: transparent; - border-image: url("common-assets/menu/menu-hover.svg") 9 9 1 1; - } - - &:insensitive { - color: transparentize($fg_color, 0.5); - background: none; - } - } - - .popup-inactive-menu-item { //all icons and other graphical elements - color: $fg_color; - - &:insensitive { color: $insensitive_fg_color; } - } - //.popup-status-menu-item { font-weight: normal; color: pink; } //dunno what that is - &.panel-menu { - -boxpointer-gap: 0px; - margin-bottom: 1.75em; - } -} - -.popup-menu-ornament { - text-align: right; - margin-left: 10px; - width: 16px; -} - -.popup-menu-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: rgba(0,0,0,0.0); - -arrow-border-width: 1px; - -arrow-border-color: rgba(0,0,0,0.0); - -arrow-base: 0; - -arrow-rise: 0; -} - -.candidate-popup-boxpointer { - -arrow-border-radius: 2px; - -arrow-background-color: $osd_bg_color; - -arrow-border-width: 1px; - -arrow-border-color: transparentize(black, 0.6); - -arrow-base: 5; - -arrow-rise: 5; -} - -.popup-separator-menu-item { - //-margin-horizontal: 24px; - height: 2px; //not really the whole box - margin: 0; - background-color: transparent; - border: none; - border-image: url("common-assets/menu/menu-separator.svg") 1 1 1 1; -} - -// Background menu -.background-menu { -boxpointer-gap: 4px; -arrow-rise: 0px; } - -// fallback menu -//- odd thing for styling App menu when apparently not running under shell. Light Adwaita styled -// app menu inside the main app window itself rather than the top bar -// - -// -// OSD -// -.osd-window { - text-align: center; - font-weight: bold; - spacing: 1em; - padding: 20px; - margin: 32px; - min-width: 64px; - min-height: 64px; - - color: $_shell_fg_color; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; - -.osd-monitor-label { font-size: 3em; } - - .level { - padding: 0; - height: 4px; - background-color: transparentize(black, 0.5); - border-radius: 2px; - color: $selected_bg_color; - } - .level-bar { - background-color: $selected_bg_color; - border-radius: 2px; - } -} - -.resize-popup { - color: $osd_fg_color; - background: none; - border: none; - border-radius: 5px; - border-image: url("common-assets/misc/osd.svg") 9 9 9 9; - padding: 12px; -} - -// -// Alt Tab Switcher -// -.switcher-popup { - padding: 8px; - spacing: 16px; -} - -.switcher-list { - background: none; - border: none; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; - - &-item-container { spacing: 8px; } - - .item-box { - padding: 8px; - border-radius: 2px; - border: 1px solid transparent; - - &:outlined { - padding: 8px; - border: 1px solid $selected_bg_color; - } - - &:selected { - color: $selected_fg_color; - background-color: $selected_bg_color; - border: 1px solid $selected_bg_color; - - } - } - - .thumbnail-box { - padding: 2px; - spacing: 4px; - } - - .thumbnail { - width: 256px; - } - - .separator { - width: 1px; - background: transparentize($fg_color, 0.67); - } -} - -.switcher-arrow { - border-color: rgba(0,0,0,0); - color: $osd_fg_color; - - &:highlighted { - color: $_shell_fg_color; - } -} - -.input-source-switcher-symbol { - font-size: 34pt; - width: 96px; - height: 96px; -} - -// -//Window Cycler -// -.cycler-highlight { border: 5px solid $selected_bg_color; } - -// -// Workspace Switcher -// -.workspace-switcher { - - background: transparent; - border: 0px; - border-radius: 0px; - padding: 0px; - spacing: 8px; - - &-group { padding: 12px; } - - &-container { - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 3px; - padding: 20px; - padding-bottom: 24px; - } -} - -.ws-switcher-active-up, .ws-switcher-active-down { - height: 30px; - background-color: $selected_bg_color; - background-size: 96px; - border-radius: 2px; - border: 1px solid $selected_bg_color; -} - -.ws-switcher-active-up { - background-image: url("common-assets/misc/ws-switch-arrow-up.png"); -} - -.ws-switcher-active-down { - background-image: url("common-assets/misc/ws-switch-arrow-down.png"); -} - -.ws-switcher-box { - height: 96px; - background-color: transparentize(black, 0.67); - border-color: transparentize(black, 0.67); - border-radius: 2px; -} - -// -// Tiled window previews -// -.tile-preview { - background-color: transparentize($selected_bg_color, 0.65); - border: 1px solid $selected_bg_color; - - &-left.on-primary { - border-radius: $panel-corner-radius 0 0 0; - } - - &-right.on-primary { - border-radius: 0 $panel-corner-radius 0 0; - } - - &-left.tile-preview-right.on-primary { - border-radius: $panel-corner-radius $panel-corner-radius 0 0; - } -} - -// -// Top Bar -// -#panel { - $_panel_fg_color: $_shell_fg_color; - - font-weight: bold; - height: 2.1em; - min-height: 27px; - background-gradient-direction: none; - background-color: transparent; - border-bottom-width: 0; - border-image: url('common-assets/panel/panel.svg') 1 1 1 1; - - // Fix dynamic top bar extension - &.dynamic-top-bar-white-btn { border-image: none; } - - &.unlock-screen, - &.login-screen, - &.lock-screen { - background-color: transparent; - border-image: none; - } - - &:overview { border-image: url('common-assets/panel/panel-overview.svg') 1 1 1 1; } - - #panelLeft, #panelCenter { // spacing between activities<>app menu and such - spacing: 8px; - } - - .panel-corner { - -panel-corner-radius: $panel-corner-radius; - -panel-corner-background-color: transparentize(black, 1); - -panel-corner-border-width: 0px; - -panel-corner-border-color: black; - - &:active, &:overview, &:focus { - -panel-corner-border-color: black; - } - - &.lock-screen, &.login-screen, &unlock-screen { - -panel-corner-radius: 0; - -panel-corner-background-color: transparent; - -panel-corner-border-color: transparent; - } - } - - .panel-button { - -natural-hpadding: 10px; - -minimum-hpadding: 6px; - font-weight: bold; - color: $_panel_fg_color; - transition-duration: 100ms; - border-bottom-width: 1px; - border-color: transparent; - - .app-menu-icon { - width: 0; - height: 0; - margin-left: 0px; - margin-right: 0px; - } - - &:hover { - color: $_panel_fg_color; - background-color: transparentize(black, 0.83); - border-bottom-width: 1px; - border-color: transparent; - } - - &:active, &:overview, &:focus, &:checked { - color: $selected_fg_color; - background-color: $selected_bg_color; - box-shadow: none; - border-bottom-width: 1px; - border-color: black; - - & > .system-status-icon { icon-shadow: none; } - } - - .system-status-icon { icon-size: 16px; padding: 0 4px; } - .unlock-screen &, - .login-screen &, - .lock-screen & { - color: lighten($fg_color, 10%); - &:focus, &:hover, &:active { color: lighten($fg_color, 10%); } - } - } - - #panelActivities.panel-button { -natural-hpadding: 12px; } - - .panel-status-indicators-box, - .panel-status-menu-box { - spacing: 2px; - } - - // spacing between power icon and (optional) percentage label - .power-status.panel-status-indicators-box { - spacing: 0; - } - - .screencast-indicator { color: $error_color; } - - .clock-display > * > *:last-child { - color: $selected_bg_color; - margin-left: .3em; - } - - .popup-menu-arrow { width: 0; } -} - -// Activities button -#panel #panelActivities.panel-button { - - > * { - background-image: url("common-assets/panel/activities.svg"); - background-position: center top; - width: 24px; - height: 24px; - background-color: transparent !important; - background-gradient-direction: none !important; - border: 0 solid transparent !important; - text-shadow: 0 0 transparent !important; - transition-duration: 0ms !important; - box-shadow: none !important; - color: transparent; - } - - &:active, &:overview, &:focus, &:checked { - background-color: transparent; - box-shadow: none; - border-bottom-width: 1px; - border-color: transparent; - - > * { background-image: url("common-assets/panel/activities-active.svg"); } - } -} - -// a little unstructured mess: - -.system-switch-user-submenu-icon { - icon-size: 20px; - padding: 0 2px; -} - -.system-switch-user-submenu-icon.default-icon { - icon-size: 16px; - padding: 0 4px; -} - -#appMenu { - spinner-image: url("common-assets/misc/process-working.svg"); - spacing: 4px; - padding: 0 8px; - - .label-shadow { color: transparent; } -} - -.aggregate-menu { - min-width: 23.5em; - .popup-menu-icon { padding: 0 4px; } -} - -.system-menu-action { - padding: 13px; - color: $fg_color; - border-radius: 32px; /* wish we could do 50% */ - border: 1px solid transparent; - - &:hover, &:focus { - transition-duration: 100ms; - padding: 13px; - color: $fg_color; - background-color: transparent; - border: 1px solid $selected_bg_color; - } - &:active { - color: $selected_fg_color; - background-color: $selected_bg_color; - border: 1px solid $selected_bg_color; - } - - & > StIcon { icon-size: 16px; } -} - -// -// Calendar popover -// -#calendarArea { - padding: 0.75em 1.0em; -} - -.calendar { - margin-bottom: 1em; -} - -.calendar, -.datemenu-today-button, -.datemenu-displays-box, -.message-list-sections { - margin: 0 0.4em; -} - -.datemenu-calendar-column { spacing: 0.5em; border: none; } -.datemenu-displays-section { padding-bottom: 3em; } - -.datemenu-today-button, -.world-clocks-button, -.weather-button, -.message-list-section-title, -.events-section-title { - border-radius: 3px; - padding: .4em; -} - -.message-list-section-list:ltr { - padding-left: .4em; -} - -.message-list-section-list:rtl { - padding-right: .4em; -} - -.datemenu-today-button, -.world-clocks-button, -.weather-button, -.message-list-section-title, -.events-section-title { - padding: 7px 10px 7px 10px; - border: 1px solid transparentize($base_color, 1); - - &:hover, &:focus { @include button(hover); } - &:active { @include button(active); } -} - -.datemenu-today-button .day-label { -} - -.datemenu-today-button .date-label { - font-size: 1.5em; -} - -.world-clocks-header, -.weather-header, -.message-list-section-title, -.events-section-title { - color: transparentize($fg_color, 0.6); - font-weight: bold; -} - -.world-clocks-button:active .world-clocks-header, -.weather-button:active .weather-header { - color: $selected_fg_color; -} - -.world-clocks-grid { - spacing-rows: 0.4em; -} - -.weather-box { - spacing: 0.4em; -} - -.calendar-month-label { - color: $fg_color; - font-weight: bold; - padding: 8px 0; - &:focus {} -} - -.pager-button { - color: transparent; - background-color: transparent; - width: 32px; - border-radius: 2px; - - &:focus, &:hover, &:active { background-color: transparent; } -} - -//arrow back -.calendar-change-month-back { - background-image: url("#{$asset_path}/misc/calendar-arrow-left.svg"); - - &:focus, &:hover { background-image: url("#{$asset_path}/misc/calendar-arrow-left-hover.svg"); } - - &:active { background-image: url("#{$asset_path}/misc/calendar-arrow-left.svg"); } - - &:rtl { - background-image: url("#{$asset_path}/misc/calendar-arrow-right.svg"); - - &:focus, &:hover { background-image: url("#{$asset_path}/misc/calendar-arrow-right-hover.svg"); } - - &:active { background-image: url("#{$asset_path}/misc/calendar-arrow-right.svg"); } - } -} - -//arrow forward -.calendar-change-month-forward { - background-image: url("#{$asset_path}/misc/calendar-arrow-right.svg"); - - &:focus, &:hover { background-image: url("#{$asset_path}/misc/calendar-arrow-right-hover.svg"); } - - &:active { background-image: url("#{$asset_path}/misc/calendar-arrow-right.svg"); } - - &:rtl { - background-image: url("#{$asset_path}/misc/calendar-arrow-left.svg"); - - &:focus, &:hover { background-image: url("#{$asset_path}/misc/calendar-arrow-left-hover.svg"); } - - &:active { background-image: url("#{$asset_path}/misc/calendar-arrow-left.svg"); } - } -} - -.calendar-day-base { - font-size: 80%; - text-align: center; - width: 25px; height: 25px; - padding: 0.1em; - margin: 2px; - border-radius: 12.5px; - - &:hover, &:focus { background-color: transparentize(black, 0.9); } - - &:active, &:selected { - color: $fg_color; - background-color: transparentize(black, 0.85); - border-width: 0; //avoid jumparound due to today - } - - &.calendar-day-heading { //day of week heading - color: transparentize($fg_color, 0.15); - margin-top: 1em; - font-size: 70%; - } -} - -.calendar-day { //border collapse hack - see calendar.js - border-width: 0; - color: transparentize($fg_color, 0.2); -} - -.calendar-day-top { border-top-width: 0; } - -.calendar-day-left { border-left-width: 0; } - -.calendar-work-day {} - -.calendar-nonwork-day { - color: $fg_color; - font-weight: bold; -} - -.calendar-today, -.calendar-today:active, -.calendar-today:selected, -.calendar-today:focus, -.calendar-today:hover { - font-weight: bold; - color: $selected_fg_color; - background-color: $selected_bg_color; - border-width: 0; -} - -.calendar-day-with-events { - font-weight: bold; - background-image: url("common-assets/misc/calendar-today.svg"); -} - -.calendar-today.calendar-day-with-events { color: $selected_fg_color; } - -.calendar-other-month-day { - color: transparentize($fg_color, 0.7); - opacity: 1; -} - -.calendar-week-number { - font-size: 70%; - font-weight: bold; - width: 2.3em; height: 1.8em; - border-radius: 2px; - padding: 0.5em 0 0; - margin: 6px; - background-color: transparentize($fg_color,0.7); - color: $bg_color; -} - -// -// Message list -// -.message-list { - width: 31.5em; - - &-sections { spacing: 1.5em; } - - &-section, - &-section-list { spacing: 0.7em; } - - &-section-list-title-box { spacing: 0.4em; } - - &-placeholder { - StIcon { width: 0; height: 0; } - StLabel { color: $insensitive_fg_color; } - } - - &-clear-button.button { - margin: 1.5em 1.5em 0; - padding: 4px 12px; - } - - &-section-close { - - > StIcon { - icon-size: 18px; - border-radius: 0px; - color: transparent; - background-color: transparent; - background-image: url('#{$asset_path}/misc/message-close.svg'); - } - &:hover > StIcon { - color: transparent; - background-color: transparent; - background-image: url('#{$asset_path}/misc/message-close-hover.svg'); - } - &:active > StIcon { - color: transparent; - background-color: transparent; - background-image: url('#{$asset_path}/misc/message-close-active.svg'); - } - - } -} - -.message { - padding: 4px; - color: $fg_color; - border-image: url("#{$asset_path}/misc/message.svg") 9 9 9 9; - - &:hover, &:focus { - color: $fg_color; - border-image: url("#{$asset_path}/misc/message-hover.svg") 9 9 9 9; - } - - &:active { - color: $selected_fg_color; - border-image: url("#{$asset_path}/misc/message-active.svg") 9 9 9 9; - } - - &-icon-bin { - padding: 8px 0px 8px 8px; - - &:rtl { padding: 8px 8px 8px 0px; } - - > StIcon { - //icon-size: 32px; - color: inherit; - } - } - - &-secondary-bin, - &-secondary-bin > .event-time { - color: transparentize($fg_color, 0.4); - font-size: 0.9em; - - &:ltr { padding-left: 8px; } - &:rtl { padding-right: 8px; } - } - - &:active .message-secondary-bin, - &:active .message-secondary-bin > .event-time { - color: transparentize($selected_fg_color, 0.4); - } - - &-secondary-bin > StIcon { icon-size: 16px; } - - &-title { - color: inherit; - font-weight: bold; - font-size: 1em; - padding: 2px 0 2px 0; - } - - &-content { - color: inherit; - padding: 8px; - font-size: 1em; - } -} - -.message-media-control { - padding: 6px; - color: $fg_color; - - &:last-child:ltr { padding-right: 18px; } - &:last-child:rtl { padding-left: 18px; } - - &:hover { color: transparentize($fg_color, 0.3); } - &:active { color: $selected_bg_color; } - &:insensitive { color: $insensitive_fg_color; } -} - -.message:active .message-media-control { - color: $selected_fg_color; -} - -.media-message-cover-icon { - icon-size: 32px; - - &.fallback { - color: $insensitive_fg_color; - background-color: $bg_color; - border-radius: 2px; - icon-size: 16px; - padding: 8px; - border: 1px solid $borders_color; - } -} - - -// -//Activities Ripples -// -.ripple-box { - width: 52px; - height: 52px; - background-image: url("common-assets/misc/corner-ripple-ltr.svg"); - background-size: contain; - - &:rtl { background-image: url("common-assets/misc/corner-ripple-rtl.svg"); } -} - -// not really top bar only -.popup-menu-arrow { width: 16px; height: 16px; } -.popup-menu-icon { icon-size: 16px; } - - -// -//Close buttons -// -.window-close { - background-image: url("common-assets/misc/close.svg"); - background-size: 26px; - height: 26px; - width: 26px; - - &:hover { - background-image: url("common-assets/misc/close-hover.svg"); - background-size: 26px; - height: 26px; - width: 26px; - } - - &:active { - background-image: url("common-assets/misc/close-active.svg"); - background-size: 26px; - height: 26px; - width: 26px; - } -} - -.window-close { - -shell-close-overlap: 11px; -} - -// -// Network Dialogs -// -.nm-dialog { - max-height: 500px; - min-height: 450px; - min-width: 470px; - - &-content { - spacing: 20px; - padding: 10px; - } - - &-header-hbox { spacing: 10px; } - - &-airplane-box { spacing: 12px; } - - &-airplane-headline { - font-size: 1.1em; - font-weight: bold; - text-align: center; - } - - &-airplane-text { color: $fg_color; } - - &-header-icon { icon-size: 32px; } - - &-scroll-view { - border: 1px solid $borders_color; - border-radius: 2px; - background-color: $base_color; - } - - &-header { - font-weight: bold; - font-size: 1.2em; - } - - &-item { - font-size: 1em; - border-bottom: 0px solid; - padding: 12px; - spacing: 0px; - - &:selected { - background-color: $selected_bg_color; - color: $selected_fg_color; - } - } - - &-icons { spacing: .5em; } - - &-icon { icon-size: 16px; } -} - -.no-networks-label { color: $insensitive_fg_color; } - -.no-networks-box { spacing: 12px; } - -// -// Overview -// -#overview { spacing: 24px; } - -.overview-controls { padding-bottom: 32px; } - -.window-picker { //container around window thumbnails - -horizontal-spacing: 32px; - -vertical-spacing: 32px; - padding-left: 32px; - padding-right: 32px; - padding-bottom: 48px; - - &.external-monitor { padding: 32px; } -} - -.window-clone-border { - border: 3px solid transparentize($selected_bg_color, 0.2); - border-radius: 4px; - box-shadow: inset 0px 0px 0px 1px transparentize($selected_bg_color, 1); -} - -.window-caption, .window-caption:hover { - spacing: 25px; - color: $osd_fg_color; - background-color: transparentize(black, 0.3); - border-radius: 2px; - padding: 4px 12px; - -shell-caption-spacing: 12px; -} - -// -// Search Entry -// -.search-entry { - width: 320px; - padding: 7px 9px; - border-radius: 20px; - border: 1px solid transparentize(black, 0.75); - background-color: transparentize($entry_bg, 0.1); - - &:focus { - padding: 7px 9px; - } - - .search-entry-icon { - icon-size: 16px; - padding: 0 4px; - color: $fg_color; - } - - &:hover, &:focus { - color: $selected_fg_color; - caret-color: $selected_fg_color; - background-color: $selected_bg_color; - - selection-background-color: $selected_fg_color; - selected-color: $selected_bg_color; - - .search-entry-icon { color: $selected_fg_color; } - } -} - -// -// Search Results -// -#searchResultsBin { max-width: 1000px; } - -#searchResultsContent { - padding-left: 20px; - padding-right: 20px; - spacing: 16px; -} - -// This should be equal to #searchResultsContent spacing -.search-section { spacing: 16px; } - -// This is the space between the provider icon and the results container -.search-section-content { spacing: 32px; } - -// "no results" -.search-statustext { - @extend %status_text; -} - -.list-search-results { spacing: 3px; } - -.search-section-separator { - background-color: transparentize(white, 0.8); - -margin-horizontal: 1.5em; - height: 1px; -} - -.list-search-result-content { spacing: 12px; padding: 12px; } - -.list-search-result-title { font-size: 1.5em; color: $_shell_fg_color; } - -.list-search-result-description { color: darken($_shell_fg_color, 20%); } - -.search-provider-icon { padding: 15px; } -.search-provider-icon-more { - width: 16px; - height: 16px; - background-image: url("common-assets/misc/more-results.svg"); -} - -// -// Dash -// -#dash { - font-size: 1em; - color: $osd_fg_color; - background-color: $dark_sidebar_bg; - border-color: rgba(0,0,0,0.4); - padding: 4px 0; - border-radius: 0 3px 3px 0; - - &:rtl { border-radius: 3px 0 0 3px; } - - .right &, - &:rtl { padding: 4px 0; } - - .top &, .bottom & { padding: 0; } - - .placeholder { - background-image: url("common-assets/dash/dash-placeholder.svg"); - background-size: contain; - height: 24px; - } - - .empty-dash-drop-target { - width: 24px; - height: 24px; - } -} - -.dash-item-container > StWidget { - - &, &:rtl, .right & { padding: 4px 8px; } - - .top &, .bottom & { padding: 6px; } -} - -//osd tooltip -.dash-label { - border-radius: 3px; - padding: 4px 12px; - color: $_shell_fg_color; - background-color: transparentize(black, 0.3); - text-align: center; - -x-offset: 3px; - - .bottom &, .top & { - -y-offset: 3px; - -x-offset: 0; - } -} - -// Dash Buttons -#dash .app-well-app { - - &:hover .overview-icon, - .right &:hover .overview-icon, - .bottom &:hover .overview-icon, - .top &:hover .overview-icon { - background-color: $selected_bg_color; - } - - &:active .overview-icon, - .right &:active .overview-icon, - .bottom &:active .overview-icon, - .top &:active .overview-icon { - box-shadow: none; - background-color: darken($selected_bg_color, 10%); - } - - &-running-dot { - width: 11px; - height: 2px; - margin-bottom: 2px; - background-color: $selected_bg_color; - } -} - -#dashtodockContainer { - .app-well-app-running-dot { - background: none; - width: 28px; - height: 4px; - } - - @each $var in 1, 2, 3, 4 { - .running#{$var} .app-well-app-running-dot { - background-image: url("common-assets/dash/running#{$var}.svg"); - } - } -} - -.show-apps { - - .overview-icon { - background-color: transparentize(black, 0.5); - border-radius: 2px; - border: 0px solid; - } - - &:hover .overview-icon { - background-color: transparentize(black, 0.3); - color: $selected_bg_color; - } - - &:active .overview-icon, - &:active .show-apps-icon, - &:checked .overview-icon, - &:checked .show-apps-icon { - color: $selected_fg_color; - background-color: $selected_bg_color; - box-shadow: none; - transition-duration: 0ms; - } -} - -// -// App Vault/Grid -// -.icon-grid { - spacing: 30px; - -shell-grid-horizontal-item-size: 136px; - -shell-grid-vertical-item-size: 136px; - - .overview-icon { icon-size: 96px; } -} - -//.app-display { spacing: 20px; } - -//favorties | all toggle container -.app-view-controls { padding-bottom: 32px; } - -//favorties | all toggle button -.app-view-control { - padding: 4px 32px; - - @include button(osd); - - &:hover { @include button(osd-hover); } - &:checked { - color: $selected_fg_color; - background-color: $selected_bg_color; - } - - &:first-child:ltr, - &:last-child:rtl { border-radius: 2px 0 0 2px; border-right-width: 0; } - - &:last-child:ltr, - &:first-child:rtl { border-radius: 0 2px 2px 0; border-left-width: 0;} -} - -// -// Icon Tile -// -.search-provider-icon, -.list-search-result { - @extend %icon_tile; - - &:active, &:checked { background-color: transparentize(darken($osd_bg_color,10%),.1); } - - &:focus, &:selected, &:hover { - background-color: transparentize($osd_fg_color,.6); - transition-duration: 200ms; - } -} -.app-well-app, -.app-well-app.app-folder, -.grid-search-result { - - .overview-icon { - @extend %icon_tile; - } - - &:active .overview-icon, - &:checked .overview-icon { - background-color: transparentize(darken($osd_bg_color,10%),.1); - box-shadow: inset 0 0 $selected_bg_color; - } - - &:hover .overview-icon, - &:focus .overview-icon, - &:selected .overview-icon { - background-color: transparentize($osd_fg_color,.6); - transition-duration: 0ms; - border-image: none; - background-image: none; - } -} - -.app-well-app-running-dot { //running apps indicator - width: 20px; - height: 2px; - margin-bottom: 4px; - background-color: $selected_bg_color; -} - -%icon_tile { - color: $_shell_fg_color; - border-radius: 2px; - padding: 6px; - border: 1px solid transparent; - transition-duration: 0ms; - text-align: center; -} - -// -// Collections -// -.app-well-app.app-folder { - - > .overview-icon { - background-color: darken($dark_sidebar_bg, 8%); - border: 1px solid transparentize(darken($dark_sidebar_bg, 25%), 0.5); - } - - &:hover > .overview-icon { - background-color: lighten($dark_sidebar_bg, 3%); - } - - &:active > .overview-icon, &:checked > .overview-icon { - color: $selected_fg_color; - background-color: $selected_bg_color; - box-shadow: none; - } - - &:focus > .overview-icon { - background-color: $selected_bg_color; - } -} - -.app-folder-popup { //expanded collection - -arrow-border-radius: 2px; - -arrow-background-color: darken($dark_sidebar_bg, 8%); - -arrow-border-color: transparentize(darken($dark_sidebar_bg, 25%), 0.5); - -arrow-border-width: 1px; - -arrow-base: 5; - -arrow-rise: 5; -} - -.app-folder-popup-bin { padding: 5px; } -.app-folder-icon { - padding: 5px; - spacing-rows: 5px; - spacing-columns: 5px; -} - -.page-indicator { - padding: 15px 20px; - - .page-indicator-icon { - width: 18px; - height: 18px; - background-image: url(common-assets/misc/page-indicator-inactive.svg); - } - - &:hover .page-indicator-icon { background-image: url(common-assets/misc/page-indicator-hover.svg); } - &:active .page-indicator-icon { background-image: url(common-assets/misc/page-indicator-active.svg); } - &:checked .page-indicator-icon, - &:checked:active { background-image: url(common-assets/misc/page-indicator-checked.svg); } -} - -.no-frequent-applications-label { @extend %status_text; } - -.app-well-app > .overview-icon.overview-icon-with-label, -.grid-search-result .overview-icon.overview-icon-with-label { - padding: 10px 8px 5px 8px; - spacing: 4px; -} - -// -// Workspace pager -// -.workspace-thumbnails, -.workspace-thumbnails-left { - &, &:rtl { - visible-width: 40px; //amount visible before hover - spacing: 11px; - padding: 12px; - } -} - -.workspace-thumbnails, -.workspace-thumbnails-left:rtl { - padding-right: 7px; - border-image: url("common-assets/dash/dash-right.svg") 9 9 9 9; -} - -.workspace-thumbnails:rtl, -.workspace-thumbnails-left { - padding-left: 7px; - border-image: url("common-assets/dash/dash-left.svg") 9 9 9 9; -} - -.workspace-thumbnail-indicator { - border: 4px solid transparentize($selected_bg_color, 0.2); - border-radius: 1px; - padding: 1px; -} - -//Some hacks I don't even -.search-display > StBoxLayout, -.all-apps, -.frequent-apps > StBoxLayout { - // horizontal padding to make sure scrollbars or dash don't overlap content - padding: 0px 88px 10px 88px; -} - -%status_text { - font-size: 2em; - font-weight: bold; - color: $fg_color; -} - -// -// Notifications & Message Tray -// -.url-highlighter { link-color: $link_color; } - -// Banners -.notification-banner, -.notification-banner:hover, -.notification-banner:focus { - font-size: 1em; - width: 34em; - margin: 5px; - padding: 10px; - color: $fg_color; - background-color: transparent; - border: 1px solid transparent; - border-image: url("#{$asset_path}/menu/menu.svg") 9 9 9 9; - - .notification-icon { padding: 5px; } - - .notification-content { padding: 5px; spacing: 5px; } - - .secondary-icon { icon-size: 1.09em; } - - .notification-actions { - background-color: transparent; - padding: 2px 2px 0 2px; - spacing: 3px; - } - .notification-button { - padding: 4px 4px 5px; - @extend %button; - - &:first-child, &:last-child { border-radius: 2px; } - } -} - -.secondary-icon { icon-size: 1.09em; } - -// Chat Bubbles -.chat-body { spacing: 5px; } -.chat-response { margin: 5px; } -.chat-log-message { color: $fg_color; } -.chat-new-group { padding-top: 1em; } -.chat-received { - padding-left: 4px; - - &:rtl { padding-left: 0px; padding-right: 4px; } -} - -.chat-sent { - padding-left: 18pt; - color: $selected_bg_color; - - &:rtl { padding-left: 0; padding-right: 18pt; } -} - -.chat-meta-message { - padding-left: 4px; - font-size: 9pt; - font-weight: bold; - color: transparentize($fg_color, 0.4); - - &:rtl { padding-left: 0; padding-right: 4px; } -} - -.subscription-message { font-style: italic; } - -// Hotplug -.hotplug-transient-box { - spacing: 6px; - padding: 2px 72px 2px 12px; -} - -.hotplug-notification-item { - padding: 2px 10px; - @extend %button; - - &:focus { padding: 2px 10px; } -} - -.hotplug-notification-item-icon { - icon-size: 24px; - padding: 2px 5px; -} - -.hotplug-resident-box { spacing: 8px; } - -.hotplug-resident-mount { - spacing: 8px; - border-radius: 4px; - &:hover { background-color: transparentize($bg_color,0.7); } -} - -.hotplug-resident-mount-label { - color: inherit; - padding-left: 6px; -} - -.hotplug-resident-mount-icon { - icon-size: 24px; - padding-left: 6px; -} - -.hotplug-resident-eject-icon { - icon-size: 16px; -} - -.hotplug-resident-eject-button { - padding: 7px; - border-radius: 5px; - color: pink; -} - -// Eeeky things - -$legacy_icon_size: 24px; - -.legacy-tray { - background-color: $panel_bg; - - &:ltr { border-radius: 0 2px 0 0; border-left-width: 0; } - &:rtl { border-radius: 2px 0 0 0; border-right-width: 0; } -} - -.legacy-tray-handle, -.legacy-tray-icon { - padding: 6px; - & StIcon { icon-size: $legacy_icon_size; } - &:hover, &:focus { background-color: transparentize($fg_color,0.9); } -} - -.legacy-tray-icon-box { - spacing: 12px; - &:ltr { padding-left: 12px; } - &:rtl { padding-right: 12px; } - & StButton { width: $legacy_icon_size; height: $legacy_icon_size } -} - -.masterslider.smaller .masterlabel, -.masterslider.smaller .slider { - min-width: 155px; -} - -// Magnifier - -.magnifier-zoom-region { - border: 2px solid $selected_bg_color; - &.full-screen { border-width: 0; } -} - -// -// On-Screen Keyboard -// -#keyboard { - background-color: $osd_bg_color; - border-width: 0; - border-top-width: 1px; - border-color: transparentize(black, 0.8); -} - -.keyboard-layout { - spacing: 10px; - padding: 10px; -} - -.keyboard-row { - spacing: 15px; -} - -.keyboard-key { - min-height: 2em; - min-width: 2em; - font-size: 14pt; - font-weight: bold; - border-radius: 3px; - box-shadow: none; - - @include button(osd); - - &:hover { @include button(osd-hover); } - &:active, &:checked { @include button(osd-active); } - - &:grayed { @include button(osd-insensitive); } -} - -.keyboard-subkeys { //long press on a key popup - color: $osd_fg_color; - padding: 5px; - -arrow-border-radius: 2px; - -arrow-background-color: $osd_bg_color; - -arrow-border-width: 1px; - -arrow-border-color: transparentize(black, 0.6);; - -arrow-base: 20px; - -arrow-rise: 10px; - -boxpointer-gap: 5px; -} - -// -// IBus Candidate Popup -// -.candidate-popup-content { - padding: 0.5em; - spacing: 0.3em; - color: $osd_fg_color; - font-size: 1.15em; -} - - .candidate-index { - padding: 0 0.5em 0 0; - color: lighten($osd_fg_color, 10%); - } - - .candidate-box { - padding: 0.3em 0.5em 0.3em 0.5em; - border-radius: 2px; - color: $osd_fg_color; - &:selected,&:hover { background-color: $selected_bg_color; color: $selected_fg_color; } - } - - .candidate-page-button-box { - height: 2em; - .vertical & { padding-top: 0.5em; } - .horizontal & { padding-left: 0.5em; } - } - - .candidate-page-button { - padding: 4px; - } - - .candidate-page-button-previous { border-radius: 2px 0px 0px 2px; border-right-width: 0; } - .candidate-page-button-next { border-radius: 0px 2px 2px 0px; } - .candidate-page-button-icon { icon-size: 1em; } - -// -// Auth Dialogs & Screen Shield -// -.framed-user-icon { - background-size: contain; - border: 0px solid transparent; - color: $fg_color; - border-radius: 2px; - &:hover { - border-color: transparent; - color: lighten($osd_fg_color,30%); - } -} - -// -// Login Dialog -// -.login-dialog-banner-view { - padding-top: 24px; - max-width: 23em; -} - -.login-dialog { - //reset - border: none; - background-color: transparent; - - .modal-dialog-button-box { spacing: 3px; } - .modal-dialog-button { - padding: 3px 18px; - &:default { - @include button(normal); - &:hover,&:focus { @include button(hover); } - &:active { @include button(active); } - &:insensitive { @include button(insensitive); } - } - } -} - - .login-dialog-logo-bin { padding: 24px 0px; } - .login-dialog-banner { color: darken($osd_fg_color,10%); } - .login-dialog-button-box { spacing: 5px; } - .login-dialog-message-warning { color: $warning_color; } - .login-dialog-message-hint { padding-top: 0; padding-bottom: 20px; } - .login-dialog-user-selection-box { - padding: 100px 0px; - .login-dialog-not-listed-label { - padding-left: 2px; - .login-dialog-not-listed-button:focus &, - .login-dialog-not-listed-button:hover & { - color: $osd_fg_color; - } - } - } - .login-dialog-not-listed-label { - font-size: 90%; - font-weight: bold; - color: darken($osd_fg_color,30%); - padding-top: 1em; - } - - .login-dialog-user-list-view { -st-vfade-offset: 1em; } - .login-dialog-user-list { - spacing: 12px; - padding: .2em; - width: 23em; - &:expanded .login-dialog-user-list-item:focus { background-color: $selected_bg_color; color: $selected_fg_color; } - &:expanded .login-dialog-user-list-item:logged-in { border-right: 2px solid $selected_bg_color; } - } - .login-dialog-user-list-item { - border-radius: 5px; - padding: .2em; - color: darken($osd_fg_color,30%); - &:ltr { padding-right: 1em; } - &:rtl { padding-left: 1em; } - &:hover { background-color: $selected_bg_color; color: $selected_fg_color; } - .login-dialog-timed-login-indicator { - height: 2px; - margin: 2px 0 0 0; - background-color: $osd_fg_color; - } - &:focus .login-dialog-timed-login-indicator { background-color: $selected_fg_color; } - } - - .login-dialog-username, - .user-widget-label { - color: $osd_fg_color; - font-size: 120%; - font-weight: bold; - text-align: left; - padding-left: 15px; - } - .user-widget-label { - &:ltr { padding-left: 18px; } - &:rtl { padding-right: 18px; } - } - - .login-dialog-prompt-layout { - padding-top: 24px; - padding-bottom: 12px; - spacing: 8px; - width: 23em; - } - - .login-dialog-prompt-label { - color: darken($osd_fg_color, 20%); - font-size: 110%; - padding-top: 1em; - } - - .login-dialog-session-list-button StIcon { - icon-size: 1.25em; - } - - .login-dialog-session-list-button { - color: darken($osd_fg_color,30%); - &:hover,&:focus { color: $osd_fg_color; } - &:active { color: darken($osd_fg_color, 50%); } - } - -// -// Screen Shield -// -.screen-shield-arrows { - padding-bottom: 3em; -} - -.screen-shield-arrows Gjs_Arrow { - color: white; - width: 80px; - height: 48px; - -arrow-thickness: 12px; - -arrow-shadow: 0 1px 1px rgba(0,0,0,0.4); -} - -.screen-shield-clock { - color: white; - text-shadow: 0px 1px 2px rgba(0,0,0,0.6); - font-weight: bold; - text-align: center; - padding-bottom: 1.5em; -} - -.screen-shield-clock-time { - font-size: 72pt; - text-shadow: 0px 2px 2px rgba(0,0,0,0.4); -} - -.screen-shield-clock-date { font-size: 28pt; } - -.screen-shield-notifications-container { - spacing: 6px; - width: 30em; - background-color: transparent; - max-height: 500px; - .summary-notification-stack-scrollview { - padding-top: 0; - padding-bottom: 0; - } - - .notification, - .screen-shield-notification-source { - padding: 12px 6px; - border: 1px solid $_bubble_borders_color; - background-color: transparentize($osd_bg_color,0.5); - color: $_bubble_fg_color; - border-radius: 4px; - } - .notification { margin-right: 15px; } //compensate for space allocated to the scrollbar -} - - -.screen-shield-notification-label { - font-weight: bold; - padding: 0px 0px 0px 12px; -} - -.screen-shield-notification-count-text { padding: 0px 0px 0px 12px; } - -#panel.lock-screen { background-color: transparentize($_bubble_bg_color, 0.5); } - -.screen-shield-background { //just the shadow, really - background: black; - box-shadow: 0px 2px 4px transparentize(black,0.6); -} - -#lockDialogGroup { - background: #2e3436 url(misc/noise-texture.png); - background-repeat: repeat; -} - -#screenShieldNotifications { - StButton#vhandle, StButton#hhandle { - background-color: transparentize($bg_color,0.7); - &:hover, &:focus { background-color: transparentize($bg_color,0.5); } - &:active { background-color: transparentize($selected_bg_color,0.5); } - } -} - -// -// Looking Glass -// -#LookingGlassDialog { - spacing: 4px; - padding: 8px 8px 10px 8px; - background-color: transparentize(black, 0.3); - border: 1px solid black; - border-image: url("common-assets/misc/bg.svg") 9 9 9 9; - border-radius: 2px; - color: $osd_fg_color; - - & > #Toolbar { - padding: 3px; - border: none; - background-color: transparent; - border-radius: 0px; - } - .labels { spacing: 4px; } - - .notebook-tab { - -natural-hpadding: 12px; - -minimum-hpadding: 6px; - font-weight: bold; - color: $osd_fg_color; - transition-duration: 100ms; - padding-left: .3em; - padding-right: .3em; - - &:hover { - color: $_shell_fg_color; - text-shadow: black 0px 2px 2px; - } - &:selected { - border-bottom-width: 0px; - color: $selected_bg_color; - text-shadow: black 0px 2px 2px; - } - } - StBoxLayout#EvalBox { padding: 4px; spacing: 4px; } - StBoxLayout#ResultsArea { spacing: 4px; } -} - -.lg-dialog { - - StEntry { - caret-color: $selected_fg_color; - selection-background-color: $selected_bg_color; - selected-color: $selected_fg_color; - - @include entry(osd); - &:focus { - @include entry(osd-focus); - - selection-background-color: $selected_fg_color; - selected-color: $selected_bg_color; - } - } - .shell-link { - color: $link_color; - &:hover { color: lighten($link_color,10%); } - } -} - -.lg-completions-text { - font-size: .9em; - font-style: italic; -} - -.lg-obj-inspector-title { - spacing: 4px; -} - -.lg-obj-inspector-button { - border: 1px solid gray; - padding: 4px; - border-radius: 4px; - &:hover { border: 1px solid #fdf6e3; } -} - -#lookingGlassExtensions { padding: 4px; } - -.lg-extensions-list { - padding: 4px; - spacing: 6px; -} - -.lg-extension { - border: 1px solid $osd_borders_color; - border-radius: 2px; - background-color: $osd_bg_color; - padding: 4px; -} - -.lg-extension-name { - font-weight: bold; -} - -.lg-extension-meta { - spacing: 6px; -} - -#LookingGlassPropertyInspector { - background: transparentize(black, 0.3); - border: 1px solid grey; - border-radius: 2px; - padding: 6px; -} diff --git a/common/gnome-shell/3.18/sass/_drawing.scss b/common/gnome-shell/3.18/sass/_drawing.scss deleted file mode 100644 index c074950..0000000 --- a/common/gnome-shell/3.18/sass/_drawing.scss +++ /dev/null @@ -1,171 +0,0 @@ -// Drawing mixins - -// generic drawing of more complex things - -// provide font size in rem, with px fallback -@mixin fontsize($size: 24, $base: 16) { - font-size: round($size) + pt; - //font-size: ($size / $base) * 1rem; -} - -// Entries - -@mixin entry($t, $dark:false) { -// -// Entries drawing function -// - //@extend %reset_style; - - @if $t==normal { - color: $text_color; - background-color: $entry_bg; - border: 1px solid $entry_border; - box-shadow: inset 0 2px 4px transparentize($entry_bg, 0.95); - } - - @if $t==focus { - color: $fg_color; - background-color: $entry_bg; - border: 1px solid $selected_bg_color; - box-shadow: inset 0 2px 4px transparentize($entry_bg, 0.95); - } - - @if $t==insensitive { - color: $insensitive_fg_color; - background-color: mix($entry_bg, $bg_color, 55%); - border-color: 1px solid mix($entry_border, $bg_color, 55%); - box-shadow: inset 0 2px 4px transparentize(mix($entry_bg, $bg_color, 55%), 0.95); - } - - @if $t==osd { - color: $osd_fg_color; - background-color: $osd_entry_bg; - border: 1px solid $osd_entry_border; - box-shadow: inset 0 2px 4px transparentize(black, 0.95); - } - - @if $t==osd-focus { - color: $selected_fg_color; - background-color: $selected_bg_color; - border: 1px solid $osd_entry_border; - box-shadow: inset 0 2px 4px transparentize(black, 0.95); - } - - @if $t==osd-insensitive { - color: transparentize($osd_fg_color, 0.45); - background-color: transparentize($osd_entry_bg, 0.15); - border: 1px solid $osd_entry_border; - box-shadow: inset 0 2px 4px transparentize(black, 0.95); - } -} - -// Buttons - -@mixin button($t) { -// -// Button drawing function -// - //@extend %reset_style; - - text-shadow: 0 1px transparentize($base_color, 1); - - @if $t==normal { - // - // normal button - // - color: $fg_color; - background-color: $button_bg; - border: 1px solid $button_border; - box-shadow: inset 0 1px transparentize($button_bg, 0.95); - } - - @else if $t==focus { - // - // focused button - // - color: $fg_color; - background-color: $button_bg; - border: 1px solid $selected_bg_color; - box-shadow: inset 0 1px transparentize($button_bg, 0.95); - } - - @else if $t==focus-hover { - // - // focused button - // - color: $fg_color; - background-color: $button_bg; - border: 1px solid $selected_bg_color; - box-shadow: inset 0 1px transparentize($button_bg, 0.95); - } - - @else if $t==hover { - // - // hovered button - // - color: $fg_color; - background-color: lighten($button_bg, 5%); - border: 1px solid $button_border; - box-shadow: inset 0 1px transparentize(lighten($button_bg, 5%), 0.95); - } - - @else if $t==active { - // - // pushed button - // - color: $selected_fg_color; - background-color: $selected_bg_color; - border: 1px solid if($variant=='light', $selected_bg_color, $button_border); - box-shadow: inset 0 1px transparentize($selected_bg_color, 0.95); - } - - @else if $t==insensitive { - // - // insensitive button - // - color: $insensitive_fg_color; - border: 1px solid transparentize($button_border, 0.45); - background-color: transparentize($button_bg, 0.45); - box-shadow: inset 0 1px transparentize($button_bg, 0.95); - } - - @else if $t==osd { - // - // normal osd button - // - color: $osd_fg_color; - border: 1px solid $osd_button_border; - background-color: $osd_button_bg; - box-shadow: inset 0 1px transparentize(black, 0.95); - } - - @else if $t==osd-hover { - // - // active osd button - // - color: $osd_fg_color; - border: 1px solid $osd_button_border; - background-color: opacify(lighten($osd_button_bg, 7%), 0.1); - box-shadow: inset 0 1px transparentize(black, 0.95); - } - - @else if $t==osd-active { - // - // active osd button - // - color: $selected_fg_color; - border: 1px solid $osd_button_border; - background-color: $selected_bg_color; - box-shadow: inset 0 1px transparentize($selected_bg_color, 0.95); - } - - @else if $t==osd-insensitive { - // - // insensitive osd button - // - color: $osd_insensitive_fg_color; - border: 1px solid $osd_button_border; - background-color: transparentize($osd_button_bg, 0.15); - box-shadow: inset 0 1px transparentize(black, 0.95); - } -} diff --git a/common/gnome-shell/3.18/sass/gnome-shell-dark.scss b/common/gnome-shell/3.18/sass/gnome-shell-dark.scss deleted file mode 100644 index 4a61461..0000000 --- a/common/gnome-shell/3.18/sass/gnome-shell-dark.scss +++ /dev/null @@ -1,7 +0,0 @@ -$variant: 'dark'; -$transparency: 'true'; -$darker: 'false'; - -@import "_colors"; //use gtk colors -@import "_drawing"; -@import "_common"; diff --git a/common/gnome-shell/3.18/sass/gnome-shell.scss b/common/gnome-shell/3.18/sass/gnome-shell.scss deleted file mode 100644 index 674f742..0000000 --- a/common/gnome-shell/3.18/sass/gnome-shell.scss +++ /dev/null @@ -1,7 +0,0 @@ -$variant: 'light'; -$transparency: 'true'; -$darker: 'false'; - -@import "_colors"; //use gtk colors -@import "_drawing"; -@import "_common"; diff --git a/common/gnome-shell/3.20 b/common/gnome-shell/3.20 deleted file mode 120000 index 55b698c..0000000 --- a/common/gnome-shell/3.20 +++ /dev/null @@ -1 +0,0 @@ -3.18 \ No newline at end of file diff --git a/common/gnome-shell/3.22 b/common/gnome-shell/3.22 deleted file mode 120000 index 55b698c..0000000 --- a/common/gnome-shell/3.22 +++ /dev/null @@ -1 +0,0 @@ -3.18 \ No newline at end of file diff --git a/common/gnome-shell/3.24 b/common/gnome-shell/3.24 deleted file mode 120000 index 55b698c..0000000 --- a/common/gnome-shell/3.24 +++ /dev/null @@ -1 +0,0 @@ -3.18 \ No newline at end of file diff --git a/common/gtk-2.0/apps.rc b/common/gtk-2.0/apps.rc deleted file mode 100644 index ee5cf61..0000000 --- a/common/gtk-2.0/apps.rc +++ /dev/null @@ -1,157 +0,0 @@ -# -# Thunar -# -style "thunar-handle" { GtkPaned::handle-size = 2 } - -style "dark-sidebar" { - GtkTreeView::odd_row_color = @dark_sidebar_bg - GtkTreeView::even_row_color = @dark_sidebar_bg - - - base[NORMAL] = @dark_sidebar_bg - base[INSENSITIVE] = @dark_sidebar_bg - - text[NORMAL] = "#657b83" - text[ACTIVE] = @selected_fg_color - text[SELECTED] = @selected_fg_color -} - -style "thunar-frame" { - xthickness = 0 - ythickness = 0 -} - -widget_class "*ThunarWindow*." style "thunar-frame" -widget_class "*ThunarShortcutsView*" style "dark-sidebar" -widget_class "*ThunarTreeView*" style "dark-sidebar" -widget_class "*ThunarWindow*." style "thunar-handle" - -# -# Workaround for colored entries -# -style "entry_border" { - - xthickness = 7 - ythickness = 5 - - engine "pixmap" { - - image { - function = SHADOW - state = NORMAL - detail = "entry" - file = "assets/entry-border-bg.png" - border = {6, 6, 6, 6} - stretch = TRUE - } - - image { - function = SHADOW - state = ACTIVE - detail = "entry" - file = "assets/entry-border-active-bg.png" - border = {6, 6, 6, 6} - stretch = TRUE - } - - image { - function = FLAT_BOX - state = ACTIVE - detail = "entry_bg" - file = "assets/null.png" - } - - image { - function = FLAT_BOX - state = INSENSITIVE - detail = "entry_bg" - file = "assets/null.png" - } - - image { - function = FLAT_BOX - detail = "entry_bg" - file = "assets/null.png" - } - } -} - -style "combobox_entry_border" = "combobox_entry" { - - engine "pixmap" { - - image { - function = SHADOW - detail = "entry" - state = NORMAL - shadow = IN - file = "assets/combo-entry-border.png" - border = { 4, 4, 12, 12 } - stretch = TRUE - direction = LTR - } - - image { - function = SHADOW - detail = "entry" - state = ACTIVE - file = "assets/combo-entry-border-focus.png" - border = { 4, 4, 12, 12 } - stretch = TRUE - direction = LTR - } - - image { - function = SHADOW - detail = "entry" - state = NORMAL - shadow = IN - file = "assets/combo-entry-border-rtl.png" - border = { 4, 4, 12, 12 } - stretch = TRUE - direction = RTL - } - - image { - function = SHADOW - detail = "entry" - state = ACTIVE - file = "assets/combo-entry-border-focus-rtl.png" - border = { 4, 4, 12, 12 } - stretch = TRUE - direction = RTL - } - - image { - function = FLAT_BOX - state = INSENSITIVE - detail = "entry_bg" - file = "assets/null.png" - } - - image { - function = FLAT_BOX - detail = "entry_bg" - file = "assets/null.png" - } - } -} - - -# Mousepad search entry -widget_class "*MousepadSearchBar*." style "entry_border" - -# Mousepad find and replace -widget_class "*MousepadReplaceDialog*." style "entry_border" - -# Thunar bulk rename -widget_class "*ThunarRenamerDialog*." style "entry_border" - -# Hexchat input box -class "SexySpellEntry" style:highest "entry_border" - -# Geany search entries -widget "*GeanyToolbar.*geany-search-entry-no-match*" style "entry_border" -widget "*GeanyToolbar.*GtkEntry*" style "entry_border" - -widget "GeanyDialogSearch.*GtkComboBoxEntry*.*geany-search-entry-no-match*" style "combobox_entry_border" diff --git a/common/gtk-2.0/assets-dark.svg b/common/gtk-2.0/assets-dark.svg deleted file mode 100644 index 5cdfbe3..0000000 --- a/common/gtk-2.0/assets-dark.svg +++ /dev/null @@ -1,6128 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gtk-2.0/assets-dark/arrow-down-insens.png b/common/gtk-2.0/assets-dark/arrow-down-insens.png deleted file mode 100644 index 27a3ec84b6669f12336182bcc7e7ed9a20846ce3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 315 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRR!3HD+k8e2&q*#ibJVQ8upoSx*1Eiq9BeIx* zf$s>t*I;7bhncr0V4trO$q6BL!5n!_&nv zgkxrG&qlAq0U{3PYdHmPAGDvSu%q-dx6GVb?4DeapN{cedi3bQ1lvoRx+?P(c64}s zx7f8qd&josNe@a-El9U*R}Or0&u~}Xs-lzji*Cd!pW%6-tks?QO7A~Q=WOK|#hkMm zFN7Y%O_83xi|4?xovd7r^Z(4RRbsey?)a;ETZZLb)0&sA#CGO~-bhA{RvZQVq&<_lru6{1- HoD!M>t*I;7bhncr0V4trO$q6BL!5n(bL5- zgkxrIpEVz2poH7``oNAuOgRqj$`j9&TvJ?hF+)`8qKC#8vjkx&N0H>1$(2{4M5I~; z&hOOfJQO}}&YT(xD~mPP9Ov5?m)wYcnXsNEjYBs4_uKe`R~@|#Vka#1T3IeTLn7rt z-XXSz-5*!8wQ+pD{WL_pL8Hs)`tF%cnvFdNOc?+F^$5?guAi2F@AIBF+I~7bB8|C! yLbj!f_Az|=eYo(D%*l#1k6hNq=)KwZhxsY1i(cqkeLbM#89ZJ6T-G@yGywo>GI1dQ diff --git a/common/gtk-2.0/assets-dark/arrow-down-small-insens.png b/common/gtk-2.0/assets-dark/arrow-down-small-insens.png deleted file mode 100644 index df09d4f7ec816f882b2c010b35a7e72fe2646c5c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 289 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRR!3HD+k8e2&q*#ibJVQ8upoSx*1Eiq9BeIx* zf$s>t*I;7bhncr0V4trO$q6BL!46&(p;* zgkxrJpCaF(01=kwe-H6mFfh40bsb#nF@eLwK8t?dtnz%BDNo=8|SduV$l zOy*W9b`0-&qS1e`U_;qC(`B-m{aNh4LZ0wVnZHWj>bVrd`riQ}uD0`h^DkBGTlv~| en(Teq-%M%T1`HbN6EcA=W$<+Mb6Mw<&;$T5zhYzn diff --git a/common/gtk-2.0/assets-dark/arrow-down-small-prelight.png b/common/gtk-2.0/assets-dark/arrow-down-small-prelight.png deleted file mode 100644 index 4740f137d3d257a80e18b0d9dc1ec0052c7de67a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRR!3HD+k8e2&q*#ibJVQ8upoSx*1Eiq9BeIx* zf$s>t*I;7bhncr0V4trO$q6BL!46!PCVt zgkxrJ&tATR2@-DSgSS7hx}r3(#K^OUO?tBQXJe1|&Y{sit2o7EeZ-Uk?`JPaDmhj> ziTVGg(|0t_-hFXh^>@*XlyyuT3@qHnX1C9jGG6*}VWQ5ooS!cf(!4$wvGQ;<8Qwd- zV9$MS^+|tztK9rsHIvzWkH5pztJ_zq{I@j~alN>%c0-+A)MgE?^S$+qMcXXb3SPWa Q3UnKTr>mdKI;Vst04^P5CIA2c diff --git a/common/gtk-2.0/assets-dark/arrow-down-small.png b/common/gtk-2.0/assets-dark/arrow-down-small.png deleted file mode 100644 index 371bc04a0132ebac20fb504d49e83e547c26dd4e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 282 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRR!3HD+k8e2&q*#ibJVQ8upoSx*1Eiq9BeIx* zf$s>t*I;7bhncr0V4trO$q6BL!46-P6S} zgkxs!8C$-C2@LHYpWk=$IMb(C$U0d~86OQD7_2@R4f1=ydD) zBB9yoe|Y)-%oaZqu78WaK1Y^+kHR^|IsI=#UOsTYE!QBvEcS@tL`IGSQQG!CLfN_Z z4|xQ&S={fg$>~`s!{E8?uFi8OaZmLH6}C~q$v$6gudX$l-8ZjyOUd1vMTR@C{$pE| WZp^CHs;3EbB7>)^pUXO@geCxd3Sv_L diff --git a/common/gtk-2.0/assets-dark/arrow-down.png b/common/gtk-2.0/assets-dark/arrow-down.png deleted file mode 100644 index ef208324bfe90a2e1133e002d736a521eb7b5a5a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 316 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRR!3HD+k8e2&q*#ibJVQ8upoSx*1Eiq9BeIx* zf$s>t*I;7bhncr0V4trO$q6BL!5n)6>N< zgkxsx8AETTM496s-~T`9qVZwv789$TX4V!R1yed$_#Ah!=<;o?6u+bEcs_S;+Y8MHe`hMYuzh&(*E4xF)0;a-CihG{QWgF`@4nl`<)OcI zs&n6c-O4hz(eBX2!t9!xx{NWcY|ZDEEt}7s@X#qEoZ*3ZmY~bCTdy}h26}?Q)78&q Iol`;+0BG)h&j0`b diff --git a/common/gtk-2.0/assets-dark/arrow-left-insens.png b/common/gtk-2.0/assets-dark/arrow-left-insens.png deleted file mode 100644 index 0839e549f607df1ae5b3f5478242fd308a015711..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 324 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(!3-qTT-L4!Qq09po*^6@9Je3(KLE)UctjR6 zFz_7#VaBQ2e9}Nc$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pSq5^zE zT!D0GXhUvpZftBxQc_t|RAy*$VM0PyL}FGY$catJiAlb|fr64Ht`Q}{`DrEPiAAXl<>lpinR(g8$%zH2dih1^v)|cB0Tmtaba4#f znCaVRn01Ij!tMV2WrYImIrkQZlz6l$gs|AU@Al*mC@9P1zu?&A%pP92$wECrntis@ zh6gv8OE}UzX8-Zy-1o8i!^almM;6;AnN({|X`GTQ;`%i?Ovgo1>r(~egWvIGejn8? zIDa`=Y@KY(b2v@!r_@s~SGReWXEI6rpHVzT?8N5hTb4iFnpjlXy@7piJ-_{Xt%tj= z+y6>0W!=_w&P;wcd&4R%j(yT?Q}tM1Y8$O&Iq<4r#m)UEwI$5eXT&(hC2beK0`v=m Mr>mdKI;Vst0G@+(Jpcdz diff --git a/common/gtk-2.0/assets-dark/arrow-left.png b/common/gtk-2.0/assets-dark/arrow-left.png deleted file mode 100644 index 4f686bed29f4470b46ae5709b8541c770ce7b531..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 316 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(!3-qTT-L4!Qq09po*^6@9Je3(KLE)UctjR6 zFz_7#VaBQ2e9}Nc$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pSLIQk3 zT!D1Ms#TLFP3m5>sB`YzY15YW&6zWG>inrw=S`ZvaLUZZlcz75G-DB%TsUPqh%tG_ z;>j}>f!H$^O`5rAG7wE)JP9la6agY(30qB|xzZ&;e!&cE?A*M9LK3n`X=RP=9TS)C z+mlk>Gy7hVMvlH5P qr@9^4<5<6(@z&?r3;HVCjBM=f^O)G#8P!0(VDNPHb6Mw<&;$S)w0Lp= diff --git a/common/gtk-2.0/assets-dark/arrow-right-insens.png b/common/gtk-2.0/assets-dark/arrow-right-insens.png deleted file mode 100644 index 3f1deb1cfaafd0613bfd7c170ac654d203b4d249..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 320 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(!3-qTT-L4!Qq09po*^6@9Je3(KLE)UctjR6 zFz_7#VaBQ2e9}Nc$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS!UKFl zT!D0GXhUvpZftBxQc_uDT3TXaZgfg+L}FHSVs=boPHbXsOhR@{LQZT#4n!m-DF?^} zO2s7R#sb+u29ygC1d*5K&qx6pEmIQY7tFxM&dn<#DkB@8m{;D^K5^mloqJE6x%TYE z@4x?|wwrAOsx$Ub|fr64Ht`Q}{`DrEPiAAXl<>lpinR(g8$%zH2dih1^v)|cB0Tpfaba4#f zm}z@vKR08c%(0K(pTBljYX0vOD;BFZvGtStgvN_m+h?rZbmNVi>g2~l<(mT|B|J1s zYI)|Q*Y2%OdHT-ZZN~D+AGf7O>em@72!~2-Kc4;UcbygsV}V&5|3$_Py)zf&-Tvl! z=+MnKvpJGmnpu|pVrMx1wQWJHt9X6H?l|v@f`=3rU7YoE+U|9Wl3o6kyPR%ydY2Kl z?mD}q)-IlTonD&r?U^MUtrae3tHtVzZT|k@7jrY0i%Mu?_-UXA7(8A5T-G@yGywn| C=ygZ{ diff --git a/common/gtk-2.0/assets-dark/arrow-right.png b/common/gtk-2.0/assets-dark/arrow-right.png deleted file mode 100644 index 71352dc5ecd571fa0cdfb94a2447963fec5fb3f9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 316 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(0U`xw#m)s%EX7WqAsj$Z!;#Vfk}U9uEM{Qf zI|9OtQ?>b|fr64Ht`Q}{`DrEPiAAXl<>lpinR(g8$%zH2dih1^v)|cB0Tu1^ba4#f zm}z^)FpDWr!u4UXd>e;m?1URC514dv79}St`ebKoacduM3=}-5zJu|$fcb<&x2CLY z3S`+>An_wtCjWPApIhgDW;_0+Nt?r0FTL};!E#ZYRor#v_whvn4mNRRysu|}{QHLM zYT538>;DM)i@i^qrC4`n=XG|5Bc1ZII2zZpyPQ;-VB-2FX4+oMhKxtfp2nWh)u&F) z_51L8(Z>H13|Y*kJ4JCeC-6UD;q95aba~eHt5(lnN|&fOcw95Pv<2u122WQ%mvv4F FO#oo7bLRj6 diff --git a/common/gtk-2.0/assets-dark/arrow-up-insens.png b/common/gtk-2.0/assets-dark/arrow-up-insens.png deleted file mode 100644 index 6d8526d2798d6150ddec3328b2bb610c43f5504c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 325 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRR!3HD+k8e2&q*#ibJVQ8upoSx*1Eiq9BeIx* zf$s>t*I;7bhncr0V4trO$q6BL!4+$kW9! zgkxrMiUU(&q2#6iGa|+Qrli_5Zd1*aPO#lKfZ|~&4=YJLR0ySDHD?4Ai z^fUOgb>|6*SDp${pZ=np!nC;{CJg`7|=Hi Mp00i_>zopr04XSZHUIzs diff --git a/common/gtk-2.0/assets-dark/arrow-up-prelight.png b/common/gtk-2.0/assets-dark/arrow-up-prelight.png deleted file mode 100644 index 11508986568cabd7fe944724bc3f926e581b32b9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 323 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRR!3HD+k8e2&q*#ibJVQ8upoSx*1Eiq9BeIx* zf$s>t*I;7bhncr0V4trO$q6BL!4+z|+Ms zgkxrC|3uTef}#@6D_32;3XQ!v zB$*6%d|~{>BkFmwRBOro5{o%cg{!o?-V5K!%d<+)dYiHLa~gYOtbEsMZ^yhVCGn|0 zi}#3|`aZ5+Tf>yDpnqWHthY+%!<`v|L$4lu=6~N&-}T8qExt6RD)tzQ=KK9Rr)@5m z`EgZgzgXPc6wV;sn$N_qk$m3Xi`O7fWn>t*I;7bhncr0V4trO$q6BL!46+0(@_ zgkxrMiUU(;=gvj@|NoEwG`-a_@8_IO{lrH;25wGHOvm%v>ZK(lBx7d$|94kHD(Xb% zx{i}@bFA}b7#M}xrvFvK~Y!rXIqR6jDGz6{r`OR$3H98|Nl?_ zkeHBCu=n$WQuY`@WoBok$MtO;socwA6M!IMSHh`OH?}qdHn(FMY)Om^?}Bv}&8@s+ Q26P^Sr>mdKI;Vst06)}XH~;_u diff --git a/common/gtk-2.0/assets-dark/arrow-up-small-prelight.png b/common/gtk-2.0/assets-dark/arrow-up-small-prelight.png deleted file mode 100644 index 8d24d28371749cd0625411e65ef799601c20028b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 280 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRR!3HD+k8e2&q*#ibJVQ8upoSx*1Eiq9BeIx* zf$s>t*I;7bhncr0V4trO$q6BL!46)zif> zgkxrMiUU*oxw*orKTq#yd8zL`r?vH+_Y4c+o{jbY>-etO_ee|pH{S6l{m9ve z|0nfoY4U7s|JSMe$G&iwapb^^6DLjxB<7}7Gy=iFQ!ej6{r}&S_+L_Tkwgb81J7rj VN4;Gkzkv>9@O1TaS?83{1OP;NbT9w_ diff --git a/common/gtk-2.0/assets-dark/arrow-up-small.png b/common/gtk-2.0/assets-dark/arrow-up-small.png deleted file mode 100644 index ad1a8bf0b4fce4a549bb306a1f1a5a36d9d8da95..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 280 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRR!3HD+k8e2&q*#ibJVQ8upoSx*1Eiq9BeIx* zf$s>t*I;7bhncr0V4trO$q6BL!46)zif> zgkxrMiUZT+XJ>^|{~X=*MBlhL#xd)P_Y4c+9>e;7HGIqF>qtvT{M&8t|L^9F>+?m` zyB7Wb|KGUo?@62I_J`|Rft+X~0|SpuMgJr2T)1$6CEO(S*`qKvHa2^;XZ80gXMS8R zAu+Q?;-B#jE^n=^%05X69zV{1vA40-{m8`3%>t*I;7bhncr0V4trO$q6BL!5n*VDx@ zgkxrCzoEBNAcNca^7tUdrs(GA;^YSpQuO|E%0FH7Y_b`bak2a z%k(d6=bF{mJul>2$(;Mt+3c(Ko>hHm+T(XoYj1tOH`|tH?OE$g&O15H53;{l?X~D) z%baB!Iotn%*F3`)mn^ndcukUN=zMHZ{Od4J$doSvria}t->I(K{D0=ot>4c4$vuCc zWqU_n$ohQ@E@wY5U-=ji_m{2nV-TzV{#gFs?drFBUu|xeTd{>%dx81ZFR5#lfF5D+ MboFyt=akR{0Q-P{iU0rr diff --git a/common/gtk-2.0/assets-dark/button-active.png b/common/gtk-2.0/assets-dark/button-active.png deleted file mode 100644 index 91cab74ad6b430a31868d2e4c141cadfb1dd78e8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 271 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!VDzE)_nK|q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`%M(8U*-+ zxB_WSO)Cuz3k_{k4IOiJZ8HsRGf8bzNo{iwsbj{d4MIRc1~7R=+vgon4_`@;UoeBb z!mizW_U_+*;J}ZcKLzjfIY;OXk;vd$@?2>@#1P7VM7 diff --git a/common/gtk-2.0/assets-dark/button-hover.png b/common/gtk-2.0/assets-dark/button-hover.png deleted file mode 100644 index dacc8181de9ded9b9a0f3941bf1fec8d8f44c819..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!VDzE)_nK|q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`%M(Y6bX& zxB_WSLn{pf3vGQX9X(5JFtTy*v2pOVarB39{XE1G_^Og@-VmdFfg$Pir6{@+5wSsV8P}C`+%ysN`m}?8RQjq z?cTHZ!GoVHrE&>CQ8P~$#}J9|HZZ6<+0r7p+!Iw7(8A5T-G@yGywoD=1f=s diff --git a/common/gtk-2.0/assets-dark/button.png b/common/gtk-2.0/assets-dark/button.png deleted file mode 100644 index a39603852157b5f960789e705634d94180b19a88..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 265 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!VDzE)_nK|q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`%M(>IV3P zxB_WSLn{pf3vGQX9X(5JFp@H|l{U1IHnIhB+0C3d%p5t)oPg}<`eE~d8n{b>{DK+e z6?X03v-iP+2R{#7mBPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(V1Q4E zE09*}xun{8R<-}Kde0^G?n`R93)BjisnzXKtJ|yA07M7X8V{>A9#v~Sq1Jvzt?Qze zp^cW6x0aQ!mR*pRLx`4Bq?T)j;l)Bjs3`ofDAUjMLAmF*b=7jwu5 zfn!!J#j+X_|Euoha6a>rvz4+ctoD0x*?yPIPK(}M)=>`_pFO%NFEZ=8s`e^jUVc|I W?z5kt9*GCq#Ng@b=d#Wzp$P!XM0srh diff --git a/common/gtk-2.0/assets-dark/checkbox-checked.png b/common/gtk-2.0/assets-dark/checkbox-checked.png deleted file mode 100644 index a2fd5a91697a611ad6ad03e9a8a1600527a87038..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 360 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(T7XZ8 zE09*}xun*0Nwxd3TK6R=YB{dfdP1%3lv?{4wa#-uLG_&Z>P0KmE4QduZBwt^tzNfB zz44HG#~Cd{8!bayEh}#=D<3V}04>`kACCBE&ER_dRAYQ$`F%1g7)Et^_rs#ov))!4Ko mclAWB^Y>rs7}#{quV<_g=89tV-`EGVjKR~@&t;ucLK6VHk8`&G diff --git a/common/gtk-2.0/assets-dark/checkbox-unchecked-insensitive.png b/common/gtk-2.0/assets-dark/checkbox-unchecked-insensitive.png deleted file mode 100644 index d24f8ff05c3897e98f862ec75a747acf50f69e1f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 267 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF9ER3x23Dyx%_-F_sa4IX)lF&DEezVGKyugd!yAEm z1WJPZf*G`RboFX$>+0LuJ32dO&U}Abr3ffz=;`7Z!V#UE(7?Ft>;J|F%Ndx}zQJFDp^Az^+-H&&B@sfdfVIDKF!hcW5)*{2D1ZvwZIkpk@Y7S3j3^P6nb diff --git a/common/gtk-2.0/assets-dark/checkbox-unchecked.png b/common/gtk-2.0/assets-dark/checkbox-unchecked.png deleted file mode 100644 index 47e7eb8acd0b1c6fdddebcd293fb02b574be0ea1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 265 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF?@-m)zhc?5_uaSZ?%lGa8YG&|s^>bP0l+XkKiR@Sy diff --git a/common/gtk-2.0/assets-dark/combo-entry-border-focus-rtl.png b/common/gtk-2.0/assets-dark/combo-entry-border-focus-rtl.png deleted file mode 100644 index 85edfb3344fe6222222c25150b7a033f6936b722..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iinIcJ zLR^8gcEeSbNw;N7*T|Hwl_^`N)O>_N+l<>ih1)$HI0#x->*JlP2i?I*jK7@ifH3QJqeRtD;3@O1TaS?83{1OR&dOeX*U diff --git a/common/gtk-2.0/assets-dark/combo-entry-border-focus.png b/common/gtk-2.0/assets-dark/combo-entry-border-focus.png deleted file mode 100644 index 1ec8bbb1f69f2d9837c041e4bf5df9a95dfe3f86..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iinIcJ zLR^8gcEeTKinX%kt7R+JD>WZs&^F_CPv!PVl`G#USFuU1VzX-JIkoOfcCKR0K-Fv| zL4LsuY~c}+-(Hz;ivdOSJY5_^B*K$VL==m2=^1R%GIBV`+IE(QS_rDv(FXL;ZF-U^^1j*=k1 zUw#j%o-U3d5>u0RaI=<|nHfkJI4~^!&0;aTv6QjtYz4!?v>gUp oZu+oq_%+e6mWkQMC(Mk2fm=&`#m+^2CP3{Bp00i_>zopr0BEm62LJ#7 diff --git a/common/gtk-2.0/assets-dark/combo-entry-border.png b/common/gtk-2.0/assets-dark/combo-entry-border.png deleted file mode 100644 index c5964d7f564d32a8a93e5894df6cc6e6a76cf37c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iinIcJ zLR^8gwzf8qRM59j&@)%kGgH^IWY9L_)iGDnwNTOnB1ewe((`n243P*=UJ+3&&ZTFtMbgNjk?F7)8_RD6q2GrD(v^RwatiI% h6*#zV1~b1fL)S~yi<@@)+5&Ylc)I$ztaD0e0szR4K_~zK diff --git a/common/gtk-2.0/assets-dark/combo-entry-button-active-rtl.png b/common/gtk-2.0/assets-dark/combo-entry-button-active-rtl.png deleted file mode 100644 index f93c78992ca2ae53bb57823d7fe5493893aa55f7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iic|u8 zLR^8grlysKhJ}WXxw^KQhPIicwyC6!86%j@048TTd8`Dg<0=XA3ucg4*u7`(fdfB( z?x>%g3exTA;us;M1*me<3TpIb9yYZtFL}YQT{z~DbvBUEiLVw3@?Hg V#53&fxee6B;OXk;vd$@?2>?E_MAQHP diff --git a/common/gtk-2.0/assets-dark/combo-entry-button-active.png b/common/gtk-2.0/assets-dark/combo-entry-button-active.png deleted file mode 100644 index b8fa7aaaae6775f16815a41ed213f21717e44ed4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iisS-( zLR^8grlysKwyB1WxtNx@n6{aQwi$!A86%h>>#X?*sDiyD$S;^de%I~?4}P-9zB&Wa zCO(V#!a#J+K#M~S(c+>AI4&6aNw}ZL`H^w$Krnz*{Az@ysXj^5u4MT4zjTIP318Ae&*pxw{ObcqD^Nr82N=6 Y{1YeqZmj+@2dIg`)78&qol`;+09F4)^#A|> diff --git a/common/gtk-2.0/assets-dark/combo-entry-button-insensitive.png b/common/gtk-2.0/assets-dark/combo-entry-button-insensitive.png deleted file mode 100644 index 56d30a6e8b7f4afcdf2b2fa2331ac8ea6f956a76..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iisS-( zLR^8gp`nw3i31SHnK;Us0onHKW=Ge98? zPZ!4!3CZLcoUE65BqdHQT%aUzP%qy(DV#6ZY?8e890`dBiHlA!Ft8dG+S#Q{I0n?i N;OXk;vd$@?2>{Q8KA`{r diff --git a/common/gtk-2.0/assets-dark/combo-entry-button-rtl.png b/common/gtk-2.0/assets-dark/combo-entry-button-rtl.png deleted file mode 100644 index 4b9c599638429d137b2887291e19304703c31cd2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iic|u8 zLR^8grlFOFfrXBqr8XEz8QDr3*#g<@W=zkGY?O?eN*-pZ91F5$S=&`pE%)n TWA&doKurvuu6{1-oD!M<8i_=1 diff --git a/common/gtk-2.0/assets-dark/combo-entry-button.png b/common/gtk-2.0/assets-dark/combo-entry-button.png deleted file mode 100644 index 96d567d7b9bb851d89756e7e6c19432705333145..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iiWCEU zLR^8grlFO#zLk!irL>`qw2`g0o+Z1P6Ni~2hnW+QeImI@1E`3-B*-tAL4Mcn2M>O- z$i6xQ6w>f?aSV}=Opah>JFVdQ&MBb@0BS2iqW}N^ diff --git a/common/gtk-2.0/assets-dark/combo-entry-focus-notebook-rtl.png b/common/gtk-2.0/assets-dark/combo-entry-focus-notebook-rtl.png deleted file mode 100644 index 9e8beb1ddee55c8d14149ca51cf4c80453fdef26..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 223 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iiWCEU zLR{I+oY>8sIBk45ZG1UxeFXe-nH1AH5(rW_C9sxgM31~K#dHZu6{1- HoD!M<^tnHx diff --git a/common/gtk-2.0/assets-dark/combo-entry-focus-rtl.png b/common/gtk-2.0/assets-dark/combo-entry-focus-rtl.png deleted file mode 100644 index 20a3674a7bdea4b565633a5e34c6e4ff72d25110..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iiqr#q zLR=ZN&DhNx+0C3dth_j^yt&;|xZP9b$~MZCZ;&hBC|9vbwey@>_ocNlQUyRQhMq2t zAre!QEtpxCPd7A>32I_+?Pjrv_N-)TTDybsV3?J`k(<&Reg$5%ZD5pB3zlTqn(O)H TsIlB+pk@Y7S3j3^P6a8w7oeZ9?elF{r5}E*DIz`3+ diff --git a/common/gtk-2.0/assets-dark/combo-entry-insensitive-notebook-rtl.png b/common/gtk-2.0/assets-dark/combo-entry-insensitive-notebook-rtl.png deleted file mode 100644 index be6754e5105e61f138f388048cfdc09e6b5e4c70..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iiqr#q zLR{JOEZEJQILw@cOdW+xorKIBg-wCTN!`Rj-NaGb)Is0G!NA0U?efVupcW%f7sn6@ z$z%&=*5$WZBqUfB9W=BU&xwi5Ye?YEb=bhl&y#DmDSpBqjVGZ882BfbF)~~Z(3!RP StmAf|ZU#?RKbLh*2~7akmOMNF diff --git a/common/gtk-2.0/assets-dark/combo-entry-insensitive-notebook.png b/common/gtk-2.0/assets-dark/combo-entry-insensitive-notebook.png deleted file mode 100644 index ae38fe62a51e602d1ffdeb890f23cb731b39b48b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iinIcJ zLR{JOEZEJQILw@cOdW;HoPEak75uPltdM7ulxWuM8EDIYN6T1|eYB@S<3p+MX{2SDCDW*-g?Y}}C02|F!|pXCXv<36%1PP3Lh;Xvn5PFA_$Q08G2HXB VdUUGV?+Z{ngQu&X%Q~loCIF0;Kmh;% diff --git a/common/gtk-2.0/assets-dark/combo-entry-insensitive.png b/common/gtk-2.0/assets-dark/combo-entry-insensitive.png deleted file mode 100644 index 9d266609283a99004bb0ce8ac77684dd51e4b9e3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iiqr#q zLR=ZN&DiuT*v*_c%pCc2E&22;1&!?mP3+Z-?9`0yw2bZbP3#R!99HDK2HCCa>Eak7 z5uTjz){dE#U1Cw!)CCR=iMxcF_DXivW^`a5&i(`m{ zWU>V_>+EsO;xZ{&{h61EZYUTPB8uayntl?Y=z# PYGv?r^>bP0l+XkK|FJs( diff --git a/common/gtk-2.0/assets-dark/combo-entry-notebook.png b/common/gtk-2.0/assets-dark/combo-entry-notebook.png deleted file mode 100644 index a6354b9b1ad4cd14f26dbe3463ce655e6ca3a4ec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 221 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iiWCEU zLR{JOEZEJQI8B{6&78PQ9feHnmG!Na4Xl(6thMy4wDl}mo+hdT73+DrIEF}sCkw2N zVP)l(P~u@-*wDDpQ{dpdjw5jvM{WvFym8dy4Tn2Rw282s8bgSxx>bnWm299+22WQ% Jmvv4FO#sOdIUE20 diff --git a/common/gtk-2.0/assets-dark/combo-entry-rtl.png b/common/gtk-2.0/assets-dark/combo-entry-rtl.png deleted file mode 100644 index 6cf30c155e3e151047b0297bc7a3238658a1ea25..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iinIcJ zLR=ZN&DiuT*v%Z-&73%l?Kq6>IZW(%bul=Q8X^{lk?EVcD4@2!7k2GnKj z>Eak7A(^~`o3(tIu>ps)b3Bd3DT{bS;$hfXGrw&q_((N=wgDThG#t#jF;nOV88A zF+?IfIpOtAZdP%LO-(%u9U2n544Y~>I%_LCHc$L}sq4tOGN%nUvmPWeF$n(gQuj4{ R@DQkz!PC{xWt~$(695V^KqmkI diff --git a/common/gtk-2.0/assets-dark/down-background-disable-rtl.png b/common/gtk-2.0/assets-dark/down-background-disable-rtl.png deleted file mode 100644 index a46966865feb48749e5163b8b7f84a2d883dd5d4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 200 zcmeAS@N?(olHy`uVBq!ia0vp^AT|#N8<337)>#0gSc;uILpXq-h9ji|$mcBZh%9Dc z;5!1sj8nDwq=ABxC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6eOdb&7< zNK8#mNk~XAFev;{Kew}!QT~9w^{NRjt^ex{g%*FXXMUV$$kx{WLu9i72>ea;5=;7F l?%wfmzX~(6vb0$%!@o@KzV+Lp_W=!L@O1TaS?83{1OPm)I~4!` diff --git a/common/gtk-2.0/assets-dark/down-background-disable.png b/common/gtk-2.0/assets-dark/down-background-disable.png deleted file mode 100644 index ee0cf3caebdb63abdc3b8c724127d6342b52df22..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 209 zcmeAS@N?(olHy`uVBq!ia0vp^AT|#N8<337)>#0gSc;uILpXq-h9ji|$mcBZh%9Dc z;5!1sj8nDwq=ABxC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6f3dAc}; zNKAcu%8<9gK%nj7`}|oC82C*a81_66X5=|@cf-Xc<*~a9n2q!6qPE@T6fu7HI;88; zoBsQY89uO0SiEJH{Q|BD-8a3zvaNdcl0o8etB}i&E9Z@YCNp@t`njxgN@xNAnq)#0gSc;uILpXq-h9ji|$mcBZh%9Dc z;5!1sj8nDwq=ABxC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6eOd%8G= zNK8#mNk~YzU~2HYzPq=bQ9j|2w)LtBA+7r*B>xF7{9u1LapL~{@{fYg96E5|z=!ru q)yNO;-&;1-*LxZn7;H!k=3rpd5h#j|)qf2%lEKr}&t;ucLK6UyvOk{y diff --git a/common/gtk-2.0/assets-dark/down-background.png b/common/gtk-2.0/assets-dark/down-background.png deleted file mode 100644 index 7c47ef49706a373a7abb3d532f14f464dd036235..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 210 zcmeAS@N?(olHy`uVBq!ia0vp^AT|#N8<337)>#0gSc;uILpXq-h9ji|$mcBZh%9Dc z;5!1sj8nDwq=ABxC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6f3d%8G= zNK8#mF)#jgzJYzkpC9K6zFsPHQ>*EkaBzjwCs8A(74bYkptD2tZ@R$0zrPikl^^S} u0fE?5`TK<{{~kSXqT;o@u(K935HM_bEU3M`SsNv zT!FM|_hr?t%PQR$m0M3Lx19u$%}14+k14ktQ|-RMZsx>c;mTp@#_yZK@0-c*o2Ax$ z>DmQ`D?pvxB|(0{4BkGzH*Vhg`t|FdGr`Yp1BJakT^vI+&cB^x$kbrKabz9q7N%{V z{-6KVaOhpawH{7~MH?47F~nZZJ^cKI#j>S3ZB^@H1j7XO|5~&v=pNTf_5~X^<<8s8 fICt~S9S>Purb=I9o_K39&{zgfS3j3^P69m;1mwzBY>=%QcaoM#8r<>2Y! z7$R{wIU%}OoXt0VHJGY*Ox@GSG2)lxdWr;MBQu iYGWy%4U0b;1H)cxwffAZO^iUZ7(8A5T-G@yGywn#=tle( zA9Vw$*Ur<$F+}2Wa)SMLdA55Z1|bq!2OB;ZwVn3jNI3gJpi}+$2hPsr_B@p*_FYZ3 q=n)bM?FbN>dFsG6ez~Ug%nTwXezV2e=C%P%V(@hJb6Mw<&;$VPpiZp- diff --git a/common/gtk-2.0/assets-dark/entry-background-disabled.png b/common/gtk-2.0/assets-dark/entry-background-disabled.png deleted file mode 100644 index fc61b9445963d86687e5facf0cdd10b0dd06976d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 154 zcmeAS@N?(olHy`uVBq!ia0vp^Y(Ol;0U|59*B=E^EX7WqAsj$Z!;#Vf4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1UVJzX3_ sB&H^(m>2&#-@s~+C@eEoqDF{e_i4sOto@hmfJzuVUHx3vIVCg!06ZBd`v3p{ diff --git a/common/gtk-2.0/assets-dark/entry-background.png b/common/gtk-2.0/assets-dark/entry-background.png deleted file mode 100644 index fc61b9445963d86687e5facf0cdd10b0dd06976d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 154 zcmeAS@N?(olHy`uVBq!ia0vp^Y(Ol;0U|59*B=E^EX7WqAsj$Z!;#Vf4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1UVJzX3_ sB&H^(m>2&#-@s~+C@eEoqDF{e_i4sOto@hmfJzuVUHx3vIVCg!06ZBd`v3p{ diff --git a/common/gtk-2.0/assets-dark/entry-bg.png b/common/gtk-2.0/assets-dark/entry-bg.png deleted file mode 100644 index 4d2e72f95d7be2b780e61f2af853808f1b8ed998..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 297 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!3-oX$H;yMQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQznXjRSl_ zTp6^@ILsV4%p5t)oOpH2`3-IOjcf%BZ3GN$1&r*JbS;$hfXGr!*HTT-QcKTLThB7Y z(Ki;TU9cp`FZdlgkkN{`1C;dkba4#PIRAE%Ayb0^#}U5jZK7*F{J;LI;n2H;YdxF} zpKlZ>A6V{vdqS~bdA_Fe!%5nOF4`UOwSl3U{OzL5KCIWzY}+Zum}NFwNPnd<_w)-s So%?~tGI+ZBxvXvC+{_BsI2~U@A%jouT qa-AZP)_B)Y@kHsgG~WfWSM;aO;C!~DF!V6c4hBzGKbLh*2~7YWbY&O- diff --git a/common/gtk-2.0/assets-dark/entry-border-bg.png b/common/gtk-2.0/assets-dark/entry-border-bg.png deleted file mode 100644 index 9b90b6dc4130b56dba997109ec99802c88981f42..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 295 zcmeAS@N?(olHy`uVBq!ia0vp^GC(ZF!VDzCsuXttDdu7)&kzm{j@u9Y9{{* z5LX~As;w=gVlJU$E}?BE1w^_Ql6scvdX@~@X1qG)O1c(GdO&2UrDv(FXL(~*)o+lk zB|(0{3_N@#W##3SzaI)NxBwIk@pN$vkqA$o(a9u{wyyHOJlDUuvrZbUj%;A$lCTXk zI%As9z&1dj*^>bP0l+XkK{Cro0 diff --git a/common/gtk-2.0/assets-dark/entry-disabled-bg.png b/common/gtk-2.0/assets-dark/entry-disabled-bg.png deleted file mode 100644 index 99ed733811e23558982a3b9b1247c1e982b336ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 248 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!VDzE)_nK|q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`%M(>IV3P zxH4#)v70$@m^t$4TJq^x3L4u98rusRI|!QCs~Op<8QG~B+i4lw>zmjcm^dsJ4|@yL zXzS_X7$Om#oDlh&k1fyA;D-t4p@vt9ZL&=q0!IrtJC~pSAke99&QrN!Uu@%%(@7sZ kn~JaS8yhG)eOSiGkjG`6|Hm!h6VMq@cItiOOs+%~dn>ebQI%u0XXq!6dn>ZMlI2^bi z_7AAn#?!?yMB;MtgBjoD+2YI$zOWb_XgFcoww8xu!O;%_o$ALwFm@id=c!z=Z*G^6 n(B7_sz7M5r+e$kGbQl=8#B{!`d{=q{Xbyv?tDnm{r-UW|GwDga diff --git a/common/gtk-2.0/assets-dark/entry-disabled-toolbar.png b/common/gtk-2.0/assets-dark/entry-disabled-toolbar.png deleted file mode 100644 index 83f52eedb46d32f19200692377dbc655d9785854..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!3-oX$H;yMQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQznXjRSl_ zTp6^@xV21WHH~C7jb*ir<+O|ywTx9XjZ`&_G)$c|O&vAO95l^-z8k@;dC&JH&AqVJCXaNM&UP| zozgm4qHO1R|E<mdKI;Vst E0P;0YZvX%Q diff --git a/common/gtk-2.0/assets-dark/entry-notebook.png b/common/gtk-2.0/assets-dark/entry-notebook.png deleted file mode 100644 index ad5fba6feb2527bfd71419c79bb544b808b592dc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 246 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!VDzE)_nK|q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`%M(Y6bX& zxU!o$ahf`DnmKZsIdPdfa+x}DnK=rX*bA9BDC=7*8(1kDSZnE7Y3o_~F+2(Z>az26 zaSV~ToSYC}EY9X9Y7ioAaDd@*Sz9j;$Apsw44uah7ch1nx8|u_u`jmg$mf(5Wevp< i=>{9lH?}`G$;OZxsotj{)KUjDiNVv=&t;ucLK6Tw3Pp+l diff --git a/common/gtk-2.0/assets-dark/entry-toolbar.png b/common/gtk-2.0/assets-dark/entry-toolbar.png deleted file mode 100644 index a777bb098f865448b0ae2aa068732c92495c64e0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!VDzE)_nK|q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`%M(>IV3P zxH4#)v70%vn>le9*>M;Hkv+GTsjQ}vtfsN777&@rYMaVw8LMa-scITsM`nn4P?*1?7oW^IeTI364<5bRVx{eh!%xj9eeihXmtj%-diVb)UY jGTm^)*F(-9s+btGk9bd7by>ItXcB{`tDnm{r-UW|1!YI_ diff --git a/common/gtk-2.0/assets-dark/focus-line.png b/common/gtk-2.0/assets-dark/focus-line.png deleted file mode 100644 index 8c7fe48efd2086e43bb991de3191b6306ebb6c16..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 164 zcmeAS@N?(olHy`uVBq!ia0vp^tRT$61|)m))t&+=mSQK*5Dp-y;YjHK@;M7UB8wRq z_>O=u<5X=vX`rBFiEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0wDo-U3d z95a)BG;+gI9oSzqaV|Z(%12_AgoMNfE~6x4VTOsXSbzU@N@WKsX7F_Nb6Mw<&;$UR C#wyqV diff --git a/common/gtk-2.0/assets-dark/frame-gap-end.png b/common/gtk-2.0/assets-dark/frame-gap-end.png deleted file mode 100644 index 603e034a82949ed7cc38d80c503bd19c575a51dd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^OhC-Y!3HG1DAjiXDVAa<&kznEsNqQI0P;BtJR*x3 z82FBWFymBhK53w!WQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc~)Ef}Spp nAsjQ4uUy;w=lp>K2N)PQ{xVLMa6ZQYlw|O9^>bP0l+XkKSIH-d diff --git a/common/gtk-2.0/assets-dark/frame-gap-start.png b/common/gtk-2.0/assets-dark/frame-gap-start.png deleted file mode 100644 index 603e034a82949ed7cc38d80c503bd19c575a51dd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^OhC-Y!3HG1DAjiXDVAa<&kznEsNqQI0P;BtJR*x3 z82FBWFymBhK53w!WQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc~)Ef}Spp nAsjQ4uUy;w=lp>K2N)PQ{xVLMa6ZQYlw|O9^>bP0l+XkKSIH-d diff --git a/common/gtk-2.0/assets-dark/frame.png b/common/gtk-2.0/assets-dark/frame.png deleted file mode 100644 index dd4b00cdadc6c06d2e362a9283e07760f896c82c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^AT}2xGmzZ=C-xtZVlH;_4B_D5xc$)o0g%gC;1OBO zz`%C|gc+x5^GO2*B}-f*N`mv#O3D+9QW?t2%k?tzvWt@w3sUv+i_&MmvylQSVhivI zab-7i($=#)&Qfy-C?e$P;uyjqoBXGK!p4UTWnca)Fq~@S?Y0nKKN%>?;OXk;vd$@? F2>>d6E;9fC diff --git a/common/gtk-2.0/assets-dark/handle-h.png b/common/gtk-2.0/assets-dark/handle-h.png deleted file mode 100644 index 6d863d5d408396228b89336f28864e9956a742ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^5(yEr+qAXP8FD1G)j8!4b7Sx*mVDrE3<^>bP0l+XkKbWka$ diff --git a/common/gtk-2.0/assets-dark/handle-v.png b/common/gtk-2.0/assets-dark/handle-v.png deleted file mode 100644 index f8f074a3fd2c15f7a30c79a0ac546230d8a5f612..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^Oh7Eb!3HER{MNY%q*#ibJVQ8upoSx*1IXtr@Q5sC zVBk9f!i-b3`J{n@k|nMYCBgY=CFO}lsSM@i<$9TU*~Q6;1*v-ZMd`EO*+>BuNqM?B uhH%VGPEcSsU~5(Xo1Op!QUOOR7#Q~HvT1PmcVq%pF?hQAxvX==gDl-58 diff --git a/common/gtk-2.0/assets-dark/line-h.png b/common/gtk-2.0/assets-dark/line-h.png deleted file mode 100644 index 9e4900931de2bdf1c3bc5f165043485eb0db57e8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^Od!m`1|*BN@u~nRmSQK*5Dp-y;YjHK@;M7UB8wRq z_>O=u<5X=vX`rBFiEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0u_o-U3d n95a&>8kpR2ZBPH_0Rje2Hpa=H*6xx4$}@Pn`njxgN@xNA5ac9z diff --git a/common/gtk-2.0/assets-dark/line-v.png b/common/gtk-2.0/assets-dark/line-v.png deleted file mode 100644 index 5641ebaafec67c655b19c4368df205e5656b3b3f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^Od!m`1|*BN@u~nRmSQK*5Dp-y;YjHK@;M7UB8wRq z_>O=u<5X=vX`rBFiEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0u_o-U3d n95a(IT-*HT`~e_1!obQPuE99PxPS3Xpge=8tDnm{r-UW|g77F* diff --git a/common/gtk-2.0/assets-dark/menu-arrow-prelight.png b/common/gtk-2.0/assets-dark/menu-arrow-prelight.png deleted file mode 100644 index 4a019f7c4d72be4ef2ef976b68f663905e3fc0ec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1c!3HD^Kbl$tDVAa<&kznEsNqQI0P;BtJR*x3 z82FBWFymBhK53w!WQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc~)ES)MMA zAsjPfdky&x8HhOZraa=2nXuN$K!NR9-qW_Jk9cAf>}4MDli;)SreHe($H_T{qg&I)v`|o*ydfn`glU&q>U>-ynVZx cYku4wW^NVdJtc>^LAEk@y85}Sb4q9e0F1yoc5!lIL8@MUQTpt6Hc~)EC7v#h zAsjP(dp2?%G7xb+&;9pYnMv~!Q5i4wmnvclRRSiP{TYCZ3?<&P=%6{l&} z8y{fW^&?~%7puaaPpl7DzBqg{Z_2M-L1P+nfHmzkGcoSayYs+V7sKKq@G6i|_OfKQ04 zTF)ib&af||R2{hvPT$u)*8io6WT3~x9N+?vm_;ak<)Lw{$j+1uCoVcq@3 z*LN!9gx9{Fqj+PTmAJqSJ7WQc32Y69&ddhS_?fPARHUtWzYJ(RgQu&X%Q~loCIGwy BbwmIF diff --git a/common/gtk-2.0/assets-dark/menu-checkbox-checked-selected.png b/common/gtk-2.0/assets-dark/menu-checkbox-checked-selected.png deleted file mode 100644 index 911d33a48776d220b16a1d543ea8085cea532a12..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 330 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4uGBwbBK{D2g5v6E*A2M5RPhyD+MT+RZI$YKTt zz9S&aI8~cZ8Yn1P;u=vBoS#-wo>-L1P+nfHmzkGcoSayYs+V7sKKq@G6i`ukfKQ0) zpRbR>=*i!2k0D5{`;u2tDbYOgfG4pz4ThbifiRtZfv}8 z_vo#Ar|;aq`Q+iF7Y`r5eE973j)57-=u&F?`@W-AHu3-wK-E z=gP5cJDO-ME6Z`lN=}aBhMzV+i$!*>jN_Zbu0e0Us~XGismbL}J8B&!2sEC-)78&q Iol`;+0Dy6f6#xJL diff --git a/common/gtk-2.0/assets-dark/menu-checkbox-checked.png b/common/gtk-2.0/assets-dark/menu-checkbox-checked.png deleted file mode 100644 index bb965d336b1fdd49539af8dee916fd0dba2de570..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 330 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4uGBwbBK{D2g5v6E*A2M5RPhyD+MT+RZI$YKTt zz9S&aI8~cZ8Yn1P;u=vBoS#-wo>-L1P+nfHmzkGcoSayYs+V7sKKq@G6i`ukfKQ04 zTF)i5u1l)jm({v2K~dQ{wTAs_O$XK5PO5dDQ|r126jv`^rCzf`z43rX_FPSuSWV9q z&7cx3V|y)YKP_8-E&C8Hw*+kiYi(nDZEHVm+ko(w{9ZsS*h+%@f<3*wA3c7O@YOL9 zC=%@H;uyja9ed7O%)vl}<)XM#i_$-vH}!Mb`i=xH-nV($ng?g4HZCdZ+|0J<&{g%F z!Qa^$%RaS)vhy=7=DW+xa%k0OW|o3>y?NnNqFsaDd_Q`FKkpA8M}$so%M_sT44$rj JF6*2UngHO=u<5X=vX`rBFiEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0v=0X`wF zsTEBb)h%h2O&o^S9LBaB23D!nEvZ$_4BDn?)h!h#w<-Wta+L)61)G|g*Vfhd_RXAW z+7h)HD5~M<;uyjqn;bBoljSn2gqL;00@KDswvKl*91LTbjFwq8I`X9aGht)c5U$^{ TeYwagpdJQKS3j3^P6O=u<5X=vX`rBFiEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0v20X`wF z|Nr0p|Nr*?|1W=je)#hz5Iz6@^U=>QkN^LC3?%=4d;It7z1e-IIyc> eA$Lw46T|OS5;I(kzi|RJF?hQAxvXO=u<5X=vX`rBFiEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0v=0X`wF zsZ~vBRZXeYE$oIioJO|n2G*(7%_-H*4BBQu#_gYdRzQ^;B|(0{5mC_>E?s{8#&70V zPoS8Fr;B3-L1P+nfHmzkGcoSayYs+V7sKKq@G6i`uMfKP}k zkZx%BAG&IlM*ns7?u%;umsGkgt9D*i?YXSlby2X7qLycpmS>8NzLk!tQ{~*oR-mEMB|(0{3{1=lib~2sLBS!> zF)^{RwRIhxJrGcHNP06+S(2xVV+e;V>%nfOMh6kr1Im>y8#OoQ{r|r(ZPJrpQQJ#* zs(7}sCrC}QVemOA%8-2T#_x;eXCg1IUbQ&&a9}9A9fW!CpLJcljWJV#j~c^vmBX?H j)~cSzcILjV^!vol$ii)yaUpyL&^887S3j3^P6-L1P+nfHmzkGcoSayYs+V7sKKq@G6i`u4fKP}k zkp2$>Xa0YC`v3dG|KA^h(c{10p8Wj|M34S{2eKjP2}tnUqkm8?TpYwu>%OEv;j+Pm z%Z3v#$1cAfxBPniit7n0t|hL#_UOgK$1fiO)x1jm_7P~GL`jfeFary#wT-Qv{nTmG zXD(f~e8tLDkDomK@$;8@;d?%ynp960#}E!#)`RR!2N^_IH!OEs>3em1=DT`#&q-U_ z|J`~o?l~!q_r)xgY=+oNObPRp>(<|{KB8wkFZAm%OXhc>Uk|9-#)W=8s9D`J|9ANj wwPJ=dllTr8d2VLXQTLp5^PSC{ZI@N*4+sc|8#71m09wf4>FVdQ&MBb@0Bq>HQ~&?~ diff --git a/common/gtk-2.0/assets-dark/menu-radio-checked.png b/common/gtk-2.0/assets-dark/menu-radio-checked.png deleted file mode 100644 index 6bb53d98bee0b47b45fe3f75c3db0696e209a8df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 384 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4uGBwbBK{D2g5v6E*A2M5RPhyD+MT+RZI$YKTt zz9S&aI8~cZ8Yn1P;u=vBoS#-wo>-L1P+nfHmzkGcoSayYs+V7sKKq@G6i`uSfKP}k zkalR;Z#?side;@To(pPS7gc*MsdQaZ>%OcCL|qrvx-O}AUjmXq5w)I+YCv`mkd1*F z_5%gg8xLrDrf7PmYI!7Sc_eEaSZkX&YMVM~n>sIA74`&ZnM6sDUoZm;tF?`-o&D5l z(`PPSwtU6PRga%M{qggcdf|IMpqf-q7sn6|S=NJ`OpOd8tOwM+r^IGV=>IK$$!F4* z;}7j*!aOG}V=wWYBZvU diff --git a/common/gtk-2.0/assets-dark/menu-radio-unchecked-insensitive.png b/common/gtk-2.0/assets-dark/menu-radio-unchecked-insensitive.png deleted file mode 100644 index 74dad141d7bad2fea1252d278a4a3d47a2979fd4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 434 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4uGBwbBK{D2g5v6E*A2M5RPhyD+MT+RZI$YKTt zz9S&aI8~cZ8Yn1P;u=vBoS#-wo>-L1P+nfHmzkGcoSayYs+V7sKKq@G6i`uJfKP}k zkZx#bNULd1u4qpvZBDOgPOWWCscuQFZb_+WPOEB4t8GoKX%@0_6|r&^vvC)*b`i64 zbBIY5vvqTbOLL4*cZyFB%c}^>F9(tl1y$ksm8n(DOu80f1?Axdm8sQDY1J)E+Gb2T z<_tP!4BF;E5uo7=+Ca9cUy{Q`pbNB0g8YIRn3PpiRU;y!lT%Vsi;9a&N=iyADr=gW z+uGVYIzgbTYtq!IQ>V@J+Z6%|l>$!}#}E!#(}SI2O$q|67ucum*t%jZo2pUE=l}K* zGUxAf?~i?c`Ht9$kgpbc*%tP_OaZ({Bx89t>=(|@xb%Wg$B*~Vp+jdqCc6GP#4dJj zk!<7_(=PLmZECzTqzm1y3pE(cH*~qa->cQf-0Wr)^AAR^9Kn@(oh?6sb~AXo`njxg HN@xNA(-o9l diff --git a/common/gtk-2.0/assets-dark/menu-radio-unchecked-selected.png b/common/gtk-2.0/assets-dark/menu-radio-unchecked-selected.png deleted file mode 100644 index 70c69565f1ba5517a8dbdcf7e22073cc94e02eb0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 443 zcmV;s0Yv_ZP)T*OQpa%2!Ds^-Pm!2`)a0C1b~4gq!(*3Z3O+v8WQ2z$Nuj;p9MyceyP z84bt(0|3}LBzz+EQtRbdpdt4j#sA<3`oV4-dQ;UU$ttg~)F3HX@4LDM;6hkSZ#N_LBNKTVhWZ)+TQV7$2u<_3|GPJizY(loUgmxPTRe^u|y_U#mv~@-L1P+nfHmzkGcoSayYs+V7sKKq@G6j0HG0G|+7 zAl=Z=kXqf6T-lUX-I7w-lwREe=5>b81aRN;qQ~(VDGMIEN!t*OY zg4$+`I_3=8W(?YB?*EOYI#tb8=aYh!s`phoFVdQ&MBb@07GjeasU7T diff --git a/common/gtk-2.0/assets-dark/menubar_button.png b/common/gtk-2.0/assets-dark/menubar_button.png deleted file mode 100644 index 4f70d6f4f145d5c511f5aa5db8d95b512cefe6ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^l0eMQ$P6U4SA1Irq?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`)(%1_k(p txTPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkL4Z$) zYiea%QcZJeH4wD`$rKO+ff%&S#BDt!>^#ELih$x(^x;Tb#L?;W(|Nic-2_xJ4(A8mU!xCOF1+A8nh-+NIUXb9gP2NC6eedb&7< uaLi0j00HyjU+43leVN|~1f7h$3=E!GO#dB|&YcD-WbkzLb6Mw<&;$TKuPhS) diff --git a/common/gtk-2.0/assets-dark/notebook-gap-vert.png b/common/gtk-2.0/assets-dark/notebook-gap-vert.png deleted file mode 100644 index c1c4cb1a77cadad9c9e193778def52f2543e0f2e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^OhC-S!3HFkynkm2;uJf1hHwBu4M$1`kk47*5n0T@ zz;^_M8K-LVNdpBXOI#yLg7ec#$`gxH8OqDc^)mCai<1)zQuXqS(r3T3kpe1`@N{tu r;h346(7@zYX1x4A4-ok9ykKBZu3&81q?;OXk;vd$@? F2>>d6E;9fC diff --git a/common/gtk-2.0/assets-dark/null.png b/common/gtk-2.0/assets-dark/null.png deleted file mode 100644 index d82fb34f1dde8a7f6f3cc59ca4b97832e34d4a87..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^{24nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1S9JzX3_ lG$tk|NU$zW5aCf`U|^oiz<6_$jyX`0!PC{xWt~$(69CbvBBB5Q diff --git a/common/gtk-2.0/assets-dark/plus.png b/common/gtk-2.0/assets-dark/plus.png deleted file mode 100644 index 754064ae4dedb76f2616064fb3aa266a5d9b7a15..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 254 zcmeAS@N?(olHy`uVBq!ia0vp^+#t-t3?!qQvP6LtbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkdVo)e zYid<95T#VNq*gaW5QDavxUGkTokv)DVR%{*P_U}LE3Mh=08k5CNswP~d1ck-FF*c# z&E5bMG52(F4B?1Q4!FCw`g<57+xIP7wv;fpI6`SKyAH%aaE*g2B_(&t;ucLK6Tuq);gU diff --git a/common/gtk-2.0/assets-dark/progressbar.png b/common/gtk-2.0/assets-dark/progressbar.png deleted file mode 100644 index 3a8076b8ae2efc29918e9a285321400a10539b49..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 267 zcmeAS@N?(olHy`uVBq!ia0vp^96&6`!VDxIuXC~kQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#T$MY;h# zA+A7LrSqbC=S8)iOKROfbP+^$LD=Zz@y3nwrmZDJj36GiqqVB;y~VI@O1TaS?83{1OURgcyqV(DCY@~pS+B{tx zLo_BHy`ac<$U(&Q;_vN>Hf2vwP`lcMGT&PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(LV!<* zE0ET1*sneHs(R-U_0AjW-DlOiFROK&Q|rB=+I3Z>U~$$dM>GTomcC+ zq}F{wt^1N%&t;Ixu8V42m({v2g4l)2)CyMsMKto4X<2z|S^4VdTPZgM83FB3C<*cl zX5iuB<<-;E*Eeu?_wexaDl950ZfR|8>+XSooAxsg0@W6Hx;TbNgy;5$3pFV4upYd3 zR4l;c&i`p_ETuBv+fyDoCcNoiBE3}Rmc|#=jN_Aj$7S}Px>I?<+*tkMYjM-glVZOc zSI4q)W^$Xb#kR53w05uQi0&wP@2xHL@q1*LP4m+0D~>+;e)+@96@mPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE09)cJEz=zQE|d$^`49BU6<6mFROK3R_(q7XRCEzQtQ45CV>oeq+Ym8y>Pik!BQE!kd~~TF;%oaPi}(&tLw%bb2ubs370d z#W6%elJ%e`-ys7527`39+zAc;|8Ev*Hag+q&ZcjE26gMP!7 zT~Omxp~|pzrB;e&@?tK|iG>Fg85&f5B(nKutg1^YU%>sHVZr@NacddAZB^NPo#C&P iNXNA0>34tu^Kb5I4TJW&i7$XwGkCiCxvXPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(Y=BRQ zE0E4=XhSF|cAY zuwv1*3@@sTEUHYYYD_9`NUCf|tY}E7Zc3|eV$d;51uCv-X3#dBA~IzG&;t3AAirP+ z9$sD}BV%7b|Kj43>YAGR`lim#p5ETRi4!MHnlw{yd&Cl;(lSpM#}En0+=CZ|niK>a zF3z6dwdhe+P}1-J^JgA5u&LzR-ZQ&y|4GTNGI=Mj#2;Hy-fGP{`Rhqi*+r*CjCU4X zJ$cnOnTnKlny1Wu76ncADgiyPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(W`IwK zE09iWXh^JV%V=mwt!_!FX-=zdNv&=IGJvGEZ-lmAn2v9FYBf+CDALSkV8v=+4I=fd zSoAC+imD=uDw8W4lgb;CDjE_i8i8tnh(X&7Oq#+NW*;SAy#ZRLR1)MD%pf8v790}V z*wlRBz`?WU&R@QA<;Kk?PhY)${pRDR&!4}1`Qm)ZPwr+wkeq%XPwQJy)RDc#dgZ%CQ*<%z14n(q?v+pQOFZhtmO g^y{vxN1LtdmH7o_?G}Wc0y=`h)78&qol`;+08Xo)S^xk5 diff --git a/common/gtk-2.0/assets-dark/slider-horiz-active.png b/common/gtk-2.0/assets-dark/slider-horiz-active.png deleted file mode 100644 index d8b744a7597c07af92d3bdd05d053977d3ab3a84..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^G9We!Gm!LHDLfNMF&8^|hH!9j+BusRa0h zxB_YIhN~)*ZmacNQtQ5?+H*<0`!bM$jAjL2;smPWE(!7rW?*A)@96A$^7PqriSIKf z0)rU|DhY9xtmkbK{*icMCSKo`~&z@Q$e{U3tgt#yc4-<;D|M-{O7z dwm{{qAVZLVp`-VaNpe8_44$rjF6*2UngB?lRW<+s diff --git a/common/gtk-2.0/assets-dark/slider-horiz-insens.png b/common/gtk-2.0/assets-dark/slider-horiz-insens.png deleted file mode 100644 index 106d14e34354a63fe35c19303b83f736d21ad973..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^G9We!Gm!LHDLfNMF&8^|hH!9j+BusRa0h zxB}_W&`?j$+~CNBkcfnk@I)vB$cCYFXNy&U>bOgS{DK+S*xNfgyPiCK_FUro%!xo@ z6Hgb%5RRG22@6BusRa0h zxB}^hhE|=-yYWs2OS$oc i)wg&bzb#NXE65NeVCd+5WRe_EKZB>MpUXO@geCynd{!<1 diff --git a/common/gtk-2.0/assets-dark/slider-horiz.png b/common/gtk-2.0/assets-dark/slider-horiz.png deleted file mode 100644 index e0f6a2a475a5a96ac735a007c4d01bf3ddb00567..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^G9We!Gm!LHDLfNMF&8^|hH!9j+BusRa0h zxB}^hhKAhSNu||oWi{=k)g3^xyt=)ts=W+Ig3;!S2X6t@ahC-71v9X*w|8`QJ$d@< zxy1LG6M@1eo-U3d95a&>7O<>1dykjZnz`}Lo4W-YSWm?EK6uAel&-wvcH^B4mU80> it8ei>ep{e&R*)e`z|hhA$Rs(Seg;ohKbLh*2~7Z$wN?TE diff --git a/common/gtk-2.0/assets-dark/slider-insensitive.png b/common/gtk-2.0/assets-dark/slider-insensitive.png deleted file mode 100644 index e8498324da5c2da2d1c56b65156206fe409051b9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 390 zcmeAS@N?(olHy`uVBq!ia0vp^{2PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(Y=BRQ zE07Ki4K+4Sv$XWIuyr@LakH>-wXktFw{|nLb~UkbF|l$6B2y5<#n{rt#N64$!pX$K z5l9+XIvZHJ7+W}LSi5OjxoTOv8e2Fj+j*+kdZ^fXYFfMfi{0f0v_QHf$S;_Inbpw9 zxV*fw>iUhFw{E|B{rda&pFjWp1A>}LbqAob5>FS$5Dr=2gWW<+3IePbx*x4JX>H}w zfAhaSt*_7d`GX5S-EWNg*_P*Z&zfm!(e3PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(T7XZ8 zE0AVr_|LFvm3sF@wf;*gU6<8>sQaR7&qdYlOKM%0)Ij7#pdgT|4rBwBff+#cAO%3w z14JM#PYM0Gl?yYGU+!_(EzWt~$(696HJ BqqG13 diff --git a/common/gtk-2.0/assets-dark/slider-vert-active.png b/common/gtk-2.0/assets-dark/slider-vert-active.png deleted file mode 100644 index 7f8b3aba0e621ec2d62f0b69105a9a7386fe3c37..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 248 zcmeAS@N?(olHy`uVBq!ia0vp@KrF+;3?x1LH41?gbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkN`Oy@ zE0ET1xT-Sgwp!06weCx*J(twGF9R9KXjbqgPM|vOk|4ie1~&Hgj?S(pPoF)P_&#$Y zP*~s7#W92PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkN`Oy@ zE07Ki4fXWQ4US9*iAV?uPlPgnY#2IswpazIj=LntFPMRiy}hHe>&eq+&n3RkoCp-w z_jGX#;fPL7IKYr)%zUuq+dJKas;}>26RN(yyW89~Z*R5rjJ|t&C4E+xSr{cSFf6Gs Vbew;0i8fFxgQu&X%Q~loCIBsjPXhn| diff --git a/common/gtk-2.0/assets-dark/slider-vert-prelight.png b/common/gtk-2.0/assets-dark/slider-vert-prelight.png deleted file mode 100644 index 1f04aaf2cf8f6744685ae2ac36b3ed176be2f77c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 248 zcmeAS@N?(olHy`uVBq!ia0vp@KrF+;3?x1LH41?gbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkN`Oy@ zE0AtzST$+VqzRMf_D`DEKY32yl)3#tHW+~fC(q>;(F3`NyCldjn1PMGy`!`1$sCke6Zx(JKcn;ukT_Ls=mLw+uSv8Z?*M|zI%HmeO8xQ c7$q<;EU7SboPTeLHc%^rr>mdKI;Vst0PH1H)&Kwi diff --git a/common/gtk-2.0/assets-dark/slider-vert.png b/common/gtk-2.0/assets-dark/slider-vert.png deleted file mode 100644 index 81e4f40e8eea3a2a6bfcde482fafb2091507d0ec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 248 zcmeAS@N?(olHy`uVBq!ia0vp@KrF+;3?x1LH41?gbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkN`Oy@ zE0AtzXvoc-R9f9uR?}Wu-2o)atJ}+}+RK0>7;V0I@D@-VcS(?6FasNVdq-#2lc&#~ zOMIU>5h$$h>Eal|5uKcHfFaA6`C!Snce)8xU*E+hRDFMUx4CQH-fHU^efRcC`m8Rq cFiK!xSW;o=IRD-fZJ<^LPgg&ebxsLQ0H!)rssI20 diff --git a/common/gtk-2.0/assets-dark/slider.png b/common/gtk-2.0/assets-dark/slider.png deleted file mode 100644 index 87282e974f6381a43649abf28d0ce4e796ad8120..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 412 zcmeAS@N?(olHy`uVBq!ia0vp^{2PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(PJmB{ zE06|*P<3@PH8oQe9b+|3BQ;GERSh6AR@O36)&i2o%9Y(UFo zOM?7@8JL(Am6XFHBBS=~-M9b1!Rt3~y?_7t^XK1x{`~#hVI6-FsIb!0#W93K*7abw zP?LfH>xJ$|tIxQYab{QE`2Rn-r*HG~1uNP*&8og|wWmdXmq@CU>|L}`-mY?WW7f}4 zN2Oa6Qy*H{)a!iW=+Y5Noc5!lIL8@MUQTpt6Hc~)EYymzY zuIy$`+Ip79S!xaeMMOMZ978x{lXEf>5)x&6j?}ZY?Pm~^mhZRg$X*JRXYh3Ob6Mw< G&;$U|qAPI# diff --git a/common/gtk-2.0/assets-dark/tab-left-active.png b/common/gtk-2.0/assets-dark/tab-left-active.png deleted file mode 100644 index 81bdfb6eee5e00bda3e172d178bbbe3d4d52e364..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^av;pe3?v!<**pYN%*9TgAsieWw;%dH0CG7CJR*x3 z82FBWFymBhK53w!WQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc~)EYymzY zuIy$`+Ip79S!xaeMZ`Q^978x{lYjjG|6jh1jZHy9h2?}JL-T#n&%#OT=KxhOc)I$z JtaD0e0sv)zE(`zw diff --git a/common/gtk-2.0/assets-dark/tab-right-active.png b/common/gtk-2.0/assets-dark/tab-right-active.png deleted file mode 100644 index 25197c91b63423b1f075d2638cffcc048ba8028a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 169 zcmeAS@N?(olHy`uVBq!ia0vp^av;pe3?v!<**pYN%*9TgAsieWw;%dH0CG7CJR*x3 z82FBWFymBhK53w!WQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc~)EYymzY zuIy$`+Ip79S!xaeMMOPa978x{lYjjG|6iU>Awg1y<%Aoc5!lIL8@MUQTpt6Hc~)EYymzY zuIy$`+Ip79S!xaeMMOMZ978x{lmDDQ@L~GKg^i7=27(NWCd>C<)~K}t$}@Pn`njxg HN@xNAEVV9j diff --git a/common/gtk-2.0/assets-dark/toolbar.png b/common/gtk-2.0/assets-dark/toolbar.png deleted file mode 100644 index fe6d1ce02fc0ddd4637af1b3b6b5f95743b6d218..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^5^J; BDR=+? diff --git a/common/gtk-2.0/assets-dark/tree_header.png b/common/gtk-2.0/assets-dark/tree_header.png deleted file mode 100644 index eeba9c703f2b57c0aa7aaeb5e8f2b005abda350b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^Ahrx6GmuOw-ctdjn2Vh}LpV4%Za?&Y0OWEOctjR6 zFz_7#VaBQ2e9}Nc$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS*aCb) zT-nW>fMff~j978x{lT!*3mY6Xys4r!gwYjrS3n;_j>FVdQ&MBb@0KWGr A4gdfE diff --git a/common/gtk-2.0/assets-dark/trough-horizontal-active.png b/common/gtk-2.0/assets-dark/trough-horizontal-active.png deleted file mode 100644 index ba6e0596abe111505fa25f6a4b093a7b711be350..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^NbR=eb4{cDyn6Q~wXREQa1zLXp_}?M8G%Z9N`m}?8RX;@cJA7}XYZ%aKV`G` z1_Q4?|gmrez%(q1jD9NM?C@|_AYE>};l6@*d3}T60ZQMD63zjxB X76|JUr$m~jgKYP7^>bP0l+XkK@|!;L diff --git a/common/gtk-2.0/assets-dark/trough-progressbar.png b/common/gtk-2.0/assets-dark/trough-progressbar.png deleted file mode 100644 index c36659d21e8b24147d67bfb3ff46a01b95bb0112..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^AhrSvGmyNg{pB8zVlH;_4B_D5xc$)o0g%gC;1OBO zz`%C|gc+x5^GO2*B}-f*N`mv#O3D+9QW?t2%k?tzvWt@w3sUv+i_&MmvylQS(hcwl zaRt&0dgcszCJeg93|eLk+U5+}W(+z&1{U;XSNs8>dcKk%zhDL#b&Zv4*R9|1=KY6{ zpE#J)F9T)lJY5_^IAoI(8W_5FyYldyd3|qhP{MS@(X5=QP)_xcHR07Z{C0S z_=$r#{W4I--qXb~gkxrM!T|=c@AnQKysgB>_N?^%gag{FY<=Y#3Js0op$`~#9bjWC u3t?nuQxkEH=Q1!@G1vLSeTyV3ZU!gybQy&oO1FVVF?hQAxvX4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1SPJzX3_ zG$tlrxwiSwc?Y!wK`~L~aD8Usn^x|o{aJFyW-%^W!1%r{(CZ;kF@vY8pUXO@geCyj C&Mb!j diff --git a/common/gtk-2.0/assets-dark/trough-scrollbar-vert.png b/common/gtk-2.0/assets-dark/trough-scrollbar-vert.png deleted file mode 100644 index 8c3db52b8884f46930aed180d731f419a0c7febb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^{24nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1U#JY5_^ zG$tlrxwiR_zK+&02fhR)@9Qg`1)g0ztB{#tSgeB^>bP0l+XkKLH1N@ diff --git a/common/gtk-2.0/assets-dark/trough-vertical.png b/common/gtk-2.0/assets-dark/trough-vertical.png deleted file mode 100644 index e86199b9d9357e4e7ff87a695f0468fc5c6a7fd4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 257 zcmeAS@N?(olHy`uVBq!ia0vp^{6MV4!VDyfPR*MLq?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iinIcJ zLR^6~gSIh)rWJ#R1%tL3gSIJyjyaeCWTT+k{q}o-ig`#0gSc;uILpXq-h9ji|$mcBZh%9Dc z;5!1sj8nDwq=ABxC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6f3d%8G= zNKAcuY9nWZg9yvToBc7eO}r9P8WAhZDjG#KvK5*RR+>FfnQX)OgTe~DWM4f43a{^ diff --git a/common/gtk-2.0/assets-dark/up-background-disable.png b/common/gtk-2.0/assets-dark/up-background-disable.png deleted file mode 100644 index 3c0c741bc827e0575e0208f37f55c2f8fa20ba13..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^AT|#RGmu>AYB(84F&8^|hH!9j+BuNd)+W zxB_WILni|h2RSn!Y0qxv!~tSBR0!Fa0_9jsg8YIR#0gSc;uILpXq-h9ji|$mcBZh%9Dc z;5!1sj8nDwq=ABxC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6f3db&7< zNKAcuYNKF-f&jz8>VxYKOG+!KT=3iK@|NMA0~6D;+ymZvk&GUi`bS?iZeTvOfFoeZ xyz&{>wO2?P73m+jVZ&mub@z()`F}6GW&CrUZ)T?bbZ(%*44$rjF6*2UngFq+LDT>M diff --git a/common/gtk-2.0/assets-dark/up-background.png b/common/gtk-2.0/assets-dark/up-background.png deleted file mode 100644 index 43cbd0911c7aba9ca2b036b5c75423ef288a5091..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 215 zcmeAS@N?(olHy`uVBq!ia0vp^AT|#RGmu>AYB(84F&8^|hH!9j+BuNeB3Z zxB_WSLn|FUOKBrpZ9PkNGbau+M-DS5Ap2eOzfC}C){-EP9@1Lo~n$~4|4q7w@c6qsF1 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gtk-2.0/assets.txt b/common/gtk-2.0/assets.txt deleted file mode 100644 index 710871e..0000000 --- a/common/gtk-2.0/assets.txt +++ /dev/null @@ -1,132 +0,0 @@ -arrow-down -arrow-down-insens -arrow-down-prelight -arrow-left -arrow-left-insens -arrow-left-prelight -arrow-right -arrow-right-insens -arrow-right-prelight -arrow-up -arrow-up-insens -arrow-up-prelight -arrow-down-small -arrow-down-small-insens -arrow-down-small-prelight -arrow-up-small -arrow-up-small-insens -arrow-up-small-prelight -menu-arrow -menu-arrow-prelight -button -button-hover -button-active -button-insensitive -checkbox-checked -checkbox-checked-insensitive -checkbox-unchecked -checkbox-unchecked-insensitive -radio-checked -radio-checked-insensitive -radio-unchecked -radio-unchecked-insensitive -menu-checkbox-checked -menu-checkbox-checked-selected -menu-checkbox-checked-insensitive -menu-checkbox-unchecked -menu-checkbox-unchecked-selected -menu-checkbox-unchecked-insensitive -menu-radio-checked -menu-radio-checked-selected -menu-radio-checked-insensitive -menu-radio-unchecked -menu-radio-unchecked-selected -menu-radio-unchecked-insensitive -entry-background -entry-background-disabled -entry-border-bg -entry-border-active-bg -entry-bg -entry-active-bg -entry-disabled-bg -entry-notebook -entry-active-notebook -entry-disabled-notebook -entry-toolbar -entry-active-toolbar -entry-disabled-toolbar -combo-entry -combo-entry-border -combo-entry-focus -combo-entry-border-focus -combo-entry-insensitive -combo-entry-notebook -combo-entry-focus-notebook -combo-entry-insensitive-notebook -combo-entry-rtl -combo-entry-border-rtl -combo-entry-focus-rtl -combo-entry-border-focus-rtl -combo-entry-insensitive-rtl -combo-entry-notebook-rtl -combo-entry-focus-notebook-rtl -combo-entry-insensitive-notebook-rtl -combo-entry-button -combo-entry-button-insensitive -combo-entry-button-active -combo-entry-button-rtl -combo-entry-button-insensitive-rtl -combo-entry-button-active-rtl -down-background -up-background -down-background-disable -up-background-disable -down-background-rtl -up-background-rtl -down-background-disable-rtl -up-background-disable-rtl -plus -minus -handle-h -handle-v -line-h -line-v -menuitem -menubar_button -null -tree_header -progressbar -progressbar_v -trough-progressbar -trough-progressbar_v -slider -slider-insensitive -slider-prelight -trough-horizontal -trough-vertical -trough-horizontal-active -trough-vertical-active -slider-horiz -slider-horiz-active -slider-horiz-insens -slider-horiz-prelight -slider-vert -slider-vert-active -slider-vert-insens -slider-vert-prelight -trough-scrollbar-horiz -trough-scrollbar-vert -frame -frame-gap-end -frame-gap-start -notebook -notebook-gap-horiz -notebook-gap-vert -tab-bottom-active -tab-top-active -tab-left-active -tab-right-active -inline-toolbar -toolbar -menubar -focus-line diff --git a/common/gtk-2.0/assets/arrow-down-insens.png b/common/gtk-2.0/assets/arrow-down-insens.png deleted file mode 100644 index a797cef792a6551c1877c673ce77e1fd07b7a99b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 320 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRR!3-qTBwfA(Ddu7)&kzm{j@u9Y9{{LPOI+)5_!HGour7V-j*=6G13CDJLcYD3TMMm=lwj z4dliq<-~ymfe6e^%#KOQjRPsp)^=F(7-+O?NswPK12YR7I|mOxzp;gble=d?R7^@n zMs9vlMO{~S4^KK{BT%7{r;B3lSc1_p&U@9y0BU(R)iXIX-;a@&@Z-_~ER oP4_E2s(Mc~#J?(gfo0SmS6L?6Q&}%Vfw~zyUHx3vIVCg!0BtB`2><{9 diff --git a/common/gtk-2.0/assets/arrow-down-prelight.png b/common/gtk-2.0/assets/arrow-down-prelight.png deleted file mode 100644 index 6c62a9ea384d41c693957d1a52f1565c5cc59816..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 306 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRR!3HD+k8e2&q*#ibJVQ8upoSx*1Eiq9BeIx* zf$s>t*I;7bhncr0V4trO$q6BL!5n-qXb~ zgkxsx8GCNVM41C0-@pH;uDVCG`|Ocdx&haxdY^J}5o>;O?gLNTYU@+8H*i!k-fOs< zAl!Vg(kJ}WT>ILimmi8I-hF#R`Cn0~h2RF!4aW_>lvw;=<(4gBJ$AtJsZl=nVX+xi zRaaR)lmwWckg>4&d`gJn`rQ=OzxNt7I})h=<8?Ti@xY>7bZM5vw}~}ch73QL#2#DjUa==&HPGn{p00i_>zopr0BUA*!~g&Q diff --git a/common/gtk-2.0/assets/arrow-down-small-insens.png b/common/gtk-2.0/assets/arrow-down-small-insens.png deleted file mode 100644 index c976fd81c60a764295e6ea9768af9f51b5697ab9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 287 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRR!3HD+k8e2&q*#ibJVQ8upoSx*1Eiq9BeIx* zf$s>t*I;7bhncr0V4trO$q6BL!46$J50z zgkxrJpEcK^01=n;yh(1-+|p}xL<-&O?g>wJ3V1BGiG$nP(L>N6`l9a+2FD9dpLdG6 zdAyv`Zh4sD|FK`QPu%*t;+)S0si=Bk#s&t5g%+#bjrk7gF-UBFGodeZA~(YZAF1T)|`6Mju=rz^%yx*rzxbo}L_t{&|Udr^ne_qM+ d^54hD?fKGm_h!91GXv;O22WQ%mvv4FO#ogVYJva& diff --git a/common/gtk-2.0/assets/arrow-down-small-prelight.png b/common/gtk-2.0/assets/arrow-down-small-prelight.png deleted file mode 100644 index 7af9d333768aa941c433155a261a082d728124cc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRR!3HD+k8e2&q*#ibJVQ8upoSx*1Eiq9BeIx* zf$s>t*I;7bhncr0V4trO$q6BL!46%hSa% zgkxrJ-(J3h2@-DSqqCBWWFLw72rWLiZ1Pdo8~bOjzj({#*0J*ndj+~@Pw3zi<6ivU z)MVBTo5z)tCNuv(ckHBY&*p>t-Iw*Ue#Z2m2Kvyz&y85}Sb4q9e057#{UjP6A diff --git a/common/gtk-2.0/assets/arrow-down-small.png b/common/gtk-2.0/assets/arrow-down-small.png deleted file mode 100644 index 95344a064dc0c998aa69abdfabca19de4cefddb4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRR!3HD+k8e2&q*#ibJVQ8upoSx*1Eiq9BeIx* zf$s>t*I;7bhncr0V4trO$q6BL!46%hSa% zgkxrJuOT0!qeScenOn^Z7+S*~acKoE47_nSB`2iE`V8+kuE{HAXulABr=aDx!7;J! z?4%caKGnWI-CQ3$Wp;Mht&9HKHyplm!?=O1Ln*HF&9k(t>?eBOa=vjDWC&4Sb!W|X z4bzS&-_j`!1+U6(89$G?a@Hg2iuZ)>z9N>q^H#cZia%DfKiFHpgTe~DWM4fXnSoS diff --git a/common/gtk-2.0/assets/arrow-down.png b/common/gtk-2.0/assets/arrow-down.png deleted file mode 100644 index c6b656c0b7026b6af765602751ca492a121002e5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 319 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRR!3HD+k8e2&q*#ibJVQ8upoSx*1Eiq9BeIx* zf$s>t*I;7bhncr0V4trO$q6BL!5n$J50z zgkxrG&)%#<3^MHRr~hcQ_@SoC(dW0%abd7dUVJ&0CT2A$OpWb(pwSMVKYo|Yb5uUQ z3+Xy85OHb-OP~<*kHGc3OAg(O`CTXAAn;{%*pEm?-ox`+b}i_iq_tMZd;gU8?;q_5 zvzvOYfxTv4?Dn6({_J2c_?)r(rp%t%zYfV9|NZoR**xF!oxj;z*4Rk2$~;~M^aq2d LtDnm{r-UW|2r+%} diff --git a/common/gtk-2.0/assets/arrow-left-insens.png b/common/gtk-2.0/assets/arrow-left-insens.png deleted file mode 100644 index b117e1f55d94640455562fc116ebc133f99e4998..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 326 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(0U`xw#m)s%EX7WqAsj$Z!;#Vfk}U9uEM{Qf zI|9OtQ?>b|fr64Ht`Q}{`DrEPiAAXl<>lpinR(g8$%zH2dih1^v)|cB0Tmtgba4#f zn3KT?h_}h#Oj8+&bu}I&r*l|zAz~FCq@{jWy`URCDPMkdVS$*cjhw~5B zt1bKM{mk#)sYz3&9QpnE{d^NPH@1)V^%B?g=G*_YUe1p)Y-F7|9kiPzss`!|3f7tB+88stN6{e`f7gT{_8`x`|rC-{4;*R$l$idZF|SQ S)AxbiVeoYIb6Mw<&;$Sq_lJT2 diff --git a/common/gtk-2.0/assets/arrow-left-prelight.png b/common/gtk-2.0/assets/arrow-left-prelight.png deleted file mode 100644 index 65c6a07ab0d256ce116c2a03efa27dcd38b8c00c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 319 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(0U`xw#m)s%EX7WqAsj$Z!;#Vfk}U9uEM{Qf zI|9OtQ?>b|fr64Ht`Q}{`DrEPiAAXl<>lpinR(g8$%zH2dih1^v)|cB0Tu1>ba4#f znCaVR=ykY2#_j(1{v`=77X-f#_`uQ>wBh-MWz7~L593+3H#ILS%v5L$l3MxTlH;8v z=^q&64k+(1HQDdSyYFN5hmS|>k39~(Ve@bH=^Yp9d?syQ#(kQQfeN*Z z&y9{Q-u>cX!lb?1Vk6f!_N83^XEuw`B0TKgcyqV(DCY@~pSLIQk3 zT!D0GXhUvpZftBxQc_t|RAy*$VM0PyL}FHSLT+qQPHZ9&<;EuD#3bcLCuRe=F+etu zOw5i3v2(#}2ni9-iB`$k05n&+B*-tAfsLJ;S5QboHYu&FvAtvB(w%#c9=mw$!HYlt zc+L2dfy#_MT^vI=WLXckGBzkMFl@NFwxjdU|K-vm4_&uDZ+&(``|eb?BYPa{mowh_ fJbOW3Wt)+Wy?q`NJ3FHq$QKNru6{1-oD!M<4>@Rm diff --git a/common/gtk-2.0/assets/arrow-right-insens.png b/common/gtk-2.0/assets/arrow-right-insens.png deleted file mode 100644 index b521645d24d7d70a24625aa406515d29055e5474..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 321 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(!3-qTT-L4!Qq09po*^6@9Je3(KLE)UctjR6 zFz_7#VaBQ2e9}Nc$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS!UKFl zT!D0G=&FW>hS1Q4+}zyQ*x1m}tkAUbfP{kBq@3u4{J10_%8E_QiA~6kNyr3}(Li>5 zPIOXEOhQg<5>PNVHW5eyx!Ey^IdMSQ#O$hjIgvo4WlMtmf*F`u*x0#w_ytT%Z5-Xb z0wQA4GV%*b>*~9@yL*;@S@#yG(Ad+(F@!^w^7B!kcq1*Zi$t{vgVD#^tyJ uKV(Hq{BsgK8UG4Lw|!qTGf1N_-?GlppGoiqi~e??b_P#ZKbLh*2~7Yq4rgHi diff --git a/common/gtk-2.0/assets/arrow-right-prelight.png b/common/gtk-2.0/assets/arrow-right-prelight.png deleted file mode 100644 index 736de9efbf52ebfc27a0caac61824ca2de0adbbe..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 314 zcmeAS@N?(olHy`uVBq!ia0vp^Y(UJ(0U`xw#m)s%EX7WqAsj$Z!;#Vfk}U9uEM{Qf zI|9OtQ?>b|fr64Ht`Q}{`DrEPiAAXl<>lpinR(g8$%zH2dih1^v)|cB0Tpfcba4#f zm}z@C4s}^~An_p^c?r^ewVC(Y%=miE(S3j3^P6gcyqV(DCY@~pSLIQk3 zT!D0GXhUvpZftBxQc_uDT3TXaZgfg+L}FHSVs>;wZfs(1OhPu0j7`V^io_=7#3baz z07;-o5|{zxCS-#}AmTZ>${RKS&6O?*@(X5QW9Q}-5tWgRPs%HAY@fJv=iXCiu04GD z`_I2c8A4@1WyYQ^jv*YftOwf}9Sj&4Hr$x4we{Ek`9kFy31_QWKbM;r*sN^Ub??c4 jHFMwQ)RP;JiF*C9-^|3sWA>{RsGY&n)z4*}Q$iB}Kdfor diff --git a/common/gtk-2.0/assets/arrow-up-insens.png b/common/gtk-2.0/assets/arrow-up-insens.png deleted file mode 100644 index fd0d7f999da34fb1219e8ee25924de5f0530f542..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 325 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRR!3-qTBwfA(Ddu7)&kzm{j@u9Y9{{>t*I;7bhncr0V4trO$q6BL!5n$J50z zgkz>}zhU;F011ZowZ5tW+;{Im@ zVfKIb>w4>UiTK=mt@32q<88qv5$o?;g{|5oW>t*I;7bhncr0V4trO$q6BL!46*VDx@ zgkxrMiUZTag^@NgF+PFvGxzJ>H_5-3KEuMe=i-G62R^<0-7muC#-_^0W~Rz*++3V~ ze%{~X2Y`Sj^l-)RgR>3X+UlKr)|{FA-{{Zd-{0D8KmGszzo)=8kn`re9-seP>y3@h zMVe$kQeJj{|8pawf8pJpr#`l6CnY7Ar2hF^f3mAGc%Gqwfq_n>(d(c8|JREf8yQI% b32-y)-f8OGYWlSY=uievS3j3^P6>t*I;7bhncr0V4trO$q6BL!46)zif> zgkxrMiUZSRwX?#1|Nj3k^z8rtM_gP%@rRDgOz3I*`Ps7W@BjS|?U|cT%eyV>t*u>c z5hwywH-F;u%lj>PczC$}|2K{@G&1n|m-=tdj)e;wIoGYozjP;zjg4)8{r?$zytya& z85tS=GB7gO@rmO^nSxJJf=^0HLYIcN&z=K75HMwS#mtBH$r8-U&LYek85r7r8JJvU S+;S1>t*I;7bhncr0V4trO$q6BL!46$ZK(lBx7d$|94kHD(Xb% zx{iFVdQ&MBb@0P1OG%m4rY diff --git a/common/gtk-2.0/assets/arrow-up.png b/common/gtk-2.0/assets/arrow-up.png deleted file mode 100644 index 1498865dcd82d465e273d7513220b1e16e64c08b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 320 zcmeAS@N?(olHy`uVBq!ia0vp^oIuRR!3-qTBwfA(Ddu7)&kzm{j@u9Y9{{eP2qUCMeNbxvMe mf4#O^Z;7BY*F8y}^ZXWDm_$@>rCbAQXYh3Ob6Mw<&;$T>acYhL diff --git a/common/gtk-2.0/assets/button-active.png b/common/gtk-2.0/assets/button-active.png deleted file mode 100644 index 646ba549d9b70184087e6d762f917ef0c35cb4db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!VDzE)_nK|q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`%M(>IV3P zxB}^|d#`QZe}3D6%iDqI;FawME*&^^>ktr~ym9IJBcR}=8zA!XjYo|4XCwkO@RkJm z1vAJi?ApC&@BaMIV3P zxB}_q>XwX(hScho)avFGFu7{ex>Z}&ui3f*C;~)3KRx{U`QhJhk9Vq{eGk;YT@vIM z%pk9@YxkbL4<0=DdElxv>lQDwH;crLXZxBPrTKVbzCYMw&MmRy xzT$y4!DG(6oY&$k-tS^$UMz0IBF@dgFiY>BvdOLw%Ya5Oc)I$ztaD0e0sy-4UU2{b diff --git a/common/gtk-2.0/assets/button-insensitive.png b/common/gtk-2.0/assets/button-insensitive.png deleted file mode 100644 index 7364638f6101339aee32e206a33f3d54303f646e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 257 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!VDzE)_nK|q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`%M(st5Rl zxB}^W&)(mE{{GQ35PJL^gx-Gm`tIY`M?k^n?|=RN^ZU=Ayk^@Hpi-`qAirP+d4*lO z_w0S};3rF|Tmn$k%+tj&L?S#np(}=!IhaM_#;)@R4)C$FowF^t_mYz*CS4%mAjji{ pZ7kYKQ?^MP7*ri{F4)At@O0_z-fT_ryFe2dJYD@<);T3K0RZkDV?qD` diff --git a/common/gtk-2.0/assets/button.png b/common/gtk-2.0/assets/button.png deleted file mode 100644 index f472b8d0bcfe3396ba00c325515451bf11c1667e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 265 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!VDzE)_nK|q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`%M(>IV3P zxB}_q>XwX(hScho)avFGFu7{$u2tK1ui3r_C;~)3e*XIL>(`&ZfBB~`m=DyzT@vIM z%pk9@YxkbL4<0=DdElxv>lQDwH;crLXZxBPrTKVbzCYMw&MmRy xzT$y4!DG(6oY&$k-tS^$UMz0IBF@dgFiY>BvdOLw%Ya5Oc)I$ztaD0e0syUkUPAx? diff --git a/common/gtk-2.0/assets/checkbox-checked-insensitive.png b/common/gtk-2.0/assets/checkbox-checked-insensitive.png deleted file mode 100644 index 10d5538002f27028e940bbb58acffd02bb2639e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 367 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE09*}xun{8R<-}Kde0^G?n`Q27xgDxHl1|YYRYAssh1t5Uv{2(*?IP5R}i|IvhsTN z`kN>2+`IVb!ObU+?mT;N@7aSVFCRSvqSud}zkc-V+oQkVo@BmYy$Lj0wj{_em_b8R zv!=EOJE*cOUIA2?=;`7ZA`zb3AI;aGz{4WAP(e#$U%<})mPc78uszRLf4NO{$)cwd z9-4G0F>g>{2;?$MRD5HrzVPYnznO~+t}8j0S@o_stA9=YarmvZcF#gqm6<=-x|dPM isDAn7LmQUW{bNk)WlLXMPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(a)3{W zE09*}xun*0Nwxd3TK6S5((b#YKjE_B#LFg=E}KreY&-3W>#Qs8bFTW%zZ$sUYSPN< zdFyW+yLIpQ?fWP1+`shj!Iei3?md5a|HZ?nuO2>o{qV<^$G^Tl`t|kk-*1o48a4R> ztzj<-@(X70^zwf6_(`<+niW8yL{AsT5Q*^I^O1ZF3OpjT zU+H;y+64bkPD=`2HF66)b6nss!IsT3_AvLVFSRA@eF3+ZcG))Ex?|NY=RWJMl`TN2zu%sitgpWfRLWZtd diff --git a/common/gtk-2.0/assets/checkbox-unchecked.png b/common/gtk-2.0/assets/checkbox-unchecked.png deleted file mode 100644 index f0ef6f5432f77ba556587838611738ba5077796d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 265 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFPo|Mdz#_BAxVx0kS4 rVArfJ?^1vFz=0zEl$X)WJG2?j%#A6UZS>0nsF}gj)z4*}Q$iB}wf15| diff --git a/common/gtk-2.0/assets/combo-entry-border-focus-rtl.png b/common/gtk-2.0/assets/combo-entry-border-focus-rtl.png deleted file mode 100644 index 9c81f69b1c561b1255e876bdc1f11977b5f5660a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iigW{f zLR^8gcEeSbNw>om-wIuFD`fF)iz!#tx-V(>T@F}yGjQR}phdT~UwgCT`kSxczVoP^ zI1JRlUJ~RN%)rJT85RBQ^`f_HfkH-}E{-7*;mJDb4GeCg;>Vge1GZ&~&pCU*i2Y#N u8uty7Ty18vSMsfvmvmk&@i6hxDjtSq{Yont0^WoC%HZkh=d#Wzp$P!7J6LQ0 diff --git a/common/gtk-2.0/assets/combo-entry-border-focus.png b/common/gtk-2.0/assets/combo-entry-border-focus.png deleted file mode 100644 index d54a4234cf13f6e10649e228e7bccf57433caa83..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iigW{f zLR^8gcEi=sB{##D-V9rI*J8?5%cUG`saGhpG(z=b!rU38bg=d#Wzp$P!bHCM6# diff --git a/common/gtk-2.0/assets/combo-entry-border-rtl.png b/common/gtk-2.0/assets/combo-entry-border-rtl.png deleted file mode 100644 index 6177904ed7e5fe685e04f392ead7d2a1dea26517..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 260 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iiVOmL zLR^7#XhTD8?xfV3=Jpx$TBprvpFX#!tv9v0IkT>_Iy*&Wm8w9lAV)YefLM tNoaRs$L5KDH?els>IxkES1u%{#vnXTCS5@M(?Xz522WQ%mvv4FO#ovpR|Nn7 diff --git a/common/gtk-2.0/assets/combo-entry-button-active-rtl.png b/common/gtk-2.0/assets/combo-entry-button-active-rtl.png deleted file mode 100644 index fce80aa31da6a9b4b887b15ff74d648b09109366..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iiWCEU zLR^9L*1gxZ??1o&z~$`+uWUbX>Cnj=K=!2@kAURm8;|7P6z>38QxfDC%pk9@d(Ykj zKYt#+FdgJJO-~oc5Q*^QgrfPJtiloz#$k>JS=hemvCI}eCX<$vV!uh@=iG}ja%v2} X?PfDy&zpH1sENVT)z4*}Q$iB}ySr3a diff --git a/common/gtk-2.0/assets/combo-entry-button-active.png b/common/gtk-2.0/assets/combo-entry-button-active.png deleted file mode 100644 index 2d28a842dbc5b5610b01c16716407265dd174a61..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iiWCEU zLR^9L*1gxZ9k{&xz~#fIZyz~*6UYFfOV=M=y7B1pjYm^-XRZS(VlN5u3uchtwfn(? zpDePk&H#lpJzX3_BqWnH+MA4=+1gfx3T!ZvI2d=e?MR%R&rOfIn3qQmFz^ezvN0sq WOwHg>U26^0#Ng@b=d#Wzp$Pyf7*iqu diff --git a/common/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png b/common/gtk-2.0/assets/combo-entry-button-insensitive-rtl.png deleted file mode 100644 index 227d0a97297b829f16ccfdb440720037d0e6b3ff..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 236 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iiWCEU zLR^9Ly=U+5KY#z|+55-OLFnDbuaAJ-=kI_0{`33KAEnv^FQ6ihk|4ie26=_ud-gu~ z>Gpkj15ixU)5S4FB0M>v=zT*I8{4%rp#d8j8f(Rx&N3$R8JlgAkDT!5Tm~P%FoWdb W+0L8>Z|s4Z7(8A5T-G@yGywn!L|2>u diff --git a/common/gtk-2.0/assets/combo-entry-button-insensitive.png b/common/gtk-2.0/assets/combo-entry-button-insensitive.png deleted file mode 100644 index fe16c550c96f15958a5b1636282f51bdd5fc758e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iisS-( zLR^9Ly=U(qfzjI!U*CQF`sn$4Ao}(D&+k8fxSRG?0adV<1o;Is$nVbfjv*3~$r|lVM$T+)GXo5iB@WKJ*>+@}ozG2=x;YPz9AMxVc4cGOzNgzM#G-o} PP!EHrtDnm{r-UW|-mO(O diff --git a/common/gtk-2.0/assets/combo-entry-button-rtl.png b/common/gtk-2.0/assets/combo-entry-button-rtl.png deleted file mode 100644 index dab4f09e78cbcda39ed1af330b538c85ebd3a442..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 240 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iic|u8 zLR^7#a&=2aMMG+Jb4qm!kX*HG_nPf{fD9n|`Rmu;zkglsuG0e9R1)MD%pk9@d(Ykn z4}K=htyl#V)bw<543P*=PWUu~lT}zEVs)AGK{mF&s~l#}-#t9(_D$Jatm$k9Bfl`i Y=l`qzpJTjp6R3&7)78&qol`;+0N4am$N&HU diff --git a/common/gtk-2.0/assets/combo-entry-button.png b/common/gtk-2.0/assets/combo-entry-button.png deleted file mode 100644 index 7c1576beac2af475c2aee1153bdf5064f7a0d9a7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 234 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iiWCEU zLR^7#a&=282sN+Tx@*<8-9QEq{rLIo$FE<1{{D4v-Ixwk#9k8Q7tA2PYxjc(KUrj7 zodF7Ic)B=-NJu7Yv^N>mmq!jT@C&=LF`TfP*`bzE R4s<00gQu&X%Q~loCIJ88PXqt} diff --git a/common/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png b/common/gtk-2.0/assets/combo-entry-focus-notebook-rtl.png deleted file mode 100644 index 065e6e736b1ac7c57a34f0b66feada2fc1ebdad9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iinIcJ zLR{6lFKPE(a+q-?XyMi1g;zrsUE6!@-oESi4&Ata_~!j1H}8G_{P@S`$A7;))?%H$ z45-W4)5S4FB0M>zfywQ1WX~RPg*pF^e>-@Sr~Z=QoBwJYX3d{2r2RKO`s(=q)AtMy d9adQ*#IT7?Q8Ul_WjathgQu&X%Q~loCIA+cT`K?p diff --git a/common/gtk-2.0/assets/combo-entry-focus-notebook.png b/common/gtk-2.0/assets/combo-entry-focus-notebook.png deleted file mode 100644 index 1c7264225ff71e446f82c90c48b4e88c8d3939b7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iiqr#q zLR{6lFKPE(a+q<&apsl41y_R>UJYJ&b8* z*lhomK#j(pE{-7*;mIitOm3I8-1e~xocq7__k*0a`wuz3)u*z|cFf4w{C{P_*T?@? gzL$8IC?v+oFegsoWx4KDexP;+Pgg&ebxsLQ0H}UnEdT%j diff --git a/common/gtk-2.0/assets/combo-entry-focus.png b/common/gtk-2.0/assets/combo-entry-focus.png deleted file mode 100644 index b49d8cf92ad0a30369995cf8ef1c63f1a4863c86..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 228 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iinIcJ zLR{6lFKPE(c9?O+Vdho;1vdj0-V9uLbKAAo+poPjeDnU%Tlc69dX)^S6*%AsZ!hPjv4 V>tAzBp9a*&;OXk;vd$@?2>`=lRn7na diff --git a/common/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png b/common/gtk-2.0/assets/combo-entry-insensitive-notebook-rtl.png deleted file mode 100644 index c4559b6199d1018b6dc589fd6f83ca5f0575445d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 251 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!3-po!riKX6mzkYX9x!e$L)vy4}e_G0*}aI z1_r((Aj~*bn@<`jC|TkfQ4*Y=R#Ki=l*&+EUaps!mtCBkSdglhUz9%kosASwk#T@e zi0jJD>sD`Bzj^Pz&3pInKCpB5!JT^!?mBnv#^Z;VpFFzq^u^1kFJC=-`ReDdUq65U z{{83A-*1mUOfBI9YPa%qaSYKopPb;p-m^xAiRaCqjE4U9nasgc=FjhDovk6SY!+D8 u78n@S^~p#`+PUVA&m5i^hUbrIGB5})lysiOoO%Li3WKMspUXO@geCw&m1G?N diff --git a/common/gtk-2.0/assets/combo-entry-insensitive-notebook.png b/common/gtk-2.0/assets/combo-entry-insensitive-notebook.png deleted file mode 100644 index 52e7382b9a7aaa2d2d9bfb3aa83564c5d696abe9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iigW{f zLR?pFUblM7`ptXyZ{Bxc*MXh8f#~4QbJuP>et7xu!z)i;ynOcZ)z9C*fB*UO_uJ$0 zG>e%)jXIt#jv*4^$rUqCFtAVley6pGiS7Mvj%_?bv&%a+Py9Qn_sG00YzONEIrxPb Y;#zhtmKF@j0qSG$boFyt=akR{0QCV|^Z)<= diff --git a/common/gtk-2.0/assets/combo-entry-insensitive-rtl.png b/common/gtk-2.0/assets/combo-entry-insensitive-rtl.png deleted file mode 100644 index 1c9b24dc5e14e4c7819b472d1ea277542691afd5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 224 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iiWCEU zLR`;XyYcAx`^PWdKYjJ_*{culKYjV~?dO;8Kfiwa{_FRj-+%saDp@-L6&rfGIEF|_ zCJVGMDPCt|TNf&@VUq>Jxwx%&7!Ss+Y)DuyBylSzWxvAD!qg%L=Aao24D25}-V09= R^Z;sR@O1TaS?83{1OT}_RI300 diff --git a/common/gtk-2.0/assets/combo-entry-insensitive.png b/common/gtk-2.0/assets/combo-entry-insensitive.png deleted file mode 100644 index 9c44b2a44c0a3371b789b24aef7817e2cd679014..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 218 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iiWCEU zLR`;XyYcAx`^PWdKYjV(>8p>=UVV7~>C2bzKfiwa{_FRj-+%txEi;G&D%SRNaSV|N zPtM>LYGGn*dvYo?;J^WaeOw2xxg>e>7Mg8}pYV4^)06Tg28;}eS2~kgHJ8o-YGd$p L^>bP0l+XkKME6y; diff --git a/common/gtk-2.0/assets/combo-entry-notebook-rtl.png b/common/gtk-2.0/assets/combo-entry-notebook-rtl.png deleted file mode 100644 index 290f82f80da2b31a4b8c8338a6aa752c8b4fc290..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iiqr#q zLR?d;n=|WLE4unyrc7&{GQDl;^b41cUA%Ps%9WE>ub%w*>EX}M5C499th%S_HBgJO zr;B5VM0j#a1C!fjy<>A&IG+FiSX^Lscs>`)@BP|MXA_LJ-28uM!>^D3zm@lVFyK7R Z!Z3S}BIg;VHf^AG22WQ%mvv4FO#pqST3i4C diff --git a/common/gtk-2.0/assets/combo-entry-notebook.png b/common/gtk-2.0/assets/combo-entry-notebook.png deleted file mode 100644 index f59ac4f9d95cca2689541c72a839a044654367f8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 225 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iiqr#q zLR?d;n=|WLE4unCy8BxuPivVnt#!)u^B0d@xOD8wm6O-5p8Waw;oonMolf>$18ULn zba4!k2v4?69dX)@_5o%AsZ!1|QC~<}J!j RZ-Dw3JYD@<);T3K0RY)8P?-P# diff --git a/common/gtk-2.0/assets/combo-entry-rtl.png b/common/gtk-2.0/assets/combo-entry-rtl.png deleted file mode 100644 index 1dbd87a47f75d41ef1bcfb96714f61324548e938..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 238 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iigW{f zLR?d;n=|X$D!Tfcrp#)dGP`B!>{FMnoW6AR!lh$ZuAIDj_2k!Y-+z93`1A9_zuz9; z`}Uy`sL|Nd#W6%8JUOL-$?dY%v3)EY&;MVmEigO$zJTTTexs(d3MN}_{twyk>*N1R g)jb~!IJ;RGmggzF+_2Nh6sVoS)78&qol`;+0P8kkWB>pF diff --git a/common/gtk-2.0/assets/combo-entry.png b/common/gtk-2.0/assets/combo-entry.png deleted file mode 100644 index 98369c34721fb70fe4caa988774605e154d6bbca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^qChOc!VDyzFJD~^q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iigW{f zLR?d;n=|X$%DX32boDn)p4BvER`ZnECof((b?M55OUJHUIeG2s$*FVdQ&MBb@0OfyJKL7v# diff --git a/common/gtk-2.0/assets/down-background-disable-rtl.png b/common/gtk-2.0/assets/down-background-disable-rtl.png deleted file mode 100644 index 220c14ad6fc7c669424202115cf5f3d209670bb2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 204 zcmeAS@N?(olHy`uVBq!ia0vp^AT|#N8<337)>#0gSc;uILpXq-h9ji|$mcBZh%9Dc z;5!1sj8nDwq=ABxC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6djdb&7< zNK8#mNk~Yj`10p(y=Pz?TTKJ!`Zp__f<*uQ`ab`mrekXl4^R93+CRI*=O?+bv9YyP spTBo{vw^{x#DtU$$v~ZlmkBWJUn+F@+{AUJKtmZkUHx3vIVCg!08^hrHvj+t diff --git a/common/gtk-2.0/assets/down-background-disable.png b/common/gtk-2.0/assets/down-background-disable.png deleted file mode 100644 index 0f139a83ebf38028e3573bc631bad0efdeb2966c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 207 zcmeAS@N?(olHy`uVBq!ia0vp^AT|#N8<337)>#0gSc;uILpXq-h9ji|$mcBZh%9Dc z;5!1sj8nDwq=ABxC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6f3c)B=- zNKAcuQBkPDfQR8=_HucLq+ix{vF)o?oKf&F7G_~{W|?*QwVtoB`U?Jq>%311R((7C w{=$1vt^g&K<2xUlG+b)m6L~a~P5J<#0gSc;uILpXq-h9ji|$mcBZh%9Dc z;5!1sj8nDwq=ABxC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6djc)B=- zNK8#mNk~ZWSey6Hez8>}qkO_4ZR=GNLR$C#`}5a5;$c18vBT2*^Qt@i4V9UhnVpMD pyKRII|F`7f;VA>+oEsuc3>(UXrQ|atyMbmhc)I$ztaD0e0s!nbIjsNy diff --git a/common/gtk-2.0/assets/down-background.png b/common/gtk-2.0/assets/down-background.png deleted file mode 100644 index d94ca105bbaae4ff0e3f25017aa0b0cb03b22690..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 208 zcmeAS@N?(olHy`uVBq!ia0vp^AT|#N8<337)>#0gSc;uILpXq-h9ji|$mcBZh%9Dc z;5!1sj8nDwq=ABxC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6f3db&7< zNKAcu>L9O!0fWOu_cgbU@bx9}Yu`A)Bvv47ZQ-$1ZAHiC`G0N~%U0J}mDIM~I$ife x_SlREEz3IArOcY%o7K8Z_ShubmDgMvr0YH!oR&;JnF%zQ!PC{xWt~$(697ErM4|uy diff --git a/common/gtk-2.0/assets/entry-active-bg.png b/common/gtk-2.0/assets/entry-active-bg.png deleted file mode 100644 index 9c26b59bdbebda6e79620d6332579e224d88f826..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 280 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!3-oX$H;yMQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQznXZ328k zT-CZSY4=^WpK;A$=5_xCHv<;l3|x3KXwj{0*IsYG_GZWRHwSJ!K6vxd!JCf{-F$TT z)}ycAzJLGx}={&1L6xT$>^!8Rs>`*9N9)$}_1m_i$+{-+HDadn?Q2_QkKP Y@1Cj`FP!$R1!yvZr>mdKI;Vst04Q&CDgXcg diff --git a/common/gtk-2.0/assets/entry-active-notebook.png b/common/gtk-2.0/assets/entry-active-notebook.png deleted file mode 100644 index c62743b5b38e7d6ce5051f617de8c5540a075395..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!3-oX$H;yMQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQznXjRSl_ zT-CZSY4=?UTyQmL;nm=US3?$E3tN0Ge95)QrC0Y{ySw+=y?xj3y?y)W-MfeH-aUH% z?&05Wk3D&7-GJIXJzX3_G=kq=GGuB{;BmfqC2XU@gx~Y8F-y#mJ@e~WjltayGb)8D z{kpyeZS+*EKCop1+Zqo0+KF-NzPK_dPe|3+*~fM*VB_0f^F({ay5j2*&w++Ac)I$z JtaD0e0suhlYYzYb diff --git a/common/gtk-2.0/assets/entry-active-toolbar.png b/common/gtk-2.0/assets/entry-active-toolbar.png deleted file mode 100644 index cdfb6a6a51902ec69bfaa93fbc9ddf66d5ba6895..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!3-oX$H;yMQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQznXjRSl_ zT-CZSY4=|8n|s-R-lc%~mqQm`30-t0eDT$dXRd5Ib9M9CE3aPPfBpLYn>Y90y}0`4 z>*K%Q9y7HmNdmQddb&7_cQBvD4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1SfJY5_^ tB&H_+`TP8QJ)2Gg=j;b7jy#ymz`!2BA{Hs6wGXI4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1SfJY5_^ tB&H_+`Th1|J)2Gg=j;b7jy#ymz;I;_^G``1ufsq!44$rjF6*2UngG>HEFJ&= diff --git a/common/gtk-2.0/assets/entry-bg.png b/common/gtk-2.0/assets/entry-bg.png deleted file mode 100644 index d35003fadfe058a1fe52d9fc034a61cc1ddd57d5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 276 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!3-oX$H;yMQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQznXEdzW) zTvMx?Gwa&QyC#-*PimSxt7*!t<|(sVrp`Wj@ye-7S59BLdg;oUOIOZbzIyh`)w5r} zegFCC(a+D1{(gI0F=_WJpdr4VE{-7@=ig2;WICY0afB~gGfL~xfBD<&9M$b-VK;uxZF z{_Q1ep#}v3mWz%bo7X5@`fk6Py})$)sp(}F%5fY~8*7r6HfBWg?BWcz68x=kJw{OM zj|9)euL}P^c7M!#b5KC_SK-QzX=3javR`qWdlmcn#e(g@@fPj8l5;cj?gMRM@O1Ta JS?83{1OOZof{OqE diff --git a/common/gtk-2.0/assets/entry-border-bg.png b/common/gtk-2.0/assets/entry-border-bg.png deleted file mode 100644 index b949f4bb0fdf509af745fec9007f8d5493569932..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 318 zcmeAS@N?(olHy`uVBq!ia0vp^GC(ZF!3-oPcb(Y{q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iitGb? zLR^9Ls{Q-7Z9B1G-KNDGwk%q|dH%Xh3&D)ij{efl38~f1nRRVVlV>$enbkaHcFWY+ zCof((b?M6KOIN>s`@W>}0WZ)9?vfzCUEaloasKTk zYoP`O0hWu7ADh=GT>5Umn!Uhu`>E+=7RqrPQ5$QLmo{cZ^X%dbwi5iUaXm&*?2iP` z#IFkfKX!l2d~;Ah^;hA_j%i}=6S7}%oO>1f`Ne|m!SNRDypnS>^X>y}VeoYIb6Mw< G&;$Sw7l8Hv diff --git a/common/gtk-2.0/assets/entry-disabled-bg.png b/common/gtk-2.0/assets/entry-disabled-bg.png deleted file mode 100644 index d8550f193fb02659b9a9502bbb65cb1a34a57e3f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 226 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!VDzE)_nK|q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`%M($_4m@ zxITLR{_%_VPhWm`_Ugm?PhUQN{qgzRkFVdp|N8ys_n$wHc&t|fRhoIaIEF|_CTkd` zG%zNXvn}tLX>eiLp#-*M=9ejKoGNk3%<4kdHUk<(-%*kzI^iR<-V2Of4@Cm68l>KXo#<;i(`n!`L~k{nGPs$9O(;Mk+J&3fBD<&9o6k=XJ;t* zaB?pZ+pzd|%!hNV>GL(WH`s*x9k|mFUmN%~h_5M+EraRtwA{}Ht|BMXc4zH*D5+f3 T^6MASKMV|>u6{1-oD!M11)J$>}}>7#cq zuKomqU%!6;`E#`(IRt2kkEe@ch{pN1lMI;-C~zF%i(Z+bedxdZZFY|8_O!Dz99lW0 zk1U#yJS+c3u++Jiii?|c!rU6vAB4w;M4obeP{W|9eCwH>?5!-5+gHD`Mmeaap0W@z Q1e(j>>FVdQ&MBb@0Aqu5)c^nh diff --git a/common/gtk-2.0/assets/entry-notebook.png b/common/gtk-2.0/assets/entry-notebook.png deleted file mode 100644 index a340d63255a73778a54f8a748b4f74728a48acd3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 250 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!VDzE)_nK|q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`%M(>IV3P zxTaP&XV$g0OrF*1|V|cTAtzF@09&%$ese9=mYq*u_i7KfSs0`R$#*-yYv= ziP8jWwD)vz43P*=uE;#Wzsno* r_Z)}66c?PEozoWH_d!79E;~c=nV;bP0l+XkK8CYJ| diff --git a/common/gtk-2.0/assets/entry-toolbar.png b/common/gtk-2.0/assets/entry-toolbar.png deleted file mode 100644 index ec243b63f44da5c2cf665e3c479b61631b132370..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!3-oX$H;yMQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQznXZ328k zTvMx?GizHLCroLaIJt4+l%`2j+NMr#pE{#``ivvT_Z~g5_t=TO?_OMe|MKShS2sTZ z(d(OkzCQj7MBg6k6ooAXn&a>3;uxZF{_UlWj12}HE*G6Icr-bl{I}c6!6W}+etac+ zu$qtHYDfQmL(w>`ZPiP5HYhDuNYFXtAHU@46#hor<$4z`ZN44j-W+=J+&1%S#;@zu V%U8T!=>#;I!PC{xWt~$(69BXNbYK7g diff --git a/common/gtk-2.0/assets/focus-line.png b/common/gtk-2.0/assets/focus-line.png deleted file mode 100644 index 9f694a2433228e94bc67e672f1b815767eb20ac6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 164 zcmeAS@N?(olHy`uVBq!ia0vp^tRT$61|)m))t&+=mSQK*5Dp-y;YjHK@;M7UB8wRq z_>O=u<5X=vX`rBFiEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0wDo-U3d z95a)B*5*YWZs5DX8oYY;HG{+zNeKxDv`%!K^-?)JUISV`@iy0XB zj({-ZRBb+KprB-lYeY$Kep*R+Vo@qXd3m{BW?pu2a$-TMUVc&f>~}U&Kt;TsE{-7_ gvdKIC|KG*Tz>&lBEiiz04p4%@)78&qol`;+02ucpDF6Tf diff --git a/common/gtk-2.0/assets/frame-gap-start.png b/common/gtk-2.0/assets/frame-gap-start.png deleted file mode 100644 index d1c200c2b30555175fbc4dd8054feeadae1c0b79..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 142 zcmeAS@N?(olHy`uVBq!ia0vp^OhC-Y!2%@Xw6`;Y1d5$JLpV4>-?)JUISV`@iy0XB zj({-ZRBb+KprB-lYeY$Kep*R+Vo@qXd3m{BW?pu2a$-TMUVc&f>~}U&Kt;TsE{-7_ gvdKH%75uknV7tfkO}UO|E>MEO)78&qol`;+03Bc>dH?_b diff --git a/common/gtk-2.0/assets/frame.png b/common/gtk-2.0/assets/frame.png deleted file mode 100644 index aa660b054fa6f6b9d17de34173c5fdf234ef87f5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^AT}2xGmzZ=C-xtZVlH;_4B_D5xc$)o0g%gC;1OBO zz`%C|gc+x5^GO2*B}-f*N`mv#O3D+9QW?t2%k?tzvWt@w3sUv+i_&MmvylQSVhivI zalL>4{{R2~jg<=$fFgpPE{-7_vdJk432V}i^hroC*zIQFPRa~>2b5&+boFyt=akR{ E0CJx%4gdfE diff --git a/common/gtk-2.0/assets/handle-h.png b/common/gtk-2.0/assets/handle-h.png deleted file mode 100644 index 975e587f5f08e84e354b1f9ebe316117bd0cd612..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 160 zcmeAS@N?(olHy`uVBq!ia0vp^5(yEr+qAXP8FD1G)j8!4b7Sx*p diff --git a/common/gtk-2.0/assets/handle-v.png b/common/gtk-2.0/assets/handle-v.png deleted file mode 100644 index 92c4c8bafabf490fb93c6ce042953b55f9efa42f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^Oh7Eb!3HER{MNY%q*#ibJVQ8upoSx*1IXtr@Q5sC zVBk9f!i-b3`J{n@k|nMYCBgY=CFO}lsSM@i<$9TU*~Q6;1*v-ZMd`EO*+>BuNqM?B uhH%VGPEcSsSQcjfKRp2mqymmsFff>`VmFw&t;ucLK6VafGDv5 diff --git a/common/gtk-2.0/assets/inline-toolbar.png b/common/gtk-2.0/assets/inline-toolbar.png deleted file mode 100644 index b8b2ccec791b21947af8502d98a91cc6caa7f6da..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^5O=u<5X=vX`rBFiEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0wbo-U3d p95a&>8kmm#{{H@ddO|`11A}-X^E|7Z?`}W^44$rjF6*2UngEDmC!qiU diff --git a/common/gtk-2.0/assets/line-v.png b/common/gtk-2.0/assets/line-v.png deleted file mode 100644 index 335aad901e696c757bb5333e58dd40f69eb416cf..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 152 zcmeAS@N?(olHy`uVBq!ia0vp^Od!m`1|*BN@u~nRmSQK*5Dp-y;YjHK@;M7UB8wRq z_>O=u<5X=vX`rBFiEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0wbo-U3d o95a)5)c^li&jti)Y#Iy<=Fgbt+um~20V-hdboFyt=akR{07sQ1_y7O^ diff --git a/common/gtk-2.0/assets/menu-arrow-prelight.png b/common/gtk-2.0/assets/menu-arrow-prelight.png deleted file mode 100644 index 4a019f7c4d72be4ef2ef976b68f663905e3fc0ec..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^tU%1c!3HD^Kbl$tDVAa<&kznEsNqQI0P;BtJR*x3 z82FBWFymBhK53w!WQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc~)ES)MMA zAsjPfdky&x8HhOZraa=2nXuN$K!NR9-qW_Jk9cAf>}4MDli;)SreHe($H_T{qg&I)v`|o*ydfn`glU&q>U>-ynVZx cYku4wW^NVdJtc>^LAEk@y85}Sb4q9e0F1yZIk{X^ajv*YftOpsH926K>Hh4N6`TGC-wx9kP opWBp~zu9P1-ZWbA@`s*|m>k1%qh-r8fqED`UHx3vIVCg!0Khm^9RL6T diff --git a/common/gtk-2.0/assets/menu-checkbox-checked-insensitive.png b/common/gtk-2.0/assets/menu-checkbox-checked-insensitive.png deleted file mode 100644 index a7782cf8a414c3f26ef2ec17ecdc2eef1e734d3a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 355 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4uGBwbBK{D2g5v6E*A2M5RPhyD+MT+RZI$YKTt zz9S&aI8~cZ8Yn1P;u=vBoS#-wo>-L1P+nfHmzkGcoSayYs+V7sKKq@G6i`ukfKQ04 zTF)ib&a$<2n0f;V}PP%M9<+8<;%T_=%^|H;>%YO5&1}wPRwfFXx zi}w!Sym#T=y$cT>Tz&H3CI~&c{p`V=XAkZ@d+__)lfU1dOzD_?5@>~NNswQ#hNfms zZ4VBRcU<8=P+_R2i(?3fEbBo|rX~XcmJN-L1P+nfHmzkGcoSayYs+V7sKKq@G6i`ukfKQ0) zpRbR>=*i!2k0D5{`;u2tDbYOgfG4pz4ThbifiRtZfv}8 z_vo#Ar|;aq`Q+iF7Y`r5eE973j)57-=u&F?`@W-AHu3-wK-E z=gP5cJDO-ME6Z`lN=}aBhMzV+i$!*>jN_Zbu0e0Us~XGismbL}J8B&!2sEC-)78&q Iol`;+0Dy6f6#xJL diff --git a/common/gtk-2.0/assets/menu-checkbox-checked.png b/common/gtk-2.0/assets/menu-checkbox-checked.png deleted file mode 100644 index 4d72af8dd07f2ba1143d9b1f73081497041bf311..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 330 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4uGBwbBK{D2g5v6E*A2M5RPhyD+MT+RZI$YKTt zz9S&aI8~cZ8Yn1P;u=vBoS#-wo>-L1P+nfHmzkGcoSayYs+V7sKKq@G6i`ukfKQ04 zTF)i5u1l)jm({v2!I66RCGEaTMiVdDPQTX--=3HEex4B?25J?AOZpdi3$0=f zC(A!pi>2-4BfeN&jx)Q;+nR64LGijc4$5 L^>bP0l+XkKH%^65 diff --git a/common/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png b/common/gtk-2.0/assets/menu-checkbox-unchecked-insensitive.png deleted file mode 100644 index 4f04ff0a198be2b677aedcc06acd81c51f82871f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 238 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4xHBpZ(Y^aoPR#ZI0f92^|CANoH4aybh;B8wRq z_>O=u<5X=vX`rBFiEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0wD0X`wF zsa35RwM}VNt)JfB{`B_Fr?O=u<5X=vX`rBFiEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0v20X`wF z|Nr0p|Nr*?|1W=je)#hz5Iz6@^U=>QkN^LC3?%=4d;It7z1e-IIyc> eA$Lw46T|OS5;I(kzi|RJF?hQAxvXO=u<5X=vX`rBFiEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0wD0X`wF zsZ~vBRZXeYEg#-L1P+nfHmzkGcoSayYs+V7sKKq@G6i`uAfKP}k zkZx%BAG&IlM*ns7?u%;umsGkgt9D*i?YXSlby2tdrL9~ti5_xsMC@NMd6&V+xTX1e%FD+QS5wRRnFP*}8a!-Z1S?CV!8 xHuJyP`f%=E^#iYc_NsmOCAng8(cJk*<)hQoZ0DMtE(F@e;OXk;vd$@?2>`Nkl;HpX diff --git a/common/gtk-2.0/assets/menu-radio-checked-selected.png b/common/gtk-2.0/assets/menu-radio-checked-selected.png deleted file mode 100644 index 098714dd6df4ad2eadaca13920c680a4c00d3279..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 387 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4uGBwbBK{D2g5v6E*A2M5RPhyD+MT+RZI$YKTt zz9S&aI8~cZ8Yn1P;u=vBoS#-wo>-L1P+nfHmzkGcoSayYs+V7sKKq@G6i`u4fKP}k zkp2$>Xa0YC`v3dG|KA^h(c{10p8Wj|M34S{2eKjP2}tnUqkm8?TpYwu>%OEv;j+Pm z%Z3v#$1cAfxBPniit7n0t|hL#_UOgK$1fiO)x1jm_7P~GL`jfeFary#wT-Qv{nTmG zXD(f~e8tLDkDomK@$;8@;d?%ynp960#}E!#)`RR!2N^_IH!OEs>3em1=DT`#&q-U_ z|J`~o?l~!q_r)xgY=+oNObPRp>(<|{KB8wkFZAm%OXhc>Uk|9-#)W=8s9D`J|9ANj wwPJ=dllTr8d2VLXQTLp5^PSC{ZI@N*4+sc|8#71m09wf4>FVdQ&MBb@0Bq>HQ~&?~ diff --git a/common/gtk-2.0/assets/menu-radio-checked.png b/common/gtk-2.0/assets/menu-radio-checked.png deleted file mode 100644 index 45453529f2ffc925b3e183825f1a7e484fb4ab1a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 387 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4uGBwbBK{D2g5v6E*A2M5RPhyD+MT+RZI$YKTt zz9S&aI8~cZ8Yn1P;u=vBoS#-wo>-L1P+nfHmzkGcoSayYs+V7sKKq@G6i`u4fKP}k zkalR;Z#?side;@To(pPS7gc*MsdQaZ>%OcCL|qrvx-O}AUjmXq5w)I+YCv`mkc|a7 z%(&t>^U9$c_YdE^f8^%9qqpuIyLIo=hew}3KKk6*FDSe0oo@~666=mz`|;6 zV{2zWb=vfqOP4KQv2xYpCr^L;{H0#_o)4%d)zif>ghQ6~ASY8Jg9z&Z_3E-iEfebh zThH>G^mOCy@^;rrOKvjUQaj1!Fk6Sw;5=vl_xu+d{oDORd3QW%+qi1qj%9~;uZpvH z-tf=Vt~$q<{eVs;mDl+Ww2;Bm)z4*}Q$iB} D4lttS diff --git a/common/gtk-2.0/assets/menu-radio-unchecked-insensitive.png b/common/gtk-2.0/assets/menu-radio-unchecked-insensitive.png deleted file mode 100644 index 74e1e2025fccd16c5cdac39d86b6cf2f9199d8e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 430 zcmeAS@N?(olHy`uVBq!ia0vp@Ak4uGBwbBK{D2g5v6E*A2M5RPhyD+MT+RZI$YKTt zz9S&aI8~cZ8Yn1P;u=vBoS#-wo>-L1P+nfHmzkGcoSayYs+V7sKKq@G6i`uhfKP}k zkZx#b$f#&YscFuvXiu$f0WyFjh*8y)Ue)yI{^k33FW$d@asG;BckiCRef#Xa+vjI4 zUkXHZy_0JDCRX=Ns_LCs*)t)fs=20r;_t7IQY%}4+@GHx{syA2K=k*(z4xh}{(7pSSg)5S4_L)P?Qr&yDM0P6*Il|{O1?o6k2@N<`2MCFmOlUT*OQpa%2!Ds^-Pm!2`)a0C1b~4gq!(*3Z3O+v8WQ2z$Nuj;p9MyceyP z84bt(0|3}LBzz+EQtRbdpdt4j#sA<3`oV4-dQ;UU$ttg~)F3HX@4LDM;6hkSZ#N_LBNKTVhWZ)+TQV7$2u<_3|GPJizY(loUgmxPTRe^u|y_U#mv~@-L1P+nfHmzkGcoSayYs+V7sKKq@G6j0I30G|+7 zAl=Z=kXqf6T-lUX-I7w-lwREe=5>b81aaNyvE-0@mD$zSoP$G>Be%RcT7D>-+5ui@7FdsX6po()=b`n7m9k3)X$d|w`o+URTV kHd-9#YB12=ZN%H4-z6(*u5D{M7ic|$r>mdKI;Vst0NYgIdjJ3c diff --git a/common/gtk-2.0/assets/menubar.png b/common/gtk-2.0/assets/menubar.png deleted file mode 100644 index 8ef6deb57abb7e788dd4631a28e17c379329b9b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^5{q!FLVF^ diff --git a/common/gtk-2.0/assets/menubar_button.png b/common/gtk-2.0/assets/menubar_button.png deleted file mode 100644 index 4f70d6f4f145d5c511f5aa5db8d95b512cefe6ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^l0eMQ$P6U4SA1Irq?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`)(%1_k(p txT(yEr+qAXP8FD1G)j8!4b7;{cx! z*VM|kq?+c`Y9ML>k|`ht0>vce0J&W~{Wou(xq0*Kty^dRetX=$*epLP599Y9fAPZ!4!4q4WN?YxH_cvuWxsYu_fzf;qAa+P^w^|deS8#WuW zzA)!qz}#?fUy1~e0>cT$f=zr6{;i(JcW19%PPc%v&w1`#pg|0tu6{1-oD!M9gP2NC6eedb&7< vaLi0j0D>RC-+uhR|GwP+bPzAeftlg(0rs_ae{WO(6*73b`njxgN@xNAkX|mQ diff --git a/common/gtk-2.0/assets/notebook-gap-vert.png b/common/gtk-2.0/assets/notebook-gap-vert.png deleted file mode 100644 index adbf85a1395368499d55081756021ac56e97e2dc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 155 zcmeAS@N?(olHy`uVBq!ia0vp^OhC-S!3HFkynkm2;uJf1hHwBu4M$1`kk47*5n0T@ zz;^_M8K-LVNdpBXOI#yLg7ec#$`gxH8OqDc^)mCai<1)zQuXqS(r3T3kpe1`@N{tu r;h346(7<$T|9!dt=?OrP64IPu-nbTos=2&4k*ds>FVdQ&MBb@ E0CVgw8~^|S diff --git a/common/gtk-2.0/assets/null.png b/common/gtk-2.0/assets/null.png deleted file mode 100644 index d82fb34f1dde8a7f6f3cc59ca4b97832e34d4a87..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 148 zcmeAS@N?(olHy`uVBq!ia0vp^{24nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1S9JzX3_ lG$tk|NU$zW5aCf`U|^oiz<6_$jyX`0!PC{xWt~$(69CbvBBB5Q diff --git a/common/gtk-2.0/assets/plus.png b/common/gtk-2.0/assets/plus.png deleted file mode 100644 index c92a8b34423ed1793a9151ecbb9d813e16d1a71f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 258 zcmeAS@N?(olHy`uVBq!ia0vp^+#t-t3?!qQvP6LtbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkR)9~4 zYid<95T#VNq*gaWP)uSDkkQrC-`&%H^X8eGH_zU>b@uPK$6k!i+km>*N`m}?%PXrs zfBEs}YxV}9h=r$%V+coda)7SBzP@O}hn>~m-{~^9MJbeSXYjb&5ODp#mEJ8pD);Wr n7O>plrLRzVyTMT;g^QWNSy8jx?6zt>&wrmZDJj36GiqqVB;y~VI@O1TaS?83{1OURgcyqV(DCY@~pS+B{tx zLo_BHy`ac<$U(&Q;_vN>Hf2vwP`lcMGT&PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(LV!<* zE0ET1*sneHs(R-U_0AjW-DlOiFROK&Q|rB=+I3Z>U~$$dM>GTomcC+ zq}F{wt^1N%&t;Ixu8V42m({v2LfAD!m?ty@t_A?Ix)#iJ;IEF}s=k~u8YY-4{%Zy)| z8}Q`s{Y{FiF2DR|So~9><8o*f(glj55{tx0{clPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE09)cJEz=zQE|d$^`49BU6<6mFROK3R_(q7XRCEzQtQ45CV>oel)UnK%Bt(BtFAwJ z_3-JdhtFO={QK?ktSS7yK%+%Vg8YIRM8(8ILc_wFnp;}WoxgDLPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(W`IwK zE0B&YDGAML$ZBXvscKDWXicweO08;4t!quMY2JNk_ufOhcOKZ8T-BUb)tp-0^yR~y zFCXrG`Sjr1hx^|?-LL4KSl-o_)zF$*-RHXqj?JkY6wZHxG}Vp1!-gM`mVLVPR28NlAHmZCyiSV^d3OYinCuTaV`> z`Bb3tN>3NZ5DCfLgSUm66hs^@&Yj@(NS4=I`27F+6u!qFoV!Z diff --git a/common/gtk-2.0/assets/radio-unchecked.png b/common/gtk-2.0/assets/radio-unchecked.png deleted file mode 100644 index a0c28737cfed4f8fc1223b4c21e060f49903c2e1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 419 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(PJmB{ zE09iWXh^JV%V=mwt!_!FX-=zdNv&=IGJxdnL%a4K+P&+*&eUq4I8dbd%lo?^^zr`p zkN3ZQy!ZXn{mPyR6mwioNdEoy7>K<1wI%`WQ!WYe z3uX`z6$=gtZER{jaNywCbLTH#xpL#?%_mP^y?*`XBusRa0h zxB_YIhN~)*ZmacNQtQ5?+H*<0`!bM$jAjL2;smPWE(!7rW?*A)@96A$^7PqriSIKf z0)rU|DhY9xtmkbK{*icMCSKo`~&z@Q$e{U3tgt#yc4-<;D|M-{O7z dwm{{qAVZLVp`-VaNpe8_44$rjF6*2UngB?lRW<+s diff --git a/common/gtk-2.0/assets/slider-horiz-insens.png b/common/gtk-2.0/assets/slider-horiz-insens.png deleted file mode 100644 index 694092e51eac6b06879bb922f42b125fa05f7aab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^G9We!Gm!LHDLfNMF&8^|hH!9j+BusRa0h zxB}__|Nq~<{r}agH$e3IH4wdhg^HdS{I>(D<1PvE3ua(rZ|~^rdh+zybBXUWCjx~{ zJY5_^IA$g%EMQr2_8u>*HFM*gH+Ks*u%3wReejN{C|!BS?Z!J9Eak=%R^Q@%{I)>l atRO>>fT5%Jkx6nu{S2P2elF{r5}E)5E@P1Z diff --git a/common/gtk-2.0/assets/slider-horiz-prelight.png b/common/gtk-2.0/assets/slider-horiz-prelight.png deleted file mode 100644 index 2e54f70bf0f0fe58448a842136543fee60029a7f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^G9We!Gm!LHDLfNMF&8^|hH!9j+BusRa0h zxB}^`SFhf_ef!Fl>sPMaxOC;l<*OhBV!+VL6q!Xpb=)OEe!&cE?Cl+$T~D4qdoJ;P z=0u>diKmNW2*=Figas@s&feo?wPtR-^X6{B2G$d?y${|o6{RchxZQXsgQeVf!s=VR fkKY!koE2mU5-@c1J~BxTsGq^p)z4*}Q$iB}fW=@^ diff --git a/common/gtk-2.0/assets/slider-horiz.png b/common/gtk-2.0/assets/slider-horiz.png deleted file mode 100644 index 8279c97280006023cc86e1908b95daf69366e86e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 253 zcmeAS@N?(olHy`uVBq!ia0vp^G9We!Gm!LHDLfNMF&8^|hH!9j+BusRa0h zxB}@_t5$8>wr%^){X2F6(Se=2_w58TKwPk3Q~y+RpgQi7AirP+Hum<8&aNjMtF@$4ga>4?Z6=(19vRX4Y-g$GkU<2!k*xm>4n2OSscie8glfhDMJYn@M g-p6kXRL%-A1PK^AdLNl22h`8t>FVdQ&MBb@0I&;Ob^rhX diff --git a/common/gtk-2.0/assets/slider-insensitive.png b/common/gtk-2.0/assets/slider-insensitive.png deleted file mode 100644 index a4654243d89dcb0b441001c98b36a565ccaa033d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 413 zcmeAS@N?(olHy`uVBq!ia0vp^{2PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(PJmB{ zE0F&G|NogY|6jd&@cK0nJ$wHA;j34VUp#yG>cx|1&p_z;)5p)BJ$do$(etN|o;-d0 z^vT1gK=SF6$4?$TegXo|pFMv59Ed>tM~@yqdi3PuyT_m2KK}gv@t60He|>rU=iB4I z-yXYvY25>~Prf9`FPMRu)zHYeyu7mN`i+}6Z{2?N`t|GY-@pI-`Sb5TAUHYQZzoV` zg{O;S2#2ieK~AA210L23@fx$0Hc50Vsb;>bcbAkf}yhoMud^6~U5OY}XioZyySeKT)Gy6M6e>BVtL?-~39 v{U;W^`6Cc9so+JiOw83wPTwyv{$Te0EBes->%?xL8yGxY{an^LB{Ts5Y-ZD- diff --git a/common/gtk-2.0/assets/slider-prelight.png b/common/gtk-2.0/assets/slider-prelight.png deleted file mode 100644 index ba5f941237ebd35d6646e6f14b9cfa7c5942b30a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 398 zcmeAS@N?(olHy`uVBq!ia0vp^{2PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(T7XZ8 zE0AVr_|LFvm3sF@wf;*gU6<8>sQaR7&qdYlOKM%0)Ij7#pdgT|4rBwBff+#cAO%3w z14JM#PYM0Gl?yYGU+!_(EzWt~$(696HJ BqqG13 diff --git a/common/gtk-2.0/assets/slider-vert-active.png b/common/gtk-2.0/assets/slider-vert-active.png deleted file mode 100644 index 7f8b3aba0e621ec2d62f0b69105a9a7386fe3c37..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 248 zcmeAS@N?(olHy`uVBq!ia0vp@KrF+;3?x1LH41?gbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkN`Oy@ zE0ET1xT-Sgwp!06weCx*J(twGF9R9KXjbqgPM|vOk|4ie1~&Hgj?S(pPoF)P_&#$Y zP*~s7#W92PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkN`Oy@ zE0F&G|NrgV|6jd&14OT11JT=8sOX8oe>zopr0MOZDIRF3v diff --git a/common/gtk-2.0/assets/slider-vert-prelight.png b/common/gtk-2.0/assets/slider-vert-prelight.png deleted file mode 100644 index ec22eb7113ff6c4c5190ba416c9c94f65919f852..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 248 zcmeAS@N?(olHy`uVBq!ia0vp@KrF+;3?x1LH41?gbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkN`Oy@ zE0Df=_3G{0x365ee&x!IOIL1Oz6wGh1`NGSky!*($6XTS7tFxM-rmvK_2lWZ=Mvv% zP6P_;d%8G=a6~639AL;YWs7;!PC{xWt~$(698ViUitt4 diff --git a/common/gtk-2.0/assets/slider-vert.png b/common/gtk-2.0/assets/slider-vert.png deleted file mode 100644 index 97ead795bb4c2d74c95e09d23d84857ae2ef8374..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 248 zcmeAS@N?(olHy`uVBq!ia0vp@KrF+;3?x1LH41?gbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkN`Oy@ zE0A8bYSp%F+qUoAzhf5=9oV^h-%cj2S zGbaLt^*vo2LpY+76AmzB88aU&`SwmXq3Y|q*o3O@@9s8t&D&dTJ)`g5UP+(TWfn#W a3=B&u3?1j+TcQor%HZkh=d#Wzp$Pz?Oj{lR diff --git a/common/gtk-2.0/assets/slider.png b/common/gtk-2.0/assets/slider.png deleted file mode 100644 index f3a3e705ab1d3259f76930f86c7cd6af10c3a448..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 440 zcmeAS@N?(olHy`uVBq!ia0vp^{2PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(U4T!B zE0F&G|Np90|4&|gaQf22GnXHoy8P($MG!i3>G8R%Pk`wBmB;6y+l<3C>?|NZv3ZmkK(ugWDse!&b(%!*3N;SrHhd-m?zxBtMw>o;%SdJhDj zf#CNaAoyE!=*?B2@>)+9#}E!#*MprxO$s8c7rGx^OVe|lA}OWx{(rrJ+wsch3SO(C z`hSISn>;;{y$WumY zWk>4Nr|2iCwZBlay5YtU6nQIhs?wyjg?1I`vqYo=W4^37zmwqu`<+#iI&!(fGk^|Z N@O1TaS?83{1OSIE;dlT5 diff --git a/common/gtk-2.0/assets/tab-bottom-active.png b/common/gtk-2.0/assets/tab-bottom-active.png deleted file mode 100644 index 0040e6a1c9e52357d47376cd650ab3c3df5bdc2d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 166 zcmeAS@N?(olHy`uVBq!ia0vp^av;pe3?v!<**pYN%*9TgAsieWw;%dH0CG7CJR*x3 z82FBWFymBhK53w!WQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc~)EYymzY zu6G~5{QK=Or>($GpooyCi(?2!bn=S-|NpZePEc}SU~n%>ak{5d?Fp1+@O1TaS?83{ F1ORGuFe3l} diff --git a/common/gtk-2.0/assets/tab-left-active.png b/common/gtk-2.0/assets/tab-left-active.png deleted file mode 100644 index 67e1f07fb2c25ab201db66c9cc1f4d43d81ddd56..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^av;pe3?v!<**pYN%*9TgAsieWw;%dH0CG7CJR*x3 z82FBWFymBhK53w!WQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc~)EYymzY zu6G~5{QK=Or>($Gpop-ii(?2!baDbioc5!lIL8@MUQTpt6Hc~)EYymzY zu6G~5{QK=Or>($Gpooa4i(?3fY;poa<9{HK&|x`Y%TSq+cQ$Xs4oc5!lIL8@MUQTpt6Hc~)EYymzY zu6G~5{QK=Or>($GpooyCi(?3fY;poav`0e7=naToNlen%K*wUc)I$ztaD0e F0su|MFLwX{ diff --git a/common/gtk-2.0/assets/toolbar.png b/common/gtk-2.0/assets/toolbar.png deleted file mode 100644 index 2454831e27d0efcc7173649755f0abc44f4c5e5c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^5gcyqV(DCY@~pS*aCb) zTtB|L@%P(fn=2ZOKoLGq7sn6|+2lX>Pk7|AFnkEnk`1XzJ_?j!@O1TaS?83{1OS7! BE-3&2 diff --git a/common/gtk-2.0/assets/trough-horizontal-active.png b/common/gtk-2.0/assets/trough-horizontal-active.png deleted file mode 100644 index ba6e0596abe111505fa25f6a4b093a7b711be350..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^NbR=eb4{cDyn6Q~wXREQa1zLXp_}?M8G%Z9N`m}?8RX;@cJA7}XYZ%aKV`G` z1_Q44V`jcBazIHYT|j|R=TNJP5s>Ut5n>Qa>}uoA5nQme ZnXy1vr#L0jG##jw!PC{xWt~$(69DdhOe_EZ diff --git a/common/gtk-2.0/assets/trough-progressbar.png b/common/gtk-2.0/assets/trough-progressbar.png deleted file mode 100644 index ea8988e9c47f12f1e21f2c12240d08accdf933bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^AhrSvGmyNg{pB8zVlH;_4B_D5xc$)o0g%gC;1OBO zz`%C|gc+x5^GO2*B}-f*N`mv#O3D+9QW?t2%k?tzvWt@w3sUv+i_&MmvylQS(hcwl zaRt&T4Gl>(&1scwsX(%-Ikmbe6-=g71KB93*zZObPy=5{kY6x^jJn3kwd>Yzc=P_l z$4?y0>6d{rcAhSdAsn*F2@MS0yIpyB&b+?2Hz?sj#rJoy49xlyYz`b?SCQv2;4C`H t##W~A^1y*D@9ugtvaxM7?h7bqW>~*FUFO(w*#MwP44$rjF6*2UngD|vT&4g3 diff --git a/common/gtk-2.0/assets/trough-progressbar_v.png b/common/gtk-2.0/assets/trough-progressbar_v.png deleted file mode 100644 index b79ee3d460cef0c05423f6231eb1adcc6bdf0e65..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 276 zcmeAS@N?(olHy`uVBq!ia0vp^3P8-o!VDzUlO3l6Ddu7)&kzm{j@u9Y9{{mI@@Rnp3NrQo&?OHIR*hiv4b60X6WI1o;Is$f#?qT)S@lhBxm& zeEh`0oPHT7WAEwW7{W0#IpF|<*!Oz}58hT{V|!Nme!>B5R<^!!4TXkA@z4hhyAH6i vm4z^}v#E(V$8#ANteETk;l4$Z6*q&Edb*6l52f2cqZmA0{an^LB{Ts5M`l?# diff --git a/common/gtk-2.0/assets/trough-scrollbar-horiz.png b/common/gtk-2.0/assets/trough-scrollbar-horiz.png deleted file mode 100644 index 794dc1b4d532911a87edf4b3a61f3fc1e3dff0c1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 164 zcmeAS@N?(olHy`uVBq!ia0vp^{24nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1SPJzX3_ zG$tnRsr~=4p3R8y@qGLG6W7kTtUDHXcJZwC&1nqgCG2a~@P6$FDrWF>^>bP0l+XkK DPu4I* diff --git a/common/gtk-2.0/assets/trough-scrollbar-vert.png b/common/gtk-2.0/assets/trough-scrollbar-vert.png deleted file mode 100644 index 8ce9c6c0963001a9580d6b44560dbcbfa56baf02..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 162 zcmeAS@N?(olHy`uVBq!ia0vp^{24nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1U#JzX3_ zG$tnRsr~=4-Zj#bt%yN5a+jNFf0o?U9-t{c-YkM=*Oe{?DrN9=^>bP0l+XkKZ`Ug0 diff --git a/common/gtk-2.0/assets/trough-vertical-active.png b/common/gtk-2.0/assets/trough-vertical-active.png deleted file mode 100644 index 3217ee29a23e4ca9d5a267cfaf4aa9708c6f9d7a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 257 zcmeAS@N?(olHy`uVBq!ia0vp^{6MV4!VDyfPR*MLq?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iinIcJ zLR^8gQpZ)zo@*NI=heF}sdZgagOfl85~|!?eg~+UwSgeB^>bP0l+XkKLH1N@ diff --git a/common/gtk-2.0/assets/trough-vertical.png b/common/gtk-2.0/assets/trough-vertical.png deleted file mode 100644 index 77ac68effd6cecd49119659d322ae8b170e5ca9e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 257 zcmeAS@N?(olHy`uVBq!ia0vp^{6MV4!VDyfPR*MLq?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`))iinIcJ zLR^7#T6sfqbxTG?Luz$%YIO^cOaYT%E>HxDinW}RfU0>*g8YIRT+ zemZ>VO9x6Ac)B=-NQ5URDDWDDt2#=^l&^P`uql7#0gSc;uILpXq-h9ji|$mcBZh%9Dc z;5!1sj8nDwq=ABxC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6djdb&7< zNK8#mNk~Z8@&C_WCT`}#bN=)2Y~$hK$>E7$;GQz$^x31!&Ky2^?%0VAU&)Y%^=xd? rHC+-wFk^v9oa+fL&ZfZD3Py&%Qtb9+Nyirh4Q23j^>bP0l+XkKX!|_4 diff --git a/common/gtk-2.0/assets/up-background-disable.png b/common/gtk-2.0/assets/up-background-disable.png deleted file mode 100644 index 34b3fba259d5e4ce0b7cb3ebf117822d6949c428..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 212 zcmeAS@N?(olHy`uVBq!ia0vp^AT|#RGmu>AYB(84F&8^|hH!9j+BuNd)+W zxB}^W&)z?J_Ws?+uaBO;2cloU|NQ>*C*1sn2~du;B*-tAL4NmxpEFrs-USNCdb&7< yaL6We@bZ=lC1~jD`-d@1OyyJ9WYZ8L#1Ow#;^FP}r>6oHGI+ZBxvX#0gSc;uILpXq-h9ji|$mcBZh%9Dc z;5!1sj8nDwq=ABxC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6f3dAc}; zNK8#mNk~XIu_7bj$Kf+Z?GqpF*JWmAmSz?^aOl8+10SZ(tX$VVwQtkT$ x0AYB(84F&8^|hH!9j+BuNeB3Z zxB}_q>Xy{%=2ctP14$tI`RU=$&kz58dpy19%U7T@Ye|q_FoXQ=2R~=BzPt+*ko9zN z4B?PX=HTTm6-s#V;)O;S!^B)Zg-yy0AwmoX6{Sxf2v4*JDrE3<^>bP0l+XkKC_qGM diff --git a/common/gtk-2.0/gtkrc b/common/gtk-2.0/gtkrc deleted file mode 100644 index a7d5fb5..0000000 --- a/common/gtk-2.0/gtkrc +++ /dev/null @@ -1,24 +0,0 @@ -gtk-color-scheme = "base_color: #fdf6e3" -gtk-color-scheme = "text_color: #5c616c" -gtk-color-scheme = "bg_color: #f5f6f7" -gtk-color-scheme = "fg_color: #5c616c" -gtk-color-scheme = "tooltip_bg_color: #4B5162" -gtk-color-scheme = "tooltip_fg_color: #fdf6e3" -gtk-color-scheme = "selected_bg_color: #268bd2" -gtk-color-scheme = "selected_fg_color: #fdf6e3" -gtk-color-scheme = "insensitive_bg_color: #fbfcfc" -gtk-color-scheme = "insensitive_fg_color: #a9acb2" -gtk-color-scheme = "notebook_bg: #fdf6e3" -gtk-color-scheme = "dark_sidebar_bg: #073642" -gtk-color-scheme = "link_color: #268bd2" -gtk-color-scheme = "menu_bg: #fdf6e3" - -gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. -gtk-auto-mnemonics = 1 -gtk-primary-button-warps-slider = 1 - -include "main.rc" -include "apps.rc" -include "panel.rc" -include "xfce-notify.rc" -include "menubar-toolbar/menubar-toolbar.rc" diff --git a/common/gtk-2.0/gtkrc-dark b/common/gtk-2.0/gtkrc-dark deleted file mode 100644 index b57b211..0000000 --- a/common/gtk-2.0/gtkrc-dark +++ /dev/null @@ -1,24 +0,0 @@ -gtk-color-scheme = "base_color: #073642" -gtk-color-scheme = "text_color: #657b83" -gtk-color-scheme = "bg_color: #002b36" -gtk-color-scheme = "fg_color: #657b83" -gtk-color-scheme = "tooltip_bg_color: #4B5162" -gtk-color-scheme = "tooltip_fg_color: #fdf6e3" -gtk-color-scheme = "selected_bg_color: #268bd2" -gtk-color-scheme = "selected_fg_color: #fdf6e3" -gtk-color-scheme = "insensitive_bg_color: #073642" -gtk-color-scheme = "insensitive_fg_color: #7c818c" -gtk-color-scheme = "notebook_bg: #073642" -gtk-color-scheme = "dark_sidebar_bg: #073642" -gtk-color-scheme = "link_color: #268bd2" -gtk-color-scheme = "menu_bg: #002b36" - -gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. -gtk-auto-mnemonics = 1 -gtk-primary-button-warps-slider = 1 - -include "main.rc" -include "apps.rc" -include "panel.rc" -include "xfce-notify.rc" -include "menubar-toolbar/menubar-toolbar-dark.rc" diff --git a/common/gtk-2.0/gtkrc-darker b/common/gtk-2.0/gtkrc-darker deleted file mode 100644 index e79571c..0000000 --- a/common/gtk-2.0/gtkrc-darker +++ /dev/null @@ -1,24 +0,0 @@ -gtk-color-scheme = "base_color: #fdf6e3" -gtk-color-scheme = "text_color: #5c616c" -gtk-color-scheme = "bg_color: #f5f6f7" -gtk-color-scheme = "fg_color: #5c616c" -gtk-color-scheme = "tooltip_bg_color: #4B5162" -gtk-color-scheme = "tooltip_fg_color: #fdf6e3" -gtk-color-scheme = "selected_bg_color: #268bd2" -gtk-color-scheme = "selected_fg_color: #fdf6e3" -gtk-color-scheme = "insensitive_bg_color: #fbfcfc" -gtk-color-scheme = "insensitive_fg_color: #a9acb2" -gtk-color-scheme = "notebook_bg: #fdf6e3" -gtk-color-scheme = "dark_sidebar_bg: #073642" -gtk-color-scheme = "link_color: #268bd2" -gtk-color-scheme = "menu_bg: #fdf6e3" - -gtk-icon-sizes = "gtk-button=16,16" # This makes button icons smaller. -gtk-auto-mnemonics = 1 -gtk-primary-button-warps-slider = 1 - -include "main.rc" -include "apps.rc" -include "panel.rc" -include "xfce-notify.rc" -include "menubar-toolbar/menubar-toolbar-dark.rc" diff --git a/common/gtk-2.0/main.rc b/common/gtk-2.0/main.rc deleted file mode 100644 index 8b8f824..0000000 --- a/common/gtk-2.0/main.rc +++ /dev/null @@ -1,2349 +0,0 @@ -style "default" { - - xthickness = 1 - ythickness = 1 - - # Style Properties - - GtkWidget::focus-line-width = 1 - GtkMenuBar::window-dragging = 1 - GtkToolbar::window-dragging = 1 - GtkToolbar::internal-padding = 4 - GtkToolButton::icon-spacing = 4 - - GtkWidget::tooltip-radius = 2 - GtkWidget::tooltip-alpha = 235 - GtkWidget::new-tooltip-style = 1 #for compatibility - - GtkSeparatorMenuItem::horizontal-padding = 3 - 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 } - - GtkEntry::state-hint = 1 - - GtkScrollbar::trough-border = 0 - GtkRange::trough-border = 0 - GtkRange::slider-width = 13 - GtkRange::stepper-size = 0 - - GtkScrollbar::activate-slider = 1 - GtkScrollbar::has-backward-stepper = 0 - GtkScrollbar::has-forward-stepper = 0 - GtkScrollbar::min-slider-length = 32 - GtkScrolledWindow::scrollbar-spacing = 0 - GtkScrolledWindow::scrollbars-within-bevel = 1 - - GtkScale::slider_length = 15 - GtkScale::slider_width = 15 - GtkScale::trough-side-details = 1 - - GtkProgressBar::min-horizontal-bar-height = 8 - GtkProgressBar::min-vertical-bar-width = 8 - - GtkStatusbar::shadow_type = GTK_SHADOW_NONE - GtkSpinButton::shadow_type = GTK_SHADOW_NONE - GtkMenuBar::shadow-type = GTK_SHADOW_NONE - GtkToolbar::shadow-type = GTK_SHADOW_NONE - GtkMenuBar::internal-padding = 0 #( every window is misaligned for the sake of menus ): - GtkMenu::horizontal-padding = 0 - GtkMenu::vertical-padding = 0 - - GtkCheckButton::indicator_spacing = 3 - GtkOptionMenu::indicator_spacing = { 8, 2, 0, 0 } - - GtkTreeView::row_ending_details = 0 - GtkTreeView::expander-size = 11 - GtkTreeView::vertical-separator = 4 - GtkTreeView::horizontal-separator = 4 - GtkTreeView::allow-rules = 1 - GtkTreeView::odd_row_color = shade(0.98, @base_color) - - GtkExpander::expander-size = 11 - - GnomeHRef::link_color = @link_color - GtkHTML::link-color = @link_color - GtkIMHtmlr::hyperlink-color = @link_color - GtkIMHtml::hyperlink-color = @link_color - GtkWidget::link-color = @link_color - GtkWidget::visited-link-color = @text_color - - # Colors - - bg[NORMAL] = @bg_color - bg[PRELIGHT] = shade (1.02, @bg_color) - bg[SELECTED] = @selected_bg_color - bg[INSENSITIVE] = @insensitive_bg_color - bg[ACTIVE] = shade (0.9, @bg_color) - - fg[NORMAL] = @text_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] = @bg_color - base[ACTIVE] = shade (0.9, @selected_bg_color) - - # For succinctness, all reasonable pixmap options remain here - - engine "pixmap" { - - # Check Buttons - - image { - function = CHECK - recolorable = TRUE - state = NORMAL - shadow = OUT - overlay_file = "assets/checkbox-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = PRELIGHT - shadow = OUT - overlay_file = "assets/checkbox-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = ACTIVE - shadow = OUT - overlay_file = "assets/checkbox-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = SELECTED - shadow = OUT - overlay_file = "assets/checkbox-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = INSENSITIVE - shadow = OUT - overlay_file = "assets/checkbox-unchecked-insensitive.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = NORMAL - shadow = IN - overlay_file = "assets/checkbox-checked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = PRELIGHT - shadow = IN - overlay_file = "assets/checkbox-checked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = ACTIVE - shadow = IN - overlay_file = "assets/checkbox-checked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = SELECTED - shadow = IN - overlay_file = "assets/checkbox-checked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = INSENSITIVE - shadow = IN - overlay_file = "assets/checkbox-checked-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.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = ACTIVE - shadow = OUT - overlay_file = "assets/radio-unchecked.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/radio-unchecked-insensitive.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = NORMAL - shadow = IN - overlay_file = "assets/radio-checked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = PRELIGHT - shadow = IN - overlay_file = "assets/radio-checked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = ACTIVE - shadow = IN - overlay_file = "assets/radio-checked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = SELECTED - shadow = IN - overlay_file = "assets/radio-checked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = INSENSITIVE - shadow = IN - overlay_file = "assets/radio-checked-insensitive.png" - overlay_stretch = FALSE - } - - # Arrows - - image { - function = ARROW - overlay_file = "assets/arrow-up.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = UP - } - - image { - function = ARROW - state = PRELIGHT - overlay_file = "assets/arrow-up-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = UP - } - - image { - function = ARROW - state = ACTIVE - overlay_file = "assets/arrow-up-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = UP - } - - image { - function = ARROW - state = INSENSITIVE - overlay_file = "assets/arrow-up-insens.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = UP - } - - image { - function = ARROW - state = NORMAL - overlay_file = "assets/arrow-down.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = DOWN - } - - image { - function = ARROW - state = PRELIGHT - overlay_file = "assets/arrow-down-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = DOWN - } - - image { - function = ARROW - state = ACTIVE - overlay_file = "assets/arrow-down-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = DOWN - } - - image { - function = ARROW - state = INSENSITIVE - overlay_file = "assets/arrow-down-insens.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = DOWN - } - - image { - function = ARROW - overlay_file = "assets/arrow-left.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = LEFT - } - - image { - function = ARROW - state= PRELIGHT - overlay_file = "assets/arrow-left-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = LEFT - } - - image { - function = ARROW - state = ACTIVE - overlay_file = "assets/arrow-left-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = LEFT - } - - image { - function = ARROW - state = INSENSITIVE - overlay_file = "assets/arrow-left-insens.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = LEFT - } - - image { - function = ARROW - overlay_file = "assets/arrow-right.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = RIGHT - } - - image { - function = ARROW - state = PRELIGHT - overlay_file = "assets/arrow-right-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = RIGHT - } - - image { - function = ARROW - state = ACTIVE - overlay_file = "assets/arrow-right-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = RIGHT - } - - image { - function = ARROW - state = INSENSITIVE - overlay_file = "assets/arrow-right-insens.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = RIGHT - } - - # Option Menu Arrows - - image { - function = TAB - state = INSENSITIVE - overlay_file = "assets/arrow-down-insens.png" - overlay_stretch = FALSE - } - - image { - function = TAB - state = NORMAL - overlay_file = "assets/arrow-down.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - } - - image { - function = TAB - state = PRELIGHT - overlay_file = "assets/arrow-down-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - } - - # Lines - - image { - function = VLINE - file = "assets/line-v.png" - border = { 0, 0, 0, 0 } - stretch = TRUE - } - - image { - function = HLINE - file = "assets/line-h.png" - border = { 0, 0, 0, 0 } - stretch = TRUE - } - - # Focuslines - - image { - function = FOCUS - file = "assets/focus-line.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - } - - # Handles - - image { - function = HANDLE - overlay_file = "assets/handle-h.png" - overlay_stretch = FALSE - orientation = HORIZONTAL - } - - image { - function = HANDLE - overlay_file = "assets/handle-v.png" - overlay_stretch = FALSE - orientation = VERTICAL - } - - # Expanders - - image { - function = EXPANDER - expander_style = COLLAPSED - file = "assets/plus.png" - } - - image { - function = EXPANDER - expander_style = EXPANDED - file = "assets/minus.png" - } - - image { - function = EXPANDER - expander_style = SEMI_EXPANDED - file = "assets/minus.png" - } - - image { - function = EXPANDER - expander_style = SEMI_COLLAPSED - file = "assets/plus.png" - } - - image { - function = RESIZE_GRIP - state = NORMAL - detail = "statusbar" - overlay_file = "assets/null.png" - overlay_border = { 0,0,0,0 } - overlay_stretch = FALSE - } - - # Shadows ( this area needs help :P ) - - image { - function = SHADOW_GAP - file = "assets/null.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - } - } -} - - -style "toplevel_hack" { - - engine "adwaita" { - } -} - -style "ooo_stepper_hack" { - - GtkScrollbar::stepper-size = 0 - GtkScrollbar::has-backward-stepper = 0 - GtkScrollbar::has-forward-stepper = 0 - -} - -style "scrollbar" { - - engine "pixmap" { - - image { - function = BOX - detail = "trough" - file = "assets/trough-scrollbar-horiz.png" - border = { 2, 2, 3, 3 } - stretch = TRUE - orientation = HORIZONTAL - } - - image { - function = BOX - detail = "trough" - file = "assets/trough-scrollbar-vert.png" - border = { 3, 3, 2, 2 } - stretch = TRUE - orientation = VERTICAL - } - - image { - function = ARROW - overlay_file = "assets/null.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = UP - } - - image { - function = ARROW - overlay_file = "assets/null.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = DOWN - } - - image { - function = ARROW - overlay_file = "assets/null.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = LEFT - } - - image { - function = ARROW - overlay_file = "assets/null.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = RIGHT - } - - # Sliders - - image { - function = SLIDER - state = NORMAL - file = "assets/slider-horiz.png" - border = { 5, 5, 3, 3 } - stretch = TRUE - orientation = HORIZONTAL - } - - image { - function = SLIDER - state = ACTIVE - file = "assets/slider-horiz-active.png" - border = { 5, 5, 3, 3 } - stretch = TRUE - orientation = HORIZONTAL - } - - image { - function = SLIDER - state = PRELIGHT - file = "assets/slider-horiz-prelight.png" - border = { 5, 5, 3, 3 } - stretch = TRUE - orientation = HORIZONTAL - } - - image { - function = SLIDER - state = INSENSITIVE - file = "assets/slider-horiz-insens.png" - border = { 5, 5, 3, 3 } - stretch = TRUE - orientation = HORIZONTAL - } - -# X Verticals - - image { - function = SLIDER - state = NORMAL - file = "assets/slider-vert.png" - border = { 3, 3, 5, 5 } - stretch = TRUE - orientation = VERTICAL - } - - image { - function = SLIDER - state = ACTIVE - file = "assets/slider-vert-active.png" - border = { 3, 3, 5, 5 } - stretch = TRUE - orientation = VERTICAL - } - - image { - function = SLIDER - state = PRELIGHT - file = "assets/slider-vert-prelight.png" - border = { 3, 3, 5, 5 } - stretch = TRUE - orientation = VERTICAL - } - - image { - function = SLIDER - state = INSENSITIVE - file = "assets/slider-vert-insens.png" - border = { 3, 3, 5, 5 } - stretch = TRUE - orientation = VERTICAL - } - } -} - -style "menu" { - - xthickness = 0 - ythickness = 0 - - GtkMenuItem::arrow-scaling = 0.4 - - bg[NORMAL] = @menu_bg - bg[INSENSITIVE] = @menu_bg - bg[PRELIGHT] = @menu_bg - - engine "pixmap" { # For menus that use horizontal lines rather than gtkseparator - - image { - function = HLINE - file = "assets/null.png" - border = { 0, 0, 0, 0 } - stretch = TRUE - } - } -} - -style "menu_framed_box" { - - engine "adwaita" { - } -} - -style "menu_item" -{ - xthickness = 2 - ythickness = 5 - - # HACK: Gtk doesn't actually read this value - # while rendering the menu items, but Libreoffice - # does; setting this value equal to the one in - # fg[PRELIGHT] ensures a code path in the LO theming code - # that falls back to a dark text color for menu item text - # highlight. The price to pay is black text on menus as well, - # but at least it's readable. - # See https://bugs.freedesktop.org/show_bug.cgi?id=38038 - bg[SELECTED] = @selected_fg_color - - fg[NORMAL] = @fg_color - fg[SELECTED] = @selected_fg_color - - fg[PRELIGHT] = @selected_fg_color - text[PRELIGHT] = @selected_fg_color - - engine "pixmap" { - - image { - function = BOX - state = PRELIGHT - file = "assets/menuitem.png" - border = { 1, 0, 1, 0 } - stretch = TRUE - } - - # Fix invisible scale trough on selected menuitems - - image { - function = BOX - detail = "trough-lower" - file = "assets/trough-horizontal.png" - border = { 8, 8, 0, 0 } - stretch = TRUE - orientation = HORIZONTAL - } - - image { - function = SLIDER - state = PRELIGHT - file = "assets/null.png" - border = { 0, 0, 0, 0 } - stretch = TRUE - overlay_file = "assets/slider.png" - overlay_stretch = FALSE - orientation = HORIZONTAL - } - - # Check Buttons - - image { - function = CHECK - recolorable = TRUE - state = NORMAL - shadow = OUT - overlay_file = "assets/menu-checkbox-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = PRELIGHT - shadow = OUT - overlay_file = "assets/menu-checkbox-unchecked-selected.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = ACTIVE - shadow = OUT - overlay_file = "assets/menu-checkbox-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = INSENSITIVE - shadow = OUT - overlay_file = "assets/menu-checkbox-unchecked-insensitive.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = NORMAL - shadow = IN - overlay_file = "assets/menu-checkbox-checked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = PRELIGHT - shadow = IN - overlay_file = "assets/menu-checkbox-checked-selected.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = ACTIVE - shadow = IN - overlay_file = "assets/menu-checkbox-checked.png" - overlay_stretch = FALSE - } - - image { - function = CHECK - recolorable = TRUE - state = INSENSITIVE - shadow = IN - overlay_file = "assets/menu-checkbox-checked-insensitive.png" - overlay_stretch = FALSE - } - - # Radio Buttons - - image { - function = OPTION - state = NORMAL - shadow = OUT - overlay_file = "assets/menu-radio-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = PRELIGHT - shadow = OUT - overlay_file = "assets/menu-radio-unchecked-selected.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = ACTIVE - shadow = OUT - overlay_file = "assets/menu-radio-unchecked.png" - overlay_stretch = FALSE - } - - image { - function = OPTION - state = INSENSITIVE - shadow = OUT - overlay_file = "assets/menu-radio-unchecked-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-selected.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 = SHADOW # This fixes boxy Qt menu items - file = "assets/null.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - } - - # Arrow Buttons - - image { - function = ARROW - state = NORMAL - overlay_file = "assets/menu-arrow.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = RIGHT - } - - image { - function = ARROW - state = PRELIGHT - overlay_file = "assets/menu-arrow-prelight.png" - overlay_border = { 0, 0, 0, 0 } - overlay_stretch = FALSE - arrow_direction = RIGHT - } - } -} - -style "button" { - - xthickness = 4 - ythickness = 4 - - engine "pixmap" { - - image { - function = BOX - state = NORMAL - file = "assets/button.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - } - - image { - function = BOX - state = PRELIGHT - file = "assets/button-hover.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 "checkbutton" { - - fg[PRELIGHT] = @text_color - fg[ACTIVE] = @text_color - -} - -style "entry" { - - xthickness = 6 - ythickness = 4 - - engine "pixmap" { - - image { - function = SHADOW - state = NORMAL - detail = "entry" - file = "assets/entry-bg.png" - border = {6, 6, 6, 6} - stretch = TRUE - } - - image { - function = SHADOW - state = ACTIVE - detail = "entry" - file = "assets/entry-active-bg.png" - border = {6, 6, 6, 6} - stretch = TRUE - } - - image { - function = SHADOW - state = INSENSITIVE - detail = "entry" - file = "assets/entry-disabled-bg.png" - border = {6, 6, 6, 6} - 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-disabled.png" - } - - image { - function = FLAT_BOX - detail = "entry_bg" - file = "assets/entry-background.png" - } - } -} - -style "notebook_entry" { - - engine "pixmap" { - - image { - function = SHADOW - state = NORMAL - detail = "entry" - file = "assets/entry-notebook.png" - border = {6, 6, 6, 6} - stretch = TRUE - } - - image { - function = SHADOW - state = ACTIVE - detail = "entry" - file = "assets/entry-active-notebook.png" - border = {6, 6, 6, 6} - stretch = TRUE - } - - image { - function = SHADOW - state = INSENSITIVE - detail = "entry" - file = "assets/entry-disabled-notebook.png" - border = {6, 6, 6, 6} - stretch = TRUE - } - } -} - -style "notebook_tab_label" { - - fg[ACTIVE] = @text_color - -} - -style "combobox_entry" -{ - xthickness = 3 - ythickness = 4 - - engine "pixmap" { - - # LTR version - - image { - function = SHADOW - detail = "entry" - state = NORMAL - shadow = IN - file = "assets/combo-entry.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - image { - function = SHADOW - detail = "entry" - state = INSENSITIVE - shadow = IN - file = "assets/combo-entry-insensitive.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - image { - function = SHADOW - detail = "entry" - state = ACTIVE - file = "assets/combo-entry-focus.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - # RTL version - - image { - function = SHADOW - detail = "entry" - state = NORMAL - shadow = IN - file = "assets/combo-entry-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - - image { - function = SHADOW - detail = "entry" - state = INSENSITIVE - shadow = IN - file = "assets/combo-entry-insensitive-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - - image { - function = SHADOW - detail = "entry" - state = ACTIVE - file = "assets/combo-entry-focus-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - } -} - -style "notebook_combobox_entry" { - - engine "pixmap" { - - # LTR version - - image { - function = SHADOW - detail = "entry" - state = NORMAL - shadow = IN - file = "assets/combo-entry-notebook.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - image { - function = SHADOW - detail = "entry" - state = INSENSITIVE - shadow = IN - file = "assets/combo-entry-insensitive-notebook.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - image { - function = SHADOW - detail = "entry" - state = ACTIVE - file = "assets/combo-entry-focus-notebook.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - # RTL version - - image { - function = SHADOW - detail = "entry" - state = NORMAL - shadow = IN - file = "assets/combo-entry-notebook-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - - image { - function = SHADOW - detail = "entry" - state = INSENSITIVE - shadow = IN - file = "assets/combo-entry-insensitive-notebook-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - - image { - function = SHADOW - detail = "entry" - state = ACTIVE - file = "assets/combo-entry-focus-notebook-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - } -} - -style "combobox_entry_button" -{ - xthickness = 6 - - fg[ACTIVE] = @text_color - - engine "pixmap" { - - # LTR version - - image { - function = BOX - state = NORMAL - file = "assets/combo-entry-button.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - image { - function = BOX - state = PRELIGHT - file = "assets/combo-entry-button.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - image { - function = BOX - state = INSENSITIVE - file = "assets/combo-entry-button-insensitive.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - image { - function = BOX - state = ACTIVE - file = "assets/combo-entry-button-active.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = LTR - } - - # RTL version - image { - function = BOX - state = NORMAL - file = "assets/combo-entry-button-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - - image { - function = BOX - state = PRELIGHT - file = "assets/combo-entry-button-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - - image { - function = BOX - state = INSENSITIVE - file = "assets/combo-entry-button-insensitive-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - - image { - function = BOX - state = ACTIVE - file = "assets/combo-entry-button-active-rtl.png" - border = { 4, 4, 5, 4 } - stretch = TRUE - direction = RTL - } - } -} - -style "spinbutton" { - - bg[NORMAL] = @bg_color - - xthickness = 6 - ythickness = 4 - - engine "pixmap" { - - image { - function = ARROW - } - - # Spin-Up LTR - - image { - function = BOX - state = NORMAL - detail = "spinbutton_up" - file = "assets/up-background.png" - border = { 1, 4, 5, 0 } - stretch = TRUE - overlay_file = "assets/arrow-up-small.png" - overlay_stretch = FALSE - direction = LTR - } - - image { - function = BOX - state = PRELIGHT - detail = "spinbutton_up" - file = "assets/up-background.png" - border = { 1, 4, 5, 0 } - stretch = TRUE - overlay_file = "assets/arrow-up-small-prelight.png" - overlay_stretch = FALSE - direction = LTR - } - - image { - function = BOX - state = INSENSITIVE - detail = "spinbutton_up" - file = "assets/up-background-disable.png" - border = { 1, 4, 5, 0 } - stretch = TRUE - overlay_file = "assets/arrow-up-small-insens.png" - overlay_stretch = FALSE - direction = LTR - } - - image { - function = BOX - state = ACTIVE - detail = "spinbutton_up" - file = "assets/up-background.png" - border = { 1, 4, 5, 0 } - stretch = TRUE - overlay_file = "assets/arrow-up-small-prelight.png" - overlay_stretch = FALSE - direction = LTR - } - - # Spin-Up RTL - - image { - function = BOX - state = NORMAL - detail = "spinbutton_up" - file = "assets/up-background-rtl.png" - border = { 4, 1, 5, 0 } - stretch = TRUE - overlay_file = "assets/arrow-up-small.png" - overlay_stretch = FALSE - direction = RTL - } - - image { - function = BOX - state = PRELIGHT - detail = "spinbutton_up" - file = "assets/up-background-rtl.png" - border = { 4, 1, 5, 0 } - stretch = TRUE - overlay_file = "assets/arrow-up-small-prelight.png" - overlay_stretch = FALSE - direction = RTL - } - - image { - function = BOX - state = INSENSITIVE - detail = "spinbutton_up" - file = "assets/up-background-disable-rtl.png" - border = { 4, 1, 5, 0 } - stretch = TRUE - overlay_file = "assets/arrow-up-small-insens.png" - overlay_stretch = FALSE - direction = RTL - } - - image { - function = BOX - state = ACTIVE - detail = "spinbutton_up" - file = "assets/up-background-rtl.png" - border = { 4, 1, 5, 0 } - stretch = TRUE - overlay_file = "assets/arrow-up-small-prelight.png" - overlay_stretch = FALSE - direction = RTL - } - - # Spin-Down LTR - - image { - function = BOX - state = NORMAL - detail = "spinbutton_down" - file = "assets/down-background.png" - border = { 1, 4, 1, 4 } - stretch = TRUE - overlay_file = "assets/arrow-down-small.png" - overlay_stretch = FALSE - direction = LTR - } - - image { - function = BOX - state = PRELIGHT - detail = "spinbutton_down" - file = "assets/down-background.png" - border = { 1, 4, 1, 4 } - stretch = TRUE - overlay_file = "assets/arrow-down-small-prelight.png" - overlay_stretch = FALSE - direction = LTR - } - - image { - function = BOX - state = INSENSITIVE - detail = "spinbutton_down" - file = "assets/down-background-disable.png" - border = { 1, 4, 1, 4 } - stretch = TRUE - overlay_file = "assets/arrow-down-small-insens.png" - overlay_stretch = FALSE - direction = LTR - } - - image { - function = BOX - state = ACTIVE - detail = "spinbutton_down" - file = "assets/down-background.png" - border = { 1, 4, 1, 4 } - stretch = TRUE - overlay_file = "assets/arrow-down-small-prelight.png" - overlay_stretch = FALSE - direction = LTR - } - - # Spin-Down RTL - - image { - function = BOX - state = NORMAL - detail = "spinbutton_down" - file = "assets/down-background-rtl.png" - border = { 4, 1, 1, 4 } - stretch = TRUE - overlay_file = "assets/arrow-down-small.png" - overlay_stretch = FALSE - direction = RTL - } - - image { - function = BOX - state = PRELIGHT - detail = "spinbutton_down" - file = "assets/down-background-rtl.png" - border = { 4, 1, 1, 4 } - stretch = TRUE - overlay_file = "assets/arrow-down-small-prelight.png" - overlay_stretch = FALSE - direction = RTL - } - - image { - function = BOX - state = INSENSITIVE - detail = "spinbutton_down" - file = "assets/down-background-disable-rtl.png" - border = { 4, 1, 1, 4 } - stretch = TRUE - overlay_file = "assets/arrow-down-small-insens.png" - overlay_stretch = FALSE - direction = RTL - } - - image { - function = BOX - state = ACTIVE - detail = "spinbutton_down" - file = "assets/down-background-rtl.png" - border = { 4, 1, 1, 4 } - stretch = TRUE - overlay_file = "assets/arrow-down-small-prelight.png" - overlay_stretch = FALSE - direction = RTL - } - } -} - -style "gimp_spin_scale" { - - bg[NORMAL] = @base_color - - engine "pixmap" { - - image { - function = FLAT_BOX - detail = "entry_bg" - state = NORMAL - } - - image { - function = FLAT_BOX - detail = "entry_bg" - state = ACTIVE - } - - image { - function = BOX - state = NORMAL - detail = "spinbutton_up" - overlay_file = "assets/arrow-up-small.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = PRELIGHT - detail = "spinbutton_up" - overlay_file = "assets/arrow-up-small-prelight.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = ACTIVE - detail = "spinbutton_up" - overlay_file = "assets/arrow-up-small-prelight.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = INSENSITIVE - detail = "spinbutton_up" - overlay_file = "assets/arrow-up-small-insens.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = NORMAL - detail = "spinbutton_down" - overlay_file = "assets/arrow-down-small.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = PRELIGHT - detail = "spinbutton_down" - overlay_file = "assets/arrow-down-small-prelight.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = ACTIVE - detail = "spinbutton_down" - overlay_file = "assets/arrow-down-small-prelight.png" - overlay_stretch = FALSE - } - - image { - function = BOX - state = INSENSITIVE - detail = "spinbutton_down" - overlay_file = "assets/arrow-down-small-insens.png" - overlay_stretch = FALSE - } - } -} - -style "notebook" { - - xthickness = 5 - ythickness = 2 - - engine "pixmap" { - - image { - function = EXTENSION - state = ACTIVE - file = "assets/null.png" - border = { 0,0,0,0 } - stretch = TRUE - gap_side = TOP - } - - image { - function = EXTENSION - state = ACTIVE - file = "assets/null.png" - border = { 0,0,0,0 } - stretch = TRUE - gap_side = BOTTOM - } - - image { - function = EXTENSION - state = ACTIVE - file = "assets/null.png" - border = { 0,0,0,0 } - stretch = TRUE - gap_side = RIGHT - } - - image { - function = EXTENSION - state = ACTIVE - file = "assets/null.png" - border = { 0,0,0,0 } - stretch = TRUE - gap_side = LEFT - } - - image { - function = EXTENSION - file = "assets/tab-top-active.png" - border = { 3,3,3,3 } - stretch = TRUE - gap_side = BOTTOM - } - - image { - function = EXTENSION - file = "assets/tab-bottom-active.png" - border = { 3,3,3,3 } - stretch = TRUE - gap_side = TOP - } - - image { - function = EXTENSION - file = "assets/tab-left-active.png" - border = { 3,3,3,3 } - stretch = TRUE - gap_side = RIGHT - } - - image { - function = EXTENSION - file = "assets/tab-right-active.png" - border = { 3,3,3,3 } - stretch = TRUE - gap_side = LEFT - } - - # How to draw boxes with a gap on one side (ie the page of a notebook) - - image { - function = BOX_GAP - file = "assets/notebook.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - gap_file = "assets/notebook-gap-horiz.png" - gap_border = { 1, 1, 0, 0 } - gap_side = TOP - } - - image { - function = BOX_GAP - file = "assets/notebook.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - gap_file = "assets/notebook-gap-horiz.png" - gap_border = { 1, 1, 0, 0 } - gap_side = BOTTOM - } - - image { - function = BOX_GAP - file = "assets/notebook.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - gap_file = "assets/notebook-gap-vert.png" - gap_border = { 0, 0, 1, 1 } - gap_side = LEFT - } - - image { - function = BOX_GAP - file = "assets/notebook.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - gap_file = "assets/notebook-gap-vert.png" - gap_border = { 0, 0, 1, 1 } - gap_side = RIGHT - } - - # How to draw the box of a notebook when it isnt attached to a tab - - image { - function = BOX - file = "assets/notebook.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - } - } -} - -style "handlebox" { - - engine "pixmap" { - - image { - function = BOX - file = "assets/null.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - detail = "handlebox_bin" - shadow = IN - } - - image { - function = BOX - file = "assets/null.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - detail = "handlebox_bin" - shadow = OUT - } - } -} - -style "combobox_separator" { - - xthickness = 0 - ythickness = 0 - GtkWidget::wide-separators = 1 - -} - -style "combobox" { - - xthickness = 0 - ythickness = 0 - -} - -style "combobox_button" { - - xthickness = 3 - ythickness = 3 - -} - -style "range" { - - engine "pixmap" { - - image { - function = BOX - detail = "trough-upper" - file = "assets/trough-horizontal.png" - border = { 8, 8, 0, 0 } - stretch = TRUE - orientation = HORIZONTAL - } - - image { - function = BOX - detail = "trough-lower" - file = "assets/trough-horizontal-active.png" - border = { 8, 8, 0, 0 } - stretch = TRUE - orientation = HORIZONTAL - } - - image { - function = BOX - detail = "trough-upper" - file = "assets/trough-vertical.png" - border = { 0, 0, 8, 8 } - stretch = TRUE - orientation = VERTICAL - } - - image { - function = BOX - detail = "trough-lower" - file = "assets/trough-vertical-active.png" - border = { 0, 0, 8, 8 } - stretch = TRUE - orientation = VERTICAL - } - - # Horizontal - - image { - function = SLIDER - state = NORMAL - file = "assets/null.png" - border = { 0, 0, 0, 0 } - stretch = TRUE - overlay_file = "assets/slider.png" - overlay_stretch = FALSE - orientation = HORIZONTAL - } - - image { - function = SLIDER - state = PRELIGHT - file = "assets/null.png" - border = { 0, 0, 0, 0 } - stretch = TRUE - overlay_file = "assets/slider-prelight.png" - overlay_stretch = FALSE - orientation = HORIZONTAL - } - - image { - function = SLIDER - state = INSENSITIVE - file = "assets/null.png" - border = { 0, 0, 0, 0 } - stretch = TRUE - overlay_file = "assets/slider-insensitive.png" - overlay_stretch = FALSE - orientation = HORIZONTAL - } - - # Vertical - - image { - function = SLIDER - state = NORMAL - file = "assets/null.png" - border = { 0, 0, 0, 0 } - stretch = TRUE - overlay_file = "assets/slider.png" - overlay_stretch = FALSE - orientation = VERTICAL - } - - image { - function = SLIDER - state = PRELIGHT - file = "assets/null.png" - border = { 0, 0, 0, 0 } - stretch = TRUE - overlay_file = "assets/slider-prelight.png" - overlay_stretch = FALSE - orientation = VERTICAL - } - - image { - function = SLIDER - state = INSENSITIVE - file = "assets/null.png" - border = { 0, 0, 0, 0 } - stretch = TRUE - overlay_file = "assets/slider-insensitive.png" - overlay_stretch = FALSE - orientation = VERTICAL - } - - # Function below removes ugly boxes - - image { - function = BOX - file = "assets/null.png" - border = { 3, 3, 3, 3 } - stretch = TRUE - } - } -} - -style "progressbar" { - - xthickness = 1 - ythickness = 1 - - fg[NORMAL] = @fg_color - fg[PRELIGHT] = @selected_fg_color - - engine "pixmap" { - - image { - function = BOX - detail = "trough" - file = "assets/trough-progressbar.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - orientation = HORIZONTAL - } - - image { - function = BOX - detail = "bar" - file = "assets/progressbar.png" - stretch = TRUE - border = { 3, 3, 3, 3 } - orientation = HORIZONTAL - } - - image { - function = BOX - detail = "trough" - file = "assets/trough-progressbar_v.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - orientation = VERTICAL - } - - image { - function = BOX - detail = "bar" - file = "assets/progressbar_v.png" - stretch = TRUE - border = { 3, 3, 3, 3 } - orientation = VERTICAL - } - } -} - -style "separator_menu_item" { - - engine "pixmap" { - - image { - function = BOX - file = "assets/null.png" - border = { 0, 0, 1, 0 } - stretch = TRUE - } - } -} - -style "treeview_header" { - ythickness = 1 - - fg[PRELIGHT] = mix(0.70, @text_color, @base_color) - font_name = "Bold" - - engine "pixmap" { - - image { - function = BOX - file = "assets/tree_header.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - } - } -} - -# Treeview Rows - -style "treeview" { - - xthickness = 2 - ythickness = 0 - - -} - -style "scrolled_window" { - - xthickness = 1 - ythickness = 1 - - engine "pixmap" { - - image { - function = SHADOW - file = "assets/frame.png" - border = { 5, 5, 5, 5 } - stretch = TRUE - } - } -} - -style "frame" { - - xthickness = 1 - ythickness = 1 - - engine "pixmap" { - - image { - function = SHADOW - file = "assets/frame.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - shadow = IN - } - - image { - function = SHADOW_GAP - file = "assets/frame.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - gap_start_file = "assets/frame-gap-start.png" - gap_start_border = { 1, 0, 0, 0 } - gap_end_file = "assets/frame-gap-end.png" - gap_end_border = { 0, 1, 0, 0 } - shadow = IN - } - - image { - function = SHADOW - file = "assets/frame.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - shadow = OUT - } - - image { - function = SHADOW_GAP - file = "assets/frame.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - gap_start_file = "assets/frame-gap-start.png" - gap_start_border = { 1, 0, 0, 0 } - gap_end_file = "assets/frame-gap-end.png" - gap_end_border = { 0, 1, 0, 0 } - shadow = OUT - } - - image { - function = SHADOW - file = "assets/frame.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - shadow = ETCHED_IN - } - - image { - function = SHADOW_GAP - file = "assets/frame.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - gap_start_file = "assets/frame-gap-start.png" - gap_start_border = { 1, 0, 0, 0 } - gap_end_file = "assets/frame-gap-end.png" - gap_end_border = { 0, 1, 0, 0 } - shadow = ETCHED_IN - } - - image { - function = SHADOW - file = "assets/frame.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - shadow = ETCHED_OUT - } - - image { - function = SHADOW_GAP - file = "assets/frame.png" - border = { 1, 1, 1, 1 } - stretch = TRUE - gap_start_file = "assets/frame-gap-start.png" - gap_start_border = { 1, 0, 0, 0 } - gap_end_file = "assets/frame-gap-end.png" - gap_end_border = { 0, 1, 0, 0 } - shadow = ETCHED_OUT - } - } -} - -style "gimp_toolbox_frame" { - - engine "pixmap" { - - image { - function = SHADOW - } - } -} - -style "toolbar" { - - engine "pixmap" { - - image { - function = BOX - file = "assets/toolbar.png" - stretch = TRUE - border = { 1, 1, 1, 1 } - } - - image { - function = HANDLE - overlay_file = "assets/handle-h.png" - overlay_stretch = FALSE - orientation = HORIZONTAL - } - - image { - function = HANDLE - overlay_file = "assets/handle-v.png" - overlay_stretch = FALSE - orientation = VERTICAL - } - - image { - function = VLINE - recolorable = TRUE - file = "assets/null.png" - } - - image { - function = HLINE - recolorable = TRUE - file = "assets/null.png" - } - } -} - -style "inline_toolbar" { - - GtkToolbar::button-relief = GTK_RELIEF_NORMAL - - engine "pixmap" { - - image { - function = BOX - file = "assets/inline-toolbar.png" - stretch = TRUE - border = { 1, 1, 1, 1 } - } - } -} - -style "notebook_viewport" { - - bg[NORMAL] = @notebook_bg -} - - -style "notebook_eventbox" { - - bg[NORMAL] = @notebook_bg - bg[ACTIVE] = @bg_color -} - -style "tooltips" { - - xthickness = 8 - ythickness = 4 - - bg[NORMAL] = @tooltip_bg_color - fg[NORMAL] = @tooltip_fg_color - bg[SELECTED] = @tooltip_bg_color - -} - -style "eclipse-tooltips" { - - xthickness = 8 - ythickness = 4 - - bg[NORMAL] = shade(1.05, @bg_color) - fg[NORMAL] = @text_color - bg[SELECTED] = shade(1.05, @bg_color) - -} - -style "xfdesktop-icon-view" { - XfdesktopIconView::label-alpha = 0 - XfdesktopIconView::selected-label-alpha = 100 - XfdesktopIconView::shadow-x-offset = 0 - XfdesktopIconView::shadow-y-offset = 1 - XfdesktopIconView::selected-shadow-x-offset = 0 - XfdesktopIconView::selected-shadow-y-offset = 1 - XfdesktopIconView::shadow-color = "#000000" - XfdesktopIconView::selected-shadow-color = "#000000" - XfdesktopIconView::shadow-blur-radius = 2 - XfdesktopIconView::cell-spacing = 2 - XfdesktopIconView::cell-padding = 6 - XfdesktopIconView::cell-text-width-proportion = 1.9 - - fg[NORMAL] = @selected_fg_color - fg[ACTIVE] = @selected_fg_color -} - -style "xfwm-tabwin" { - Xfwm4TabwinWidget::border-width = 1 - Xfwm4TabwinWidget::border-alpha = 1.0 - Xfwm4TabwinWidget::icon-size = 64 - Xfwm4TabwinWidget::alpha = 1.0 - Xfwm4TabwinWidget::border-radius = 2 - - bg[NORMAL] = @bg_color - bg[SELECTED] = @bg_color - - fg[NORMAL] = @fg_color - - engine "murrine" { - contrast = 0.7 - glazestyle = 0 - glowstyle = 0 - highlight_shade = 1.0 - gradient_shades = {1.0,1.0,1.0,1.0} - border_shades = { 0.8, 0.8 } - } -} - -style "xfwm-tabwin-button" { - - font_name = "bold" - bg[SELECTED] = @selected_bg_color -} - -# Chromium -style "chrome_menu_item" { - - bg[SELECTED] = @selected_bg_color - -} - -# Text Style -style "text" = "default" { - engine "murrine" { textstyle = 0 } -} - -style "menu_text" = "menu_item" { - engine "murrine" { textstyle = 0 } -} - - -style "null" { - - engine "pixmap" { - - image { - function = BOX - file = "assets/null.png" - stretch = TRUE - } - } -} - - -class "GtkWidget" style "default" -class "GtkScrollbar" style "scrollbar" -class "GtkButton" style "button" -class "GtkEntry" style "entry" -class "GtkOldEditable" style "entry" -class "GtkSpinButton" style "spinbutton" -class "GtkNotebook" style "notebook" -class "GtkRange" style "range" -class "GtkProgressBar" style "progressbar" -class "GtkSeparatorMenuItem" style "separator_menu_item" -class "GtkScrolledWindow" style "scrolled_window" -class "GtkFrame" style "frame" -class "GtkTreeView" style "treeview" -class "GtkToolbar" style "toolbar" -class "*HandleBox" style "toolbar" - -widget_class "**" style "menu" -widget_class "**" style "menu_framed_box" -widget_class "**" style "menu_item" -widget_class "**" style "checkbutton" -widget_class "*" style "combobox" -widget_class "**" style "combobox_button" -widget_class "**" style "combobox_separator" -widget_class "***" style "treeview_header" -widget_class "**" style "inline_toolbar" -widget_class "**" style "combobox_entry" -widget_class "**" style "combobox_entry_button" -widget_class "***" style "notebook_viewport" -widget_class "*HandleBox" style "toolbar" - -# Entries in notebooks draw with notebook's base color, but not if there's -# something else in the middle that draws gray again -widget_class "**" style "notebook_entry" -widget_class "***" style "entry" - -widget_class "***" style "notebook_combobox_entry" -widget_class "****" style "combobox_entry" - -# We also need to avoid changing fg color for the inactive notebook tab labels -widget_class "*." style "notebook_tab_label" - -# GTK tooltips -widget "gtk-tooltip*" style "tooltips" - -#Fix GVim tabs -widget_class "**" style "notebook_eventbox" - -# Xchat special cases -widget "*xchat-inputbox" style "entry" - -# GIMP -# Disable gradients completely for GimpSpinScale -#class "GimpSpinScale" style "gimp_spin_scale" - -# Remove borders from "Wilbert frame" in Gimp -widget_class "**" style "gimp_toolbox_frame" - -# Chrome/Chromium -widget_class "*Chrom*Button*" style "button" -widget_class "***" style "chrome_menu_item" - -# Eclipse/SWT -widget "gtk-tooltips*" style "eclipse-tooltips" -widget "*swt-toolbar-flat" style "null" - -# Openoffice, Libreoffice -class "GtkWindow" style "toplevel_hack" -widget "*openoffice-toplevel*" style "ooo_stepper_hack" - -# Xfce -widget_class "*XfdesktopIconView*" style "xfdesktop-icon-view" -widget "xfwm4-tabwin*" style "xfwm-tabwin" -widget "xfwm4-tabwin*GtkButton*" style "xfwm-tabwin-button" - -# Fixes ugly text shadows for insensitive text -widget_class "*" style "text" -widget_class "**" style "menu_text" -widget_class "**" style "text" -widget_class "**" style "text" -widget_class "**" style "text" diff --git a/common/gtk-2.0/menubar-toolbar/button-active.png b/common/gtk-2.0/menubar-toolbar/button-active.png deleted file mode 100644 index 91cab74ad6b430a31868d2e4c141cadfb1dd78e8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 271 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!VDzE)_nK|q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`%M(8U*-+ zxB_WSO)Cuz3k_{k4IOiJZ8HsRGf8bzNo{iwsbj{d4MIRc1~7R=+vgon4_`@;UoeBb z!mizW_U_+*;J}ZcKLzjfIY;OXk;vd$@?2>@#1P7VM7 diff --git a/common/gtk-2.0/menubar-toolbar/button-hover.png b/common/gtk-2.0/menubar-toolbar/button-hover.png deleted file mode 100644 index dacc8181de9ded9b9a0f3941bf1fec8d8f44c819..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!VDzE)_nK|q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`%M(Y6bX& zxB_WSLn{pf3vGQX9X(5JFtTy*v2pOVarB39{XE1G_^Og@-VmdFfg$Pir6{@+5wSsV8P}C`+%ysN`m}?8RQjq z?cTHZ!GoVHrE&>CQ8P~$#}J9|HZZ6<+0r7p+!Iw7(8A5T-G@yGywoD=1f=s diff --git a/common/gtk-2.0/menubar-toolbar/button.png b/common/gtk-2.0/menubar-toolbar/button.png deleted file mode 100644 index a39603852157b5f960789e705634d94180b19a88..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 265 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!VDzE)_nK|q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`%M(>IV3P zxB_WSLn{pf3vGQX9X(5JFp@H|l{U1IHnIhB+0C3d%p5t)oPg}<`eE~d8n{b>{DK+e z6?X03v-iP+2R{#7mBle( zA9Vw$*Ur<$F+}2Wa)SMLdA55Z1|bq!2OB;ZwVn3jNI3gJpi}+$2hPsr_B@p*_FYZ3 q=n)bM?FbN>dFsG6ez~Ug%nTwXezV2e=C%P%V(@hJb6Mw<&;$VPpiZp- diff --git a/common/gtk-2.0/menubar-toolbar/entry-active-toolbar.png b/common/gtk-2.0/menubar-toolbar/entry-active-toolbar.png deleted file mode 100644 index cdfb6a6a51902ec69bfaa93fbc9ddf66d5ba6895..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 266 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!3-oX$H;yMQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQznXjRSl_ zT-CZSY4=|8n|s-R-lc%~mqQm`30-t0eDT$dXRd5Ib9M9CE3aPPfBpLYn>Y90y}0`4 z>*K%Q9y7HmNdmQddb&7_cQBvD-z8k@;dC&JH&AqVJCXaNM&UP| zozgm4qHO1R|E<mdKI;Vst E0P;0YZvX%Q diff --git a/common/gtk-2.0/menubar-toolbar/entry-disabled-toolbar.png b/common/gtk-2.0/menubar-toolbar/entry-disabled-toolbar.png deleted file mode 100644 index e2bb778bf707e1db78c3e7c99441e912cc2afa47..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 275 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!3-oX$H;yMQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQznXEdzW) zTo11)J$>}}>7#cq zuKomqU%!6;`E#`(IRt2kkEe@ch{pN1lMI;-C~zF%i(Z+bedxdZZFY|8_O!Dz99lW0 zk1U#yJS+c3u++Jiii?|c!rU6vAB4w;M4obeP{W|9eCwH>?5!-5+gHD`Mmeaap0W@z Q1e(j>>FVdQ&MBb@0Aqu5)c^nh diff --git a/common/gtk-2.0/menubar-toolbar/entry-toolbar-dark.png b/common/gtk-2.0/menubar-toolbar/entry-toolbar-dark.png deleted file mode 100644 index a777bb098f865448b0ae2aa068732c92495c64e0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 249 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!VDzE)_nK|q?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`%M(>IV3P zxH4#)v70%vn>le9*>M;Hkv+GTsjQ}vtfsN777&@rYMaVw8LMa-scITsM`nn4P?*1?7oW^IeTI364<5bRVx{eh!%xj9eeihXmtj%-diVb)UY jGTm^)*F(-9s+btGk9bd7by>ItXcB{`tDnm{r-UW|1!YI_ diff --git a/common/gtk-2.0/menubar-toolbar/entry-toolbar.png b/common/gtk-2.0/menubar-toolbar/entry-toolbar.png deleted file mode 100644 index ec243b63f44da5c2cf665e3c479b61631b132370..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 281 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)h!3-oX$H;yMQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQznXZ328k zTvMx?GizHLCroLaIJt4+l%`2j+NMr#pE{#``ivvT_Z~g5_t=TO?_OMe|MKShS2sTZ z(d(OkzCQj7MBg6k6ooAXn&a>3;uxZF{_UlWj12}HE*G6Icr-bl{I}c6!6W}+etac+ zu$qtHYDfQmL(w>`ZPiP5HYhDuNYFXtAHU@46#hor<$4z`ZN44j-W+=J+&1%S#;@zu V%U8T!=>#;I!PC{xWt~$(69BXNbYK7g diff --git a/common/gtk-2.0/menubar-toolbar/menubar-dark.png b/common/gtk-2.0/menubar-toolbar/menubar-dark.png deleted file mode 100644 index 8e96b72fa4630c94afb87aaa198ad31bf8c4558b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^5FVdQ&MBb@07GjeasU7T diff --git a/common/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc b/common/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc deleted file mode 100644 index 866e16e..0000000 --- a/common/gtk-2.0/menubar-toolbar/menubar-toolbar-dark.rc +++ /dev/null @@ -1,222 +0,0 @@ -style "menubar" { - - bg[NORMAL] = "#002b36" - fg[NORMAL] = "#657b83" - fg[PRELIGHT] = "#657b83" - fg[ACTIVE] = "#657b83" - fg[SELECTED] = @selected_fg_color - fg[INSENSITIVE] = shade(0.7, "#657b83") - - xthickness = 0 - ythickness = 0 - - engine "pixmap" { - - image { - function = BOX - file = "menubar-toolbar/menubar-dark.png" - stretch = TRUE - border = { 1, 1, 1, 1 } - } - } -} - -style "menubar-borderless" { - - bg[NORMAL] = "#002b36" - fg[NORMAL] = "#657b83" - fg[SELECTED] = @selected_fg_color - fg[INSENSITIVE] = shade(0.7, "#657b83") - - xthickness = 0 - ythickness = 0 - - engine "pixmap" { - - image { - function = BOX - file = "assets/null.png" - stretch = TRUE - border = { 1, 1, 1, 1 } - } - } -} - -style "menubar_item" { - - xthickness = 2 - ythickness = 4 - - fg[PRELIGHT] = @selected_fg_color - - engine "pixmap" { - - image { - function = BOX - state = PRELIGHT - file = "menubar-toolbar/menubar_button-dark.png" - border = { 2, 2, 2, 2 } - stretch = TRUE - } - } -} - -# Text Style Menubar -style "menubar-text" { - - engine "murrine" { - text_shade = 0.0 - textstyle = 0 - } -} - - -style "toolbar_text" { - fg[NORMAL] = "#657b83" - fg[PRELIGHT] = "#657b83" - fg[INSENSITIVE] = shade(0.7, "#657b83") - fg[ACTIVE] = "#657b83" - - text[NORMAL] = "#657b83" - text[PRELIGHT] = "#657b83" - text[INSENSITIVE] = shade(0.7, "#657b83") - text[ACTIVE] = "#657b83" - -} - -style "toolbar_button" { - - xthickness = 4 - ythickness = 4 - - engine "pixmap" { - - image { - function = BOX - state = NORMAL - file = "menubar-toolbar/button.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - } - - image { - function = BOX - state = PRELIGHT - file = "menubar-toolbar/button-hover.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - } - - image { - function = BOX - state = ACTIVE - file = "menubar-toolbar/button-active.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - } - - image { - function = BOX - state = INSENSITIVE - file = "menubar-toolbar/button-insensitive.png" - border = { 4, 4, 4, 4 } - stretch = TRUE - } - } -} - -style "toolbar_entry" { - - base[NORMAL] = "#073642" - base[ACTIVE] = "#073642" - base[INSENSITIVE] = "#39404d" - - text[NORMAL] = "#657b83" - - engine "pixmap" { - - image { - function = SHADOW - state = NORMAL - detail = "entry" - file = "menubar-toolbar/entry-toolbar-dark.png" - border = {6, 6, 6, 6} - stretch = TRUE - } - - image { - function = SHADOW - state = ACTIVE - detail = "entry" - file = "menubar-toolbar/entry-active-toolbar-dark.png" - border = {6, 6, 6, 6} - stretch = TRUE - } - - image { - function = SHADOW - state = INSENSITIVE - detail = "entry" - file = "menubar-toolbar/entry-disabled-toolbar-dark.png" - border = {6, 6, 6, 6} - stretch = TRUE - } - - image { - function = FLAT_BOX - state = ACTIVE - detail = "entry_bg" - file = "assets/null.png" - } - - image { - function = FLAT_BOX - state = INSENSITIVE - detail = "entry_bg" - file = "assets/null.png" - } - - image { - function = FLAT_BOX - detail = "entry_bg" - file = "assets/null.png" - } - } -} - -#Chromium -style "chrome-gtk-frame" { - - ChromeGtkFrame::frame-color = "#002b36" - ChromeGtkFrame::inactive-frame-color = "#002b36" - - ChromeGtkFrame::frame-gradient-size = 0 - ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) - - ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) - ChromeGtkFrame::incognito-inactive-frame-color = @bg_color - - ChromeGtkFrame::incognito-frame-gradient-color = @bg_color - - ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) - ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) - ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color - -} - -widget_class "**" style "menubar" -widget_class "*.*" style "menubar_item" - -widget_class "*ThunarWindow*" style "menubar" - -class "ChromeGtkFrame" style "chrome-gtk-frame" - -widget_class "***" style "menubar-text" - -# Whitelist for dark toolbars -widget_class "*ThunarWindow*" style "menubar-borderless" -widget_class "*ThunarWindow**" style "toolbar_entry" -widget_class "*ThunarWindow**" style "toolbar_button" -widget_class "*ThunarWindow**" style "toolbar_text" -widget_class "*ThunarWindow***" style "menubar-text" - diff --git a/common/gtk-2.0/menubar-toolbar/menubar-toolbar.rc b/common/gtk-2.0/menubar-toolbar/menubar-toolbar.rc deleted file mode 100644 index 4c190ff..0000000 --- a/common/gtk-2.0/menubar-toolbar/menubar-toolbar.rc +++ /dev/null @@ -1,162 +0,0 @@ -style "menubar" { - - bg[NORMAL] = "#eee8d5" - fg[NORMAL] = "#839496" - fg[PRELIGHT] = "#839496" - fg[ACTIVE] = "#839496" - fg[SELECTED] = @selected_fg_color - fg[INSENSITIVE] = shade(1.3, "#839496") - - xthickness = 0 - ythickness = 0 - - engine "pixmap" { - - image { - function = BOX - file = "menubar-toolbar/menubar.png" - stretch = TRUE - border = { 1, 1, 1, 1 } - } - } -} - -style "menubar-borderless" { - - bg[NORMAL] = "#eee8d5" - fg[NORMAL] = "#839496" - fg[SELECTED] = @fg_color - fg[INSENSITIVE] = shade(1.3, "#839496") - - xthickness = 0 - ythickness = 0 - - engine "pixmap" { - - image { - function = BOX - file = "assets/null.png" - stretch = TRUE - border = { 1, 1, 1, 1 } - } - } -} - -style "menubar_item" { - - xthickness = 2 - ythickness = 4 - - fg[PRELIGHT] = @selected_fg_color - - engine "pixmap" { - - image { - function = BOX - state = PRELIGHT - file = "menubar-toolbar/menubar_button.png" - border = { 2, 2, 2, 2 } - stretch = TRUE - } - } -} - -# Text Style Menubar -style "menubar-text" { - - engine "murrine" { - text_shade = 0.0 - textstyle = 0 - } -} - -style "toolbar_entry" { - - text[NORMAL] = "#839496" - - engine "pixmap" { - - image { - function = SHADOW - state = NORMAL - detail = "entry" - file = "menubar-toolbar/entry-toolbar.png" - border = {6, 6, 6, 6} - stretch = TRUE - } - - image { - function = SHADOW - state = ACTIVE - detail = "entry" - file = "menubar-toolbar/entry-active-toolbar.png" - border = {6, 6, 6, 6} - stretch = TRUE - } - - image { - function = SHADOW - state = INSENSITIVE - detail = "entry" - file = "menubar-toolbar/entry-disabled-toolbar.png" - border = {6, 6, 6, 6} - stretch = TRUE - } - - image { - function = FLAT_BOX - state = ACTIVE - detail = "entry_bg" - file = "assets/null.png" - } - - image { - function = FLAT_BOX - state = INSENSITIVE - detail = "entry_bg" - file = "assets/null.png" - } - - image { - function = FLAT_BOX - detail = "entry_bg" - file = "assets/null.png" - } - } -} - -#Chromium -style "chrome-gtk-frame" { - - ChromeGtkFrame::frame-color = "#eee8d5" - ChromeGtkFrame::inactive-frame-color = "#eee8d5" - - ChromeGtkFrame::frame-gradient-size = 0 - ChromeGtkFrame::frame-gradient-color = shade(0.5, @bg_color) - - ChromeGtkFrame::incognito-frame-color = shade(0.85, @bg_color) - ChromeGtkFrame::incognito-inactive-frame-color = @bg_color - - ChromeGtkFrame::incognito-frame-gradient-color = @bg_color - - ChromeGtkFrame::scrollbar-trough-color = shade(0.912, @bg_color) - ChromeGtkFrame::scrollbar-slider-prelight-color = shade(1.04, @bg_color) - ChromeGtkFrame::scrollbar-slider-normal-color = @bg_color - -} - -widget_class "**" style "menubar" -widget_class "*.*" style "menubar_item" - -widget_class "*ThunarWindow*" style "menubar" -widget_class "*CajaNavigationWindow*" style "menubar" - -class "ChromeGtkFrame" style "chrome-gtk-frame" - -widget_class "***" style "menubar-text" - -# Whitelist for dark toolbars -widget_class "*ThunarWindow*" style "menubar-borderless" -widget_class "*CajaNavigationWindow*" style "menubar-borderless" -widget_class "*ThunarWindow**" style "toolbar_entry" -widget_class "*CajaNavigationWindow**" style "toolbar_entry" diff --git a/common/gtk-2.0/menubar-toolbar/menubar.png b/common/gtk-2.0/menubar-toolbar/menubar.png deleted file mode 100644 index 8ef6deb57abb7e788dd4631a28e17c379329b9b1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 165 zcmeAS@N?(olHy`uVBq!ia0vp^5{q!FLVF^ diff --git a/common/gtk-2.0/menubar-toolbar/menubar_button-dark.png b/common/gtk-2.0/menubar-toolbar/menubar_button-dark.png deleted file mode 100644 index 4f70d6f4f145d5c511f5aa5db8d95b512cefe6ca..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^l0eMQ$P6U4SA1Irq?n7HJVQ7*IBq}me*oli7I;J! zGcfQS0b$0e+I-SLLCF%=h?3y^w370~qEv?R@^Zb*yzJuS#DY}4{G#;P?`)(%1_k(p txT" style "panelbuttons" -widget_class "**" style "panelbuttons" -widget_class "*XfcePanelPlugin.GtkButton" style "panelbuttons" -widget "*dict*Applet*" style "panelbuttons" -widget_class "*Xfce*NetkTasklist*GtkToggleButton" style "panelbuttons" -widget_class "*Tasklist*" style:highest "panelbuttons" - -class "*Panel*MenuBar*" style "panelbar" -widget_class "*Panel*MenuBar*" style "panelbar" -widget_class "*Panel*MenuBar*Item*" style:highest "panelbar" - -widget "*PanelWidget*" style "theme-panel" -widget "*PanelApplet*" style "theme-panel" -widget "*fast-user-switch*" style "theme-panel" -widget "*CPUFreq*Applet*" style "theme-panel" -class "PanelApp*" style "theme-panel" -class "PanelToplevel*" style "theme-panel" -widget_class "*PanelToplevel*" style "theme-panel" -widget_class "*notif*" style "theme-panel" -widget_class "*Notif*" style "theme-panel" -widget_class "*Tray*" style "theme-panel" -widget_class "*tray*" style "theme-panel" -widget_class "*computertemp*" style "theme-panel" -widget_class "*Applet*Tomboy*" style "theme-panel" -widget_class "*Applet*Netstatus*" style "theme-panel" - -# Fixes for tooltip text in some apps. -widget_class "*Notif*Beagle*" style "theme-panel" -widget_class "*Notif*Brasero*" style "theme-panel" - -# XFCE panel theming. -widget "*Xfce*Panel*" style "theme-panel" -class "*Xfce*Panel*" style "theme-panel" -widget "*Xfce*Panel*GtkProgressBar" style "theme-panel-progressbar" -widget "*WnckPager*" style "workspace-switcher" -widget "*TopMenu*" style "theme-panel" -widget "*XfceTasklist*" style "panelbuttons" - -# Fix gtk-entries in the panel -widget "*bookmark*GtkEntry" style "panel-entry" # fixes smartbookmark-plugin - -# Make sure panel text color doesn't change -widget_class "*Panel*MenuBar*" style "theme-main-menu-text" -widget_class "*Panel**" style "theme-main-menu-text" -widget "*.clock-applet-button.*" style "theme-panel-text" -widget "*PanelApplet*" style "theme-panel-text" - -# Override general panel-style with specific plugin-styles -widget "*indicator-applet*" style "indicator" -widget "*indicator-button*" style "indicator" diff --git a/common/gtk-2.0/render-assets.sh b/common/gtk-2.0/render-assets.sh deleted file mode 100755 index 71114bf..0000000 --- a/common/gtk-2.0/render-assets.sh +++ /dev/null @@ -1,60 +0,0 @@ -#! /bin/bash - -INKSCAPE="/usr/bin/inkscape" -OPTIPNG="/usr/bin/optipng" - -SRC_FILE="assets.svg" -ASSETS_DIR="assets" - -DARK_SRC_FILE="assets-dark.svg" -DARK_ASSETS_DIR="assets-dark" - -INDEX="assets.txt" - -for i in `cat $INDEX` -do - -if [ -f $ASSETS_DIR/$i.png ]; then - echo $ASSETS_DIR/$i.png exists. -else - echo - echo Rendering $ASSETS_DIR/$i.png - $INKSCAPE --export-id=$i \ - --export-id-only \ - --export-png=$ASSETS_DIR/$i.png $SRC_FILE >/dev/null \ - && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i.png -fi - -if [ -f $DARK_ASSETS_DIR/$i.png ]; then - echo $DARK_ASSETS_DIR/$i.png exists. -else - echo - echo Rendering $DARK_ASSETS_DIR/$i.png - $INKSCAPE --export-id=$i \ - --export-id-only \ - --export-png=$DARK_ASSETS_DIR/$i.png $DARK_SRC_FILE >/dev/null \ - && $OPTIPNG -o7 --quiet $DARK_ASSETS_DIR/$i.png -fi -done - -cp $ASSETS_DIR/entry-toolbar.png menubar-toolbar/entry-toolbar.png -cp $ASSETS_DIR/entry-active-toolbar.png menubar-toolbar/entry-active-toolbar.png -cp $ASSETS_DIR/entry-disabled-toolbar.png menubar-toolbar/entry-disabled-toolbar.png - -cp $ASSETS_DIR/menubar.png menubar-toolbar/menubar.png -cp $ASSETS_DIR/menubar_button.png menubar-toolbar/menubar_button.png - - -cp $DARK_ASSETS_DIR/button.png menubar-toolbar/button.png -cp $DARK_ASSETS_DIR/button-hover.png menubar-toolbar/button-hover.png -cp $DARK_ASSETS_DIR/button-active.png menubar-toolbar/button-active.png -cp $DARK_ASSETS_DIR/button-insensitive.png menubar-toolbar/button-insensitive.png - -cp $DARK_ASSETS_DIR/entry-toolbar.png menubar-toolbar/entry-toolbar-dark.png -cp $DARK_ASSETS_DIR/entry-active-toolbar.png menubar-toolbar/entry-active-toolbar-dark.png -cp $DARK_ASSETS_DIR/entry-disabled-toolbar.png menubar-toolbar/entry-disabled-toolbar-dark.png - -cp $DARK_ASSETS_DIR/menubar.png menubar-toolbar/menubar-dark.png -cp $DARK_ASSETS_DIR/menubar_button.png menubar-toolbar/menubar_button-dark.png - -exit 0 diff --git a/common/gtk-2.0/xfce-notify.rc b/common/gtk-2.0/xfce-notify.rc deleted file mode 100644 index cc23995..0000000 --- a/common/gtk-2.0/xfce-notify.rc +++ /dev/null @@ -1,74 +0,0 @@ -gtk-color-scheme = "selected_bg_color:#268bd2\nselected_fg_color:#fdf6e3" - -style "notify-window" { - XfceNotifyWindow::summary-bold = 1 - XfceNotifyWindow::border-color = "#17191F" - XfceNotifyWindow::border-color-hover = "#17191F" - XfceNotifyWindow::border-radius = 3.0 - XfceNotifyWindow::border-width = 1.0 - XfceNotifyWindow::border-width-hover = 1.0 - - bg[NORMAL] = "#292C36" -} - -style "notify-button" { - bg[NORMAL] = "#434652" - bg[PRELIGHT] = "#5C6070" - bg[ACTIVE] = @selected_bg_color - - fg[NORMAL] = "#657b83" - fg[PRELIGHT] = "#657b83" - fg[ACTIVE] = @selected_fg_color - - engine "murrine" { - gradient_shades = { 1.0, 1.0, 1.0, 1.0 } - border_shades = { 1.0, 1.0 } - roundness = 2 - textstyle = 0 - } -} - -style "notify-text" { - GtkWidget::link-color = @selected_bg_color - - fg[NORMAL] = "#657b83" - fg[PRELIGHT] = "#657b83" - fg[ACTIVE] = "#657b83" - - engine "murrine" { - textstyle = 0 - } -} - -style "notify-summary" { - font_name = "Bold" -} - -style "notify-progressbar" { - GtkProgressBar::min-horizontal-bar-height = 4 - - xthickness = 0 - ythickness = 0 - - fg[PRELIGHT] = "#000000" - bg[NORMAL] = @selected_bg_color - bg[ACTIVE] = "#1D1F26" - bg[SELECTED] = @selected_bg_color - - engine "murrine" { - gradient_shades = { 1.0, 1.0, 1.0, 1.0 } - border_shades = { 1.0, 1.0 } - trough_shades = { 1.0, 1.0 } - trough_border_shades = { 1.0, 1.0 } - progressbarstyle = 0 - roundness = 2 - textstyle = 0 - } -} - -class "XfceNotifyWindow" style "notify-window" -widget "XfceNotifyWindow.*.summary" style "notify-summary" -widget_class "XfceNotifyWindow.*" style "notify-button" -widget_class "XfceNotifyWindow.*." style "notify-text" -widget_class "XfceNotifyWindow.*." style "notify-progressbar" -widget_class "XfceNotifyWindow.*." style "notify-progressbar" diff --git a/common/gtk-3.0/3.14/assets.svg b/common/gtk-3.0/3.14/assets.svg deleted file mode 100644 index 7c8db61..0000000 --- a/common/gtk-3.0/3.14/assets.svg +++ /dev/null @@ -1,5965 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gtk-3.0/3.14/assets.txt b/common/gtk-3.0/3.14/assets.txt deleted file mode 100644 index a11af04..0000000 --- a/common/gtk-3.0/3.14/assets.txt +++ /dev/null @@ -1,84 +0,0 @@ -checkbox-checked -checkbox-checked-insensitive -checkbox-unchecked -checkbox-unchecked-insensitive -checkbox-mixed -checkbox-mixed-insensitive -radio-checked -radio-checked-insensitive -radio-unchecked -radio-unchecked-insensitive -radio-mixed -radio-mixed-insensitive -checkbox-checked-selected -checkbox-checked-insensitive-selected -checkbox-unchecked-selected -checkbox-unchecked-insensitive-selected -checkbox-mixed-selected -checkbox-mixed-insensitive-selected -checkbox-checked-selectionmode -checkbox-selectionmode -radio-checked-selected -radio-checked-insensitive-selected -radio-unchecked-selected -radio-unchecked-insensitive-selected -radio-mixed-selected -radio-mixed-insensitive-selected -switch -switch-active -switch-insensitive -switch-active-insensitive -switch-header -switch-active-header -switch-insensitive-header -switch-active-insensitive-header -switch-selected -switch-active-selected -switch-insensitive-selected -switch-active-insensitive-selected -titlebutton-close -titlebutton-close-backdrop -titlebutton-close-hover -titlebutton-close-active -titlebutton-maximize -titlebutton-maximize-backdrop -titlebutton-maximize-hover -titlebutton-maximize-active -titlebutton-minimize -titlebutton-minimize-backdrop -titlebutton-minimize-hover -titlebutton-minimize-active -checkbox-checked-dark -checkbox-checked-insensitive-dark -checkbox-unchecked-dark -checkbox-unchecked-insensitive-dark -checkbox-mixed-dark -checkbox-mixed-insensitive-dark -checkbox-checked-selectionmode-dark -checkbox-selectionmode-dark -radio-checked-dark -radio-checked-insensitive-dark -radio-unchecked-dark -radio-unchecked-insensitive-dark -radio-mixed-dark -radio-mixed-insensitive-dark -switch-dark -switch-active-dark -switch-insensitive-dark -switch-active-insensitive-dark -switch-header-dark -switch-active-header-dark -switch-insensitive-header-dark -switch-active-insensitive-header-dark -titlebutton-close-dark -titlebutton-close-backdrop-dark -titlebutton-close-hover-dark -titlebutton-close-active-dark -titlebutton-maximize-dark -titlebutton-maximize-backdrop-dark -titlebutton-maximize-hover-dark -titlebutton-maximize-active-dark -titlebutton-minimize-dark -titlebutton-minimize-backdrop-dark -titlebutton-minimize-hover-dark -titlebutton-minimize-active-dark diff --git a/common/gtk-3.0/3.14/assets/checkbox-checked-dark.png b/common/gtk-3.0/3.14/assets/checkbox-checked-dark.png deleted file mode 100644 index a2fd5a91697a611ad6ad03e9a8a1600527a87038..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 360 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(T7XZ8 zE09*}xun*0Nwxd3TK6R=YB{dfdP1%3lv?{4wa#-uLG_&Z>P0KmE4QduZBwt^tzNfB zz44HG#~Cd{8!bayEh}#=D<3V}04>`kACCBE&ER_dRAYQ$`F%1g7)Et^_rs#ov))!4Ko mclAWB^Y>rs7}#{quV<_g=89tV-`EGVjKR~@&t;ucLK6VHk8`&G diff --git a/common/gtk-3.0/3.14/assets/checkbox-checked-dark@2.png b/common/gtk-3.0/3.14/assets/checkbox-checked-dark@2.png deleted file mode 100644 index 949c3696e63efaa6c6272bba30f74e7834a2f84c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 487 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ET>(BJ zu0Wb$)hdUE{c3#|R5~wew4Yb&zogoINxkc`diQ0uo{MVTm%!+yZu~BeoN0Rzp?sNv18lxoQpYsj~?99f7s^s1(`hzn{s!|Kh(>=0 zWfw$T&Yx$~6?%XAk>84TBAb`Zd=WP1+S+$PIj7yq_vn3jljb9l&o7wXW|zPDo5kY2 TrE}*4J;31U>gTe~DWM4fh1tK6 diff --git a/common/gtk-3.0/3.14/assets/checkbox-checked-insensitive-dark.png b/common/gtk-3.0/3.14/assets/checkbox-checked-insensitive-dark.png deleted file mode 100644 index 423046a6a0639ace67bf9c4d0ac1abfc9cf371fb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 369 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(RDe&2 zE09*}xun{8R<-}Kde0^G?n`Rf^VEu0s8wuHtJRhIVEXmh1$YE>{xd7tElc zsaaFog9E&)Hqr;GjQ4bL43P-W?f2wsP~c(EZc@_92)y&*|NSoxiUM?83(oF@gQ^^n-V{bvv%_IQ_WXHSyNDnKmqM{}i$=pLntI(~gjRWg6$TI#WIV h*v?IDHUIkD{{L-WjW0QF^+2l_JYD@<);T3K0RZb6gDU_4 diff --git a/common/gtk-3.0/3.14/assets/checkbox-checked-insensitive-dark@2.png b/common/gtk-3.0/3.14/assets/checkbox-checked-insensitive-dark@2.png deleted file mode 100644 index 2a982990ce17180cbdd274d916ebfea9e65b9502..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 502 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Ebpbvh zu0Wch0SNvpb(~S^xU1c8Or!0jTF(`=&I@XNS5><&s)5jDwXQ2_xeL^aSE$wPQLEdl z*05i#^@Ljc8MUs98u9HKNs~0vrfOu(*2tc#k-to%bhVbDjh2sWZ3741*}IzX!=$S;_IiHV-DpW0v#Bi&o}Wc0|#I~!Wh>dZS@dHa>%QOD~q5^Y)vFZ6SYe-q$5cc+q3d5VqNucs?`f$nGUboFyt I=akR{0P+#RTL1t6 diff --git a/common/gtk-3.0/3.14/assets/checkbox-checked-insensitive-selected.png b/common/gtk-3.0/3.14/assets/checkbox-checked-insensitive-selected.png deleted file mode 100644 index 36f2199386b77b3af29730bd2b2a5d6a3591f59c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 386 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(T7XZ8 zE0F&G>DkZE5B~pr_V@dvzh55#Nwuzv8a)@adM@kqT(p^b*=G7>yXlvmXI^%lec5l` z)qn+8BbQx`UUoHh#q}*0?;N~&@8Y8emml4``sBf#XAkZ@fAsA2qxbJ0efsd|%ZEol zK0W#S?TOg=%;i9vluCm9f*CY4HEU{XdvJqG=ezxYsuMh29780+bI(WeH7M|~1h{N? z_q(rQ?|)TQMoyRK`Ei%Fs6Lr&;wQp8nHueV+8O2cOHWcw1EOKbN0yKy(vp*A!i#T@0SCelF{r5}E)( C0Io;? diff --git a/common/gtk-3.0/3.14/assets/checkbox-checked-insensitive-selected@2.png b/common/gtk-3.0/3.14/assets/checkbox-checked-insensitive-selected@2.png deleted file mode 100644 index 55cc55f4cd47d14b2a6b69df0b16087ab41db77f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 490 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)E)d4;s zu0Z-f5WKq!#Q#5D{r~Cu|6h-OeS7@>*JB|0_d5uwbzRixxv151S*P!!{)CH$lP=p# zz3epeviIDpAq%dCEV`Pw^6I36w-=naz3kMT^%w4Jyl`jR#XEbh-Z^;l-tpV_?mT;N z@7aS#&mTQ{`RM)oNAEv8`tsq?-)~Q5UW;o0TCZ6WUoih&CeAsLgiB}kF8vHUPWq|#SzOtovUAqT(2xUw)0f$2|bDHUPnKfJqUlS z@gQxphEM9^hVNNhB{Uv1U&zyb@Z9hBt)Pl6_jI@FUCXo9-MGvytjoXR{8ahn^Oo%W z|JYHny6vQKm&!qlSM0Wa?%&<+`yaXEe?;TsbKX_K35=oYp^QLxGkCiCxvXPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE09*}xun{8R<-}Kde0^G?n`Q27j^nB>QA_AIO($Kq{}u_FT2jZ>^}FZ@4Tx43$7-u zyq>%M=JDJ2PTaY7@zI0Jj~?86{^;4uN6%hA`tjw-uWyfjeS7lv+mk&qy>oy@%a#QB z1v6-9YSz^DUIt@7wZEU{1Fd54boFyt=akR{0H<`8D*ylh diff --git a/common/gtk-3.0/3.14/assets/checkbox-checked-insensitive@2.png b/common/gtk-3.0/3.14/assets/checkbox-checked-insensitive@2.png deleted file mode 100644 index 89045dee464b3a946cf4f3e7178e4f8c02e6778e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 502 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EjR8I( zu0Wch0SNvpb(~S^xU1c8Or!0jTF(`=&I@XNS5><&s)5jDwXQ2_T^IEyTsEC_*=hP^ zrsXJ3t7b~S0`^^DawbJyQ2-gvWg^UazqH=B3ep0NM+;hXm^+`D(-!GoJm9z1&f z=-KN>&tE_K@Zr&?50Acldi3MdlV9H+{r>jk@3$w}2U-<@ZqP0X@(X5QV&dl)5;iq6 zGjC{U?7;`PI*+#kwQcZpaSYKozxMJ?p(X_pwge7eUB#*2Y;V8W^Pib*7H@}p+N^)K z^V^>4wEQsUI_Af8>s3qlybn(nGkLC=TGSIG_Z#H1Jk9>QJNtg)5w`2PTy;gbXK~tv$6NR>uZR^sbw@R6%8$=%0#o%uH!3_g P2Zg(*tDnm{r-UW|q9^Cz diff --git a/common/gtk-3.0/3.14/assets/checkbox-checked-selected.png b/common/gtk-3.0/3.14/assets/checkbox-checked-selected.png deleted file mode 100644 index 82e8ca00f493b364db3c63cae0b327f18b562911..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 363 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(W`IwK zE0F&4^)VPd`TOlL1gUjj(&)LQ*>hRD_mb_jE4I_G*iFCUJoAd{tSkQWuLdr-8nyIV z^s;NQ%dc;}bobzmdzT(Qxcu<`wZ{+cJbQ5O`NL7XgpFTYL^6}A+&md## zGxLFVF|d~e`2{n0dU-#3{3P0Z%?hAUqNj^vh(vg9|4F_E1s<2xO*`IOYu)(&--BOa z;lc9R(|wk)a(D!le2`$Us4`%1Xwv`U)GGJ+r|>JsE0b3&6%D_6-%NU8)J0yk+ox`F t1bWt|YHyl*PEI@M;SX!uZ#>Zuoc5!lIL8@MUQTpt6Hc~)Ey#YQU zu0Z-f1bln^|J#%Q-|zqb@$k?0M_}~$&)3I)zd?~&_a*i2OBy|wG(Afac;W80OLzBN zyL<4)y<@lT-+lJr-m?dfUOasC^5OgUkKTWH^yT9tphe}jg-?JE;wuUA3ua(uk(Nj%TBQrACso-%0re!S{+J)}BfTd39k z;Q6!kitH}d&(nK&(yEr+qAXP8FD1G)j8!4co>Hwb* zS0Js{b4ji1l4|#5weCw$RJ%v5VZU0(IknESYF!u9x-J66)$^CAm#$N<+OA%^OTBKN zdc#5W#slgdXVg2+YJ^s5WX#aWTd3)oqUoKX8CpG2FlSpgK<;_2cTVsZNJm779M z3L%r3aaa1>-Om2B^+(L+ xrp$N8BiEmlkiTw!;rC>&wMMgep8l?5?)+(cy5U#&QlR@8JYD@<);T3K0RVLgx?TVP diff --git a/common/gtk-3.0/3.14/assets/checkbox-checked-selectionmode-dark@2.png b/common/gtk-3.0/3.14/assets/checkbox-checked-selectionmode-dark@2.png deleted file mode 100644 index f1a962347af325beb7948daf93369417bd9963d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 680 zcmeAS@N?(olHy`uVBq!ia0vp^-XP4u3?%s{blm__%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Es{?#O zT!FMo+d1X#i>f`BRk|*#bzf5Jxun{C3CL9kvb%vI7u7)|gndb^dWTxWezm5qG}<&muAm8xxEt!?h6 zZRw?L7ua=Y$~T~M1xkYaf*C}`T-{RB(lg5I8(KPEzuD^G=fJ?g80_id7!q;#?Ty^v zLk2wTAAFy?9MII#=vv?t_>uGIs{8*Zzszfo4W2z^%k!T~|G)o^-IW(PU1g$2%*~9q z1(&>XwQfs)3Q7qJjd>;AJT;g9=gG#ad>d{Zc*PPSyYa}c`Cj zU|ndSKys8RtHC_e2#wTaoz?$W)D_95#p;=qT61lR5y_k?>>+EL`RZ{^Z>`Ss`Rof; ziMxkR3DuiwWY}_OZI_W@kJH*&SxLb?ht`NLHJo#3jdtzBzlt#nb~Z1$I{UTv>Ql?s zXN3OvYh*a-(D%Zc>k(=j9X|cc3Udo}wfnw5QLn2;KKG30#agDMyi<#x&yaBX`DOjH zJgc$``^8_K%5yt-|E*|S@I2dH$I^ZWo)Z=|v+gZ1dwKT0=BfYICU%pH7e*xg-6;CG z-a3VE1M72P*F8U7CKYZ>x-55SNo9HY-;&QEZizza`xs_CZ(yEr+qAXP8FD1G)j8!4comH?j+ zS0Js{b4ji1l4|#5weCxBq~3i=qvw)N-zDAtOM3m6^(S1mpMJ$*#udkzSDa^FahrYB zW6o8dxmTl>UQ1tnJ!jpGiY+%Pw%%BJ>dw;BcUGLav--^4z1QyTyMFJ`&3lJ$-am5l z-qBn49=&+@_~pabZy)~n{P^dW$G^Tj`u+9s-*1m?Zrt_-x`VwW$S;_|)64tO<0sMP zYgPb-c6z!vhFF}wd*!B3lY$6af-$eAZtmr8M@>HO`TzUs!GoR(3Cpx?!_Ry;Tc09$ z{H15Fx=ZlB+fMT{PG>6`USUYsvZXmNZe4D|4CaEB%`fbV@|qsX%F3*i%1eHicjhf~ z>FX_8LS{4K_I*~F5ys%t<=4=ye$Fn*Xm{DKQ=O5$pO3!Md2;gpj^t0O&osmCrgT-V zs(rHQb%^x65_^_sx0`3GXBD5_6jfw@uFARnNAX|gwep(b+Is`z=e;+d_Er1Cd+D@R QpeGnSUHx3vIVCg!0CD}``v3p{ diff --git a/common/gtk-3.0/3.14/assets/checkbox-checked-selectionmode@2.png b/common/gtk-3.0/3.14/assets/checkbox-checked-selectionmode@2.png deleted file mode 100644 index 42f89c171574822708d8c79751dfb2b2895e8c27..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 685 zcmV;e0#f~nP)002t}0{{R350Hx300003b3#c}2nYz< z;ZNWI000SaNLh0L02{9W02{9XUK)`c0000PbVXQnQ*UN;cVTj60C#tHE@^ISb7Ns} zWiD@WXPfRk8UO$Qu24)=MF0Q*B!9aSIF!^ml+-$v(>#{c zK$z4+nbb#|)k>YzOP$qBoz+dA)vL|juFl-T+1|w2-p=3O&)?tB;Na2V;L_pW(&6CL z;^5ch;M?Wk-R9uo=;7n(;pgk&>Fwg`?cwX~;q30={r2P4gq}tK000nlQchC<6&6KC zWoBn+cYlC{i0kaNKu$ma00C7=L_t(o!|mAHQo=A02H;j}MZk&{5f31ELc}8~nD>7% z?Q|f`#_X0&#_?kR`+l?OwrRRiB$2qX)!5^t5!+O9(BUOZtg5)w4+bmS?eLQVtLb4i zfz|S`T4IUyKdt^@FzfW??kJGedr}HuT&tiU#-4d(jNqO$HiS`~i3OpK)PJ`Ue2%bem1B%iNpWmHw3pbyL5-yf)+e4T*ZSQZMb{fklOybNpq#Po7 TLvG}T00000NkvXXu0mjf)PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(a)3{W zE09*}xun*0Nwxd3TK6S5((b#YKjE_B#LFg=E}KreY&-3W>#Qs8bFTW%zZ$sUYSPN< zdFyW+yLIpQ?fWP1+`shj!Iei3?md5a|HZ?nuO2>o{qV<^$G^Tl`t|kk-*1o48a4R> ztzj<-@(X70^zwf6_(`<+niW8yL{AsT5Q*^I^O1ZF3OpjT zU+H;y+64bkPD=`2HF66)b6nss!IsT3_AvLVFSRA@eF3+ZcG))Ex?|NY=RWJMZuoc5!lIL8@MUQTpt6Hc~)ET>(BJ zu0Wb$)hdUE{c3#|R5~wew4Yb&zogoINxkc`diQ0uo{MVTm%!*Ukkp@W*<|8nlS!8y zXIycddBt`1Rkzt!W0ze^T6sNv^^M&1H;OjiDA{zQX6w!7owp_&xP9ox{qy(lUwH7~ z=932xUp##F`r-4}4?li*^y%ZHFP|R$`26_S*GIp23;GAHI?2J$lF3=Zi+)>cH=sWv?B-H<|I=N%NI3pWb1- a+Ft)~yT1FQri*EyaQ1Zdb6Mw<&;$S~MB%mo diff --git a/common/gtk-3.0/3.14/assets/checkbox-mixed-dark.png b/common/gtk-3.0/3.14/assets/checkbox-mixed-dark.png deleted file mode 100644 index 8759a900058d7cfab50ecd5cb3ef68b2d9b245a1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF%Ig>+6LAMTGmZKY4(yJzhDMWFYiZ>pG2FlSpgK%_jGX#;fPL7 zXkdKyrAR>|G$BEkotd4jjAJo_{bFX00LhlpgKHDG*e|Lw6@)V|^y}*!WsTXR0MyFh M>FVdQ&MBb@05EAp0{{R3 diff --git a/common/gtk-3.0/3.14/assets/checkbox-mixed-dark@2.png b/common/gtk-3.0/3.14/assets/checkbox-mixed-dark@2.png deleted file mode 100644 index 795faee14060c26a064d217756abc82e699a59eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Wb$)hdUE{c3#|R5~wew4Yb&zogoINxkc`diQ0uo{MVTm%!*Ukkm+?pc&h)ZD6f! z?dNT-R|3?_R}$nG%)rbdEu)~6n3SCI^405AlQw?`%A|X`IEHAPzdPAls6l~;HJ*n< z!+!7oMBOP&ip|?{b{lIN{cbSqj*=D;-Q9XaamR5tMs5ZXmA9M>?t*L!QrD_qc)7+y ze{O%*AAkNn{~uQzeTurQ85<^V+3CD}-|UT=#)^6FN4_N1ivLklXMc1r#~0)iPgg&e IbxsLQ0J14>S^xk5 diff --git a/common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive-dark.png b/common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive-dark.png deleted file mode 100644 index a8e008bc6d521e5077b93dd5677054e2884502a3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF}RWL_sGpd3d@kY6x^hNfmsZBNfi`vbdxVtSq~ zjv*Y;$q5aN&o-DSc!VY-_%buIvzc)yGukhf;RujyDLuG0fhl^H5<@vF!$nKAnS4qa Rhk!a6JYD@<);T3K0RWuxK&Joz diff --git a/common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive-dark@2.png b/common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive-dark@2.png deleted file mode 100644 index c220ca88e4e396793d60316db94d08ea7ac97c1b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Wch0SNvpb(~S^xU1c8Or!0jTF(`=&I@XNS5><&s)5jDwXQ2_T^BWyCTPXB>*!nQ zSoyinY}*agD_j!f7tFxK#Lq7zY-(m^-q6t40|H0Rx>f?E(>+}rLp09coop@Cpuoc# z&%>c%zxRKl?i41)=50BTUlMD@|EQ_6Kf0IW3-XSq LtDnm{r-UW|e1mXd diff --git a/common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive-selected.png b/common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive-selected.png deleted file mode 100644 index 793f169fbfec7e071901ed8c8bf8eae3eb4d8a40..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFZuoc5!lIL8@MUQTpt6Hc~)E#sNMd zu0Z-f5WKq!#Q#5D{r~Cu|6h-OeS7@>*JB|0_d5uwbzO9retFWt+w+d!{`>98Uao=_ zKy890L4LsuO#J*p!lq_s<_(QKARzSnSRha`#nZ(xMC1J3$=-Yo3Op{$Ss5K0f6u?x zI-h0X%Dl?k)6XrM$yjniN470*_cAMm*3)5({0vi6WH}ka1=$i(bJZ`T=4 z;uyjaot)6X_-uoTf=6gVf-f^OJDVAYGNb)s8IAzSmePZ36PTiBDKV6@GF-G&o5`n? RaR{iB!PC{xWt~$(69DH{L?!?L diff --git a/common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive@2.png b/common/gtk-3.0/3.14/assets/checkbox-mixed-insensitive@2.png deleted file mode 100644 index 44d6c7e1f503d4ccae37b03b887eca6669cd1863..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Wch0SNvpb(~S^xU1c8Or!0jTF(`=&I@XNS5><&s)5jDwXQ2_T^E~o-JZ1n_LG;7 z{(gJ%j?dN-s8_fo$S;_IiHVoOP`PN~e3eIEHAPzdPAls6l~; zHJ*n?t*L!QrD_q zc)7wufA0CNKmPoE{y(lb`V@6pGd4`#veS9{zS$c!jTQ6Uk9Bm!WkHTxEWsjB(2Q~)XL!L L>gTe~DWM4fwZTuW diff --git a/common/gtk-3.0/3.14/assets/checkbox-mixed-selected@2.png b/common/gtk-3.0/3.14/assets/checkbox-mixed-selected@2.png deleted file mode 100644 index 37cf7f00ead03d5f5766fdcd638953de1ec62034..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Z-f1bln^|J#%Q-|zqb@$k?0M_}~$&)3I)zd?~&_a%oJS0*03HUIc+px~#j@~=S6 zd?i7C!3@kS(lQE4iAl*RFJHZ0HEHvApiH`_i(`n!`MZ-1g&GuiSoGOgL_~i4Pu88n zq}aSIXScDYQT2ftu4{R_y6!r?6S$MSxq+2|YtlEChRqzz7dBlJeo+#(WO|>w>!0Q9 z$JJ|IDX3WU64g0v4Z_{7i6KZ-JXeEQEtDnm{r-UW| DpEQj$ diff --git a/common/gtk-3.0/3.14/assets/checkbox-mixed.png b/common/gtk-3.0/3.14/assets/checkbox-mixed.png deleted file mode 100644 index feb67c4361557a4169b675777dc2e8cc4855ae12..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF%Ig>f4@Ec(-xrzlx8mp@(X70^zwf6_(`<+niW7HeNPw15RT~N zga*cEUy2koLK6~n*_qkd$~YD?*e_=02#{zopr08i#e1ONa4 diff --git a/common/gtk-3.0/3.14/assets/checkbox-mixed@2.png b/common/gtk-3.0/3.14/assets/checkbox-mixed@2.png deleted file mode 100644 index f2557d08c2bb28f3597d6c5b69f91d0884eb862a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Wb$)hdUE{c3#|R5~wew4Yb&zogoINxkc`diQ0uo{MVTm%!*UkZjp?Ytn(+k6%9g z`|YtE1MfkgUcQnbzhDMt7HJs;rNpG+xN}hsA;U2=YHf%Vy*ZeHFfq4pEo&zeB$Zq K=d#Wzp$P!C^mXw7 diff --git a/common/gtk-3.0/3.14/assets/checkbox-selectionmode-dark.png b/common/gtk-3.0/3.14/assets/checkbox-selectionmode-dark.png deleted file mode 100644 index ea0568fae1ead991fa4c4bf1c654cfda23f92ecd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 493 zcmeAS@N?(olHy`uVBq!ia0vp^8X(NU3?z3ec*FxK=3*z$5DpHG+YkL80J)q69+AZi z417mGm~pB$pEOWVvcxr_Bsf2(yEr+qAXP8FD1G)j8!4comH?j+ zS0J5S-I7t!5MNdwS6UZWRv%wlXA~5jQrT<}7;O*~!=P=(sAJ9qLKaNA7RdhTHc9^uAbk;Yz8CP3sJm0I2Gt|BA=bO(1ykY6x^yu$GlCr|zP^Y`!B_ixyN z!bdz^978NlU%hf$s7XP9Ex}h;=*p?SsK}YBzy7@scM-hgbf#o-^=Wha=cRMzT~TmY zyKTaIE(;m;h-l9j+#Ni8k2!@l96grxU;G%iwZ!!4Q+a#5yyjoxn7RA(OY;-5cZDVL zF0H$rb#2Dgt8;cQp7Nb@^Q=qlA#=FW!_BJv3QHzEXBGO~)*F7>*_=N@d3wmn=CZ%j zg5)at^luhEXe{2jxx&^*?8vj3PkUdLlZuoc5!lIL8@MUQTpt6Hc~)Ey8?Vd zT!D0M?xeKJwv?LY^vbrh>Za71=CtaT)T-u`s^&Bh8zcghO$9Q5B0#bl$Zn1)sbSDI zW708a*0EsLwO|1uOBOu~Ry|8rJu7y7AhPDrx8XDZB3n*FTP|ZDvQx14RkZh2a|%>* z4p8$9*6Z3DR^4)&e5eU~RV$9S{oD10we@eUC7G&u{||Ac`;uj5Y+KpcoUc zD4+vcCtAD*x?ZFt$S;_IT|-kVCpWLWzM-|Fr?;>F&)G{ygGk%L_-?}ez#QHvQ< zd3o0?+&m}s{H&wb)^vYgeq++q97Pp_+SLm@d~R!LGF{%P#dX|d?M>-F=bLAi?pwQZ z{?ds@mx-+Tv8iyK!K>fPj@lhteLj2Ds_?YXBJDUwkE9r{G*OYxkD8sKK^D_;c1*dk zYK4?=VAAW2bsrvg#VPD-=DJoBZXXpgZ4bw)Nq^&1)E1`v-tptmw4H*w0S{{)PVHPB zWbs|6$5(Stzi*H8$}gN!j|07I+mGy+67~O3`Q)9=xmAg=k=soE-Ct)Qxb)6qZ=Ky+ zi{@)=(AipIKJ$HDaQ62(uCLy;o-3Nxl=^wMnL~B<{o8EC4V(3BLpTI)WS>#zW9Xe- xJh}7Pos>6*%M4=cOD>ry?|;sgsQ2d&qmXN7>zgGx9l%Ip@O1TaS?83{1OVA*C8YoW diff --git a/common/gtk-3.0/3.14/assets/checkbox-selectionmode.png b/common/gtk-3.0/3.14/assets/checkbox-selectionmode.png deleted file mode 100644 index 8cc926316963a71f9858967342a2bebb95ab11eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 522 zcmeAS@N?(olHy`uVBq!ia0vp^8X(NU3?z3ec*FxK=3*z$5DpHG+YkL80J)q69+AZi z417mGm~pB$pEOWVvcxr_Bsf2(yEr+qAXP8FD1G)j8!4co$pJng zu0T4ux+SBcA-}l`i1L7_r7ORwE4`*Ay{2{Zt}Q^cb@$fP>gEGS_Z&R7_Yer}J9=XO ziPHy9oIZ5%(y@z|j$gcd{1OPAxOC;j_3Njv-#Byg=Gmu@uRMEv<>j;Muby9j|N7Ra zcXvL&zx(Cgy)WxX;aKHU5H>EX}M4}X6FqDQ~KKKk?Z(cf>6KTlii~^?UVuwy$xHquBQoT$Q(02u%LbF)4%#I z>9!qDXIQUh} z<|EJNzKMT-ns4vS_yuL&FL$p}GuZuoc5!lIL8@MUQTpt6Hc~)Ey8?Vd zT!D0M?xeKJwv?LY^vbrh>Za71=CtaT)T-u`s^&Bh8zcghO$9Q5B0#bl$Zjrd?I~*O z0Wvo4+PVdZc5gj!bkC9F`;VU3f9&Le6Q>WJIDP2knM0?}9y)#Y@R@T!bmYwWBWKSa zJqJV=j$XWU?BeC)*RP+xasBkWSGV53zV+$toloz8=ay2h(_jWzkjN1R#Um5TSJ8hdh z;q;&HHN{R31pHQ~CLi{_ZXJF;a=M~rT|aT>!}!mdtd)Fqbxj@f>U`bonVToYCx;b%|C4^g%I=6^>eLco2XR63Cmnk=@j*8!tTfv$)_1E>fM*Xwe-t$>PPreiH^whX%_byNC zbWFDxN5#HXQ#)5P*?iaO@nyW{F7-HIf?eS83Xv7hCrC_h`nvvAo>6(gQt?NpeuOsu z&g$&cDCpPQ@Uwm5XP3US_Pld_zj1Re{Um#<_GaE6%#Ei`b_8x+$_|Vp22WQ% Jmvv4FO#oyvX*d7? diff --git a/common/gtk-3.0/3.14/assets/checkbox-unchecked-dark.png b/common/gtk-3.0/3.14/assets/checkbox-unchecked-dark.png deleted file mode 100644 index fca122668c47bfbcb14d76825d404da4c777f8a5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF3MnTajmCXi$(FQ>=4BBQ)x)#j3mZ{av-_PiL0&3tc z3GxeOkXJZ<;^e76fBybG`~D3(P}s`T#W92Zuoc5!lIL8@MUQTpt6Hc~)Eu>n3I zu0T31ZDwdgLvHS*q_WQ3hK7`ehQ#WYjEaV&iiWhR=G5vIFltJzZc3>Fl0cE>__8_% zZ8J7~Yc>Nbx1?;hq#U>8Y_HTjpY#IXjKa9GI-mlevb}u~p+F0SOM?7@8CcoadHG~y z6_ln-oqqGy?Jr;d9kBfT9w^=H>EaloasKUOYoR6s23C1RrehsHHD}Ez|DPOmAYg(; zkagbfw|WH)+w9-Jxa~V{OKRiQqOIopE@!)+kr7}2bI0!{gO5xMhju;CZpo2ike$4K z(hWuliPu&|KVILz9AET9VzTksNsmH4KJ;W|n4lahSafR7x`p1Ur+9lN-Bw>T$3tdj aKHCyri_cTvs^14Xhr!d;&t;ucLK6UyfR)?; diff --git a/common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive-dark.png b/common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive-dark.png deleted file mode 100644 index 75dc9bc30c0cce890592332ee758ac0ea9fdeda4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF3=bSnfu=Bcy85}Sb4q9e E03wG|5dZ)H diff --git a/common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive-dark@2.png b/common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive-dark@2.png deleted file mode 100644 index 15efb6c8fb887bfd1c5b8d68ff695aa25d34095a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 394 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EApt%i zu0T38bd^H`2qb{X%!-Q4iuUZvwzP(ZlXx*c=G5w@R1n#cP~O0xZOX21#cp8b zmXz(5l;fF}=bK*On_d`ORv%whpH|&s_FlmnXs%32kY6wZGYbm`hoGRaNMv+V^Q6f$ zW+K4pRowDGbq$^_jv*T7-%hp`YF1!io$qzU;fEXZ!@K|IX%^_Ps9&3zv-_=HL1W@B z`5A4o_ok$_h9+&E_5O>MfN|-^uG5#pTc!#zRK0G>7ufWYp~q*R=Od1Uw4B!`ey*?g zuRr diff --git a/common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive-selected.png b/common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive-selected.png deleted file mode 100644 index 7cdc8ee502e3ab61d45722b15b784cb65891bbb9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFZuoc5!lIL8@MUQTpt6Hc~)EP60k4 zu0Z<#|Azk{u>b%6`~Uwx{{R2#|DO;3|9tlI^TYpNpZ)s!=-0Q$K=dDoem(yE{o(KL zPyT;@0wjNbdHDawvx)j2b%3Ubl?3?(GcYl+aB%WyYHAsqn3G$jVm(?xj9QmSqboU|k qCwE$GaupA^UCIk++G}=^(ckNdD1Yxpmf1kt89ZJ6T-G@yGywo!6r8{S diff --git a/common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive.png b/common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive.png deleted file mode 100644 index 36ee76b78351fe78e57d112112671b0a646330f4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF2=NNb*-CsZ{4zc%eLLyQfiuieR}lw+mlY$uhW4V z_)CKPf*Ayba`W=?ySlo%yL)=2-I;J~);vI2LC z5+3YePui24@Su{Nja?)40B=exchVh`goG~)k+*ah%2^qBCk0tB*xWq;G=;&_)z4*} HQ$iB}r!Zc) diff --git a/common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive@2.png b/common/gtk-3.0/3.14/assets/checkbox-unchecked-insensitive@2.png deleted file mode 100644 index 142d61872336fb6e643ca7783b224ccb6f8937cc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 406 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Eu>n3I zu0T38bXDl8RSgXdxw(@P8XD3%I)G$yVMAPHWomUxN=-A6Os#27t8PjIGg7LX@|wDU z;<=5Txy_xO(`R6hv4>CB;)jD%L3<{@edD zitUqbudemmE!G@)0;)F~Rc<|X&#K5cX&${O?>BR9YtmPt!}lw1F#gP$X?9KUhF9z4 zzKa%<*gh@^F4^*K!oFXXzm(c9&p0D=d5+Sn@eoM<`SRq?mxuqqKm7CM(ciB?^!V79-G_l1 z_)CKPf*JS)1cZcKTwUYh;}dEdPIPTG1xi_Yx;Tb#L?rZ9NA`njxg HN@xNAxVUNZ diff --git a/common/gtk-3.0/3.14/assets/checkbox-unchecked-selected@2.png b/common/gtk-3.0/3.14/assets/checkbox-unchecked-selected@2.png deleted file mode 100644 index b01c60a92fa85ad359257f5e4f9f7fc9b944eec9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 395 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)E;Q>A& zu0Z<#|5g7%VE_OBxBvft`~ThD|NnvL{{R0E|Nnpf`SYFsKOX=2`sB~ohkw35`TzaN zpYIR*GJ)f#M+Y@3+T)f#mlmAoTUo->;8z=dF1OG+MSK$S;_InVE&1kDp&a zP*lvz+b1?QE-57?H8r=QvZ}ga;fmERK!vrQE{-7@=ig4=E!3{a* b%y+iueG2KnU03u29m3%0>gTe~DWM4f8Q#9i diff --git a/common/gtk-3.0/3.14/assets/checkbox-unchecked.png b/common/gtk-3.0/3.14/assets/checkbox-unchecked.png deleted file mode 100644 index 43ca15f878639e5a6dad3702c08747f560cc692f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkaez;V zE09jEZpo-<$ZzffqC6mK>B?{FO0Q{2uW8-9YYPx<-Muxny7}j)hd)0*{QK>()r}v2 zf!cUWg8YIRK+4A3f$%eh_zieh$^ljc|B^9|ViCmvP T`9*&P8pq)2>gTe~DWM4firj4o diff --git a/common/gtk-3.0/3.14/assets/checkbox-unchecked@2.png b/common/gtk-3.0/3.14/assets/checkbox-unchecked@2.png deleted file mode 100644 index e7a1da3702ba588b688a0c35521c59da22984778..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 408 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EX#qYV zt{^&XW@tl0ZtkR{vd-LwhLnbe#OjueiiV_$hP0~Y)an*6YD%ktuz_TAZgXc|a~Fuw z)RET&WOsJXnAtURR`;ygy>sSHTCia9f(26+F8K2P-q-i{{(gJ>#Y|8iXp=}ukY6wZ zD;qm6pNy=6(v+#wZ{E87}m%28Zi8DJOK#d%w74v9r;* h>aWYm&MWhN-aG6Ppnh-%Zz0e<44$rjF6*2UngBb`rMLh9 diff --git a/common/gtk-3.0/3.14/assets/radio-checked-dark.png b/common/gtk-3.0/3.14/assets/radio-checked-dark.png deleted file mode 100644 index b9fd269e7740506f0090e992be057056f056e00f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 373 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE09)cJEz=zQE|d$^`49BU6<6mFROK3R_(q7XRCEzQtQ45CV>oeq+Ym8y>Pik!BQE!kd~~TF;%oaPi}(&tLw%bb2ubs370d z#W6%elJ%e`-ys7527`39+zAc;|8Ev*Hag+q&ZcjE26gMP!7 zT~Omxp~|pzrB;e&@?tK|iG>Fg85&f5B(nKutg1^YU%>sHVZr@NacddAZB^NPo#C&P iNXNA0>34tu^Kb5I4TJW&i7$XwGkCiCxvXZuoc5!lIL8@MUQTpt6Hc~)E>jHd2 zT!A#h|NjgP{~1=TGM;%xyWy&K-&Kva>uNn`RNBsI^j=W!yr|Z5Nu%e2dKZYH)^$m> z`?6}+W%aI0>fM*sx-Y7BUsCJ2tOk|^OI=h4igaC41Cc;+FuMmV2o!-!0gdWL5(J4~ z02$JKNh58VMmi8p*T|Tz>7AkJlcD94spXTUZD9R*jlwISgY`;+{DK)6nV4DGgoH&z z)zmfIJv_aSs>y)It@~8L`@LI5M6Xy#?EBxXdDKng>7nB9-)rJCE;*dAj|iK1akus}#)_Pq z7mI^l-)@+*EOq4zIiojcw&YqU9DHS;eQUzw0MTt**jc0Bu0FmX<;U9-f!Wi(TyJK& z6|>$jKF_gWe?m;b*$cnc^V?OOdR{8_@!umGmv4`DM@Q&*lytCveBl%6UXgI*Xza=# z!71UvF}f$>dUfi1Z4bSuJZkZHSFp*nG^3DZ+safWe|fBBf8zu6{1- HoD!MPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(NPtg> zE0ET1*sneHs(R-U_3q1R9p}_~uc&riRq45+-gQyE@2XnQCAF?gYTXyqx-Y5qTmY%* zx~SH5S*`mbh+Vi$t#AcUL?eHhmX)`bm9LJz)sb?M`9O1JN`m}?8F+Yj_4M@(+&w%z z3yX@1TUuM&x_cnNY`Xkypt=H27sn6@N!Ejoe9a013<%gSAFgAVGrho}Gp2xpQ*f!1D8m6EwVu84GY&P( z*nB`BihY4;=6Yj>&%0HMQ<}cjY6^tU`*qulf#DBhUbUuNP7hBv&~64#S3j3^P6Zuoc5!lIL8@MUQTpt6Hc~)E^8#9ocRgIoY>Ye9QdM~Q>TvqM6sL^{xz2~BO*Cn;CORC+MfP(71 zmw{}x?u%;OK*mKipfaGDJwTBQY9Iwbl^1~G8fjBCGJt5hmUo7hFA!zv=v#Sp=YIvd z(6l7TFPMRmiJ6&;iEaloaenIL>tam?JPzGPBBI~f+%>g4rab&#KRZYzAya-&{=<38Jf%2( zvY!r;tbMeRLm}y1M80S4Gv=b(B`r(Re>_Yvd#k{}n0EczmxV`{wtt`Jcqs7qD^ZWg z8f&g6v!?#_b!MTnvu;zL#shzF*MMz`)(DCpQH>|FKYF z?#gR!6Kz6N`At1DZ{}wnSu5@RN#;CL&Q7`2$BcB^Pd&NzewuUqsjqvgE=)cnw~Aer zE%)|9;e%y|}gBB!JK&W;DWu61<0d-F1VpW@x#UH|{P1l^mU8UO9f{*~RJ OSoL)Eb6Mw<&;$Tr$^3@^ diff --git a/common/gtk-3.0/3.14/assets/radio-checked-insensitive-selected.png b/common/gtk-3.0/3.14/assets/radio-checked-insensitive-selected.png deleted file mode 100644 index 2ccd53f23dfd646cd8beb182f61e6d2a7190e22e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 383 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE0F&G>gxahul~Qj@&C)?Utga5|Mle8m;3*JJp29SF_8T8_3__tkHF{&i2VBG?^hW4 zgySZ{Y6X;aONz zRNT_q+Sc6z1?tv&jsg`Hdb&7bP0l+XkK DKYX%2 diff --git a/common/gtk-3.0/3.14/assets/radio-checked-insensitive-selected@2.png b/common/gtk-3.0/3.14/assets/radio-checked-insensitive-selected@2.png deleted file mode 100644 index decbba7801478f48bf6621d1031614ccae98cda8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 602 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EivoN? zT!Hj|C|CuepFIQO|1Vzre|7c$=jZ?bKmY&v#g9)`ts!e zF9>@2|Le0~UmyMY_5>*P=iB4|KOg`3_TKmPj#NIv=d6-<7A z^!w|hzuz7Mky_Wql$F=hR$tEmp_?nt+*t`k=kEOe_T=xkCv$JFpA2-RSxJyzFaskK zGcy+#H;<^On7W3Brlyv@zJZ~!iA7Lwa7buqT6#uiMP+4GRdr2AXAd0M{gXTbG~tD( zi(`n!`KgnSi!~VtxH@Wf?fu@QxS}KE`Tu%fVU-pYor>KjZJ(#ETDEm!uDM`x)geZQ zhJIn^reAlMmp$L6JmcO1wd;>w9$-{!od4H zQYOoOoO$FwOXX#ID|?sW;`bkxcNDsOuA7=D74$S!X2PA^v}qz1Y5Yq{!;H;3D-~v> zn-=SB?YOXH-mJ1UT&Evftme8MXp@xw(on58yp<@vX3 zl-F{<`g}SqmNh*%Cgol8akuH`6KWiu@LZ_7l3VZMRm*sLdd|tK)3;9t`kBGg)z4*} HQ$iB}$FM%4 diff --git a/common/gtk-3.0/3.14/assets/radio-checked-insensitive.png b/common/gtk-3.0/3.14/assets/radio-checked-insensitive.png deleted file mode 100644 index f1f7c1e3c5773c3504b7da6ff08503ce608bd806..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 378 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(NPtg> zE0ET1*sneHs(R-U_3q1R9p}_~uc&riRq45+-gQyE@2XnQCAF?gYTXyqx-Y5qTmY%* zx~SH5S*`mbgq^hVddkY{PhLKH21KtP{r&dj*xQNp{mpCPe{;1B;}^g}?s)Z*uc6&xHt9h6Rpx zpC8`4?sm9BHR8Yd$sa5N$H4hL z%J1_qis6j6m8sN&8t+Z%{095G*$h9O-@6VNkoF?>+8T0a6xx7xGkCiCxvXZuoc5!lIL8@MUQTpt6Hc~)EivoN? zT!A#h|NjgP4WX-6g|7N<+;GOY;hA3dMeT#9ocRgIoY>Ye9QdM~Q>TvqM6sL^{xz2~BO*Cn;CORC+MfP(71 zmw{}x?u%;OK*mKipfaGDJwTBQY9Iwbl@~R7E>>*0S+(V6&6b;cuHM;m_1<0}x_C7tFxO#LUda#myrsDyFWXp{c2*uWw*zY+?}<92^pwmY$JWQCV44 zRbA83(b)qB7Rx-1fhN52ba4!kkeqt(ZB&y11M7p$EMZ|$-{#&=4!JOs>Db@D5B-Gfrl8_tsxf+MaWh#iCGpqjUd74ySoPceSZ*d$Uo@ zqAGQL`jtH$d$+WoQfBuFh`eN&Ic;g%IT=yk(|<&lHZNQnAhdtWrA6D8Pvu~kPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE0F&G`T76PFaCeI_vhOa7<%;g>k}Ay^!M9i1p11^{`Od{`;zUnD|XYb*iXN*@A|#{ z*Y6#;aSy0i>ie~1pwXfwL4LsuqGIA9p<&@o%`L6x&R@9r@zduo|6V%1m;zK#=;`7Z zA`zb3|5~g;K%gbCBy`P^?(g;I)~xV5{yqKd99cF+)m4c`Zr?($@&4!#^VGN7_+bbC zKgZ1pJpY`Zuoc5!lIL8@MUQTpt6Hc~)E8v}eo zT!Hj|1UU2m|JDB=AOHXK=y|e1f-QPf~!P-0QPs9QptydD{7tFxO#LUVjBrGDTrmo@c z;pye=6B-r~6&sf}ZTgIvvu5wwv+uy|J9qEhfAH}8kDp&!rp*EBeDCSv7$PA#_2Ap6 zCIbf62gbq?k(oEkqw0Dh6PHNrI`=m|qCvV};m?QKLLtqIhjv$9_AXj^oSDBgNn+EN zuQhF4mgz@z4m6%-%`V|zs_sj_8!z~(=SoWZu;|2pJmIwH3U}mU zy#j?9o01+acH$BBp6}088dtwW$tY<3_1G;FgqHtcXS`o#VQQ^e2lP6Fr>mdKI;Vst E0IrBhu>b%7 diff --git a/common/gtk-3.0/3.14/assets/radio-checked.png b/common/gtk-3.0/3.14/assets/radio-checked.png deleted file mode 100644 index 6b3b2e13aaa07d05fbb04c6680255876fdf8d11a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 373 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE09)cJEz=zQE|d$^`49BU6<6mFROK3R_(q7XRCEzQtQ45CV>oel)UnK%Bt(BtFAwJ z_3-JdhtFO={QK?ktSS7yK%+%Vg8YIRM8(8ILc_wFnp;}WoxgDLZuoc5!lIL8@MUQTpt6Hc~)E8v}eo zT!A#h|NjgP{~1=TGM;%xyWy&K-&Kva>uNn`RNBsI^j=W!yr|Z5Nu%e2dKZYH)^$m> z`?6}+W%aI0>fM*sx-Y7BUsCJ2tOk|^OI=h4igaC41Cc;+FuMmV2o!-!0gdWL5(G;D zHEQ%+s@!^`YRk>)tv747-rRll-kxiB_guTT_u9RE*YExP_P8*7dJ)jgdL==A!3>N{ z%&cre!Xlz->Kg7Io?hNQp1QE5}Uq!t!d-3Oh2k~pz$KmrRK&$D7Nc3yZZ4g9gTe~DWM4fFc%I{ diff --git a/common/gtk-3.0/3.14/assets/radio-mixed-dark.png b/common/gtk-3.0/3.14/assets/radio-mixed-dark.png deleted file mode 100644 index 08a8f5c771e22b06a1e84013d7ebddfe3aca69b0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 342 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE09)cJEz=zQE|d$^`49BU6<6mFROK3R_(q7XRCEzQtQ45CV>oeq-|h*vLUDhXpm@0 zkY6x^sF-+2Xjphtb4%;F^A|3D{Pg+Dzn4xgrT`TrdAc};NJ!=$jOJ@m5O6)X_(zyq z#?E*3E0aBre@GOaf9T)tbvsz^Zuoc5!lIL8@MUQTpt6Hc~)EGXs1= zT!A#h|NjgP{~1=TGM;%xyWy&K-&Kva>uNn`RNBsI^j=W!yr|Z5Nu%e2dKZYH)^$m> z`?6}+W%aI0>fM*sx-Y7BUsCJ2tOk|^OI=h4igaC41Cc;+FuMmV2o!-!0gdWL5(G~NiX_+<$sPnR?i(`m{W$rTY5Nq1ak z5*qE#{r`XAGp5zuQ=T;LEfh?iut0uajPJEPyNfS^FE`D-|6QBqOj~1VpYV3o>N^~B z_dJ;SK3j&@tS3TKW{=S;$?9DxQ!Wei`$#zJ%rIy!@Y(R;iu~R*@r)N&xf&K`Y;T;V z#6BT-%WVhmiHrfFV2Mz!dC5(!GmIZHCmm|B=6EX+%CqtNp%v;fJlA?6v}97JrF%7> zTanPe_h4tu(E~=#4!*k9_W4}3RW_SNBX6GnttixUQ1u^UhF6kc(iBI3P^@{n`njxg HN@xNAiVx%6 diff --git a/common/gtk-3.0/3.14/assets/radio-mixed-insensitive-dark.png b/common/gtk-3.0/3.14/assets/radio-mixed-insensitive-dark.png deleted file mode 100644 index fed746c85272f8f6f4661ac008df90803f15d817..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 344 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE0ET1*sneHs(R-U_3q1R9p}_~uc&riRq45+-gQyE@2XnQCAF?gYTXyqx-Y5qTmY%* zx~SH5S*`mbgsr1*HSLv?HqapPk|4ie1|A+>J$-!xcMlKG!lI($me$s`?w+1GaRIDA zB}twxjv*3~xd)^9S`-9a4=(-@=9aPZUH!^rkK-Q_Mdu&-w|m_V);l??KDn5R?=A2q+^kn}UIyC6;OXk;vd$@?2>{fRdtCqk diff --git a/common/gtk-3.0/3.14/assets/radio-mixed-insensitive-dark@2.png b/common/gtk-3.0/3.14/assets/radio-mixed-insensitive-dark@2.png deleted file mode 100644 index 2658ab5f7b7afac319ff5c6a026cb6067ab672d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 558 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ElLLH0 zT!A#h|NjgP4WX-6g|7N<+;GOY;hA3dMeT#9ocRgIoY>Ye9QdM~Q>TvqM6sL^{xz2~BO*Cn;CORC+MfP(71 zmw{}x?u%;OK*mKipfaGDJwTBQY9Iwbl@~RVCTPXB>*!nQSozg2UT6q(m0?McUoZnB z6Eiax7dMZnsF=EjhNh;LzP^E>v57@caBxUyT6#uiMP+4GRdr2AM`sTR^n2@00cyVB z>Eak7AvyKn&9FlTBCHpRRdWSI1=43;4#~0A{qz6&Oor9nQ=T;LEfiimaltb0=*e4S zeMEkxgl+izyRyCEp3#Prg%1~|^vf=sEWYQH@sXK1k{iY5>@j{N>b@#vO6Z4qGY#6d zryP=*m)g{*TwgNFdBMV9ZU*1=ciE$=EF0#;?dIR|#fTy3VkTc>o1bcdjxf(2R^fdQ zd}n;%@Q-v8WtQ1%_=;71Q{oY?f@zX*nxUd_WeQ?jf~zRAvX-t4Y5 hXTD!%;EZ}K_P@9_cH^#B9IHX`<>~6@vd$@?2>_ca+GYR% diff --git a/common/gtk-3.0/3.14/assets/radio-mixed-insensitive-selected.png b/common/gtk-3.0/3.14/assets/radio-mixed-insensitive-selected.png deleted file mode 100644 index 8714335ace22f7c45427d8a1ad7ccd626714c911..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 344 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE0F&G>gxahul~Qj@&C)?Utga5|Mle8m;3*JJp29SF_8T8_3__tkHF{&i2VBG?^hW4 zbZEDL|v z7~3mqakZntbNgf-gO_DNOn#n diff --git a/common/gtk-3.0/3.14/assets/radio-mixed-insensitive-selected@2.png b/common/gtk-3.0/3.14/assets/radio-mixed-insensitive-selected@2.png deleted file mode 100644 index 67afea7fd6292f75c7f42889ae04fc11ddc0eaf6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 558 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ElLLH0 zT!Hj|C|CuepFIQO|1Vzre|7c$=jZ?bKmY&v#g9)`ts!e zF9>@2|Le0~UmyMY_5>*P=iB4|KOg`3_TKmPj#NIv=d6-<7A z^!w|hzuz7Mky_V9hv}Cm9lSm7`0c;np5$+LNCi5}uq4PYn1PXrnVE}=n@3bsOkG1m zQ&US{-@wq=#3Cp-I3zSQEj=T%qO!88s=B75vj+q!U(S30)O^9y#W6%ea_YgGVTTMv zST7W-=8A|4q&rGp66v`x@Be=*;e^tOlWaDauUlklbmhryt4lY3MlAGSCThK3-n`?5 zsq$)}^mp0cZYWx%9_5}LJ?F$MPVa*kr67-)o{1F;uf5>W{x-vUj^^|p9WIxYtQ$A?asRrKktXx<%=O0%l2MPP{%>zdezt6i Rmk!Wx44$rjF6*2UngEhr9@_u_ diff --git a/common/gtk-3.0/3.14/assets/radio-mixed-insensitive.png b/common/gtk-3.0/3.14/assets/radio-mixed-insensitive.png deleted file mode 100644 index 06d4d8da9890ec27a7f4e0416ed01021920ea8be..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 344 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE0ET1*sneHs(R-U_3q1R9p}_~uc&riRq45+-gQyE@2XnQCAF?gYTXyqx-Y5qTmY%* zx~SH5S*`mbg#Gv16K#VzD}e@ymjw9*Gw|^6>gnqnxO;eb78Vs1x3splb@%kli3?x_ zDoOHmaSV}=%sm***PZuoc5!lIL8@MUQTpt6Hc~)ElLLH0 zT!A#h|NjgP4WX-6g|7N<+;GOY;hA3dMeT#9ocRgIoY>Ye9QdM~Q>TvqM6sL^{xz2~BO*Cn;CORC+MfP(71 zmw{}x?u%;OK*mKipfaGDJwTBQY9Iwbl^2_L-JZ1n_LG;7{(gIM%|vQ5&{c*dL4Lsu zj7-eTTwL5dqM~Bz8XB6KTKf71hQ=lqLBYWxp=s$EnH80lRaMnB9UYxLAkgovI|Zou zf~SjPh=koXZvcTaiJxVKPv?ZgGkyrU;? zjr9@vl@hk$^Y6;`hI>XEP8L2~n9?u1aI*NGPsT@P=16W7o3qFGm8kowlqsPf=FK!{ z+n#brW?pJjqjG)8tl9+&gSi=e*W0p0RarL7iL2(=^2LZD=wjx##x_6I0v%zVJ*>j} z9{A4qz~LY1Cdw?c*YFjq`liGqUIo)6<1|gJ7B|^GlN0}B%DkF~ai(NhnS7I->Acxp iYtDSX%)lA-SnPjsYwX605qm(9%i!ti=d#Wzp$Py2ci@Bo diff --git a/common/gtk-3.0/3.14/assets/radio-mixed-selected.png b/common/gtk-3.0/3.14/assets/radio-mixed-selected.png deleted file mode 100644 index 83243896bdad9bcd894e88b9db5eccc60761dcf6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 342 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE0F&G`T76PFaCeI_vhOa7<%;g>k}Ay^!M9i1p11^{`Od{`w~!U)kT2_ph2P~L4Lsu zqGIA9p<&@o%`L6x&R@9r@zduo|6V%1m;zLg}vle6lRi>dfdqfZ>m!rwK<_KI3u?P&1aKAFehWmyoDpQ+M@ zl^YopUr)7?3!bRWe04_XQpW4++iz|xsrkvguZU-!xcT1=K-(BRUHx3vIVCg!0RBmy ATmS$7 diff --git a/common/gtk-3.0/3.14/assets/radio-mixed-selected@2.png b/common/gtk-3.0/3.14/assets/radio-mixed-selected@2.png deleted file mode 100644 index 0088a2bd7fc3cc9f248dedcb0d8118e3dd53d5df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 564 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EGXs1= zT!Hj|1UU2m|JDB=AOHXK6HZe1v4-*F|)D>35$rTscX1^pG#&fR))&FMGN;hDbVIkTZvGfjo%NgP?zDk))S#6lR7QktNGlDg#Nt; zJ8O;}FmiVA)wQPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE09)cJEz=zQE|d$^`49BU6<6mFROK3R_(q7XRCEzQtQ45CV>oe^!MB2P#wb?K!Zd} zg8YIRM8(8ILc_wFnp;}WoxgDL1%d#LQ zKU1X*D>pJIzMg6&7d%m$`Ra_&rHt3tx8K}YQuC9!e-n?J^-9jmK-(BRUHx3vIVCg! E09O5i#Q*>R diff --git a/common/gtk-3.0/3.14/assets/radio-mixed@2.png b/common/gtk-3.0/3.14/assets/radio-mixed@2.png deleted file mode 100644 index 62350cc5b7258aabbac222059f1d69c96642cc24..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 564 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EGXs1= zT!A#h|NjgP{~1=TGM;%xyWy&K-&Kva>uNn`RNBsI^j=W!yr|Z5Nu%e2dKZYH)^$m> z`?6}+W%aI0>fM*sx-Y7BUsCJ2tOk|^OI=h4igaC41Cc;+FuMmV2o!-!0gdWL5(G=N z?7B7S!0pE`AO8LJxLiXAC~usm z#6BT-%WenniHrfFV2Mz!dC5(!GmIZHCmm|B=6EX+%CqtNp%v;fJlA?6v}97JrF%7> zTanPe_h4tu(E~=#4!*k9_W4}3RW_SNBX6GnttixUQ1u^UhF6l{`o*eqL9yoP>gTe~ HDWM4f`@iaU diff --git a/common/gtk-3.0/3.14/assets/radio-unchecked-dark.png b/common/gtk-3.0/3.14/assets/radio-unchecked-dark.png deleted file mode 100644 index ec5fac5e771d552604d45502e30b21b0808d256e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 445 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(OMp*^ zE09jCZb>U|$f#&YscBBCXh;T<)lJFOO-WUaKr*4cF215Zp{zckydklyA-=ROuBo*Wg*~NDNsJPD4#W6%eGWVdTP?Ld(!$I~%Mp}y;+1hK8T^|1XK6z14 zr SVTBmTB@CXfelF{r5}E*{M5ado diff --git a/common/gtk-3.0/3.14/assets/radio-unchecked-dark@2.png b/common/gtk-3.0/3.14/assets/radio-unchecked-dark@2.png deleted file mode 100644 index b9b8a2f07b7b0ff37db2c489b1f71d9c29922044..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 933 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc|`>jI{wi zA+A8h3=IDp8X7`FSEZ%R%*~yY(9n?9(2&*8kW|*0S<#-{(2!W!mR8l8QQeZ#(2!Bl zkW$l}T+xtT)0_$vuWSQyQ!1O%t6Neln}F=ps-_em8%(A_7%;&!5Th9=2vm>;WB|F< z%^)q+Ao0}dCLozo-INC8LP;Q_B^9g-q!J_!l1c$9gD8e*1d4#PLlr=jH78d#C0Bt2 z8MMt9w9OfH%$am7m~<_e^(4DMoTMGRWE{O^oqS}SedL^c<(z%> z1EP#WVoiW3G|n|h=8sFIqdL@t-pc6?^6=w7tFxO z#LUXh!NtQXC?qN=Eu)~QqN=8$X=`Wi5EdR08K01tR8Ux6QB}Qo$$Y-;I{PWeJ>K!%VuR5djj*>oG2xE-p2w>zULIN#wj#I8MrOkNH+K);i@Wek zHKw9N;r8G)E_;Q6yZfsxvjwu_IOFUiuT-G@yGywqCLx_n0 diff --git a/common/gtk-3.0/3.14/assets/radio-unchecked-insensitive-dark.png b/common/gtk-3.0/3.14/assets/radio-unchecked-insensitive-dark.png deleted file mode 100644 index a37d47225cb040b0106a2efe536f45ca94edc210..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 423 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(et=Ji zE0E5tXiqL|$gXTlYiLNWZb_+WNUCZ~D6dT@Z-_6ei?3)*EN_S_sfz=$%j*+>WNCeL zQB`6^ePTsJLS;j8Rg-CGyjf^`a%H1QNUTXnd`eXlgSIKNt|ha+C9kPHuc@PurL&Nw zi;$H|-{*f}^xL_|l&baZrfbx)c+dCJsj)22$jGbR z18S)Bba4!kkjy=JTc}Av#Np!FO8w0SS9+Qw{`@z8X29dW?&!)#-%Oqr>UL!9{kP`t zx?O53rc6Gtvdh`ds`Jha=C?X0?=Y3?cfM~t>9xuCz!uM>`ws6_KiXcVzZbRtRo99aY{_l!4$ZVbn<>!!>fwe*Ku0imy85}Sb4q9e0G(u? AqW}N^ diff --git a/common/gtk-3.0/3.14/assets/radio-unchecked-insensitive-dark@2.png b/common/gtk-3.0/3.14/assets/radio-unchecked-insensitive-dark@2.png deleted file mode 100644 index 704bd30e78e2b20637f3fb51a53e0dad3bc11404..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 915 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc|`>i~#{Y zA+A8h3=IE)prN55G;|e^OiN1(ZD`1yG${edZfJ-tDM>2pOe^mwXlTf+sK~Bt0}D1} zG&H1CwPuxerB$^ils2c=G^bWJq&BoARW~G6x1?4yrPj8m*EXeAH>6g#Bv&>iSGA@B z)l{{DR93a7R07GSl$z!=APHnw168&FxhYl6DK(90RbY|YmK2~-Rn2KYEg%I=Kz2%H zQwoFuA{(K)z_Q6eE?6;xwkdrS{DK)68JU<_SlQS)xVU-w1q6jf z#KgoUBvn<_)J#lFO)aggtesulJv_aVl2bCXva;(Nnwp#2JG#1i`}+GQOq?`z+Vtr& zX3UsLEO?bzlm?7fOHUWa5RLOwFNX&o3J_s=pyBIqv~6!Qt9C-O$3~ZRjIII#qOQGN zZq2{{-&bK&Q87QfWBq-fXMSb;hyN(2O+TIEaIST20Fy_{Hu1SuTh<<7@LUt(!r8I@ z)~&01nb%G6o)k6d`gfVKyIFHP9{ue4qx!e$MT$3jDChThDNRxOVkin6b-rp5wPf=ef-c_|y^EdVRw3Lb=ym?>)s$_Wijxee3TCl`A## zW@X*!=C|6vc)fACtYl4$jbUk>)MMwyW2`?!<{c95Jv}3EhkDG}SEkXt*Xy+&A6&g} zl6i$xZ{(jHSBnJyr7b+ekjgi4;kB4!e2Oc)e7QS%Rv$N$Y56k2|Kzk&Q!QBBZ!OP? zoz(s(RK6(Z=Bnsj$$5_-_}Dd{t!%$2_*Gg?&~*RdlS^9OrSoxv@`R_WpUXO@geCwr CBX*ns diff --git a/common/gtk-3.0/3.14/assets/radio-unchecked-insensitive-selected.png b/common/gtk-3.0/3.14/assets/radio-unchecked-insensitive-selected.png deleted file mode 100644 index 077be10014c8136b93f8bdd71b4e82a0c59af0ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 395 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(Y=BRQ zE0F&G|Negvc>MqWvllNeg1PTMe0caDi2gtM^y%jRPtU%6d-5NM-ah^R?dks?uYY`c z`v22?p!olv&whS>@cY}t-`}48{{Ha)_h-MqKl%Ut$?q=@|9^QX?as`??nPKV9pt~?`Jd-J=Q+>W&S@?#$_wE} zaWM=FQRd4_(7ew#I4tDB_Og3uVl~Q?Y7U3p}Nza8HHg1yyD|(92J94O620^B4xDA+_0n@)6`^td9(GCmH zOJ17rIYXfS2rpyxZkW9r=tjh{Kkza(U~GN|_mbC10K!dpomQ{g3T~=anL3G{L!&P# zQegpsfvjz8_VyhdPEZh+%L@(-3)_Vh8Oi7KqmTrG=;)Xjp(rlyP(p%4au_KwF)1lo zDosgAO-nzTk&&5sEGru+Cnq;oCX?ehu23kl$YT-c?cV{C)N)RaC&*VYp3&Cr|`IatLn2u&bj)wzN1>2 zp2`?)sy>pftP%=GKe!p@ZI ry!QB%tg(gU^S?yZd%u1&#-62FRC-QPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(X@F0N zE09iTXeelCNG@zhZfJ8AJXv=Tv$ZKxTYwpZ# z>Bwp9tmy0q%4XEJtlqkQ?Y52SbMxH6AxG7&`zb9iUJ$JkY4spSbtAJurDvV6L9OaXVS_c3)-Yc< zH|dP-giQ5|(dju}PgM$5sjT>VwkrSqE;X%R7iVm=-|(EjQCN8E^)8{gKvyt$y85}S Ib4q9e0Ku@gy#N3J diff --git a/common/gtk-3.0/3.14/assets/radio-unchecked-insensitive@2.png b/common/gtk-3.0/3.14/assets/radio-unchecked-insensitive@2.png deleted file mode 100644 index 95d1ff7f9d0695f73e20c4a2959b166204b3f47d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 904 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc|`>j9vjg zA+A8h3=IE)prN55G;|e^Oq)3~7X&617WSn91+yBWfr8~7X&oKOg$>C-c5wqxJh8GZ zqog~fsx_siIkTcYt+Y9Hm={XdE1_C7cL&Z2t=2UU%q_e z*^|r9pIm+Z?COsX4}N@l@axl~-`{}f$=`2J`YtR{1%_o_NswPK10y37GYcy_J0}+p zA3wj4kcfz=n7E>nva-H`p^2%fnXR3ple0@?RCGdOVp2(Ic|}D{ZC!nRV^ec;OKWRq zS64R>^biSb7#Dv7#;2L5i(`n!`Kg!FgAX}KusjInVA3*MbK^i4>jowvm!mooti4D2 zA~Lw{{r{iEyOHYpYC z$jJ`{xkee@Om8f3s49uIE-)pT0H~mA^WLdy&KKPfZHn zPurdNTDI==2h%HZzTqnrr(RwWo67%AQ<;B8*v)>W?(Pq(_bAtG`0=^syZdh8$Wv#Y zZghPZ7qjuFRPEfIr@uUQpLTA)TiAzVkIL7qvT3#cwz(qYUFVWhZo12rd)-yzp7cz8 z^57~LuLQTQ!U9n*Hi_a6Ueo7BWekzwS*~t5G4|UY3Y?SMs%gi`(YwWOYV?Dtit!#n zZjwg(PfYw~k#_By-xT8;@$*Y($Oi6zDQNhaS5WMd;sep8ZJ>FVdQ&MBb@05Z#% A4gdfE diff --git a/common/gtk-3.0/3.14/assets/radio-unchecked-selected.png b/common/gtk-3.0/3.14/assets/radio-unchecked-selected.png deleted file mode 100644 index d66b77bb282b32ee00b1979a0c43efc74d22f17a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 428 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(QGic~ zE0F&G?(YBpK=kha|NH+xJpBLv;ipg6|NnpT>C?^c-|zna{_Okrd;fvx$D{KBc`M*XN@>FX{Ee@+eD<0VZv5)h;&#)=<5#1BIA)l7zJr>wZarpqme|N z8btz8<0~ozHR@n)6SFK!oG~CF3xhIB@4Zls0|ajGwYROuUkN?=&Ue0Z@}2X?@7JQr z&k=@-LNN>zDtBdTP)+cqAP8~TOvyP^f`}}oP9P9i?FAF44XNK%OkmjR2fhp_5uIOy zhVf=aky*R1(rhU+=`oANl3ZO^LsXR2>y!7Hsyb#eL>Ly3tIE?UkQtVu6X3aDqiO|; z0-)f{8+i9GOj`k_0sfnvwE@`Ry&b?lH}?-R%+C+QJPm*_1q)W-rZ{dKd_ckmJ~#jz z;BvSYNN|xZhH^3EE*Hf!<2*wHPxFjzNjN8fp9Ge6BXD+f0m03YZpQ9$Qt$yCAw4Vw zEahjrhowCWK1N#}771h^ft_4r5;)q!**!j9)K1F#f##iduaoqFrTn11ENXr1W{_CY zUUt%Npu8OAWoR$A2(*g?x`u{+e%aV3M6X$A*5qrkfWV;O;AP8KgoJ!13=dx!5fK>~ z6%`#F9TS@%7K_)R*qoHKB{^9plcl7jq^72SnUS$=d$v+ppwVcxIvtMV-xd}X6&LR< z`M$JNUs?4-jiI)#-e@!t1YtJsKVUi7&~WJR;ije|N19{fwzs1Hlq<7$=%fRehTh5p z)p5(-SL4@fVnSQ~->vCM8nGN#uRqbgX)62*Kv#RNmY|G%AN$4}R~JlUUzZzy+p_jW z?9&&QkD5N3{?cc<8$(p48*O+qC;YLC7iV&gj9XCyhGXR5gJEO*@J(8hSa?p-J}N8g zko?Njw(kB@`19=uNo`A_zMBXOwDteqT(oEH1<{6+!T8_T=VI~&i8*b9=|?wyE-Npf zPLmaL6FEJdoA|u820pFum(`r1Z|8u`pm}8Izgsz7&GgjYed%a5iN}XBqIKFiz?Ao&?ynkZ)(8$Q!Q;qV3$S-X82Ccle>6I9L OAf{C0XW!2%J@yG+%@id7 diff --git a/common/gtk-3.0/3.14/assets/radio-unchecked.png b/common/gtk-3.0/3.14/assets/radio-unchecked.png deleted file mode 100644 index 0e1275cb07590f330b41cf773d5850b248a15d32..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 463 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 XU0JD%3U79mgNk8KS3j3^P6n$ diff --git a/common/gtk-3.0/3.14/assets/switch-active-header-dark.png b/common/gtk-3.0/3.14/assets/switch-active-header-dark.png deleted file mode 100644 index 5f33bac36986d12daba88036d6067ff021de6bfb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 807 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42=2# zJ|V6^#SH)dtMy$_>Aa}aaaFVDnrhcomEH>~T^Ch*E~|81*66vQ)^$m>`?6}+W%b^R zs$Cb=doBXGKvJ#el3F(q0aadtu^}Q*QoS3f5ksmADyvwxSFvsn*aUdUi7>c5@dFa~Do44^AsjPHQhtTVF0~A1)goF8d%ZhhQG3FdpX!9_L6N zmqEEnm7F4SAPg82Z)|DQGKfpb}S^&1RsNBw%K&8_DV zz|9o#FkW}ANi%DukjQj~BR9VkmK_H1U9~u`STx9**)D(SrGEB-oEB%_c1E4g+jpBx zOeQ`~$rY&fS?S})|= z`9$H?AI)i%XC~^F8}N1K&rOXxcQWYamxIrE-fr?)92RiZDOca3!EfD451&L%Rk4{R c5BJwHZckCqOKiCN9+Xf$UHx3vIVCg!0O8_EDF6Tf diff --git a/common/gtk-3.0/3.14/assets/switch-active-header-dark@2.png b/common/gtk-3.0/3.14/assets/switch-active-header-dark@2.png deleted file mode 100644 index 7690f3fa6adfaa3fd61a1fe5d404232697d00542..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1529 zcmeAS@N?(olHy`uVBq!ia0vp^NkFX2!3<)R`n3Wn=3*z$5DpHG+YkL80J)q69+AZi z4ASdCm@!Ujq6|<_vcxr_Bsf2(yEr+qAXP8FD1G)j8z}|`rrZFZ z5LcjLhX4N=8vZk^TIJBN-+1O3?S`u=lWyyEU(}v@RlV~Dkge2lMxp<_Zu=$ezN^|@ zS2g>usdt`J>${-Rc~QCdvReNo<-V($UFS7=FR1lgQt7&=(Q`?y=ZaeA1@*2gYCRWJ zx-MySUsmtDqTYQ`ts5wHNww#)YS%^eo{Q>Tm(;s2t94yg>%OQ8k^-_X0%g^^E~<51 z0xDJoN`XwfqzY69RMP`g4-!`calve$vL3LpATCG{s1jrpOc@dzVhC6YXlD0Cm{Cy0 zXk3^HAX#=ZCw4Puc5`QT3pWmP7fvfrPHQht8*ffqUrt*;E^8ky8y_zFATEbsZif(V z#}IC(P;RGi9;Yx~*Jxh1SU#_0KJQdM?=*f8O6T`U=l9Lx_sbRt$P)yjzPj{ zq2OYnkW!&gASxFM1ELDy@G9Ym8sW%Vk*GS6sCtp829cO%(dY)z*k;k#7SXsCvDg-| zxK^>aHnI42vBWO1#BT9~F7d=3@uXgfl!+3l6C^XHOJ&cJ%9$^nGfz5qzI5&a>D-0V zc?+fU7s=!=mMH+DrLx5LB4#WeB~DTs;vr@n-!|ID^zb&sM(=V zvs1BlmtyU1#X2C`qg20Nso{W9;{oNygUXGEl$(I)uyXSe<+c+lEyq<_PpY(?QfWV} z(tbv@#!jw&#{C6xsE1v4-*F|)9;v2*kA^6?7@3Q0&xNz2G8si>-H z7#W+IS=-n(0IV4<5dJ_2$dhZ{L6Z`u*qcKOTwFqrhZ7!PCVtL_+fI!SC^B3T43H5V`?BJxPg{4r`q=&JzDK<9 zOXqc8J9^qRK2H|DnWHSb=NqH6(ut{#rxjOyeJ58o6e%OO21_B zN-2ulaoTJl>)ZbWrCsN`EOnglRA={;uV%SQmKRim^U=SV!J;c9|T?6O&_u|2C|6#ic!I z*0x_0&(@TDVwL-?vvE@J4DYv2TLeN6aV`0NOYusgnakf3z@SM|`+M11Zjsi_wKl;{ z@|&dR@dSq7=)KFUseHn*g|A8H`HiJ-qVBT1Qt<+YezcJFY13tHLE?+eoI}3ay>qfk z_LB1UW7BKa_`G-Sn-v?xw3$v${qR-bYFOl+_S_}TY|7Vq)y->^!d?R-f9;rrPLHcgzt3k;{466{lb_1)eL8EP|@q@>gTe~ HDWM4f3XG7= diff --git a/common/gtk-3.0/3.14/assets/switch-active-header.png b/common/gtk-3.0/3.14/assets/switch-active-header.png deleted file mode 100644 index f8e9eb1dc66ac434bfc3fbef9eaf747c1e51a831..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 807 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42=2# zJ|V6^#SH)dtMy$_>Aa}aaaFVDnrhcomEH>~T^Ch*E~|81*66vQ)^$m>`?6}+W%b^R zs$Cb=doBXGKvJ#el3F(q0aadtu^}Q*QoS3f5ksmAD(gP`s{5QPU=t9!+-5^XVpm*` zUvVRP$+hUE*MMsDCtS9he#L(J6{ne3oM&Efopr@^_EoppS3?(Fi(GmwYAHxr?DFez z%YnMCC#<-Zv+hRco?DX++@5sk_KYL9mz}<|{LGydXYQ;#duP>|yT@+bJAUi_@!R)L z+_``2$%ETZAKZER;NG(bk6%7~`s(4EcMspafAs$SqmLgRfByLB%g0AQzdZi+<O$_n*IiwHaDEak7A-VTpW;A1>2-|~nry#HH31Ygp zjF&vkn7PGswaGQ1-Z}sOOHW#sxhLlR@psby&pn+V9qj28JNN7Egy(ZSC;6Dg=bCAs z|EPthITnu{1D7TT{& z7D|nr@R5OIqUzH9b0!5|tz0ygR+M8Bxc-eYX@Q&(C wpLIDBPw&JfFqEBJSrDSiX(~0ZN_odZg!p00i_>zopr0J?vUmH+?% diff --git a/common/gtk-3.0/3.14/assets/switch-active-header@2.png b/common/gtk-3.0/3.14/assets/switch-active-header@2.png deleted file mode 100644 index c6e287a3f3653fb5be6acc1b77d65805570f987c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1552 zcmZ9M2~bm46o#V#0V^29Dj;qUUXmfALe*AL1QRu2Sp*`Yf*=7=3bHFzi%Shz1PQwm z1QbPN2`W`w1`Ue{VM+2{60(s5i$DRPY|0{ip>^8n%(?ge=ltLNGk50BrFppRGhA%G z7=b_-lJ*l0!ez72Fz}*?%|&fml_kT?_op(=6bj zSuD{v)+;h3HX$&Yf=Eb6unmhi9djb^48=AwI`r0%gE<1R@Uq7NZz2pM=H?JdbBNN? z-AT3fxjdUB2+fk&GWa%`5QZj!wPiAIU26LVs=y`%vY|t`R1t>O2BdVLX?&~eLLgOO zl>*`D?bz!b08@ab^RY|;zytwW2Zjy;%nmeNfMp0VG!Vn!0}R*_STlvzbUud3$It~B zh7h0&0S4b%Yr&ciyBInjpbKEw8n(1)0&5t9879nY=YY1I*D%JMkJYx?AxvtczGDB; ze}~Lla3+KQHR>Puf9=?!QDBab1t|i7u=Tz?azZqY|w=by0W1IZ0N^)$o)3taa-hB0C^Qc zK1HHKcSOE-MThT-j@%Okl!yaM#6b_l!KLD`GV$qhad?H~r%FjAM;ytKL~$h1Rg#!T zlC#y4i%&bLFFKQ7cBa%yQ{j3oO?x9{y_RKiWjS@SoO)Sqz3e7j4YIsOc|nt`ut{F@ zPJXvpUfd$T&y$z(6lJZ7@-}&8yP~Q?@tCiu7AT&9${JAl98$g%DQhK4uB59`s(dT$ zdMoQ{l6N&Lx}a{A19SzbrA0Yk=QAi$rkpHZ>c3Ga0~( zvd|lT>SAU<{pMsnNhML&el9@CWovy%k>OSb)~e}hN5j;qUFj=yT%LpY zvy8|KO18_t;QuyW^t5=IgT3j{_dT*mP;oIZw8tt3%9W4#8+pEUta?Z{w3%Wtd<}KV zYa%EKYbQ>D;8j08r)zoxp0n!}>!OQXE|8q^pOHSn3;cKK3WBV)!gH@coP*eB#!E`lkM7aW6)9?tNOB!qn!8&XvM~#!4 zT+1ovR-#;s-E=v03@~g{#I_|$qE_wzAO#7 zSlhx|W|HAEkEPWvGSa=yn_*i6p9+|n;VvUqB!@3M6ixAmRE!|9N9yNbdjq$&nc#Pn zPw4D#y)9G1uf0Buvv;IMF1dYJd9LIgfHrH3m`Pj^kog$z+S7de(XAvPo*VjN1O5Z9 zk-yg1JUOx64nMu+Sa0QKRCW2KS1+!3j=4W0NJ``pJo0jNVHluw)g`Bt|fC%2+% zRPeL*HPC9%r~m-X_5EU6n}<$C9}H?DR#H%L16D6MyLi5QsysHw$g|P4dZ4U-Q^>V6 z405G2_?(LgkhD!TW?a#oeaA@Z{UI^gF1&psc6-#i)l;3wS<+s~FwS7RzR>!>niVe1 l3+sH+W_1XqT;zjXPM2{xRi1M^EMEH~lZbAF3g_dO{{nU`AAkS= diff --git a/common/gtk-3.0/3.14/assets/switch-active-insensitive-dark.png b/common/gtk-3.0/3.14/assets/switch-active-insensitive-dark.png deleted file mode 100644 index 85ecc9eed73c04daa9db6c198a7057007cc44e6a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 802 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42*mM zJ|V6^#SH)dD|MVv>bR@We_yx#l6vP2wZ02#eK(bQFDUh1SMR*2+Id#B|FTNYRjs}Y z>fLA6yDzKtTvhA3sM>Q$z3Y;CH&F1hTJL4G?u#Hs*G09SD{5Vr)VeRJc3n{Ix~$QA zSsf?^6afidRO`O1+I>mBb~jXU_eG_;J!;(-fTqb5u8=8QrP_U2wqy;1jyaQ#1(UuF zlc56(2syDBJF%F$vzU9bTKKYB__12~aXQ6vIs;KWe?T#RKq-GvsX%yxP-L@EbhB7| zmsIvV>B1G#g)60tSIQQzmMvW?Te@DhY@=e$9>qE!+N;>GSGi%oa^pdj_ERdIXMir( zZwtB$43MajAirP+Mt*()K`CizH8pijO)YIbJsVrQ(6F%Zh~$)%?3~<^lG3t@%F3qZ zme#h8j?S*GuI?V?detr^|sdL)%@KjP$Nt=;L-&@$a$*jQq%Wf@sqQ;o>n`dr$NyznydpQ@JIP<5pGTUrT$&xMxt}|!W zi|#U;l~@wRu;J*LGv7sxqz*sNW$-8!&tH*b)YcurWN%WdD7 z$LJ8U?&9&t4Q`L?wcZq;O+Quqch>Qz7hmwW9X@${ZzI=IKG$nyxl41tTUd(CxqH;d jPwsn6nxf68{TK9?-Q!HUcu03WD2;l$`njxgN@xNAsRT!i diff --git a/common/gtk-3.0/3.14/assets/switch-active-insensitive-dark@2.png b/common/gtk-3.0/3.14/assets/switch-active-insensitive-dark@2.png deleted file mode 100644 index 135cf60cbe0e26a5f1d4a7185831209b84f37a4c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1488 zcmcK4iBnTY7y$4`I6}}sj4_392{|InS^zWsLh+waZ1*?IEV=nZ%~ ziX8+&c#%*L55_dmy=*PbQGRqa7%X#nq6Ax8+ll8flVFNFAWY7MAZLxaTkN1TxPV2c zyzr#FO*t8Pg{g;jLxqKfY{~xY-1O7~yV*I1_MCVZOo1Q_AvQ8093(>v3y>7Fh0Sek zo7)ybrTv~#Bdopxt0&y0&s^&6aqFfy(h-LI5m;GKJF=qosk`a{Q+A)O7=hJeR8&W= zdko8URHXszGF1;5s18O9)EXnT&bR_GtweRqIz0m&WuOLn?HFA-PD6~a(#TZk8S*h0 z)iY}!Fc4szf$HfBJsmaB6b1&WHRmH*I;fA1(-h+jxt^gk&=p!5s%Ib|7^kCp7}3!c zIy$1KA>fFCfq)n3!PI=pyk(%FI)=F>C<5aD0`pW$Q|M_R-%JOd5X&E81z-SnAjUfw z;~k3e3AHlgS^4m-I6N!g4OadlYqO2k0YDTsI2Ie6fa4|OcquqOuoD-ax+pviFB0QL znfQ%B7Jg$kJ_^|95DnxwL?3jB&2@;+cZe?_BmhN(M4*(grJQIcB_>x8w^b2Ss!1s| zv%}jvI1rYSmXV!ZT;1F~s4z@pd9m5v-m85$Yq^0z zK{2s$@rj9Bl9H0QZBI!}6YrK}W#{D=6c!bilpHRVN-JeGwQ>YOQN{n%5*9ZlfO}ma z5`-lUu5h0$<2oUqgCU z^aU;3(|+vz%`@MItUDYcsrY#S_v$W;lfRl9fXP42zb+0s|9D3Ac5Ao|Ir%c;K0W{E zyT6}WPBDiglW zq`l3M#7^9oH0X6Tt%=L3u3u}sdp)9`yq~r%!&7`?(tY^1Ev5$58;tnI)Y+3uKmD3% zDj%YFJ)bOCs#3^VclCLMb^=$gDCNHb7`dOlsOt7HHFu;rGI^m(5U3YiF(= zIh9Um*_EEtu-?r{+hkhZor{s#B%igfxlhH;wDz`3s=K1eOunDw_OiLi+0U|?t#^+5 z+4gh}{XkqVi2D%t{*aLg^~!wr5hUUz{*eL_{)~ObrO&wDj4_kjZO7t-NnIGn-A<2$f{A)27?P#;S#oWivem-!(T{M>IsaIejn;xM`NC z!^kcCz~a4C{YOW(tF)0Rd(v}ud8nA4pZn(Ac*YT#%ekXbYo`gX=4AECfJZ}RF7BEl z>&tFk7K8P~7|v{%Nkg=M$DP%-)B5U-17Y03nIq~46i=~lF5#i9Bl~^~f>&QW-FfM9 z`2_j+o#s%Jrz!4bV*JWq{z2=FhZ`+@qey$t7bm(^v3k!{elgBY2^PN*g)B;LOu@f= zn?LyS-my`VKrk!`5=VV`{nyt=oYnU8tuGF&A#`&%8iL+#W=)}>F-d%q>m%YdbJ=RL aa2{(B=26PBdcrsVQAOd=f=j$zmHz^b=XRq2 diff --git a/common/gtk-3.0/3.14/assets/switch-active-insensitive-header-dark.png b/common/gtk-3.0/3.14/assets/switch-active-insensitive-header-dark.png deleted file mode 100644 index 1b3ab46fc5e28e36ee8f0f2854b465d27a7ac955..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 788 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42-M+ zJ|V6^#SH)dD|MVv>bR@We_yx#l6vP2wZ02#eK(bQFDUh1SMR*2+Id#B|FTNYRjs}Y z>fLA6yDzKtTvhA3sM>Q$z3Y;CH&F1hTJL4G?u#Hs*G09SD{5Vr)VeRJc3n{Ix~$QA zSsf?^6afidRO`O1+I>l}elJvU_eG_KJ!;(-fTqcntWoX0EMK}ozI+3_xf8p&GpCg& zrUqDbwT3Ss_T~kv_TTjo%)-E(GEIcAPB_%s2x1^-BtfI2Askx=Kt)ru} ztE;=ahX~Mhq00~$=5n4cjv*GO_g=XfcE~`0?LnA>K!J0acz|PBz_O{UrZAN{yPCcI zZO_FSaI0mGWsKqW$?un>8`Z03UVqvhcPCV5iPq20EBY1hU9n|b zw$nIvMSigp6_7gkJeAW+XLkOAj-CVo!=|Ry?~VuTDYN;tNO`*c$K!7|9^0{~U;F1r z(^*+>q~7Ll-C(b`)OOB|Y`J5L4b5^c>$c5xs1z!-X<4?9BeACc?7K*-_T#qG`zp%+ biO*u*n94LiaLTb?pj7GU>gTe~DWM4fP-aGU diff --git a/common/gtk-3.0/3.14/assets/switch-active-insensitive-header-dark@2.png b/common/gtk-3.0/3.14/assets/switch-active-insensitive-header-dark@2.png deleted file mode 100644 index 506f801e90ac924e51f7efea43fd4b21d6a5a46a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1471 zcmcJPi&xTD9KZ=PK{Fg9W+KVs$D?Ih(^Aw@Nm9dCh$xz=gicYXhKQLJKEdA)%-J|@ zxn zzd|)ey3Pz%*(ZKxAw~!`)72Jwt%U|pZ$gahS`!NyVhVrZvWH71tM%+yXY5EBaq#uO7VL9mgj zH8Non0|q5#77R8r0oPh(T{1HeBg@(oGy(Pp!|F~lv?d0~w_*g+&WCH~v)j&>hxH4` z`th-Tk=Ot}HUP*dY>)sOBy<390U`%(ydziS$V+nMCFA%K9AAp#XW;mmxJZBu7nSW4 zlj{_d=Oie=3*~sB0xtp-;YG#x_!4}4DPDYxU`0hpt{^6CQeHDDuZ1jcCCe|87477rPPd{ix8feRk{)XD6>7;< zYAK+XT6&#&4A4hc_0!7$x9DX9^ol{cdKjv>162(}>QP8-fNI9UElIt0D8V!6C=^7+ zqE?~NHa4r**x6yQSbN8HIGoeRg!M#{D|sV@N{1kZ`xXxmPtUE}yu3Mn{{GQ1`vf9U zd_saaX@7E>M4Fx@%Pv$DDT@!6lpHBlsmiO>ni?2J5bggkj%x(q)uR>RA;CiD4bN^Z z2bv39?Oytrx~3krD%iZ1x5WErx$0?U;~SsmibD58Aq^eI^8;|mc4^z#V$;%(X}a9G ziH%K7JDYlfX6GYfMOQ1`V}~So{>;(WePq+p`p}|FG%{isjH}zR>%qSdHZCJ=^L-HP zLG4`I{mv~(#tFNz@UBdLji7twD_uTdDe%1$|82xM49O#Sx`7lhcWzGKn0dO?w!1`F zTex^Z(!w$97=HSwRaTvov`IUH7Ef@h6DRZvf}|HEe!*#(xe2FxX9r3nh4P%}u7(V0 zBDMWHMeD${#rqPfdr#c78LlAo+%C_27tN%a2CoY{(>b;|q295P_nuS*kr$63rS|L) z!p*madrvAZrx7!U((KthXvJpQ_iX10TUiYERERA#_IV)YrGLUgWsnb2tY1yr8?1S; z(I*1+Ar@wb6sJ;Xbnfg{`Fqd5$sGm3tvcSGRH&Iyxwg%)Kk#v?&Ot(UpD!!Z;MZ67 z#%0_bb@^m|a*TFzFFI@QtCarH;2WAyH;1V+m1z5qT2j&@J?B3&pvTx}RJoWp<=-SZ zU0CdRK{gQTB*DE6Pj~;+jwmk9-d$twSIHT2`eB>?ubz2S|&lAN%}|>Pee!j~=Z1{dn@7ho`FZY5L|7j)OS%eXhdw`&q@|{0y(by04D> zwk~U-;(2sa|8i=e{$!Y+KuOfkP{u?DdIrKIBY(DZbR@We_yx#l6vP2wZ02#eK(bQFDUh1SMR*2+Id#B|FTNYRjs}Y z>fLA6yDzKtTvhA3sM>Q$z3Y;CH&F1hTJL4G?u#Hs*G09SD{5Vr)VeRJc3n{Ix~$QA zSsf?^6afidRO`O1+I`7w&J~Y2SD@-af)`xpTmc%W+I=~0#kGVLH=-6_jamw_MSsF& zyXlu5reAiNdD(g9W!Kq2bTw?z)yQR6qnBNcU2#2r#r4D$SF_jO?A&vE(*E0%4&R=B z^!Bn-cUGLavl58T-8p{y-ibT+Za;Z&``Lp#&mP=+_Tb6ON6%h9di(y-`}dDNe0cKd z!=o=B9{u_PL{I*Hd-6%ZQ5zU6F(pBM!3>Q2`~ref($Z>b>YAEb+Io66wsxUmVc`+U zDJj`Gxg{l~Wfhf`P0h_Mt!*70on2jB-Q7LJ0qLusxPkGY=;`7ZVsU!!m78IQ3lH7J6$y=d{#RQ})b%ZP+xu|;+&Xp3nKQF)ZF$U{o7&Cd zX}DSPlVwNwV;1HoEAPE3oBb^EjIrVA-x@pfHza1{Wu`R!Fnr1zZJo8Xq$Q&hNw_{J)e#Xg3XPCP<+v@I|dg1Gq#&Tg^!j0#1d!mf8mNAG{ zynMBHnc0zP6Jr^sJYU)_R~;y2{_7O;t-mWnt9&x=T;DvYVNvrVhXV6Thp{mA>$F=11{ zycdS2crI_sJ#Eu_#-hC3cHXh;wzBb`{r>8I;caSsDA(SyYa1xBdb;|#taD0e0sv@k BiJ1TZ diff --git a/common/gtk-3.0/3.14/assets/switch-active-insensitive-header@2.png b/common/gtk-3.0/3.14/assets/switch-active-insensitive-header@2.png deleted file mode 100644 index e9f7b102c1bc6dd8f83c03c06a95c3fa674a22c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1558 zcmchX|3A}t9KaVB;~qM?x-ye*`=S++dK9`lG_lCHQQOgVQ%7*VT#aJY0n(RqS zrp84kr!o>FP^qb@_E8sNl1?+?Bkbc6&t89h2!lfDxCHnHdm_cC^>tJ>a@Irm{1E=S zTXy%ZYzW8gz;Tt9*;ClUKIg)xPT682YaEGKGsV`-Nz1Dvws`{tju^)swgDuBLIsW` zu_*wNtnF1f5s={6piMqxQwUkJ$94h|+d?T37$O27fjLYlkm1=7t^l&-NQtar93Zu2 zju6=hG9n-)aHIqP#B)F*FsiL*j}nmifDF%(5m{1V0Z8DC;sGgFF?b4<|JRl)zXCgxo`;(z{NAVmf9;w$N`Lsx4%aM>cpnZ|Vz6f+E z0v)*$CoZ_33mzy1UCO{iW#BjEpj$cUQ2`#V0KIq+g$Gi2kPi>^;X%g`svy5AC;*`v z3a*BZ*FYx_Y9V?p6nYanRVQcE$;0dAXX@qAx8*U7@|Y&Y`6fkNi#)DHk+hSY3+3Ze>xol8exzEE6cp5roPLq4K&=$?J!!MapUsTqA;O2jQE8aGe;g z7sI!Q;l^ROX%uc5h3`nR9%p&TcHvtRQ*bo2v!ZkDo8V}&`hhIPpf9t z)3a*ztXlI@{rshRZb7}Us9r=^QZH%IyjfDed!v5;R{efiy{1L;@3LkkCz6d^o`=an zepJ*39UWcW&-C>5(FO*FMw`C)!uZQATfZ{Hn(wf*vcci-yY1}l9US&JI_-0Iadq_% z2n;%Y`~;0g4-GrX2tN}M6&;hDaxwK%T6%g$W_ET?UOtn>W&;4{e>n+Tv-*+uaD_s4 z58iIN(6e$%oPgC|O2ykGM8)@+{Qg9>Gcc?5ugk9*5Oy zAEz=G`AL)SvKIeZ?VK&?W13l<-X}ENV|t^%}1A+*6nHa23DHT01rL#z@N&samwmMvfh35z&1f7lWXy|)pZRYTYz&&T6UK~7W4J( z2Qzl0d6!zgYUx$o^Y@9w2xD`rKgj2)>l^1h5>L0e$()vNG|fNSooJxc4NM(xiu0tG zoO>M2Y&B}W?9j~36KdRKu4C1~8sA%16yubm3_FYFYn3-?)4+$;E$LOQ1Yu-_?sPEExQ#K+jvS*}Z!9L6uTNsn+{#Cj&F5ZtVVrS- zp~mh8zLy(`=B3XSF-+k7j!CXMCF>>alerbxUc2}e@+#AgihAT zPt_kz%u}aUD>v?A({t*)3^V3P<(ox<`3J@+&s;MCR9hlO@D9`i?xkTfT1<$RS^PxaE(( k1ssr{EJo_^#%JbuXe4>^V!vj6}9 diff --git a/common/gtk-3.0/3.14/assets/switch-active-insensitive-selected.png b/common/gtk-3.0/3.14/assets/switch-active-insensitive-selected.png deleted file mode 100644 index f128fe1b2f65a32f348d2d25d68712371936a23f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 826 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42%i^ zJ|V6^#s7ie-CZF5|Ns5}4-fx;ef|I2K0W>U`N996&whS>2tr>T z{|BP)&whV@1Vn$nJ^b_e;s0+>{(pP==i8(I-yi?^4wQZT>+7Sx-yVa}qrX3%LfPLR z|NZjh@AoIafwJG9+EMU9@z zT0NKbCtNn1bkTIuW%DVQ?WSLLn10!H_Eq<}S3T!m_MCe)dfC-jAX))L*DJQ%tlDz3 zX3NdGZ8y92-kh-i_N0TiXCJ-2?ed+&H}4${IISDF5MdvkR|(%px=y03WhSG~xRyAY9I z^?i-;A4k{zM<;qy-zII}bv-2f$a&R;OkH;8Qj(vx|F2K%U-tXD&7Rg(;omc_7$rUu z>v+3x&D$G2H_thibex!3+-dUf&gIU?$vnH{clk;!{vIdP4vZHDPgg&ebxsLQ0DY{` Ap#T5? diff --git a/common/gtk-3.0/3.14/assets/switch-active-insensitive-selected@2.png b/common/gtk-3.0/3.14/assets/switch-active-insensitive-selected@2.png deleted file mode 100644 index 14044f651243a2e8cafb6a285f0141f35d1529b7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1586 zcmciB`BPIz902erA|O|lqk@P*@MuB6qNRwaKu`|LJ&=evAPI_TK_CzX4@8b|s9X+3 zhtjbHIlRK9P?14o)JO$<2KxF!2rnU&JB1t&lG$z?r+-3sKD*!Ve&@UU!<)AS!GXsN zH&|{U5D12TzNAnXPs6!KS4)$n1?Iw_mFndeuB)qyjRy(fR`0woC6z$f@>nz1oU$yn zf<+6451A2`6whGBrqBpXCetw?k)9eCd!FW)lyc_o{6R|sVQoPq7;S zE&$l4d<+PM00@Ct48RPSgT*;8KMKG+SQrC~BVZBM#b9X?Ed34Svp_Ba@(G|A1&T?a z5C91dmht6fA^2ov315*4As`hhr6QmdDWzj@1{J zswG$vsg`h+9QI5=DtL)PLnR$oNpThIgtK)T}am^}ilXGXA-LS-7)sXlL=z?&6`ZixG#LLrx{g-m)Q=GGu=l;#z@xSAiU= zM2=JMI- zveC2_G#zS1FSMeUTG1=*XjVIV?HPKl6TRMvBL0M)=TkpL45cw&KI62~WT(G)I*X7EX94xgIC=N9kBV*$)OiWG9 z%(qx=wI3}n^Y&*pYqUZAGv^9(~2Xp`;M2HS>#Z&=L}Y-Z(?oD84MHq!=8&TSUE zN&*g&x?I?I!pNQ;N6&Z_sBzb`9h}DF?ZqLYea8N?w38~c=}vv}X!NVnu(hU)+s>)U zI^k{Xyp#vq@7o!~AMR2LGF|udk?odQ4=P(%l_QZ*e$4Q>&>F;Ucm&UaYEk~lv=F8(}f7=vDO}aT;T3Dh@4{ato*wbXHm=EG@bv5QYV(uL3ugTM0)#+)* VeS4_GCh&m~{ComQkGx{C{{>Kpnj8QC diff --git a/common/gtk-3.0/3.14/assets/switch-active-insensitive.png b/common/gtk-3.0/3.14/assets/switch-active-insensitive.png deleted file mode 100644 index 59cf2607347acd7edca601cfefca1a6e53b283ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 811 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42&WH zJ|V6^#SH)dD|MVv>bR@We_yx#l6vP2wZ02#eK(bQFDUh1SMR*2+Id#B|FTNYRjs}Y z>fLA6yDzKtTvhA3sM>Q$z3Y;CH&F1hTJL4G?u#Hs*G09SD{5Vr)VeRJc3n{Ix~$QA zSsf?^6afidRO`O1+I`7w&J~Y2SD@-af)`xpTmc%W+I=~0#kGVLH=-6_jamw_MSsF& zyXlu5reAiNdD(g9W!Kq2bTw?z)yQR6qnBNcU2#2r#r4D$SF_jO?A&vE(*E0%4&R=B z^!Bn-cUGLavl58T-8p{y-ibT+Za;Z&``Lp#&mP=+_Tb6ON6%h9di(y-`}dDNe0cKd z!=o=B9{u_PL{I*Hd-6%ZQ5zU6F(pBM!3>Q2`~ref($Z>b>YAEb+Io66wsxUmVc`+U zDJj`Gxg{l~Wfhf`P0h_Mt!*70on2jB-Q7LJ0qLusxPkGY=;`7ZVsU!!m78IQ3lH7J6$y=d{#RQ})b%ZP+xu|;+&Xp3nKQF)ZF$U{o7&Cd zX}DSPlVwNwV;1HoEAPE3oBb^EjIrVA-x@pfHza1{Wu`R!Fnr1zZJo8Xq$Q&hNw_{J)e#Xg3XPCP<+v@I|dg1Gq#&Tg^!j0#1d!mf8mNAG{ zynMBHnc0zP6Jr^sJYU)_R~;y2{_7O;t-mWnt9&x=T;DvYVNvrVhXV6Thp{mA>$F=11{ zycdS2crI_sJ#Eu_#-hC3cHXh;wzBb`{r>8I;caSsDA(SyYa1xBdb;|#taD0e0sv@k BiJ1TZ diff --git a/common/gtk-3.0/3.14/assets/switch-active-insensitive@2.png b/common/gtk-3.0/3.14/assets/switch-active-insensitive@2.png deleted file mode 100644 index e9f7b102c1bc6dd8f83c03c06a95c3fa674a22c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1558 zcmchX|3A}t9KaVB;~qM?x-ye*`=S++dK9`lG_lCHQQOgVQ%7*VT#aJY0n(RqS zrp84kr!o>FP^qb@_E8sNl1?+?Bkbc6&t89h2!lfDxCHnHdm_cC^>tJ>a@Irm{1E=S zTXy%ZYzW8gz;Tt9*;ClUKIg)xPT682YaEGKGsV`-Nz1Dvws`{tju^)swgDuBLIsW` zu_*wNtnF1f5s={6piMqxQwUkJ$94h|+d?T37$O27fjLYlkm1=7t^l&-NQtar93Zu2 zju6=hG9n-)aHIqP#B)F*FsiL*j}nmifDF%(5m{1V0Z8DC;sGgFF?b4<|JRl)zXCgxo`;(z{NAVmf9;w$N`Lsx4%aM>cpnZ|Vz6f+E z0v)*$CoZ_33mzy1UCO{iW#BjEpj$cUQ2`#V0KIq+g$Gi2kPi>^;X%g`svy5AC;*`v z3a*BZ*FYx_Y9V?p6nYanRVQcE$;0dAXX@qAx8*U7@|Y&Y`6fkNi#)DHk+hSY3+3Ze>xol8exzEE6cp5roPLq4K&=$?J!!MapUsTqA;O2jQE8aGe;g z7sI!Q;l^ROX%uc5h3`nR9%p&TcHvtRQ*bo2v!ZkDo8V}&`hhIPpf9t z)3a*ztXlI@{rshRZb7}Us9r=^QZH%IyjfDed!v5;R{efiy{1L;@3LkkCz6d^o`=an zepJ*39UWcW&-C>5(FO*FMw`C)!uZQATfZ{Hn(wf*vcci-yY1}l9US&JI_-0Iadq_% z2n;%Y`~;0g4-GrX2tN}M6&;hDaxwK%T6%g$W_ET?UOtn>W&;4{e>n+Tv-*+uaD_s4 z58iIN(6e$%oPgC|O2ykGM8)@+{Qg9>Gcc?5ugk9*5Oy zAEz=G`AL)SvKIeZ?VK&?W13l<-X}ENV|t^%}1A+*6nHa23DHT01rL#z@N&samwmMvfh35z&1f7lWXy|)pZRYTYz&&T6UK~7W4J( z2Qzl0d6!zgYUx$o^Y@9w2xD`rKgj2)>l^1h5>L0e$()vNG|fNSooJxc4NM(xiu0tG zoO>M2Y&B}W?9j~36KdRKu4C1~8sA%16yubm3_FYFYn3-?)4+$;E$LOQ1Yu-_?sPEExQ#K+jvS*}Z!9L6uTNsn+{#Cj&F5ZtVVrS- zp~mh8zLy(`=B3XSF-+k7j!CXMCF>>alerbxUc2}e@+#AgihAT zPt_kz%u}aUD>v?A({t*)3^V3P<(ox<`3J@+&s;MCR9hlO@D9`i?xkTfT1<$RS^PxaE(( k1ssr{EJo_^#%JbuXe4>^V!vj6}9 diff --git a/common/gtk-3.0/3.14/assets/switch-active-selected.png b/common/gtk-3.0/3.14/assets/switch-active-selected.png deleted file mode 100644 index ee2bfb61596e7f04dfc28268e6492e2d697c2a92..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 814 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42-4$ zJ|V6^#s7ie+vES=p8Ws*41~Ts`TzCl|F6$}|9JTO$D`k09{u_H_|MlTVD#wEx5t0J zJ^B0XF&I7h`~C6XuMqU)@7G8FzCVT_uri>^#~=j|HBc=OjUe*Qvj=ycK0uSb`|Kf5 z>gcU|K=Sa-`zP<*J9YQITK6T5p39m*)O%Tf!exUAmyIS~GMRMQbkb$>$ye;AUvZdm z#dY>o_c>QR=3MohdnJ15wdiHnVt{D*wb&=?2H*2@u?Am*C!hu^8 z58j$}^!E14cY(GXxp@z0C;K6`Kvh@L-u@Z#aa7Z0DjdieC! z!!I8n0Ufq#dD1Lkz?qi>`2{mDO3TQ}8yFh7y19FK`}hTi2Q#gi5=Gb^s84lC z@l^Gm_9lvhz4zFKMQ)qaqK_Fp|No!G(`|3*UisbmU*=pk-z=2edE?WT^PORRD^*U1 zc+Cvas@^HR<*?DFV@6wTOhwJwE2uqi;?AK(yQg~b#^E?-sDf{{6E7gla1R*<%AwXN73EuH+5$N`Q0Ky z8i5SaG2g3Pt^>K{0UiZ=I1?t;-;oyp@=i@qFy~h|z-wNTQ6R1=6ywVz@g%-n|IS%v zPPw}bIh%Es2G2e;hqrW{#p#+k0o-!jYJkYUTRur}n80-w5u6{1-oD!M<>oLe9 diff --git a/common/gtk-3.0/3.14/assets/switch-active-selected@2.png b/common/gtk-3.0/3.14/assets/switch-active-selected@2.png deleted file mode 100644 index 07387dda8f0e8154a79f3aa56e8e43eb0dc682f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1552 zcmaizX;4#F6o4bBAOQuf%H{$kfTL0c5d{PjgBV$4UqwZbC|E@n83wI_NI?)GVw6Rz zAe$l(KtL-ZTScH0laS;kWO?reS&R}a39^LO7duYt^hfV}=bm%VJ?G55bMDRXaCg?y z(AU6VFj}MoL@!hyM`f$Js?v&gzlti=SOUpMU0t0A9ulF;Wzh!$V=)+m8l@~cqMvJs zI`!h50^+>SM#LqA#+<+;BqUgzIujKe78-rR;%p4L@T0vx2BVVV;p*dr1|#2$J_H#= z5FUbzBFH#`yjR*E`N)J2k%Gu1j7$j;nFx_Vh#W@bVnjZSdq}%Gdg+Ay!PIS>KjYmPJ$kRs8>K(@eT)7Tqk9Zk|Qol*QO|ov|gGzAcAgnM=3I zW$ZwqFsvyIo14sCc}$1f%)NJ*_&|9~88*1#KKbJ0R!;1h09*9=@=bFYFTt`-Q>* zk%$h87?6+&iCD0REf#UaB0vms#UkFYXlPg@8U?{o5FP`?T>;Xfy#sYyuo36g(;XJycwOxY&13$HKVeTBZl<8fZ@-k3!ys*9H_ zRl{m(EnlInvr<=2-@tI4u?f!9+|tT=r=7jyUOa*5;pOe)>*pU36msO`si@OAlsszD z-Fx>Rl$4fLRMyrtHMh34cQ9CNfIB1*iomgP$&^e!Ju^EuuUOF3jqgI=K7~ZY`{?R@ zXq!ITcg|2v+EkpCYTOkVh$Bz5kj*!j8np092la3zd0T_Q)5hTuCPg8Qy*ew~RhirdOshGv)OST|7@8XPXTKox2g`4EjXcECO zW;;<8f2m)O!>8WXx3(@};d5l_NqGxIoAjcJl}6(xNx74e@rPngHW?OI*ZT)Y-EJ&3 zg*QI3z20J%y`5=JzsPGmuHLuOo@O|wi7OAF(oAW40L?3A zRF!_k;>6ba0D-TjQQ;=({h!RNMpy*D)tk*b!|O7x+Vxsci;`b>`PHt+lAxO8jv71R zv9LE`ZvxHDLvcqbiga_`m$VFfyz>*+xwuO4%QnvxNSrAF^RaffK3KG`Ev?$P z4*MoTqi86ogW@73DNkflr>8+K&rkf}LKwgMQ#IagXB#Ox!cvk}b1jfci}2M3+=x~a zqIw(j!W-a9eDl)c?;+865lf+7Yt%X@2PusNxIVf zNqf3U4Qo=WoPm<8a&9s+D@fS@15QZx?%ipJr-BxFuGm?R?Etx{FU4iBYkJ+`{^R5& zH@4g5*=Gc4dODt6-yLq(asH-W=F*(CTT4d9jCy7t6u*!N>TO3y_RrkR8qi@t@!DmX tzu4NR<}FFBoSj-b;JkXxUS!!ER%;>c``YLIO!O~cNKWp=YQnLUzW}2gpq2mt diff --git a/common/gtk-3.0/3.14/assets/switch-active.png b/common/gtk-3.0/3.14/assets/switch-active.png deleted file mode 100644 index f8e9eb1dc66ac434bfc3fbef9eaf747c1e51a831..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 807 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42=2# zJ|V6^#SH)dtMy$_>Aa}aaaFVDnrhcomEH>~T^Ch*E~|81*66vQ)^$m>`?6}+W%b^R zs$Cb=doBXGKvJ#el3F(q0aadtu^}Q*QoS3f5ksmAD(gP`s{5QPU=t9!+-5^XVpm*` zUvVRP$+hUE*MMsDCtS9he#L(J6{ne3oM&Efopr@^_EoppS3?(Fi(GmwYAHxr?DFez z%YnMCC#<-Zv+hRco?DX++@5sk_KYL9mz}<|{LGydXYQ;#duP>|yT@+bJAUi_@!R)L z+_``2$%ETZAKZER;NG(bk6%7~`s(4EcMspafAs$SqmLgRfByLB%g0AQzdZi+<O$_n*IiwHaDEak7A-VTpW;A1>2-|~nry#HH31Ygp zjF&vkn7PGswaGQ1-Z}sOOHW#sxhLlR@psby&pn+V9qj28JNN7Egy(ZSC;6Dg=bCAs z|EPthITnu{1D7TT{& z7D|nr@R5OIqUzH9b0!5|tz0ygR+M8Bxc-eYX@Q&(C wpLIDBPw&JfFqEBJSrDSiX(~0ZN_odZg!p00i_>zopr0J?vUmH+?% diff --git a/common/gtk-3.0/3.14/assets/switch-active@2.png b/common/gtk-3.0/3.14/assets/switch-active@2.png deleted file mode 100644 index c6e287a3f3653fb5be6acc1b77d65805570f987c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1552 zcmZ9M2~bm46o#V#0V^29Dj;qUUXmfALe*AL1QRu2Sp*`Yf*=7=3bHFzi%Shz1PQwm z1QbPN2`W`w1`Ue{VM+2{60(s5i$DRPY|0{ip>^8n%(?ge=ltLNGk50BrFppRGhA%G z7=b_-lJ*l0!ez72Fz}*?%|&fml_kT?_op(=6bj zSuD{v)+;h3HX$&Yf=Eb6unmhi9djb^48=AwI`r0%gE<1R@Uq7NZz2pM=H?JdbBNN? z-AT3fxjdUB2+fk&GWa%`5QZj!wPiAIU26LVs=y`%vY|t`R1t>O2BdVLX?&~eLLgOO zl>*`D?bz!b08@ab^RY|;zytwW2Zjy;%nmeNfMp0VG!Vn!0}R*_STlvzbUud3$It~B zh7h0&0S4b%Yr&ciyBInjpbKEw8n(1)0&5t9879nY=YY1I*D%JMkJYx?AxvtczGDB; ze}~Lla3+KQHR>Puf9=?!QDBab1t|i7u=Tz?azZqY|w=by0W1IZ0N^)$o)3taa-hB0C^Qc zK1HHKcSOE-MThT-j@%Okl!yaM#6b_l!KLD`GV$qhad?H~r%FjAM;ytKL~$h1Rg#!T zlC#y4i%&bLFFKQ7cBa%yQ{j3oO?x9{y_RKiWjS@SoO)Sqz3e7j4YIsOc|nt`ut{F@ zPJXvpUfd$T&y$z(6lJZ7@-}&8yP~Q?@tCiu7AT&9${JAl98$g%DQhK4uB59`s(dT$ zdMoQ{l6N&Lx}a{A19SzbrA0Yk=QAi$rkpHZ>c3Ga0~( zvd|lT>SAU<{pMsnNhML&el9@CWovy%k>OSb)~e}hN5j;qUFj=yT%LpY zvy8|KO18_t;QuyW^t5=IgT3j{_dT*mP;oIZw8tt3%9W4#8+pEUta?Z{w3%Wtd<}KV zYa%EKYbQ>D;8j08r)zoxp0n!}>!OQXE|8q^pOHSn3;cKK3WBV)!gH@coP*eB#!E`lkM7aW6)9?tNOB!qn!8&XvM~#!4 zT+1ovR-#;s-E=v03@~g{#I_|$qE_wzAO#7 zSlhx|W|HAEkEPWvGSa=yn_*i6p9+|n;VvUqB!@3M6ixAmRE!|9N9yNbdjq$&nc#Pn zPw4D#y)9G1uf0Buvv;IMF1dYJd9LIgfHrH3m`Pj^kog$z+S7de(XAvPo*VjN1O5Z9 zk-yg1JUOx64nMu+Sa0QKRCW2KS1+!3j=4W0NJ``pJo0jNVHluw)g`Bt|fC%2+% zRPeL*HPC9%r~m-X_5EU6n}<$C9}H?DR#H%L16D6MyLi5QsysHw$g|P4dZ4U-Q^>V6 z405G2_?(LgkhD!TW?a#oeaA@Z{UI^gF1&psc6-#i)l;3wS<+s~FwS7RzR>!>niVe1 l3+sH+W_1XqT;zjXPM2{xRi1M^EMEH~lZbAF3g_dO{{nU`AAkS= diff --git a/common/gtk-3.0/3.14/assets/switch-dark.png b/common/gtk-3.0/3.14/assets/switch-dark.png deleted file mode 100644 index 279c8a007f9e007930798e9ea6f894c26f050f1f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 782 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42%i^ zJ|V6^#Xt}jR~?3MAbk> zRAO~ZGLWo^PO1irR0A2&AVDw#$W8`H0kuQK!EBHeLP1isZ&ZPAL;+k1!tjkO@Q*11 zvYmr7!DNPONESqjLEDT`$DB#Wf=SncMc0x=&yrQoicKGgtl150_>3L-O&rB6+{G;2 z#Vy?>EIpJR0+byBRe;D5h=Np|g4CRX)ty4rokKL7Lp5DOwOqrrUBh(TBAkLVor5!g zHadr7x`t-^MHTu*6#+dCw3kb~#S|DomL)-c!3>PjGIH_;hDNS#?q1$Le!(Gm`GvFQ z%$>hr>$dHOjvl*w6@{Dw83U6X1>XPO-+E@&$(FNc{ymZDiPhM* zZTaS=eY>Uj4{Glyy1Kzjb@kQMsi#92*6my@Wx2|JO_2e&`rHS?`oBG?ii`=zl{$~wt-rEy<-tQ@ z4RaiYn*ZK%@!zlWgkg?^%Fgut{ENi?TeEG*ow($Xo!Qp=D-Iu0Ye;EU(SH-XW#(IJ zv1yDx<(`+4mvS)V{+;L+5}E0IIN-;dMw>H?tDmSV9^q2kdB$#a%=yEDwreIYwo91$ zS0kqJiR{t$WU*0nP^^NKpeRUD zf@o2w?Vy6gGZ~?LJ)-2YSYrvAV^Ef z%}q&>Ls?p}xQNTuLTSZ9p_Y?b0!g$$@Y0klv6jzQaiv<8NW~GC@FXQ1p_-ps$`+RL zL`sfS!xd^c5*1fc$`-5GqEenz%@He8L||6)Bx;US%@eD*z)Dm+v62glNR(WO@{1L# zI3hLI7zu=u3j)MSo|(mH?EeAt4KV@uZ87x=H3J|+&5>c|{$UnI!k73*EC~p=42ZBqq2VaB6)JKmU=wCp zAjUc{$~Gw4b~Dy4IL1CWW<>~oWoYcGFoI(k!6}UB6b>LEBFHZ2xHahbHIWIfk@2pW z1UC%DEsE-np}I#=J+QQOSehp`(K8xA_uk6zF#>JCK^t+&et0G_mgP@i2M{?ZB4-nk z8yv?Ei4%mx3qliwp$Vce07V>OM1rPD(KJaURT@bHq+)1N3@tS(F)f;&9+Q-@H7OIv z$ig$SVxepTltW0)Au@AF%v>^nl^4g#k7MU2a0;m0Z8WYdkta(`k<)o{h+hN=ijoDz z$$}ClKv=>Oma;^p;HR@eCjb_|?GKLKm7veWaylgmW@2h)Zn4C2nYE3roxQ_yCuhWJ zmo*-qUh91VgMvdM&{5dv7#xkB#DJ2SEKUkPBQravs=B7OzTwz+O(*m%t*1K9oxgD9 z+V$SSp$EecM;||V`s~%j>vuE%%)X!hu<-GdwUgo|Xz*`IxM+rx^W?Qz!QDa^%jqrd z>)fRcx;p997qc6?j)_3QiAgsQkI{%%o!qC3bfiCfriPC1g zClJW(lV_%KP=)nfZIdq!9YmM?78rLb`@+Id=(7>qUGhU+%a7h!+fa?k!@@1@>qgnu z;v~Va1EZ(>2>k;QX&AB_ZtX9s>!Oc&Vjt)Q6gOIDSy%0BRXB$--v1HxQ2s|k${;rm zrE#3@z4>UmKV125gyNSer2FPQ4Z3^n`HiE#+uyvUG3W30h{VTdsz`e?@7LCb78caB m23K^-r}RzTUR?(lPELBWyfAAEzYl3K-nt|_1$Q<^xbr_Ot8k_O diff --git a/common/gtk-3.0/3.14/assets/switch-header-dark.png b/common/gtk-3.0/3.14/assets/switch-header-dark.png deleted file mode 100644 index 8d2dde720ac9b2f2f8b6a017b30de578d7ac9f7d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 767 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42&WH zJ|V6^#Xt}jR~?3MAbk> zRAO~ZGLWo^PO1irR0A2&AVDw#$W8`H0kuQK!EBHeLP1isUrdo-R1sVX!T<^e#FhZr zu3YP^>lLl*6{F`Jqwf`K;1lN(mIJiNH9W^XBF{gj z80ascUAPm8S(23aKyg+9Dvbm{l$IL!Oja`M; zH)NTvHcgm%JBDT7QsZ`;zSCOj-5-`{sr@`7xY}lo!;IY~ng>cEm&zQU5w_woOZ!wV zsfJehNjwpnj0)fVCaJZD*w5TAA9;eoVuMFgp-20!+N=#5*cYTsIPzeF*~Q!X+^P)X zY@YKh-*m4y`u`l`n`o7dmP`EK@|8y3V4aXV;YqXeD%)rGgt=ccJY!dp+!VyruO| ojDp6lY5K3$ED-;^I?(5~yuXX+Cdryz+@R#=>FVdQ&MBb@05Gg7VgLXD diff --git a/common/gtk-3.0/3.14/assets/switch-header-dark@2.png b/common/gtk-3.0/3.14/assets/switch-header-dark@2.png deleted file mode 100644 index 2fbc761e1884e2223889b86fa8513e2687779a26..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1515 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 diff --git a/common/gtk-3.0/3.14/assets/switch-insensitive-dark@2.png b/common/gtk-3.0/3.14/assets/switch-insensitive-dark@2.png deleted file mode 100644 index c19fc0b921e38a73c5e11ede9fa1a5e77e8a1249..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1471 zcmb`Hi%(Nm9LFyp78qFN4Z;v9DivD_R!S*_l@=&SDW$L5+vja5ZvpB1F|P)kfanGz zXmqIYS=6ya(G7fzK-^H7iYUG|brV@wbn0RpI(6r|e__9TPR{pt&-Z*!a!ztvg@XK` zfam}Sf`a%3ToIU2Fjo2b;L0p$0h3P?hcEW?^Sk@72(d|l=}4*yPmS5A;{~EaIKgJ%%I-Ce~)391h2jv zTwweZS6cG%bi8!?^Eu2PxQYA0gA}4VVmdD^a&X>rj+C)OxqV;8vkd7`21#2xxUq zrQVL9P7tC*9l(j`oVZ!k+yT8C2SKv0(gXub1;a4Jz;EA%dqfao2- zuLMHpz+>?=mjXB7s|wWdVb^~N;7~V|obHXomFp6~y0m>AhEP;U~L|H-uTWH7;8abj$j<_;cT+IVW zYx1Qvd>Npw2&cXXt}lk`1xS++paPghDzj8$k!ox*fX)WvIACxCsB8I900q3g$0QPz zL0(?oK0fp269|6({sBP?h{S~>Kq4h3ucA<>)RYuj+Ug8uW{I#= zB$dkKau`vnbf}@cs=CHxwpeX;hr{W@uuYpk+tS+B*51DL|E+=VlYWID?~Q!!C*sJc zC&P2u*BfI9&#Y2%5^rjd8vL`>bhzuMm*z9)P>)GdX}Y?P)V8b|rJWo9<4SE!tmcF} zJBywD%5`zWYthV5PyfU>_p+#x$<*{eGgX4R=|pGxl|_WEsW3^(*m_c@oRUoU7M6g)0i8b!F(M6}TRlV_Paom{cT&#R&FD$8mmPzr zE>iz0${uOmK3Eu0aCzO$k=BeHRp#{JoxOYg^T)-}Q70qQVjgLFqk;!E9&fNDuI;wi z-foSo;RMyaNbJLidl&A#=zP$*C-4n+^yKY?(jVkOEo=JZ){W#1e=ou;cVfEzdT8^y z!^s`@eEXhy*@`j~c-)C7tZjSsO*i-KLtE9-&SCbE)z9LZ&p^GYg3VhFq(R+zeeVAJ z=G(*1C%B{Kfw>1;3Z=0^J0T^rs^UPwC{3EXuY-I)&bwPBjn!JNJwCz>dlnz+EuMqK zmM&>*!&hsD605T`Be!p)NbZ#0823BsML#*#b;MM1wRyjh+!44f)wtrv^OOT)B|~!J z^2d<*$>%%l7a~FyM0+mnSb4tow-Ayni>pE&o%S5gt6$==PD)tC@8rMF&GLfBC#PZ3 znv8>I)uhSLLx(2lse;~Xn)cSqJ(J~+3U?<~a3s}wGjy)xE|E-per#KnrVRgm@_7R8*BtGpe*w~OLGJ(n diff --git a/common/gtk-3.0/3.14/assets/switch-insensitive-header-dark.png b/common/gtk-3.0/3.14/assets/switch-insensitive-header-dark.png deleted file mode 100644 index f0bd5856b3c065100060870eb9706af2ff19ea38..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 769 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#T$MgIeQ zLR^6~5QK)7ho*HT6f{I-RzxH9a{bYf*>d~IY(Rb)y- zWKwlZN^MkfbyPxiOj1=$Qf+i1kX;p;`M)H{FPMRmpI<;wN?KY?O6J@_){kbwx> zh4oBIU5}a?9`tF42wquzA!5;{#Y|uK{oj1zh~M%h#y?M5M(lFgR+727u{Q9Ont+)7 zit;;Qr{DVCc(PHzIpKBKB>$?MqP?8)%M>*f(sDlSVNQMP7trzH#*%4A=9KDWHl{32 z=00$YKT|Dd3RA!j72oN~vyz{^7Y{39I2U_qhm7HZhcm3!%wbw#wWQEumH(HIr@cfS zjw<#(SfRg2?*D2Ai(=2q&pHghvYVtlWpUW&Jj>4A#Qn_T@UU-;Yy3ToQx}Ucy#6p( z%)`uTlfm>o^@{}_ZuHC*^@6%)3vc`{H?Rw*x+zRsUw*sq@;kqqPZYN|ZTJzlF=umQ etlqn08*}O(hcGE-NGqNMB|uMCKbLh*2~7acCMfv; diff --git a/common/gtk-3.0/3.14/assets/switch-insensitive-header-dark@2.png b/common/gtk-3.0/3.14/assets/switch-insensitive-header-dark@2.png deleted file mode 100644 index 4af14c49d1b732b211048a2329efede55b1a94ce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1443 zcmb`HiBl6-9LIww1T%1j%cy9Xgxt~E7S`e1O+QIUbMDa5Bk>r3;oUK&HMh|`@Zj+ot=5LVo@5) zo$bzGFj!D}iUiCA7!gcoT3JM^!Q@=Zhh$79vu|MOBhb1nPlrnx4Bun)aLQ#j`hi6s zb83!RT5K>|@e)15YPE8WUlo>W@#T7MaY^2`7l~{J!|A0sOO^`EpvK0=D2kHP)tXET z3M!&YqXF6^H<^S6iXdtc1hiJUp+>Bsa&s$SLn&;aaJ&M;%(=NFqN8$fQf{zn^2;%u zU8%OH4R%ypj%q2D#*S%ih`|BtY_N_}5)PDbs5CZ}-j=I%sB{jDAYq~c97jNllc=@= zAxIE{5;ovOaFRA_9jJ~}5#S=ANffsu8XJn+5W=nkT1$QwBuda)rL}_uL~8?n6bRf# z$I@wb6>Xq*RfO&Hss9qdr4Cmf-<2nD;|V6l0a96jgtRF%(9{HIdLrbRnCX=yWG9Q* ze336-?9Uem@@0VnNsvGmOrr=+RfNzeLjh^Zc{K1m2o8ska0ugOBHTFUcOt@GGn}mo- zgp`Ugiv*yy$kY~vx=f)iSK#GJ8XHVwhrw49_RVjv^n(Ar&nyv18BR{)oSnzJxVkdk z+}v4{r%ajZ;psWU%h%68U{+9Ya7f6U@CYt9GIGI!sF>LJghflm*%F09nUez}D25X{ zy|JLsY$>yrSJ-T%ouaDNtgWf7tE;bH_y5)Jl8-AGjByqyWr@t&=lS_}>TZ*t>nol# zJtb`TD!g$%Z)m?bKDvLs@^O7wUH;AQ8vJ0E(a3QW{_shBbVk47ePv?OVlruHvEy0A z3whzfBPCDw*Q?5|osW6bt57?3=^EpjPQ6ZXUVCoBqUx5b-j;>U^GcwSm^zM6<^6SW z-yZGR-PW^uW7ciF(ztT_yIZ^4_S_r&X4BKPAJU&p%vRoDL&vW%-*32BIuc!{-#XY4 z-~oM6BauFIIbk9%gi4s=JC}w=k<0f6Lihf;vZM8B*VmZ6rk6XmtIa<;>{$Cu(T867 z*_6S*PO#ShbEvQ(tLbHJCroAhG_BrLJ?+!Lmbp>LTlUSiFAt3d7-}A04(Qx_BeXV5 zKi~6$?A`cs!IOi5uYNWBcv1GtD!!}y$To@>dw=pH|DrB^bGJ9u<-uX~Gro^tB;@B^ z_iW5s(=vEq>u*&}r<=Kgl#_RzH?x{w_QdQndobFiWpq`> z?V?W7Ie*fvn@wSlIr;pSYR;ac)amXHR;-Ir%8lB$Y&E}$v!t_6xcmt#S;WLek78s@BQCoH}nr9UGg@~cxBYzfV$1W*XVBnDb1O%p zy}I{qx3B8G?lf|rD>W!p!t`gs7Ws|F{>`>?+tP!Qu^oCsn$xG9edv95K`R#72 z3VB`Cv2HeWeDJ}Bz*>9INGlw%0$yIDMl{x;O{rL#S4Q-N19$&E;$s?qxYWzC9i1C? z#=YUrA9=;fyjP_m8Q7aE?&zRqp#5ZPLc!s~oW8Ad3XJhDKAd8YK8!bx?rc{(_Wx}B Sm_uBmpGYWGl+wo6RQ(IMG*M>& diff --git a/common/gtk-3.0/3.14/assets/switch-insensitive-header.png b/common/gtk-3.0/3.14/assets/switch-insensitive-header.png deleted file mode 100644 index 9beee2f8f79272736cab4900bf40f160d1fe8ab6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 809 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42&WH zJ|V6^#s7ie-CZF5|Ns5}4-fx;ef|I2K0W>U`N996&whS>2tr>T z{|BP)&whV@1Vn$nJ^b_e;s0+>{(pP==i8(I-yi?^4wQZT>+7Sx-yVa}qrX3%LfPLR z|NZjh?{^@2{QK*pXHTv?d35zJQ03PrVDiz^$Jbsyy#Y~t_3FtRH%|Zk_7K8NscFt` zY|n1&%x&zij&l?V53 zJG_6#Q6M_J>o^GQIdOE)iQ_=D_tc5KmoJ~VdKHLH-Mo3``ID=^zX6^7#542mc3`-~ zlmz(&GcfY=3kXU{ORK4=Yiep~>*?9p+J%ONg-0Z(q-5vhmXws1Ra90sHZ`}jw6wN$ zbaZrf0YP^U5n$!%T^zu8koRf;V=X>!Vb*E>BRZ`+NlK zfX@X>S6O|2nLKG{e5-opy`*{De2tcS{!qHvm6 ad;ipIQNG(T{gZ)F!r6!b&WJC&9c%qGYd^qlL|F-^ETBY zgtVGwNC@ki<7%zqg)xFLQUVdbAZFzy%=I=N}pAhZ8zOv%ukUN4W!z@N#$pUuQ4+{n9dBkv*v56QoT&%aE75U=JHrsm(x zC@jt_EY7}LdZV~B{{bnVL?V*NL^8RQN-d+&NL7E3s;kJ*s;ekuGKB)6P-?2FR0_4W zhDM{(YHO;hXjP2bY9_s!$*8HWs$tP<*$hSllgX%MHnLdES{9SeYGSilbT*5@Ze};I z84b-1jSb8uNF%GciS>6ggx$(%ZfkAev^H|OT06NfyG*okd2KyB4v)_f^mg|4b_oR> zp`cSJ?CKM8MZKM(-Y$`-M#Qqeo26pkwUMo0QSj`WRbTt1ZN^=W^fDrO3yMgGn zuSvLSdD$)^xq#Mr#7BwE3SWR_b$aabY_4waPHjne-d(AT#~LiLC5t`F-?d#zUlZ-U zL%*~spd;MkRh1K69vW1)r;ixvKzsDry=22yUFq(UBJ{9F&Nv*MU;Q%h4c zm0`Z&gAWonI31MQA1|F&FUqQXL#6U|bZ8x?E0T|V>$LJkR!H(mK~auntnY?Ys_H;H z7Nvikn~3M2Y+X(uvA0;EpU0d;n9z(U^!STdSBo9Qy^$ibH4|n<1q8HW?Ng$sd;Sf= zFZC5#`Lp>0yVC?{hdYF)^^QOmRG3@7KNmB1tn~9T8@KY@^n0#rz^d9$*~Jr$x#^6q z+Zh<=!w#EU+BvrI6^P$@B=dvcs`??XjU9*iyPw8b*hi@RC9ks)xw~JC;9<_Lp=ILe zPXsPjWLRLvdF)~380g?oG9!(PejcjI)E91j_#?u2Ac%PKO?^MFypJy=aNm4KAtj#r zA;nqq{@(F^ZqakwidrjU8`-61>S=$e$?fh+Z*R8rY9dSi>ufFEQTu|)` zkBVNuu6r^r*l>m{70Xi!avvqV`}t

y64U8UO2aZ;le5N=1p7-M2jb` zTQzIbs(I^I&)>d&@s_m0on-=Zdwru<6C406m+p~4m-fgSz-8^yc=E?gv zkKYH9w~jx$b?W|&6K|hge*f&++hZa#E9l z09%5H$Q4JS?~>nZua`+575)5=U$u!#B_ulTkH6)U)g`-jslL43c|>@Z;{=H+B{@!^ zwfk&h*8g_xT@diu&~kfne-5{X_i6vdf9BrQejXnpc+~XbqVoo2ryi@i$xgYo!J+I& zu;z2;(ql`zR{!31mA+^Q2!41`H1L1{|murT2yGsf&&5olt$bMo;dLF|58vWR9hRQ4THfD2oM4ehZ`G% zj8P~f6bgm5ut1|N?Cj8Xc6J!dUMvQK#bR8XoLpR-2m~C7sL&+B- zD0KR{xELCP5y@agr6$IvCdMTvUuG&WvYCvGj6^1rk;P=>fwGcs-b^gGnQ}Wf`R?tk z!u<5Y!t~O@bXIXDt2np3B)hCEhsDZ!c(35$y~65>;<{?qGxmdq`bth?RZ~M{>+`Bs zPW5X}HMjZktJb>LTy`7xY1_*uyqERu@1F7%o_D@$>}qT1;x%=*H}>&4J^bc=esfP} z%TRBNpqo3~|7LXH?bvYJ2f-WRaNERin{bdP8s-V#^F*VdzeS_`$x;6FSf_%pOCsu; z74=F)-BMAHbh1}E-T!HN0JJC_mPrR?(jn0Dm(k?~;mVgW(6_}2`O<$DMe?PowUsIP zl4yNJF(~%s$+czi`q$}=RmsM8$;RqT(8jS{V6J5`Cy5?_lCp}bn))UPbhCyQOnd7# zogKPxgdS2~U*EvMz|hdp$Oufy*wob2%*-52YL}(uA695<>)pF;z}mAHEL+=s`@r1n z?e`zR96adY=yVwCjKkrMy5jN2{vr?v$BAz4?k7&1^zb_6eTGaXpFQj2nSOzsZ3^OW@gryP0lI+C{yvyhdsUD$qMDyn%Zu;VZP6PGOE8PCt?w8na4PlA>a_`I;@gO2hn2bi3!c<2pPx0RkN& z!HnjN#=W3=dF|HDs+eZ&?jov-vX#D$$=va^mb=@DFUm8vl!j#Cj&v0ARDa-DO(lGp zmz4Gk@+q1%-&pR8*J?1soim#GEpR3WCYX0{BSTCbO^%f2njoyTqv+peBq_PIy({=r zn_R5+D9g5JX%t*cf?e|bcuObpY`%%QvRPllO4|@|q#jPwq2-&f)bRbqFLcGZ>zw%kY=z_cqGw zr^U9$heXZ&OXg5RUB<2a;;m3{2iT*bjSVKcj95?YyEpfDG;puQlALlg;PB zx{Dk4PZb}zv6{%8DGMWc^i9dwj{yq%ZO1<~okHs~S0~4+G#n3o&~P(9-ele*8>cLY xxEe?m@g3X7`ASXIgoAqo(>{y;oU4&c&)Jtm>wH#;n{!uudUzbsxen`>{4Znue_;Rs diff --git a/common/gtk-3.0/3.14/assets/switch-insensitive.png b/common/gtk-3.0/3.14/assets/switch-insensitive.png deleted file mode 100644 index 10ad419b7d17daa257b83883ab3687496c571f53..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 775 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#T$MgIeQ zLR^6~kd;>6k=D^s(9n=s(Vo=M8CTtsQQeYS*^t`MmQ>T6Qq!CWWY;#ORJEoww5COrK0mXrAAS1n|IjyQG4X6glsBTKFX-)-_K*eA#P*-YIb81a1P%x#Y zv9@m#P`s{xGE`+%b5-wzn*K>3*{bHWn&$4AGrMQb?wLEcZ|+>6V0?CIA`lf;B^A~r z71sbw02y1;T+=hD3#e@NT!_m3NB0~&zW4C)y;rZEx_bT8^{c0@Uq5y8=9wptEkMup91_L%|3|j?s0o`H|DIgDp**;p52Ty zY~JzZop=4C-;dYJy}T11)UhVM-@;^z=X0a}fQKg^cU)JTd)=2MEYG&@W6q__RKwIO zY&PjGQKrlXZmDZmEt$$3@N)B^g)EAlDYqBR6l%E4seNpULhF=AbD54a%(Bz2@!GIN zAYWc2gDK<3njec*G+VZ4Two|LN^JG!4D!%aVeMm>@_S8zhNH*nNx9u=WejV+MO;)} zE5q>k!R+Tep06()2>JGGda}*zlBm-hB67BU6|$EqZ#Zbwe?7dg(br16(k19=`th%| w*I!OL7n{jh`0{PmT@~KVad*9vFaBfX)qnjzGB+2Pd>I%#UHx3vIVCg!0N8g~1poj5 diff --git a/common/gtk-3.0/3.14/assets/switch-insensitive@2.png b/common/gtk-3.0/3.14/assets/switch-insensitive@2.png deleted file mode 100644 index 15b7e098f039a92a3e8cadf712e99b32773ac6df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1578 zcmcgs`BPI@6b?m!qyvv8W96X zL0JTiAVX6jLxBd7I#C-bWf8)r0-_ReC@}4fKlD%NneU$ao$s7`?!7bbT`?x)q&31B z0fWJ;gH8p6gBb^grMOs-|4ULD6fe?P-R9qGe=5pIK%o3f8T!DzB z1;)}Ms3aN_dyxoZGMT8<3`!Ordx40eUL=>j_H~BAKJmkxi3|kAFxWr9AP9W1$1Bw zKnOYzIecOcpUmZbBqB0b2y`+KO<5kE!zXb>M6eO4l;5onxNgPu* z;6Vzk`Y&Z#@=*i??2<&GCs7z!3LOi4Is;2(VW}K!CI?4l;egM|#?f8ghX{;Z z0w63NfdgP_Yq~GEW3C_#%A)}A0L1A$F%>`{q322IVktvh$dJfb5*bG-%PlO_U&m)~y_gJgf_v-b1`hmW|!G6Qo<4MEQ=}7?n%jtoaGXt|TgA21mZ{~;I%@4m@ z7&b19E&;q5T`?L~mH;N#mL?5j=6dk?XlUUf5im2ePt48NSy)HlNv^Utk;e?lG;a#sYI-2Sokx+F$zM9)n1YNM>JPk3Ct#zB+q}uxDgB@rfFd@VeDF#PXFHI~D{@D&y%7{E19en03N>zuHcMucMEu zOLwT~)x8g{`QpZ4577x?iY;Q?E7T|0sc;sz&TI}5Bl3y^0mD1Cz{WWH>$lt{tc41+4 z{BKJuX5|*TSc{Fsabc}*kH5#_zD17vgB?|80s?CgY2*5Mt;;byGGKD=Qhr~8N8oCI zqJJ~f?Ur;pa`*FFn?)21e5JJAWe26Sy$oA)5+3muZC{0f@8=3&tEThZ5MtXmHeX6%kYH5@4 z;o)J0G3^6-!0GSC_l7MC?u`w)sf-hsj7HbxU8#|1#ZAXJg5$ONBKg*r}exi7P9)X|?+?mE)n{W1pke(JZcUR)h13P-AKr!X{L%v)>h8@M=Dt34!k?`8 c(OA)1F>!_5vGzc+XnLxH0z(3t(8>IN0nM!cu>b%7 diff --git a/common/gtk-3.0/3.14/assets/switch-selected.png b/common/gtk-3.0/3.14/assets/switch-selected.png deleted file mode 100644 index 652844e8646928ab43230987d41c558b75ef81cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 726 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#T$MNa~J zLR^6~RRAk1YkqcOb$M=0Wqxr%T4h;INnys^8QpWHbwm^W$hf+lSWazi7*b#oIP4-nwzo_RULnY+1Tz+wwg-R_@)t`rh>u z_imiHd;R$Ro5vsAI`QDv$p^PjKD>GI?XxRD^yb-BAbR)w+LyPt!07hRPxpc7*XIYn zK0W;X1%&>7dwim@%^m1T?~)+DU^Uy7|f9`|VDVx0a+gNdH?M z^TgWo*%=pscd~|`CIoQ`nTqyyr2b7k%8-&=DQ zK523-mfO1UYQw(0ei0hUn@&8Lc#l=$2K&Sw^mH46Us?+j|6?0_HTGT(y zh;Y`}-;g+q?Sbiql=;Xf;P1^E!ApMTRI6wXvBUHt=(8kOkyv!r3O(XMXa%xDr#-C zmTHQk_BAMKn;`b3=U9r0E==cZ=6{%bKKI`D?s-4n^Wtvf4bBKk2!cSMGe(BG=0GO^ zsQ@`~d^JPywNIYG^zyJRyz}ANw#d zHat0w!bpfrNsLNQqGlx1veV*n(&;%_^xTZNysY@Vti*!cDb9(2e`xd9!fTbDs^6bF!?BEJ_aBY5QePMWg zapdFT$mZ%8U}JTBYi(k8gR{HI`Mfy|;B9kx+q1k+vj;nKfUmp9zU|HbYXPX=KQA2a zFCOuh{?kYCSOr#u6=;sP0P*pkI0^pgXNcgb(`ST)p(3JZ&q-f^U%VtEds*(v)$52G z3Q8)-o4=w^C^TACRZU%8{WlE^MpN?^7ORcZF*GtVHZjGUTUc4y*xDV(@AeK3j*d=u zom~h7S0a(*=Hcb-6A(lW2@MOUP$Hsfv`4XYdVFG13L`ZwJtI3OFR!q;q@<*@to-?N z=8G3EUslz;VzJ)TH#fJo_4N-7a%SfjR#w+HHn%_R?C$OFA07S87|-+q);-EdSKHFI zV>8RfUQ}D`k?3NouI#BAVKEg+q>fniD`Nu!jyhVt$ zL{fh3PSQ5%;BkD&!N#?{ME1CB^^8_TffAOlWzxs>`yoXRx`Ab+I%^&5tsoPYynyuxR;cbojVFt)ghK(|$oK!fK-yi6D#`-M=}mDMbtFj0j4Z%Vnq+p;DVv$!?;@($$pSL)R38`%~Rw~G>UL*Mr_qXy7w7e$ls?U zQduK@!oL2Afgjwe;J}lWKajM^_EVLY)bwc@pV#5ktqp&8Rj38={WA^xB^Y||hq2t= zcfIqI=w>!`bjSO>t@1^O)@C`=$~jh@%e0hVrpg7GfT}Qa<>HH9whRTpavG}E+Y!w* cyk1-c2zKr(T+z3kq=(n7#5qU(1LkYHjQ{`u diff --git a/common/gtk-3.0/3.14/assets/switch.png b/common/gtk-3.0/3.14/assets/switch.png deleted file mode 100644 index 7368c5dd10ea5df128d48e0e75661b7879d54c28..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 788 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42%i^ zJ|V6^#S9GpGpbus8XD5d8Y6M%T<)-Lq!*&7BKm$7h!&08vh9VqsNMVRcdw5Y;3VS0@$MBo|eKtpK^Ix_2T_ zSI_J@J#*&v&Y26;d*JAvgU9wB0-=4^uARDe{q*%~r>aeRSpN<0~KE z-v0FN&gXY`zrMfs?E?_q|NHH+q0zmMz!0)33GxeOV3d}TlQ%Fla&>d}^7ioy4#~?e zoHb|e`~_RLZ9jDM*ySr%uiw6N_w}3iA3l8i^yT}HAHRP8{sRPm>vu=$gF@WX#W6%e za__WZDRm_|I_N}f@ZKk*H2jE0MXc-w0KZx=9{>2u@E8~^hM_jfP7 z{w-uuKzaCOLl)QYJn6j$7yJ%XpV=M5vTx^Ov+rAcCRxsCRWH5#d|%zvly_neW?8-d z%y3&}W|54u*TR#>w|K5vz%Zlod6W4hFNPDfMUAeCZ)SSzH_uREPFQ}NHJ0n*jAfhE zi*gw?EMp!7bSyOd_QPwPP=jzgcb(>&){R|`>y#O8+v>dt=s0IGH}lCYmI=89Kr?)d zdrmbwDxYRp_Btj&c_j-&>fi4E%!yapnil?e$fGj*hRW@>>87g;PPT(=C0EQ^7{)SVHj{4_YxZ@Bxt4}F zEl7ow!B{GZTa7KkTuj!oM(Do7x##|K&-uN-_xC){?|IMreCPYV7)SdHD%*9o!(cEK zYby&Uu%p2`qNE^GWcvuPDTE-cU6hoR`i2|^LAWi@$~^=I(|sUYa#wYd^*~aaWO1o(wuP=PojV(_(F(`R*HF!?-3I~Pk}hQYo=5ajAw3K);ia)ls& z{}fNsOg9YNhbHE|85OiT>ka>V}(*uO8Due9U4Y3)@JR4oIaHDH8|NrdeNA@BB zgnIjty$JxJ-u?g-6p@M|(olg^R3KnFDu|9I($Ii|85jUE6GOg%2?YqpP{Og~aBS!e zY-l)^#=?SU0tN?jfm_kQm>ZLB+z`x;593~Aa($slKPZa80*Ll!M+dN@iR_p_PAoYp zo*W$?8l6CiO{4wfot=`-Ny*@*W<;cAMyB(kGI%k(tQcN) zY*zNoTRCw#xe2+siMjkFK0hr#Kclc9^LAlY(e3PF!L4FJZb@;$-O{^{%I-fdFRQAk zsIIK6dGzGjlj^$a8evt9u)4OPM%Yx_(EO~irB2jR*Ze}*^0L15RYP05sO^oYy`%X} zXS4YI3$gg6xa(DSciYh5Uy|XsBa(NclK11IUE^b26VmRPiQbuszAsaKvr`}Dru*k+ z`sZf`7G?$(KM#DHA6{JmkgP3A_zns@@P?vEPWH|)IeCRGTNQuUp{(+w>Q1#?TG~3g zdVApe59lL~9Y1->%!W3X1NOlvO;b zs;h5kd@Jti>HRS9ad7C<_~iV;;?nZUx7D?EWi4_O_%iNTTbQ|MX;0NJc%-5<6bB2t z;f9afHMgogeX72jkR-Qv_fCSPvK^JzKQ%dRe|U0QzQ4T=t{}k>K29vGPcq+zuh@vo zPAGMB2%VnoFLCwhV_*+gHYG^k7ahw&3=lqVA)Ka;HuR*LxFNf^X7x?258?HwZpz#v z=h-l3FzO^pMHTK~xY$&liJl)B*O88UMQkrI#!JkDmWDJ)@%|P8*&a*JGaGWcj_1A5 zL2l)W^x8EOr~C2@iVUrnSD z+H_DuT{ZtujsD0)Y%#jId`Hb0XZ~z*pB~y!-NvWHHi;NyxE_nRV00wNy^UF6b|6bK z)`&ZGP?+~yHK`@!VwpK^@0@5EhCk}SGBXa|_PSLq!q(B+0n4vMFf~I~ky^_6f0&A2 z7Xt}L9 znhq4o>g55u(mfn){%qFE6rH8X#TCRl-S3FgyI8d)UErK085O+2@@th8&07T~{22Bg zLxZ*;16T^LSeSRHx>AVyb*WP^9cypJdUe<@_@8 ziCv5yZLyb*TP&A)ESZQz3epO;>v23jQQ1Rc(v(gWSQk`C2Ekg6eQOya}9MkZ{uc5l6rXQ8&_o=5} zSyE19J?4GhdvDeHo`tLJ8cb#3h^uW!c<&AQ?~|o=34SpivY)uMrM<;{q&NE?B;^@{ diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-active-dark.png b/common/gtk-3.0/3.14/assets/titlebutton-close-active-dark.png deleted file mode 100644 index ef7c8bd2087a2f9d7048f1ccb0d298782d067c3e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 446 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(b%0NZ zE0F%rz;MRc_@=S(Z9~I5dU|(_^luyL-8MG3ZKQw4*x-(l0Z`z;7XCW84inSo{uy4MjEu-SE;53!W?Devj oPik8~opJ9)&HC5BH6PE{Usx!@7_l}z73dfSPgg&ebxsLQ0Na|Wng9R* diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-active-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-close-active-dark@2.png deleted file mode 100644 index 56b81c04834301e61735bff55e8405d59ad523d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 655 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ED*}8% zT!Hj|Fgjyw{7_f-v8DEPGmV?Z#&-=2?wRP{G19vYM8*cUjeu2gOKm~U}Dh+_@K~jbWw~ax1f$TdVhCY-u(g&IYL_objLv9;_)Z7K>0;>UP zgeZn`A%ak{^?1Jp(5>brL4Lsuj7+S8Lc$`dW*)wwVc`)`aS4e@$!S^j4K1y09bMg% zCQqL+bMBH=TX*d~cA#-pCZ64s(SGQHROWK#rV}T3%fwvCs)^&*d%BZDKh&VDP`7s8;gwAy z`O6;MJg{S(`hm$!JoyW+H8*~gGzdL?(O~K|Io^9yuW2!Vxw3P4;bK4j7cZl0y^?<{ z%r{KX+8TB|LANI?OP7~-c|s|R*?Ay`OD1mF1F;;vr(*9!QYuz93FoYH%d-re@W|Eg zUd^vn4@#}3KUZpUervKMmFsPQ#I`9w5+VQq diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-active.png b/common/gtk-3.0/3.14/assets/titlebutton-close-active.png deleted file mode 100644 index e7d701fb568d7a85f4dd1f1a98475221cfea719c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 441 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(OMp*^ zE0F$VZ2Z~K_OqVVdwq)!hE^X8EI;alk)g#$1FMgQmLGv429}=;fLtgWg<)j<(b(pb zwbLhS=kI-8-zWEdpVI$*#-ty!ru>*Y{l~JoKUXgJxpLvpm5Y9^TKseM;-704|J=Ot z&(kY^KRx*S<>B9NkL_iR*8$xjS`y?J%pf8v78DZN*wox|_T2dkA3lEi{N>+K^}rIK zf;LYV#}Elg)`N|HhZRH^4m7(v<{J0@|KA_|Mo4z)QEOmeEOPy7^}DlWmzcpkcE`P} z6K)rtO!DPw*^(BiU6ZT1_P$PN;D-8XH_Jp4&(3-7UinYyZ>sRix!Zd*rEg3-zBor> zQ)AWpzxy6cII@=Eg}w2a&8i3P=pQU~Y1qdv^hD}x_7_eDhW{2tdKn$ZCe8)Ah{4m< K&t;ucLK6Tay}i!> diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-active@2.png b/common/gtk-3.0/3.14/assets/titlebutton-close-active@2.png deleted file mode 100644 index 83913ef06a76cfb9e4ffbc9a7b7f4aaa6d54298e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 679 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ECj)#! zT!Hj|2r@SQplkC{+wzl{*(YP;j|S!+^({XdS$;IM_@rm?!NBr^z6B6{G_?9?X!*gw z>LU>8TYfUM1ThSNBq{>xg@^#v8(Duew)v8f_$49fOJ>&BqN16e zQ2(u^@mp)tx30Et-R<9cI==UIeDCY}-rxOwLihK{eLt4Y{jq%h&y@>*u3YqU)#9J4 z7yn$h^yj9PKew#Xzz}0p^>lFzk&v8v@MTn!g9O`!a;FxJXi>@S;X2y4 z*RJsi{`2ntq9nE_C*QU|Ptc#&E<0zzwHFg)W4UG41dE<^di{t&`;Jw3i{8JFrq^BU zxblwh`tnvGp}rSA6KE-BX*FHH=|+}okTTr{D>=JKuOUKadC%3I*<171c>c(;TshmDsE6ptz0>hTU)78&qol`;+0Eo0JPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(W`IwK zE0AVj_zwj8_wQe|>e$Ym2e<4wya$Z7?>n+{=l-4h_ix*CX#1W+JN6ykwg2djy@z%J z8N2rH+I3{t{v+G>8~}>!-hFWQz9Tz!AKJC|(2m`QckDg9bN4|o`_OKn`aK7C?m0Yj zQt2$9Rmvqne!&ckOdOnwN=j<#8X8)9`UXbECMG7PW65xx%F`!Fw+yrwZ{Cp@cxTu1&DmW4elmS_6u6lZSXv4SB~MpBmvv4FO#qvA BwvGS* diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop-dark@2.png deleted file mode 100644 index 1742875b322d862d067212adab0d90c0ea3170c5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 615 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ElLLH0 zT!AzL!+#*y1_HPD@87?B_wJn_aB%D1qkHxo-nJJAj_%m8f9syZK<@T^M|SQ6syVo4 z&!L_B4sYLcV8`A=d-sCa+jj5Yx%c3%U59q>KC)xa0U!ft$c{aSfoRvhBRh5<+PU}e z&OHZr?mV<}&!O#m5AWE05X9YcWY^w9K-t|uLqOca50sFMGa zA|W~T;LWlo0|wRuvpo!!hONAMi#5ZwlbiMZ|N2B|;} zh)L7U6_zYcJX%u6*pj-F<%6?&Q)$9mX@?(N35RDjPTeecICAsE#fxtIbb2~hmepZn zXxj>w`kcxYPu7SQJ8&d~Z76F?eIcUX;333#hRcdA%;h<=0Ow4O2b29+ye~&OsH{<8 z;hi)4Wf6Se%y;T`;l8rR$o?;{$;UAEyJ|x#Q8&H=gP*s!!dpJZq>> knsV;RO_!)gd`mxc)Sqk%y)7$SpazO(Pgg&ebxsLQ0J07g+yDRo diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop.png b/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop.png deleted file mode 100644 index e7e1c0d680ae84410320312fd9e28d41cdd24ac9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 414 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(a)3{W zE0FH%>uYFesHy3yZ0N0S=&h{nDsSk>t8LAyZpo@{&#G(Bscz4xYRv$PQ~}l0^;9)< zrB=68H*}ZRbyWdTV^3v6H;|iF(_B^81CdIr00=IOz zNB;c3zC`78ccGKf@ihLHisn^!w^^>;q+jdvLG`z>(YYxaSDxS2s}OSJ-Md}Uq@JTU zfkk>#{4WO!mdr&9pDcc^5V7drj^_#m588J1>1@yVkaEG)F=UU~V|Dp<(VAC>zADwb gy-JL2_v$i_nO-QM{KL?D7tk#Xp00i_>zopr0Mq`RtN;K2 diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop@2.png b/common/gtk-3.0/3.14/assets/titlebutton-close-backdrop@2.png deleted file mode 100644 index 28ad9366b4d523bcc93b167735c36ad9943556f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 629 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Ea{_!q zT!AzYG(f@p!oofvsHkYKXy~u0>8fn#EvxCQsp+h2=mDathVF`n?y5QvH?OueueKwr zx;>}5B?m~>wddEhXH>OjfW%u18#>afTe7NKa;w{m>$);)n~Li?OKUqyYr8V4nyMOl zE9<%|8@sE3#sbN@o@$V>J*m|#Kt@_sGtdek_gmlXSfJxfN`m}?85o&3I5;^46_nM~ z)it#ATwFuK!oooy0th03ASya8E+Hv7IVCl}ps=W@xVZSlt=b$021agA7sn8d^HV3k zENe0lXbomvm}Q#49lB<>khs^QJ^y#l^p!BF`ttAO%-<7JjLryr>a&{bzC_gRH`9WI zz#F@k$FfcBJKV4KB`HJWn*p!H9S!~q_hjCcteD($aN!TH{RdXgtDU&h;;w4U+UM_M zSMjFZ6Q9*@tY~!dyuFi8k8qaE%mhu5=PP6W^*Ec}yS@8Z*Xg}VTiGt}U^udLQg)2S ztLr=eX<4mG-rxAs<>Alz)QTSkdd2$QifMPG)N9S1tHqN~hRZB>^Hqos@nc+;I@Kz7 znrq-$;~25%E2W!E->F4DUNmXn@98D+zZWj~yGPbzf_=7{yY{wxsh`5K1u{F1HEf!^ kMrH9j!wt?)_L~-q-|0zN-tPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(b%0NZ zE0F%rz;MRc_@=S(Z9~I5dU|(_^luyL-8MG3ZKQw4*x-(l0Z`z;7XCW84inSo{uy4MjEu-SE;53!W?Devj oPik8~opJ9)&HC5BH6PE{Usx!@7_l}z73dfSPgg&ebxsLQ0Na|Wng9R* diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-close-dark@2.png deleted file mode 100644 index 56b81c04834301e61735bff55e8405d59ad523d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 655 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ED*}8% zT!Hj|Fgjyw{7_f-v8DEPGmV?Z#&-=2?wRP{G19vYM8*cUjeu2gOKm~U}Dh+_@K~jbWw~ax1f$TdVhCY-u(g&IYL_objLv9;_)Z7K>0;>UP zgeZn`A%ak{^?1Jp(5>brL4Lsuj7+S8Lc$`dW*)wwVc`)`aS4e@$!S^j4K1y09bMg% zCQqL+bMBH=TX*d~cA#-pCZ64s(SGQHROWK#rV}T3%fwvCs)^&*d%BZDKh&VDP`7s8;gwAy z`O6;MJg{S(`hm$!JoyW+H8*~gGzdL?(O~K|Io^9yuW2!Vxw3P4;bK4j7cZl0y^?<{ z%r{KX+8TB|LANI?OP7~-c|s|R*?Ay`OD1mF1F;;vr(*9!QYuz93FoYH%d-re@W|Eg zUd^vn4@#}3KUZpUervKMmFsPQ#I`9w5+VQq diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-hover-dark.png b/common/gtk-3.0/3.14/assets/titlebutton-close-hover-dark.png deleted file mode 100644 index d3a7a7d84f250cc311535435e2de7b47c69f29f2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 446 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(b%0NZ zE0F%*z;MQx;f$};IZug;ZsMoB#ZLQ(p79nvehyew` zDnVQz1EL0~;51kkNP?8%MJqYxE(BVyQ4-`A%)rDdA}SUX5*iktkeHO5l2Ke%S=Z3m z)ZEf`_T2dkA3lEi{N?wbzyGfC%W?qqGCA@Vc&d5TSmoS!D%X$+3RI5pVYQ~I^*7pn)R=L cYd)T@zpzk*F=B0cD$p?up00i_>zopr0Pj|&f&c&j diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-hover-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-close-hover-dark@2.png deleted file mode 100644 index ba8476501ed759b7dafebadd5f38df87f1159704..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 655 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ED*}8% zT!Hj|AZlPZW6W^LoBx=*%*jCMGrm$Md_+(CNSyK#J>?^Q##b3DDES61}F|z0Fni+1Z(5>br zL4Lsuj7+S8Lc$`dW*)wwVc`)`aS4e@$!S^j4K1y09bMg%CQqL+bMBH=TX*d~cA#-pCZ64s z(SGQHROWK#rV}T3%fwvCs)^&*d%BZDKh&VDP`7s8;gwAy`O6;MJg{S(`hm$!JoyW+ zH8*~gGzdL?(O~K|Io^9yuW2!Vxw3P4;bK4j7cZl0y^?<{%r{KX+8TB|LANI?OP7~- zc|s|R*?Ay`OD1mF1F;;vr(*9!QYuz93FoYH%d-re@W|EgUd^vn4@#}3KUZpUervKM zmFsPQ#I?6A4oUz3 diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close-hover.png b/common/gtk-3.0/3.14/assets/titlebutton-close-hover.png deleted file mode 100644 index a1ec77a8e9e760ca2a5322a1a77082c1b219a992..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 469 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(dw@@f zE0F%w(DS*i?Q=u-w}v(lYHa`7(Dt>V6+%v`ZJAQjGP|awySBNnrg>^@b8AgYQ%!SI zZEJl^OG8adV@-2oO-ofxGgLd+khJRN?+tBl>w)I9y@ePHCR3}MzcjP~5s(3t0%`#= zfaJqlpPYeC(Jl${3uX`z6$=UpZER|8*}s4PfddB)9y)Xw2#%dScmBfb4ve){P z&11v;d)boRpR8F_cz(fluAXM?gS@vwg7|FA=AVDXn=;Aoz@7Ks>Nu}Vk~w(hH*4eM zCk@xH{eCQ*p=x^I*7T+J3|p6I7U(UoU>5c~_OaMgZuoc5!lIL8@MUQTpt6Hc~)E#{zsp zT!Hj|hX4N?8vf6m`Jui2V?)EIwzf|VJwKY8zcjReZEX40*#51d6+(V*X#LvI4kW)f zw0#AmS+#AmYg(q(HqWeWo?X*CyS905P3yec*4CPqC3P)J>sp#>nwx7{SJk$zt81;R zZf>Y)X{>2(tZ7+W*IZZAyrr(Sx~64CT}x$6^NzaKs+#754XtPDT5@Zezcm2uZ9_v} z8rpy;wYnK-JBX|Ukw7(pg-a8FK5-}s@(X5QWMUN*5*AVQ@C^+MkBCc~K4aJJ{reAq z!NG$E4*|hp5IAz==+R@xj-R@4<<{*x_a1!z@%zu;zyJPCyK!*^0|TRqr;B5VgyhtN z*UOq5L|88vJGvxEB_;XfPb-Q>{! z%da|0f{N<&FD-j|c*VtEGdoKzeTj6j%V0HVJ7as!#mZl)=Jgr+mn9&dpwET;piFP`>vB*o)n+D{3liRcmzqxp!Y{c?AE4$`!0o}MEpbO~U zg#n#A6jvp*N*DP?9NP7`qxIv?Lu$wQzqHJGaiDxdd-yTMe~eWu4c+UGT$>0Cdj?Ne KKbLh*2~7ZIyjns4 diff --git a/common/gtk-3.0/3.14/assets/titlebutton-close.png b/common/gtk-3.0/3.14/assets/titlebutton-close.png deleted file mode 100644 index 48def3e3bb0c8d7bc707e68a49c181ff5a432e2f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 465 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(OMp*^ zE0F$_mi9R@@pEj(=Y;gniRqscfLtJ%@i`vIO`A|sJ*BX6RzXE~NlkB2)zqS@*0Q>$ z(z>Ryy85!Z1|TZ0uc~PHl92u-F&#uEq^DIk1IgEknLzSQQU;Lx8V?drt#1C5nEojt z1IPf{1rY&~7TYp_&S20g3GxeO5D^s%3JGm&YHr!TfB%642M!)ObolV$V`tBuzwr9Q z$B&;reg5+6_n*Ii|H&=?{Q#(|)6>Ne`~Lij z$kXX}e`)LbZuoc5!lIL8@MUQTpt6Hc~)E=L38~ zT!Hj|AZlp%pO*F^D)VD<@~61$Pibi%6VksVq<>9F|D2HaIX>faB9M{sB|iOYJdgnr z1j>Gi&zMnIIjf*zPC>=wqROd7RWrfd*@YEz3o4i7S1iphZz`>8F0E}Xsa=s*x+br* zrmU_3h|23%=a$rg*_(1ps>|zFY3VIVkiZTbTet7rd+`0o?>~S3{{8oF-`SdZ z3=E8_o-U3d5|UF7zKm*ekYKw|?&PwGcVq4S3*XjAcpDvfzxRK3m*kY=U)!H2=+0{w zmDzvQ|Afo-8urg2!J9vA-rgvgH`~}rJXmU0@gp{^yfdu#<&K5S_HN-?Dyz4Z_4GxP zzWsehVs5|VkDF{^KD=DC(?!y9mtbecPlKo}_lhQJoL=Ypq%(|R@%c-sdP1?CCnUY4 zSf>`eF%y5>lHAD@kp9$(i+#-%#w(T+ZM`0Toi41$Fm;1TjeuwH#OI3M%&kq!O!tVN zjDHt2@w6UK0O`PGSAPCJ=T<PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(LV!<* zE09*}Iiu2cPPzM{YR_f$o{Q>Tm(;p0sdiriGSs^-t9M^g1EGsx62e9yHF_>-_FUHL zy`4*RQS(RuYSx7!Zuoc5!lIL8@MUQTpt6Hc~)EO9OmD zT!A#h|NjgP|BYv!(QUt^-FH=^?Ydge8O^Tq8a)@(yDqBrTvF-2sNQu+z5B9S*JZWt zi)vs&)$YrxT^H56FR681QtQ414(fbdN{(gHb zrSTva=uY{PAirP+MkZE4Az=|!cMnhB(6I1`xU^~0XYAU2>-L>{55E71`Lqle8jP%- zE{-7@=ci7-S#-#N$2E7887o(=8M{#6f~8aP0#5v|m)f}J2+L&2cfon*Jf@{~PN)`P z+1??n>dG3hQKe{|f~?_%S@!&TE2kf94LZL>vAOTlg^sfiy^Ld3&K_7a#mk0q^|4QG zzaAWYu7AC(x3BZJ?KZ~Q$!E8U>N(Ak;Jp9e@}IDpTMWnMoX4tZ5#_39zPI;H-|=WG zyV3i9OLiW4V16Tf$F-Qmdy!FEYkp4u5uB7f|fEFZfs)9>io02>>UrwE%%=FS}W{9k?iT}=d#Wzp$PyDTNv5^ diff --git a/common/gtk-3.0/3.14/assets/titlebutton-maximize-active.png b/common/gtk-3.0/3.14/assets/titlebutton-maximize-active.png deleted file mode 100644 index 6c4451149f3ca89b65eebcc41fe499da866df431..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 391 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(LV!<* zE09*}Iiu2cPPzM{YR_f$o{Q>Tm(;p0sdiriGSs^-t9M^g1EGsx62e9yHF_>-_FUHL zy`4*RQS(RuYSx7!Zuoc5!lIL8@MUQTpt6Hc~)EO9OmD zT!A#h|NjgP|BYv!(QUt^-FH=^?Ydge8O^Tq8a)@(yDqBrTvF-2sNQu+z5B9S*JZWt zi)vs&)$YrxT^H56FR681QtQ414(fbdN{(gHb zrSTva=uY{PAirP+MkZE4Az=|!cMnhB(6I1`xU^~0XYAU2>-L>{55E71`Lqle8jP%- zE{-7@=ci7-S#-#N$2E7887o(=8M{#6f~8aP0#5v|m)f}J2+L&2cfon*Jf@{~PN)`P z+1??n>dG3hQKe{|f~?_%S@!&TE2kf94LZL>vAOTlg^sfiy^Ld3&K_7a#mk0q^|4QG zzaAWYu7AC(x3BZJ?KZ~Q$!E8U>N(Ak;Jp9e@}IDpTMWnMoX4tZ5#_39zPI;H-|=WG zyV3i9OLiW4V16Tf$F-Qmdy!FEYkp4u5uB7f|fEFZfs)9>io02>>UrwE%%=FS}W{9k?iT}=d#Wzp$PyDTNv5^ diff --git a/common/gtk-3.0/3.14/assets/titlebutton-maximize-backdrop-dark.png b/common/gtk-3.0/3.14/assets/titlebutton-maximize-backdrop-dark.png deleted file mode 100644 index 0b40ca5895c7e8c60a9d30c318f6a3bf04604a50..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFgg}c$T@31W*ZgNswPK10y37v$Ly5P;eT1 zj&?p!SliRZF@$4ga)N^3jI~(|m(QGuWt~$(695fiPTT+h diff --git a/common/gtk-3.0/3.14/assets/titlebutton-maximize-backdrop-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-maximize-backdrop-dark@2.png deleted file mode 100644 index 4b2db99672c43676661ef730aca7274fe1520e1b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EP60k4 zu0Z<#|NpC2t=hkT|CuvqfQ&tRPHx`6f7_u$+xHyUvG>s4y@z)1KC*M~!5w=JY~Q^f zNbcBkc*nlOJNF#izU$D=J%?rU7VQ9)_}T7oU(; z^Zt4!P(`$-i(`n!#J8s%#T*QHTrUQMObxkm|9@ET66TW|8~44m?O*Zz`UXSe;#o5N zq6`!E)bC_iAR%-s|KrA2`5!A+&*mweeYJdcpt7J~FW>(Cfo!+_=blqiI&|=N^)2T0 X46Jb}KYo4(TEpP!>gTe~DWM4fV*QD1 diff --git a/common/gtk-3.0/3.14/assets/titlebutton-maximize-backdrop.png b/common/gtk-3.0/3.14/assets/titlebutton-maximize-backdrop.png deleted file mode 100644 index 85e145c714132bc9406da54ac2da2c4bf9114e6b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF diff --git a/common/gtk-3.0/3.14/assets/titlebutton-maximize-backdrop@2.png b/common/gtk-3.0/3.14/assets/titlebutton-maximize-backdrop@2.png deleted file mode 100644 index 3429d541302a84118e189b3b5e1949c11b237306..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EP60k4 zu0T38G_;|iAuVktkj%}URMOC0Rn=PB&{f{hQCZtn*#ts0K*74siiWPL#-8fB?&^k~ zs=BTUkYJDWtF1qPrihgU`2{mDv#_$Ui-}9v*xK4Vxq5i|W@YCTYix_P0jh}hba4#P znE3WWG+%=Pk4s<;)1nm#-}i?GFTUE6d57Wq_moM?j$Qeewd};txWd_;pKsOqoY9`} z?XGg%oHv5`?G`CQ$93$Im*v=pPy6%6@!_u%d-bIcojdAx`}z{$HFsEJx0Y}_0bP0l+XkKR$)@Z diff --git a/common/gtk-3.0/3.14/assets/titlebutton-maximize-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-maximize-dark@2.png deleted file mode 100644 index fb52df8f34ea70f5a784a81cdfc2c2fbc686025d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 336 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Et^qzF zu0VSK{{O31t-5;k>i+%vR~XgFAK|*tzH6?%juX?mN6=&%s@L z4(`}}XxE+tJN6z1G4>wXvFFgvJ%^44bCv@Q5-$nz3ua(pW8>iDR#H}tjZaF;&Mqh_ zU$$(;=7Nm#?LZ|_o-U3d8t31hwiaqo5Ma6Zv46q3br#?4S4|YyAtJuuayajntWrl8 zmp>r|;+~WCebG1foY%(lb9+Vn<@}FdRm^9e%=O!M^UMndhT6vc_cbQ`{BO=48fxpd aC2Oy%4(kRPW7}Y$EexKnelF{r5}E+rV2T6) diff --git a/common/gtk-3.0/3.14/assets/titlebutton-maximize-hover-dark.png b/common/gtk-3.0/3.14/assets/titlebutton-maximize-hover-dark.png deleted file mode 100644 index a6dfa0428c291e052f79c77ebe13dc6095588797..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 413 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(T7XZ8 zE09)EQBhD(kdl&;l#~<|l@=A15)qdc5tkB|QVyTpHY{X)sT=0B9pW0I;YO+nm((0=A7PHbNlDao4jygj_tHLK${dx zg8YIR*g53n4GevJBO)WCqGMuX)6+9DG7E}JO3TX6U%K|>>7Zuoc5!lIL8@MUQTpt6Hc~)EHv)V@ zT!AzQXlpa5fPj#Ykg%|f1PCYyi^~X!ON)z3i-}2ziOGqH$%=`|0Fj88jFO6$l8UaD zuBooBg|4ZcuBn5JoT7}JilT~^qKb}=k(IQZqL`Spi%-0}f4qx#w2OC~n_rw?Se9Qz zu3toEKtxVJRE}?WMpRmDY+7|xYE^Vfb#z*FY+6-(MqOe~Q)+HwQchEHUUN!*Q(9hg zQFUi=T~BdMSIfj{Efc13Mni z1qFr0W#tu>Rn@(H6L#<2ci`}`zymVLDZc=bxumsmwvsDG}lyEkaFh9{r|uQti=} zB@%sSxc)8aIWD+nk5b#^H@A--?!NG*ZT|0s$Xc~qu4hU%ip=UPW|&;S{QJ}Va(Slx zUCI1riEOLBXNme(aJb!gEl{y*`p1^b7Zz(CSbqEV@+Xqt7Ot+)tZZDlIc`SsN%@ys zpRZh5xF^PkGp6f!<-A$FOAfg1xxl#X(>9hzR?GXIeDsR02=4#!wd|kXmzud3H!oUQ zqjGVF&7{E95}nH|_w$9UF0$^q_GZK4TaLytE`LSeZohWs$lE6jj`<#6<+!xNyyLdE tOgx-7y(cF(irG4vx%#rypRF#^Us+!tizzSDe8dMzf}XB^F6*2UngD0DGr0f& diff --git a/common/gtk-3.0/3.14/assets/titlebutton-maximize-hover.png b/common/gtk-3.0/3.14/assets/titlebutton-maximize-hover.png deleted file mode 100644 index 6ead74b62088fd4023fabf54e0c4c70cc7a7b3e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 422 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(W`IwK zE07Kafd;>%vcR}X-^k*isA9jEiqM#fwBm-WvgR2x7T&pj=FW|?K=keXeFXY+@7t$) zf4)5W^W`BB{rvRs*QZCnKR^2O_0ivNj~6Ujx_HU5Wy@DioHA?D)Y(<_-7mO%3W1g> zl?3?(Gcfb;3X90AsAySO^L5>Ae^$!u%dR(bwcF3XE4(^?rENX`g}bUD zwr?aB|Lzru+E}dD%cXc~?bPh#7N)yvI;&eZUpU^U|5>X%OZ}A3wTXGJ(%(z(*%w^& w;=$LtcwWm*ZRhXJcW$00cFVdQ&MBb@0DPOg`2YX_ diff --git a/common/gtk-3.0/3.14/assets/titlebutton-maximize-hover@2.png b/common/gtk-3.0/3.14/assets/titlebutton-maximize-hover@2.png deleted file mode 100644 index 4c310f2f8ef36edb17162061e55e8a7751730a6f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 815 zcmV+~1JL}5P)V&QC@jjW_ev|e2$Wrl9!y6nVy!LpRum4v#+nTu&}kYwYIXhxwf{tx3|c}!pX+N z$;QFV$;8mj$k5Kn(a*=#(#h4+$?fUc?djL<>e=t>+x6|-^X%R8?A`S3-Sq9<_3z&H z@80z9-TL(6`t;)a^y2*V;r;gH{q^Mh_2m8bFMh0^7Hfa^Yrxe_4W1n`T6?#`uh6&`~Lp^&INyn00042NklFIPozzom1!@G^9{YUBaDw5I- z%LZ&_=&9c{YXOC#>pBI1Ws`@RK&va9g_qE%j3B-g!3`3ZX)HYJTs+I@a0F0qR=VOL^bafz#hHQNcW z;_viYr^7WSL*v+=PY7I#$9WK%fnJD1ztAq$g0eKlc1jfq{9N^*EWD`ue0w|n5PH3r z^e`+cZ%HNAPN885*{GqNWJB9gL&Z3>hp}Zuoc5!lIL8@MUQTpt6Hc~)Et^qzF zu0T31Ev=!UAvbqYVPRiG!%QH%vZ1%Kp$CX68hWZ5x~uBCz+`u2LswN@Z&gEQRYP}W zeRpMD7mx%>UHtXs5YQm;k|4ie239t9PA(ob4Xv!4+=9}o`lgP(`}UvlJEIBmO_ZmL zV~EE2x2LUz8WaRrE`IFqShvpNyZx$(0y{*+7hDeK-I7&0yQAaB$_ILrRBB(w=S{NV zmHd?dapSW4k6wG`8BM-Dr)K-ii;N7vnCkZjDt!K*&$nuomU7hAIG;?`ttaQNmPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE09*}Iiu2cPPzM{YR_f$o{Q>Tm(;p0sdiriGSs^-t9M^g1EGsx62e9y|9*RHy^47g z&>+#0AirP+5mB+AkkH1a=9aVP&R_WO@zduo|Bk8$mH-tbd%8G=NJ!=$jOJ@m5O6)X zxFg?PYUjK9mC05|J|v3HKU5WSeILuJi%)bO9b2@@Meg7iFWU{P44Lgs%M`qK%~fIc zx%5^=^+7-~yO^n(!i>1|gTe~ HDWM4f72kj+ diff --git a/common/gtk-3.0/3.14/assets/titlebutton-minimize-active-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-minimize-active-dark@2.png deleted file mode 100644 index eb977482eee02108f82764555ee18287e7a62aa9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 489 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EIRQQ) zu0WdM|9^&t|Hd=V=(b#|z+ zMK!RXYWHQ;u8Zp3m(;p0sdZlha)BfaU4$_%%{g{w?YTRTUq1Z%?eU#CMcP2?I#mEEB^oQw=3XrKmB5#>Fu;zYK`?A&eLxmi;P@-ZPL-(ttOo>4t(A< zGwT03;iCE+<%^Q8CRWienvNHE7Kd~1eEB7Et;}xm&RFl?`}SIOFrJ99VqH*@$!Jiz zJL4X+uk=b@fwJoO`HkV?Tnz`-)*c91_hc&LgsZD3?)t*paARrt{u(Xy-G0BCo~>p* z8lB7D(X};=seYRM_q4e+5~>w(J*hlFD?_wBb(1gf2Y$GIrj{|j*U9Md63GluPPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE09*}Iiu2cPPzM{YR_f$o{Q>Tm(;p0sdiriGSs^-t9M^g1EGsx62e9y|9*RHy^47g z&>+#0AirP+5mB+AkkH1a=9aVP&R_WO@zduo|Bk8$mH-tbd%8G=NJ!=$jOJ@m5O6)X zxFg?PYUjK9mC05|J|v3HKU5WSeILuJi%)bO9b2@@Meg7iFWU{P44Lgs%M`qK%~fIc zx%5^=^+7-~yO^n(!i>1|gTe~ HDWM4f72kj+ diff --git a/common/gtk-3.0/3.14/assets/titlebutton-minimize-active@2.png b/common/gtk-3.0/3.14/assets/titlebutton-minimize-active@2.png deleted file mode 100644 index eb977482eee02108f82764555ee18287e7a62aa9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 489 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EIRQQ) zu0WdM|9^&t|Hd=V=(b#|z+ zMK!RXYWHQ;u8Zp3m(;p0sdZlha)BfaU4$_%%{g{w?YTRTUq1Z%?eU#CMcP2?I#mEEB^oQw=3XrKmB5#>Fu;zYK`?A&eLxmi;P@-ZPL-(ttOo>4t(A< zGwT03;iCE+<%^Q8CRWienvNHE7Kd~1eEB7Et;}xm&RFl?`}SIOFrJ99VqH*@$!Jiz zJL4X+uk=b@fwJoO`HkV?Tnz`-)*c91_hc&LgsZD3?)t*paARrt{u(Xy-G0BCo~>p* z8lB7D(X};=seYRM_q4e+5~>w(J*hlFD?_wBb(1gf2Y$GIrj{|j*U9Md63GluP4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1T4JzX3_ zEP9g@Bv=nK7$gbb+4;Oc%B-+l{C4DvB%do~7d0d%F)(c2$im{YFl84|1B0ilpUXO@ GgeCySYA#Ix diff --git a/common/gtk-3.0/3.14/assets/titlebutton-minimize-backdrop-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-minimize-backdrop-dark@2.png deleted file mode 100644 index 4e9b3d64a5e9927ef8c36cc8a7b52d3e32dd343c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^av;pY3?xs=ZJr3En2Vh}LpV4%Za?&Y0OWEOctjR6 zFi5WlVa7PAi84Sz$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS_yc@G zT!HlN-AA_XKD=Z1!JT^!AL6x~4isW73GxeOuyBYd6# diff --git a/common/gtk-3.0/3.14/assets/titlebutton-minimize-backdrop.png b/common/gtk-3.0/3.14/assets/titlebutton-minimize-backdrop.png deleted file mode 100644 index 97763fb18e8f5e0b034422c0133582aec913d6d6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`EX7WqAsj$Z!;#Vf4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1T4JY5_^ zEP9g@Bv=nK7$ga=S@l};nA*K-A(y)Kj=AKD_ckeVGA!X_Vfp`I+g_l022WQ%mvv4F FO#r72E~)?k diff --git a/common/gtk-3.0/3.14/assets/titlebutton-minimize-backdrop@2.png b/common/gtk-3.0/3.14/assets/titlebutton-minimize-backdrop@2.png deleted file mode 100644 index 3c4a02135b1ddc01b895b6245b38ddcef1c69834..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^av;pY3?xs=ZJr3En2Vh}LpV4%Za?&Y0OWEOctjR6 zFi5WlVa7PAi84Sz$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS_yc@G zT!D0DQ&&wxS7l>&Rb9{ZRi|x%LaZf0e!&d(9;wAgb$X+K04nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1T4JzX3_ zEP9g@Bv=nK7$gbb+4=lJTF#?)dS&}wB>7w^yQm>CiGg9)MHZH4E{Zll4Gf;HelF{r G5}E)A3NO(B diff --git a/common/gtk-3.0/3.14/assets/titlebutton-minimize-dark@2.png b/common/gtk-3.0/3.14/assets/titlebutton-minimize-dark@2.png deleted file mode 100644 index 76c3c8fa8659ee138a4e94626a5afb85e527d912..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^av;pY3?xs=ZJr3En2Vh}LpV4%Za?&Y0OWEOctjR6 zFi5WlVa7PAi84Sz$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS_yc@G zT!HlN-G_JVJ+gDp!JT^!eY*Wr6ez@6666=mkW?^t^F$+e4xoUnr;B5VM0j$7L|el} p2^N+IHEQAl0S8XHhuilsFzoST@;MJEZ^s diff --git a/common/gtk-3.0/3.14/assets/titlebutton-minimize-hover-dark.png b/common/gtk-3.0/3.14/assets/titlebutton-minimize-hover-dark.png deleted file mode 100644 index daec11dfb27484a67291fdd1b6e1db323d5233dc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 363 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkcYsfb zE09)EQBhD(kdl&;l#~<|l@=A15)qdc5tkB|QVyTpHVk?;lg``$5VjDNt6Wn1v9X7$jKWR`uIjfMn*-)#KxwlXJlj+ z6wl((m;qFi=jq}YA`zb3AI;aGz{A2=xq@|d)7tO$D?1i&7XB-nl)KI8&%!mI?@34U8zU4a3`W(C{doYK$OB=J~%(dk3NpCc2NS$6LfU$c?KGcFqnZuoc5!lIL8@MUQTpt6Hc~)E^8t97%YS4rgl|DT_2GttfCWy$`O zN$CmizI~JU-7oXp+~|Xo9>YQB{0mEy`4aR}SMl5B9lXdgLv-mSt!|bMH?>mBC#$oz zoD|r7Y`ftnFG(w#NB@?e;4Hct)VE?K*QX1|LfQ7e>v-&2x`lQBm*2ROSeWBcd#_I;VaHH%5*u3vnw-xr04Uy_T$mVBFU-?{IS-K$GXB4&Sj zcHf$|8i;-6o5EWv^Ub`l!r<|NI}$gqNj&?a=40h2 zI6bP0 Hl+XkK^DF8$ diff --git a/common/gtk-3.0/3.14/assets/titlebutton-minimize-hover.png b/common/gtk-3.0/3.14/assets/titlebutton-minimize-hover.png deleted file mode 100644 index 39cdfbf836ef47d4b14e06b17b74f92dfc13c4e5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 368 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkUw}`D zE07Kafd;>%vcR}X-^k*isA9jEiqM#fwBm-WvgR2x7T&pj=FW|?K=keXeFXY+@7t$) zf4)5W^W`BB{r&d1s=hmPo;nBE`XIkx24)^!VG(&16%9?xlG3vM2M!)Oe&X4Sm!I>` zJ>3aZl<(={7$Pw>xBsnBgMff*w4&LUgV&QC@jjW_ev|e2$Wrl9!y6nVy!LpRum4v#+nTu&}kYwYIXhxwf{tx3|c}!pX+N z$;QFV$;8mj$k5Kn(a*=#(#h4+$?fUc?djL<>e=t>+x6|-^X%R8?A`S3-Sq9<_3z&H z@80z9-TL(6`t;)a^y2*V;r;gH{q^Mh_2m8bFVq9^ZNV#^3t))0003QNklHE5QM1_2o@4tFmWRV(u*;PWhd|d zT)_vS%9F|dlfKdE%ATV9N1Aqus0MRfz~#(PhtzZce-uT54{);|)B;v%CJJTg60ka- z=p5mzsP!_1t+(FVh;z}>=M9|Zy@jit=x7(isnetHf5S|X`_0E=y2P3ERUegFUf M07*qoM6N<$f=K;M#Q*>R diff --git a/common/gtk-3.0/3.14/assets/titlebutton-minimize.png b/common/gtk-3.0/3.14/assets/titlebutton-minimize.png deleted file mode 100644 index cffbf9424de29513addf7fdf6994eb508537d601..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`EX7WqAsj$Z!;#Vf4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1T4JzX3_ zEP9g@Bv=nK7$ga=$$Mef?7L^{!YeGXJ)O7oq*$GW7#P+}WMP@*Q?3Wpz~JfX=d#Wz Gp$Pz`ODvoK diff --git a/common/gtk-3.0/3.14/assets/titlebutton-minimize@2.png b/common/gtk-3.0/3.14/assets/titlebutton-minimize@2.png deleted file mode 100644 index 2a6ba854f3e7a614b2d7f544a3884a8659bb0ec8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^av;pY3?xs=ZJr3En2Vh}LpV4%Za?&Y0OWEOctjR6 zFi5WlVa7PAi84Sz$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS_yc@G zT!D0TLw8L>cXdM#ka1}pzYkD|wIs+dn4zFy^BK|TbG|?USx* m4{FrJ1p*G7bPu=hVPM$f$I5GP)IA2MkipZ{&t;ucLK6UXgE+bX diff --git a/common/gtk-3.0/3.14/gtk-dark.css b/common/gtk-3.0/3.14/gtk-dark.css deleted file mode 100644 index df31af8..0000000 --- a/common/gtk-3.0/3.14/gtk-dark.css +++ /dev/null @@ -1,4064 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -GtkPaned-handle-size: 1; - -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: #78b9e6; - -GtkWidget-visited-link-color: #4ca2df; - -GtkWidget-focus-padding: 2; - -GtkWidget-focus-line-width: 1; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - -GtkStatusbar-shadow-type: none; - outline-color: rgba(101, 123, 131, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; } - -.background { - color: #657b83; - background-color: rgba(0, 43, 54, 0.999); } - -*:insensitive { - -gtk-image-effect: dim; } - -.gtkstyle-fallback { - background-color: #002b36; - color: #657b83; } - .gtkstyle-fallback:prelight { - background-color: #005469; - color: #657b83; } - .gtkstyle-fallback:active { - background-color: #000203; - color: #657b83; } - .gtkstyle-fallback:insensitive { - background-color: #003340; - color: rgba(101, 123, 131, 0.45); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view { - color: #657b83; - background-color: #073642; } - .view.dim-label, GtkLabel.view.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .view.subtitle { - color: rgba(101, 123, 131, 0.55); } - .view.dim-label:selected, GtkLabel.view.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, GtkLabel.view.separator:selected:focus, .header-bar .view.subtitle:selected:focus { - color: rgba(253, 246, 227, 0.65); - text-shadow: none; } - -.rubberband { - border: 1px solid #268bd2; - background-color: rgba(38, 139, 210, 0.2); } - -GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator { - color: #657b83; } - -GtkLabel:insensitive { - color: rgba(101, 123, 131, 0.45); } - -.dim-label, GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .subtitle { - opacity: 0.55; } - -GtkAssistant .sidebar { - background-color: #073642; - border-top: 1px solid #001317; } - GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #001317; } - GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #001317; } - -GtkAssistant.csd .sidebar { - border-top-style: none; } - -GtkAssistant .sidebar GtkLabel { - padding: 6px 12px; } - -GtkAssistant .sidebar GtkLabel.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -GtkTextView { - background-color: #04313c; } - -GtkFlowBox .grid-child { - padding: 3px; - border-radius: 3px; } - GtkFlowBox .grid-child:selected { - outline-offset: -2px; } - -.popover.osd, .osd { - color: #657b83; - border: none; - background-color: rgba(7, 54, 66, 0.95); - background-clip: padding-box; - outline-color: rgba(101, 123, 131, 0.3); - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - .spinner:active { - opacity: 1; - animation: spin 1s linear infinite; } - .spinner:active:insensitive { - opacity: 0.5; } - -.entry { - border: 1px solid; - padding: 5px 8px; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #657b83; - border-color: #001317; - background-color: #073642; - background-image: linear-gradient(to bottom, #073642); } - .entry.image.left { - padding-left: 0; } - .entry.image.right { - padding-right: 0; } - .entry.flat, .entry.flat:focus { - padding: 2px; - color: #657b83; - border-color: #001317; - background-color: #073642; - background-image: linear-gradient(to bottom, #073642); - border: none; - border-radius: 0; } - .entry:focus { - background-clip: border-box; - color: #657b83; - border-color: #001317; - background-color: #073642; - background-image: linear-gradient(to bottom, #073642); - box-shadow: inset 1px 0 #268bd2, inset -1px 0 #268bd2, inset 0 1px #268bd2, inset 0 -1px #268bd2; } - .entry:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(7, 54, 66, 0.55); - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.55)); } - .entry:selected, .entry:selected:focus { - background-color: #268bd2; - color: #fdf6e3; } - .entry.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - .linked > .entry:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .linked > .entry:first-child:dir(rtl) { - border-right-style: none; } - .linked > .entry:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; } - .linked > .entry:last-child:dir(rtl) { - border-left-style: solid; } - .entry.warning { - color: #fdf6e3; - border-color: #001317; - background-image: linear-gradient(to bottom, #7d4328); } - .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); - box-shadow: none; } - .entry.warning:selected, .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .entry.error { - color: #fdf6e3; - border-color: #001317; - background-image: linear-gradient(to bottom, #873437); } - .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); - box-shadow: none; } - .entry.error:selected, .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - .entry.image { - color: #526d76; } - .linked.vertical > .entry { - border-bottom-color: #052b35; - box-shadow: none; } - .linked.vertical > .entry:focus { - border-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:insensitive { - border-bottom-color: #052b35; } - .linked.vertical > .entry:first-child { - border-bottom-color: #052b35; } - .linked.vertical > .entry:first-child:focus { - border-bottom-color: #268bd2; - box-shadow: none; } - .linked.vertical > .entry:first-child:insensitive { - border-bottom-color: #052b35; } - .linked.vertical > .entry:last-child { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .linked.vertical > .entry:last-child:focus { - border-bottom-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:last-child:insensitive { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .osd .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.35)); - background-color: transparent; } - .osd .entry.image, .osd .entry.image:hover { - color: inherit; } - .osd .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, #268bd2); } - .osd .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.2)); } - -GtkSearchEntry.entry { - border-radius: 20px; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -.button { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 5px 8px; - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(8, 62, 75, 0); - border-color: rgba(0, 19, 23, 0); - transition: none; } - .button.flat:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - .button.flat:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; - -gtk-image-effect: highlight; } - .button:active, .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; - transition-duration: 50ms; } - .button:active { - color: #657b83; } - .button:active:hover, .button:checked { - color: #fdf6e3; } - .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; } - .button:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .button:insensitive > GtkLabel { - color: inherit; } - .button:insensitive:active, .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { - color: inherit; } - .button.osd { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(3, 24, 29, 0.95); } - .button.osd.image-button, .header-bar .button.osd.titlebutton, .titlebar .button.osd.titlebutton { - padding: 10px; } - .button.osd:hover { - color: #268bd2; } - .button.osd:active, .button.osd:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .button.osd:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .osd .button:dir(rtl) { - border-radius: 0; - border-right-style: none; - border-left-style: none; } - .osd .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:dir(rtl) { - border-left-style: solid; } - .osd .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd .button:hover, .osd .button:hover:first-child, .osd .button:hover:last-child { - box-shadow: none; } - .osd .button:active, .osd .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd .button.flat:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd .button.flat:hover, .osd .button.flat:hover:first-child, .osd .button.flat:hover:last-child { - box-shadow: none; } - .osd .button.flat:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); - background-image: none; } - .osd .button.flat:active, .osd .button.flat:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .button.suggested-action:active, .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .button.suggested-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(101, 123, 131, 0.45); } - .button.suggested-action:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .button.destructive-action:active, .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .button.destructive-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(101, 123, 131, 0.45); } - .button.destructive-action:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - .button.image-button, .header-bar .button.titlebutton, .titlebar .button.titlebutton, - .header-bar.selection-mode .button.titlebutton, .titlebar.selection-mode .button.titlebutton { - padding: 7px; } - .header-bar .button.image-button, .header-bar .button.titlebutton, .header-bar.selection-mode .button.titlebutton, .header-bar .titlebar.selection-mode .button.titlebutton, .titlebar.selection-mode .header-bar .button.titlebutton { - padding: 7px 10px; } - .button.text-button { - padding-left: 16px; - padding-right: 16px; } - .button.text-button.image-button, .header-bar .button.text-button.titlebutton, .titlebar .button.text-button.titlebutton { - padding: 5px 8px; } - .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, .titlebar .button.text-button.titlebutton GtkLabel:first-child { - padding-left: 8px; } - .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, .titlebar .button.text-button.titlebutton GtkLabel:last-child { - padding-right: 8px; } - .stack-switcher > .button { - outline-offset: -3px; } - .stack-switcher > .button > GtkLabel { - 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 { - padding: 5px 10px; } - .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, .titlebar .stack-switcher > .button.titlebutton { - padding: 2px 4px; } - .stack-switcher > .button.needs-attention:active > .label, - .stack-switcher > .button.needs-attention:active > GtkImage, - .stack-switcher > .button.needs-attention:checked > GtkLabel, - .stack-switcher > .button.needs-attention:checked > GtkImage { - animation: none; - background-image: none; } - .stack-switcher > .button.needs-attention > GtkLabel, - .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 2px; } - .stack-switcher > .button.needs-attention > GtkLabel:dir(rtl), - .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { - background-position: left 3px, left 2px; } - .inline-toolbar .button, .inline-toolbar .button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar GtkToolButton > .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .inline-toolbar GtkToolButton > .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { - color: inherit; } - .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { - color: inherit; } - -.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, -.linked > .button:hover, -.linked > .button:active, -.linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5), inset -1px 0 rgba(0, 19, 23, 0.5); } - .inline-toolbar GtkToolButton > .button.flat:active, .osd .button:active, .inline-toolbar .button:active, .linked > .button:active, GtkComboBox.combobox-entry .entry:active, GtkComboBox.combobox-entry .button:active, .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, .linked > GtkComboBox > .button:active:dir(ltr), .inline-toolbar GtkToolButton > .button.flat:checked, .osd .button:checked, .inline-toolbar .button:checked, .linked > .button:checked, GtkComboBox.combobox-entry .entry:checked, GtkComboBox.combobox-entry .button:checked, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked, .linked > GtkComboBox > .button:checked:dir(ltr) { - box-shadow: none; } - .inline-toolbar.toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .inline-toolbar .button:dir(rtl):backdrop, .linked > .button:dir(rtl), - .linked > .button:dir(rtl):hover, - .linked > .button:dir(rtl):active, - .linked > .button:dir(rtl):checked, GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), .primary-toolbar .linked.path-bar > .button:dir(rtl), .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { - border-radius: 0; } - -.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, .primary-toolbar .linked.path-bar > .button:first-child, .header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 19, 23, 0.5); } - .osd .button:first-child:active, .inline-toolbar .button:first-child:active, .linked > .button:first-child:active, .inline-toolbar GtkToolButton:first-child > .button.flat:active, GtkComboBox.combobox-entry .entry:first-child:active, GtkComboBox.combobox-entry .button:first-child:active, .linked > GtkComboBox:first-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, .osd .button:first-child:checked, .inline-toolbar .button:first-child:checked, .linked > .button:first-child:checked, .inline-toolbar GtkToolButton:first-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:first-child:checked, GtkComboBox.combobox-entry .button:first-child:checked, .linked > GtkComboBox:first-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - -.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, .primary-toolbar .linked.path-bar > .button:last-child, .header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5); } - .osd .button:last-child:active, .inline-toolbar .button:last-child:active, .linked > .button:last-child:active, .inline-toolbar GtkToolButton:last-child > .button.flat:active, GtkComboBox.combobox-entry .entry:last-child:active, GtkComboBox.combobox-entry .button:last-child:active, .linked > GtkComboBox:last-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, .osd .button:last-child:checked, .inline-toolbar .button:last-child:checked, .linked > .button:last-child:checked, .inline-toolbar GtkToolButton:last-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:last-child:checked, GtkComboBox.combobox-entry .button:last-child:checked, .linked > GtkComboBox:last-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { - border-bottom-left-radius: 0; } - -.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, .primary-toolbar .linked.path-bar > .button:only-child, .header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - .osd .button:only-child:active, .inline-toolbar .button:only-child:active, .linked > .button:only-child:active, .inline-toolbar GtkToolButton:only-child > .button.flat:active, GtkComboBox.combobox-entry .entry:only-child:active, GtkComboBox.combobox-entry .button:only-child:active, .linked > GtkComboBox:only-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, .osd .button:only-child:checked, .inline-toolbar .button:only-child:checked, .linked > .button:only-child:checked, .inline-toolbar GtkToolButton:only-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:only-child:checked, GtkComboBox.combobox-entry .button:only-child:checked, .linked > GtkComboBox:only-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, -.linked.vertical > .button:hover, -.linked.vertical > .button:active, -.linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, -.linked.vertical > GtkComboBox > .button { - border-style: solid; - border-bottom-style: none; - border-top-style: none; - border-radius: 0; } - .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, - .linked.vertical > GtkComboBox > .button:hover { - box-shadow: inset 0 -1px rgba(0, 19, 23, 0.5), inset 0 1px rgba(0, 19, 23, 0.5); } - .linked.vertical > .entry:active, .linked.vertical > .button:active, .linked.vertical > GtkComboBoxText > .button:active, - .linked.vertical > GtkComboBox > .button:active, .linked.vertical > .entry:checked, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button:checked, - .linked.vertical > GtkComboBox > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, -.linked.vertical > GtkComboBox:first-child > .button { - border-radius: 3px 3px 0 0; - border-top-style: solid; } - .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, - .linked.vertical > GtkComboBox:first-child > .button:hover { - box-shadow: inset 0 -1px rgba(0, 19, 23, 0.5); } - .linked.vertical > .entry:first-child:active, .linked.vertical > .button:first-child:active, .linked.vertical > GtkComboBoxText:first-child > .button:active, - .linked.vertical > GtkComboBox:first-child > .button:active, .linked.vertical > .entry:first-child:checked, .linked.vertical > .button:first-child:checked, .linked.vertical > GtkComboBoxText:first-child > .button:checked, - .linked.vertical > GtkComboBox:first-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, -.linked.vertical > GtkComboBox:last-child > .button { - border-radius: 0 0 3px 3px; - border-bottom-style: solid; } - .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, - .linked.vertical > GtkComboBox:last-child > .button:hover { - box-shadow: inset 0 1px rgba(0, 19, 23, 0.5); } - .linked.vertical > .entry:last-child:active, .linked.vertical > .button:last-child:active, .linked.vertical > GtkComboBoxText:last-child > .button:active, - .linked.vertical > GtkComboBox:last-child > .button:active, .linked.vertical > .entry:last-child:checked, .linked.vertical > .button:last-child:checked, .linked.vertical > GtkComboBoxText:last-child > .button:checked, - .linked.vertical > GtkComboBox:last-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, -.linked.vertical > GtkComboBox:only-child > .button { - border-radius: 3px; - border-style: solid; } - .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, - .linked.vertical > GtkComboBox:only-child > .button:hover { - box-shadow: none; } - .linked.vertical > .entry:only-child:active, .linked.vertical > .button:only-child:active, .linked.vertical > GtkComboBoxText:only-child > .button:active, - .linked.vertical > GtkComboBox:only-child > .button:active, .linked.vertical > .entry:only-child:checked, .linked.vertical > .button:only-child:checked, .linked.vertical > GtkComboBoxText:only-child > .button:checked, - .linked.vertical > GtkComboBox:only-child > .button:checked { - box-shadow: none; } - -.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, -.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, -.app-notification.frame .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -/* menu buttons */ -.menuitem.button.flat { - transition: none; - outline-offset: -1px; - border-radius: 2px; } - .menuitem.button.flat:hover { - background-color: #0a333e; } - .menuitem.button.flat:checked { - color: #657b83; } - -*:link, .button:link, .button:visited { - color: #78b9e6; } - *:link:visited, .button:visited { - color: #4ca2df; } - *:selected *:link:visited, *:selected .button:visited:link, *:selected .button:visited { - color: #a7cbdc; } - *:link:hover, .button:hover:link, .button:hover:visited { - color: #a3cfee; } - *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { - color: #e8ebe1; } - *:link:active, .button:active:link, .button:active:visited { - color: #78b9e6; } - *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { - color: #d2e1e0; } - *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { - color: #d2e1e0; } - -.spinbutton { - border-radius: 3px; } - .spinbutton .button { - background-image: none; - border: 1px solid rgba(0, 19, 23, 0.6); - border-style: none none none solid; - color: #607880; - border-radius: 0; - box-shadow: none; } - .spinbutton .button:dir(rtl) { - border-style: none solid none none; } - .spinbutton .button:first-child { - color: red; } - .spinbutton .button:insensitive { - color: rgba(101, 123, 131, 0.45); } - .spinbutton .button:active { - background-color: #268bd2; - color: #fdf6e3; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - border-radius: 2px 2px 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:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; } - GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: #268bd2; - border-radius: 0; - box-shadow: none; } - -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; } - GtkComboBox > .button { - padding-top: 3px; - padding-bottom: 3px; } - GtkComboBox:insensitive { - color: rgba(101, 123, 131, 0.45); } - GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { - -GtkWidget-wide-separators: true; } - GtkComboBox.combobox-entry .entry:dir(ltr) { - border-right-style: none; } - GtkComboBox.combobox-entry .entry:dir(rtl) { - border-left-style: none; } - GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 #001317; } - GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.55); } - GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 #001317; } - GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 rgba(0, 19, 23, 0.55); } - -.toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #002b36; } - .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.85); } - -.primary-toolbar { - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #002b36, rgba(0, 15, 18, 0.97)) 1 0 1 0; } - -.inline-toolbar { - background-color: #001f27; - border-style: solid; - border-color: #001317; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -.search-bar { - background-color: #002b36; - border-style: solid; - border-color: #001317; - border-width: 0 0 1px; - padding: 3px; } - -.action-bar { - background-color: #001f27; } - -.header-bar { - padding: 5px 5px 4px 5px; - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: #001b22; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; } - .csd .header-bar { - background-color: rgba(0, 43, 54, 0.97); - border-color: rgba(0, 27, 34, 0.97); } - .header-bar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .header-bar .title { - padding-left: 12px; - padding-right: 12px; } - .header-bar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .header-bar.selection-mode, .header-bar.titlebar.selection-mode { - color: #fdf6e3; - background-color: rgba(38, 139, 210, 0.95); - border-color: rgba(35, 128, 193, 0.95); - box-shadow: none; } - .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { - background-color: rgba(38, 139, 210, 0.95); - color: rgba(253, 246, 227, 0.6); } - .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.05); - border-color: rgba(253, 246, 227, 0.5); } - .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { - color: rgba(38, 139, 210, 0.95); - outline-color: rgba(38, 139, 210, 0.25); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { - color: rgba(38, 139, 210, 0.35); - background-color: rgba(253, 246, 227, 0.15); - border-color: rgba(253, 246, 227, 0.15); } - .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { - background-color: #268bd2; } - .tiled .header-bar, .tiled .header-bar:backdrop, - .maximized .header-bar, .maximized .header-bar:backdrop { - border-radius: 0; } - .maximized .header-bar { - background-color: #002b36; - border-color: #001b22; } - .header-bar.default-decoration, - .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, - .csd .header-bar.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: #002b36; - border-bottom-width: 0; } - .maximized .header-bar.default-decoration, .maximized - .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized - .csd .header-bar.default-decoration:backdrop { - background-color: #002b36; } - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: 3px 3px 0 0; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: inset 0 1px rgba(0, 55, 69, 0.97); } - .csd .titlebar { - background-color: rgba(0, 43, 54, 0.97); } - .titlebar:backdrop { - color: rgba(89, 128, 143, 0.5); - background-color: #00313e; } - .csd .titlebar:backdrop { - background-color: rgba(0, 49, 62, 0.97); } - .maximized .titlebar { - background-color: #002b36; } - .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { - background-color: #00313e; } - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { - background-color: transparent; } - -.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, -.header-bar > GtkBox > .separator.vertical, GtkPlacesSidebar.sidebar -.header-bar > GtkBox > .vertical.view.separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(89, 128, 143, 0) 25%, rgba(89, 128, 143, 0.15) 25%, rgba(89, 128, 143, 0.15) 75%, rgba(89, 128, 143, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, - .header-bar > GtkBox > .separator.vertical:backdrop, GtkPlacesSidebar.sidebar - .header-bar > GtkBox > .vertical.view.separator:backdrop { - opacity: 0.6; } - -.primary-toolbar .entry, .header-bar .entry { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { - color: inherit; } - .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { - opacity: 0.85; } - .primary-toolbar .entry:focus, .header-bar .entry:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - background-clip: padding-box; } - .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { - color: #fdf6e3; } - .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar .entry.warning, .header-bar .entry.warning { - color: white; - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(125, 63, 34, 0.988)); } - .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); } - .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar .entry.error, .header-bar .entry.error { - color: white; - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(135, 47, 50, 0.988)); } - .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); } - .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar .button, .header-bar .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - outline-offset: -3px; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:backdrop, .header-bar .button:backdrop { - opacity: 0.7; } - .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { - color: inherit; } - .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.primary-toolbar .linked > .button, .header-bar .linked > .button { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { - box-shadow: none; } - -.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - background-color: rgba(0, 193, 243, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .primary-toolbar .linked.stack-switcher > .button:insensitive, .header-bar .linked.stack-switcher > .button:insensitive, .primary-toolbar .linked.path-bar > .button:insensitive, .header-bar .linked.path-bar > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37), inset -1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked { - box-shadow: none; } - -.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, .primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, .primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { - color: #fdf6e3; } - .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { - background-color: rgba(253, 246, 227, 0.1); - border-color: transparent; } - .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { - color: rgba(253, 246, 227, 0.4); } - -.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(89, 128, 143, 0.8); } - .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { - background-color: rgba(89, 128, 143, 0.05); - border-color: transparent; } - .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(89, 128, 143, 0.5); } - .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { - background-color: rgba(0, 0, 0, 0.1); } - -.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(89, 128, 143, 0.2); } - -.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { - color: inherit; } - .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr), .header-bar GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 transparent; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl), .header-bar GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 transparent; } - -.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { - opacity: 0.75; } - -.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.37)); } - .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.27)); } - -.primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, #005469); - border-color: rgba(0, 0, 0, 0.67); } - .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { - background-image: linear-gradient(to bottom, #006883); - border-color: rgba(0, 0, 0, 0.67); } - .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 72, 90, 0.991)); - border-color: rgba(0, 0, 0, 0.67); } - -.path-bar .button { - padding: 5px 10px; } - .path-bar .button:first-child { - padding-left: 10px; } - .path-bar .button:last-child { - padding-right: 10px; } - .path-bar .button:only-child { - padding-left: 14px; - padding-right: 14px; } - .path-bar .button GtkLabel:last-child { - padding-left: 4px; } - .path-bar .button GtkLabel:first-child { - padding-right: 4px; } - .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { - padding-right: 0; - padding-left: 0; } - .path-bar .button GtkImage { - padding-top: 2px; - padding-bottom: 1px; } - -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-color: rgba(101, 123, 131, 0.2); } - GtkTreeView.view.dnd { - border-style: solid none; - border-width: 1px; - border-color: #4683ab; } - GtkTreeView.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #365963; } - GtkTreeView.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - GtkTreeView.view.expander:hover { - color: #657b83; } - GtkTreeView.view.expander:selected { - color: #bdd6de; } - GtkTreeView.view.expander:selected:hover { - color: #fdf6e3; } - GtkTreeView.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - GtkTreeView.view.progressbar, GtkTreeView.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-image: linear-gradient(to bottom, #268bd2); } - GtkTreeView.view.progressbar:selected, GtkTreeView.view.progressbar:selected:focus, GtkTreeView.view.progressbar:focus:selected, GtkTreeView.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-image: linear-gradient(to bottom, #fdf6e3); } - GtkTreeView.view.trough { - color: #657b83; - background-image: linear-gradient(to bottom, #001317); - border-radius: 3px; - border-width: 0; } - GtkTreeView.view.trough:selected, GtkTreeView.view.trough:selected:focus { - color: #fdf6e3; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); - border-radius: 3px; - border-width: 0; } - -column-header .button { - color: #526d76; - background-color: #073642; } - column-header .button:hover { - color: #268bd2; - box-shadow: none; - transition: none; } - column-header .button:active { - color: #657b83; - transition: none; } - -column-header:last-child .button, column-header:last-child.button { - border-right-style: none; - border-image: none; } - -column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { - transition: none; - color: #268bd2; - box-shadow: inset 1px 1px 0 1px #268bd2, inset -1px 0 0 1px #268bd2, inset 1px 1px #073642, inset -1px 0 #073642; } - -column-header .button, column-header .button:hover, column-header .button:active { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.11) 20%, rgba(255, 255, 255, 0.11) 80%, rgba(255, 255, 255, 0) 80%) 0 1 0 0/0 1px 0 0 stretch; } - column-header .button:active, column-header .button:hover { - background-color: #073642; } - column-header .button:active:hover { - color: #657b83; } - column-header .button:insensitive { - border-color: #002b36; - background-image: none; } - -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #002b36; - color: rgba(89, 128, 143, 0.8); } - .menubar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .menubar > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - .menubar > .menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - .menubar > .menuitem:insensitive { - color: rgba(89, 128, 143, 0.2); - border-color: transparent; } - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #002b36; - border: 1px solid #001317; } - .csd .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - .menu .menuitem { - padding: 5px; } - .menu .menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - .menu .menuitem:insensitive { - color: rgba(101, 123, 131, 0.45); } - .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator { - color: rgba(7, 54, 66, 0); } - .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 #103d49; } - .menu.button.bottom { - border-top: 1px solid #103d49; } - .menu.button:hover { - background-color: #103d49; } - .menu.button:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent; } - -.csd .popup { - border-radius: 2px; } - -.menuitem .accelerator { - color: alpha(currentColor,0.55); } - -.popover { - margin: 10px; - padding: 2px; - border: 1px solid black; - border-radius: 3px; - background-clip: border-box; - background-color: #002b36; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } - .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { - color: rgba(7, 54, 66, 0); } - .popover > .list, - .popover > .view, - .popover > .toolbar, - .popover > .inline-toolbar, - .popover.osd > .toolbar, - .popover.osd > .inline-toolbar { - border-style: none; - background-color: transparent; } - -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - .entry.cursor-handle.top, - .cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - .entry.cursor-handle.bottom, - .cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -.notebook { - padding: 0; - background-color: #073642; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -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.frame { - border: 1px solid #001317; } - .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.header { - background-color: #002b36; } - .notebook.header.frame { - border: 0px solid #001317; } - .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.top { - box-shadow: inset 0 -1px #001317; } - .notebook.header.bottom { - box-shadow: inset 0 1px #001317; } - .notebook.header.right { - box-shadow: inset 1px 0 #001317; } - .notebook.header.left { - box-shadow: inset -1px 0 #001317; } - .notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - outline-offset: 0; } - .notebook tab.top, .notebook tab.bottom { - padding: 4px 15px; } - .notebook tab.left, .notebook tab.right { - padding: 4px 15px; } - .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { - padding-left: 12px; - padding-right: 12px; } - .notebook tab.reorderable-page.top, .notebook tab.top { - padding-top: 6px; - border-radius: 3.5px 2px 0 0; - border-width: 0; - border-top-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { - background-color: #073642; - box-shadow: inset 0 1px #001317, inset 0 -1px #073642, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.bottom, .notebook tab.bottom { - padding-bottom: 6px; - border-radius: 0 0 2px 3.5px; - border-width: 0; - border-bottom-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { - background-color: #073642; - box-shadow: inset 0 -1px #073642, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.right, .notebook tab.right { - padding-right: 17px; - border-radius: 0 3.5px 3.5px 0; - border-width: 0; - border-right-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { - background-color: #073642; - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #073642, inset -1px 0 #001317; } - .notebook tab.reorderable-page.left, .notebook tab.left { - padding-left: 17px; - border-radius: 3.5px 0 0 3.5px; - border-width: 0; - border-left-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { - background-color: #073642; - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #073642; } - .notebook tab GtkLabel { - padding: 0 2px; - color: rgba(101, 123, 131, 0.45); } - .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(101, 123, 131, 0.725); } - .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { - color: #657b83; } - .notebook tab .button { - padding: 0; - color: #425f68; } - .notebook tab .button:hover { - color: #ff4d4d; } - .notebook tab .button:active { - color: #268bd2; } - .notebook tab .button > GtkImage { - padding: 2px; } - .notebook.arrow { - color: rgba(101, 123, 131, 0.45); } - .notebook.arrow:hover { - color: rgba(101, 123, 131, 0.725); } - .notebook.arrow:active { - color: #657b83; } - .notebook.arrow:insensitive { - color: rgba(101, 123, 131, 0.15); } - -.scrollbar { - background-clip: padding-box; - background-image: none; - border-style: solid; - -GtkRange-trough-border: 0; - -GtkScrollbar-has-backward-stepper: false; - -GtkScrollbar-has-forward-stepper: false; - -GtkRange-slider-width: 13; - -GtkScrollbar-min-slider-length: 42; - -GtkRange-stepper-spacing: 0; - -GtkRange-trough-under-steppers: 1; } - .scrollbar .button { - border: none; } - .scrollbar.trough { - background-color: #07323d; - border-left: 1px solid #001317; } - .scrollbar.trough.horizontal { - border-left: none; - border-top: 1px solid #001317; } - .scrollbar.slider { - border-radius: 21px 20px 20px 21px; - border: 3px solid transparent; - border-left-width: 4px; - background-color: #284b55; } - .scrollbar.slider.horizontal { - border-radius: 21px 21px 20px 20px; - border-left-width: 3px; - border-top-width: 4px; } - .scrollbar.slider:hover { - background-color: #193f49; } - .scrollbar.slider:prelight:active, .scrollbar.slider:active { - background-color: #268bd2; } - .scrollbar.slider.fine-tune { - border-width: 4px; } - .scrollbar.slider.fine-tune:prelight:active { - background-color: #268bd2; } - .scrollbar.slider:insensitive { - background-color: transparent; } - -.scrollbars-junction, -.scrollbars-junction.frame { - border-color: transparent; - background-color: #07323d; } - -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 41; - outline-color: transparent; } - GtkSwitch.trough, GtkSwitch.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; } - GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { - background-position: left center; } - -GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough, -.list-row:selected GtkSwitch.trough, -GtkInfoBar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -.header-bar GtkSwitch.trough, -.primary-toolbar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } - -GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active, -.list-row:selected GtkSwitch.trough:active, -GtkInfoBar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -.header-bar GtkSwitch.trough:active, -.primary-toolbar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } - -GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:insensitive, -.list-row:selected GtkSwitch.trough:insensitive, -GtkInfoBar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:insensitive, -.primary-toolbar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } - -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active:insensitive, -.list-row:selected GtkSwitch.trough:active:insensitive, -GtkInfoBar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:active:insensitive, -.primary-toolbar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } - -.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check, -GtkFileChooserDialog .dialog-vbox > .frame .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -.menu .menuitem.check:hover, -GtkTreeView.view.check:selected, -.list-row:selected .check, -GtkInfoBar .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.check:insensitive:hover, -GtkTreeView.view.check:insensitive:selected, -.list-row:selected .check:insensitive, -GtkInfoBar .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -.menu .menuitem.check:inconsistent:hover, -GtkTreeView.view.check:inconsistent:selected, -.list-row:selected .check:inconsistent, -GtkInfoBar .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.check:inconsistent:insensitive:hover, -GtkTreeView.view.check:inconsistent:insensitive:selected, -.list-row:selected .check:inconsistent:insensitive, -GtkInfoBar .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -.menu .menuitem.check:checked:hover, -GtkTreeView.view.check:checked:selected, -.list-row:selected .check:checked, -GtkInfoBar .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -.menu .menuitem.check:checked:insensitive:hover, -GtkTreeView.view.check:checked:insensitive:selected, -.list-row:selected .check:checked:insensitive, -GtkInfoBar .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio, -GtkFileChooserDialog .dialog-vbox > .frame .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -.menu .menuitem.radio:hover, -GtkTreeView.view.radio:selected, -.list-row:selected .radio, -GtkInfoBar .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:insensitive:hover, -GtkTreeView.view.radio:insensitive:selected, -.list-row:selected .radio:insensitive, -GtkInfoBar .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:hover, -GtkTreeView.view.radio:inconsistent:selected, -.list-row:selected .radio:inconsistent, -GtkInfoBar .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:insensitive:hover, -GtkTreeView.view.radio:inconsistent:insensitive:selected, -.list-row:selected .radio:inconsistent:insensitive, -GtkInfoBar .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -.menu .menuitem.radio:checked:hover, -GtkTreeView.view.radio:checked:selected, -.list-row:selected .radio:checked, -GtkInfoBar .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:checked:insensitive:hover, -GtkTreeView.view.radio:checked:insensitive:selected, -.list-row:selected .radio:checked:insensitive, -GtkInfoBar .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -GtkIconView.view.check, -GtkFlowBox.view.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); - background-color: transparent; } - -GtkIconView.view.check:checked, -GtkFlowBox.view.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@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: rgba(101, 123, 131, 0.45); } - -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; } - .scale.trough { - margin: 5px; } - .scale.fine-tune.trough { - border-radius: 5px; - margin: 3px; } - .scale.slider { - background-clip: border-box; - background-image: linear-gradient(to bottom, #083e4b); - border: 1px solid #000b0d; - border-radius: 50%; - box-shadow: none; } - .scale.slider:hover { - background-image: linear-gradient(to bottom, #0a5062); - border-color: #000b0d; } - .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #04313d); - border-color: rgba(0, 11, 13, 0.8); } - .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .osd .scale.slider { - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.95)); - border-color: #268bd2; } - .osd .scale.slider:hover { - background-image: linear-gradient(to bottom, #268bd2); } - .osd .scale.slider:active { - background-image: linear-gradient(to bottom, #1e6ea7); - border-color: #1e6ea7; } - .menu .menuitem:hover .scale.slider, - .list-row:selected .scale.slider, - GtkInfoBar .scale.slider { - background-image: linear-gradient(to bottom, #fdf6e3); - border-color: #fdf6e3; } - .menu .menuitem:hover .scale.slider:hover, - .list-row:selected .scale.slider:hover, - GtkInfoBar .scale.slider:hover { - background-image: linear-gradient(to bottom, #dde6e0); - border-color: #dde6e0; } - .menu .menuitem:hover .scale.slider:active, - .list-row:selected .scale.slider:active, - GtkInfoBar .scale.slider:active { - background-image: linear-gradient(to bottom, #92c1db); - border-color: #92c1db; } - .menu .menuitem:hover .scale.slider:insensitive, - .list-row:selected .scale.slider:insensitive, - GtkInfoBar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); - border-color: #9cc6db; } - .scale.trough { - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, #00171d); } - .scale.trough.highlight { - background-image: linear-gradient(to bottom, #268bd2); } - .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, rgba(38, 139, 210, 0.55)); } - .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 23, 29, 0.55)); } - .osd .scale.trough { - background-image: linear-gradient(to bottom, rgba(10, 80, 98, 0.95)); - outline-color: rgba(101, 123, 131, 0.2); } - .osd .scale.trough.highlight { - background-image: none; - background-image: linear-gradient(to bottom, #268bd2); } - .menu .menuitem:hover .scale.trough, - .list-row:selected .scale.trough, - GtkInfoBar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } - .menu .menuitem:hover .scale.trough.highlight, - .list-row:selected .scale.trough.highlight, - GtkInfoBar .scale.trough.highlight { - background-image: linear-gradient(to bottom, #fdf6e3); } - .menu .menuitem:hover .scale.trough.highlight:insensitive, - .list-row:selected .scale.trough.highlight:insensitive, - GtkInfoBar .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); } - .menu .menuitem:hover .scale.trough:insensitive, - .list-row:selected .scale.trough:insensitive, - GtkInfoBar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -GtkProgressBar { - padding: 0; - font-size: smaller; - color: rgba(101, 123, 131, 0.7); } - GtkProgressBar.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; } - -.progressbar { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - .progressbar.osd { - background-color: #268bd2; } - .list-row:selected .progressbar, - GtkInfoBar .progressbar { - background-color: #fdf6e3; } - -.osd .scale.progressbar { - background-color: #268bd2; } - -GtkProgressBar.trough, .level-bar.trough { - border: none; - border-radius: 3px; - background-color: #00171d; } - GtkProgressBar.trough.osd, .osd.level-bar.trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, - GtkInfoBar GtkProgressBar.trough, - GtkInfoBar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.2); } - -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; } - GtkLevelBar.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; } - -.level-bar.trough { - padding: 3px; - border-radius: 4px; } - -.level-bar.fill-block { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - .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 { - border-color: #859900; - background-color: #859900; } - .level-bar.fill-block.level-low { - border-color: #cb4b16; - background-color: #cb4b16; } - .level-bar.fill-block.empty-fill-block { - background-color: #073642; - border-color: #073642; } - -.frame { - border: 1px solid #001317; - padding: 0; } - .frame.flat { - border-style: none; } - .frame.action-bar { - padding: 6px; - border-width: 1px 0 0; } - -GtkScrolledWindow GtkViewport.frame { - border-style: none; } - -.separator, GtkPlacesSidebar.sidebar .view.separator { - color: rgba(0, 0, 0, 0.1); } - GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, - GtkFontButton .separator, - GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .view.separator, - GtkFileChooserButton .separator.vertical, - GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFileChooserButton .vertical.view.separator, - GtkFontButton .separator.vertical, - GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .vertical.view.separator { - -GtkWidget-wide-separators: true; } - -.list, .list-row { - background-color: #073642; - border-color: #001317; } - -.list-row, -.grid-child { - padding: 2px; } - -.list-row.button { - background-color: transparent; - border-style: none; - border-radius: 0; - box-shadow: none; } - .list-row.button:hover { - background-color: rgba(255, 255, 255, 0.03); } - .list-row.button:active { - color: #657b83; } - .list-row.button:selected:active { - color: #fdf6e3; } - .list-row.button:selected:hover { - background-color: #227dbd; } - .list-row.button:selected:insensitive { - color: rgba(253, 246, 227, 0.7); - background-color: rgba(38, 139, 210, 0.7); } - .list-row.button:selected:insensitive GtkLabel { - color: inherit; } - -.list-row, list-row.button { - transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .list-row:hover, list-row.button:hover { - transition: none; } - -.app-notification, -.app-notification.frame { - padding: 10px; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: rgba(2, 16, 20, 0.95); } - .app-notification .button, - .app-notification.frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .app-notification .button.flat, - .app-notification.frame .button.flat { - border-color: rgba(38, 139, 210, 0); } - .app-notification .button:hover, - .app-notification.frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .app-notification .button:active, .app-notification .button:checked, - .app-notification.frame .button:active, - .app-notification.frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification .button:insensitive, - .app-notification.frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - .expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - .expander:hover { - color: #b8c4c9; } - .expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GtkCalendar { - color: #657b83; - border: 1px solid #001317; - border-radius: 3px; - padding: 2px; } - GtkCalendar:selected { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 1.5px; } - GtkCalendar.header { - color: #657b83; - border: none; - border-radius: 0; } - GtkCalendar.button, GtkCalendar.button:focus { - color: rgba(101, 123, 131, 0.45); - border-color: transparent; - background-color: transparent; - background-image: none; } - GtkCalendar.button:hover, GtkCalendar.button:focus:hover { - color: #657b83; } - GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { - color: rgba(101, 123, 131, 0.45); - background-color: transparent; - background-image: none; } - GtkCalendar.highlight { - color: alpha(currentColor,0.55); } - -.message-dialog .dialog-action-area .button { - padding: 8px; } - -.message-dialog { - -GtkDialog-button-spacing: 0; } - .message-dialog .titlebar { - background-color: rgba(0, 43, 54, 0.97); - border-bottom: 1px solid rgba(0, 15, 18, 0.97); } - .message-dialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - .message-dialog.csd .dialog-action-area .button { - padding: 8px; - border-radius: 0; } - .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 { - border-right-style: none; - border-bottom-style: none; } - .message-dialog.csd .dialog-action-area .button:last-child { - border-bottom-right-radius: 3px; } - .message-dialog.csd .dialog-action-area .button:first-child { - border-left-style: none; - border-bottom-left-radius: 3px; } - -GtkFileChooserDialog .search-bar { - background-color: #002b36; - border-color: #001317; - box-shadow: none; } - -GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #001317; } - -.sidebar { - border: none; - background-color: #003340; } - .sidebar .scrollbar.trough { - background-color: transparent; - border-width: 2px; - border-color: transparent; } - .sidebar:selected { - background-color: #268bd2; } - -GtkPlacesSidebar.sidebar .view { - color: #657b83; - background-color: transparent; } - GtkPlacesSidebar.sidebar .view:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.sidebar-item { - padding: 10px 4px; } - .sidebar-item > GtkLabel { - padding-left: 6px; - padding-right: 6px; } - .sidebar-item.needs-attention > GtkLabel { - background-size: 6px 6px, 0 0; } - -GtkPaned { - margin: 0 8px 8px 0; } - GtkPaned:dir(rtl) { - margin-right: 0; - margin-left: 8px; } - -.pane-separator { - background-image: linear-gradient(to bottom, #001317); } - -GtkInfoBar { - border-style: none; } - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: #268bd2; - color: #fdf6e3; } - -.list-row:selected .button, GtkInfoBar .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - .list-row:selected .flat.button, GtkInfoBar .flat.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .list-row:selected .button:hover, GtkInfoBar .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.2); } - .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.2); } - -.tooltip { - color: #657b83; - border-radius: 2px; } - .tooltip.background { - background-color: rgba(12, 92, 112, 0.95); - background-clip: padding-box; } - .tooltip.window-frame.csd { - background-color: transparent; } - -.tooltip * { - padding: 4px; - background-color: transparent; - color: inherit; } - -GtkColorSwatch { - border: none; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.4); } - GtkColorSwatch.color-light:hover { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4)); } - GtkColorSwatch.color-dark:hover { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } - GtkColorSwatch:hover { - border-color: rgba(0, 0, 0, 0.5); } - GtkColorSwatch.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - GtkColorSwatch.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; } - GtkColorSwatch.left, GtkColorSwatch:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - GtkColorSwatch.right, GtkColorSwatch:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } - GtkColorSwatch:only-child { - border-radius: 3px; } - GtkColorSwatch.color-active-badge { - border-width: 2px; } - GtkColorSwatch.color-active-badge:hover { - background-image: none; } - GtkColorSwatch.color-active-badge.color-light, GtkColorSwatch.color-active-badge.color-light:hover { - color: rgba(0, 0, 0, 0.3); - border-color: rgba(0, 0, 0, 0.3); } - GtkColorSwatch.color-active-badge.color-dark, GtkColorSwatch.color-active-badge.color-dark:hover { - color: rgba(255, 255, 255, 0.5); - border-color: rgba(255, 255, 255, 0.5); } - -GtkColorChooserWidget #add-color-button { - border-color: #001f27; - background-color: #001f27; - color: #002b36; - box-shadow: none; } - GtkColorChooserWidget #add-color-button:hover { - border-color: #001317; - background-color: #001317; } - -GtkColorButton.button { - padding: 5px; } - GtkColorButton.button GtkColorSwatch { - border-radius: 0; } - -.scale-popup .button { - padding: 6px; } - .scale-popup .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - -GtkVolumeButton.button { - padding: 8px; } - -.touch-selection, -.context-menu { - font: initial; } - -.monospace { - font: Monospace; } - -.overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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; } - -.window-frame { - border-radius: 3px 3px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.97), 0 8px 8px 0 rgba(0, 0, 0, 0.35); - margin: 10px; } - .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.87), 0 5px 5px 0 rgba(0, 0, 0, 0.35); } - .window-frame.tiled { - border-radius: 0; } - .window-frame.popup { - box-shadow: none; - border-radius: 0; } - .window-frame.csd.popup, .window-frame.csd.menu { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #000203; } - .window-frame.csd.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.25); } - .window-frame.csd.message-dialog { - border-radius: 3px; } - -.header-bar.default-decoration .button.titlebutton, .titlebar.default-decoration .button.titlebutton, -.header-bar.selection-mode.default-decoration .button.titlebutton, .titlebar.selection-mode.default-decoration .button.titlebutton { - padding-top: 0px; - padding-bottom: 0px; } - -.header-bar .button.titlebutton, .titlebar .button.titlebutton, -.header-bar.selection-mode .button.titlebutton, .titlebar.selection-mode .button.titlebutton { - padding: 8px 4px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); - color: transparent; - background-position: center; - background-repeat: no-repeat; } - .header-bar .button.titlebutton:backdrop, .titlebar .button.titlebutton:backdrop, - .header-bar.selection-mode .button.titlebutton:backdrop, .titlebar.selection-mode .button.titlebutton:backdrop { - opacity: 1; } - -.header-bar .right .button.titlebutton:nth-last-child(3), -.header-bar .right:dir(rtl) .button.titlebutton:nth-child(3), -.header-bar .left .button.titlebutton:nth-child(3), -.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar .right .button.titlebutton:nth-last-child(3), -.titlebar .right:dir(rtl) .button.titlebutton:nth-child(3), -.titlebar .left .button.titlebutton:nth-child(3), -.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3), -.header-bar.selection-mode .right .button.titlebutton:nth-last-child(3), -.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), -.header-bar.selection-mode .left .button.titlebutton:nth-child(3), -.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3), -.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), -.titlebar.selection-mode .left .button.titlebutton:nth-child(3), -.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3) { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-dark.png"), url("assets/titlebutton-minimize-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(3):hover, .header-bar .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar .left .button.titlebutton:nth-child(3):hover, - .header-bar .left .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(3):hover, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar .left .button.titlebutton:nth-child(3):hover, - .titlebar .left .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover-dark.png"), url("assets/titlebutton-minimize-hover-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(3):active:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .header-bar .left .button.titlebutton:nth-child(3):active:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar .right .button.titlebutton:nth-last-child(3):active:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .titlebar .left .button.titlebutton:nth-child(3):active:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active-dark.png"), url("assets/titlebutton-minimize-active-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(3):backdrop, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .header-bar .left .button.titlebutton:nth-child(3):backdrop, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .titlebar .left .button.titlebutton:nth-child(3):backdrop, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop-dark.png"), url("assets/titlebutton-minimize-backdrop-dark@2.png")); } - -.header-bar .right .button.titlebutton:nth-last-child(2), -.header-bar .right:dir(rtl) .button.titlebutton:nth-child(2), -.header-bar .left .button.titlebutton:nth-child(2), -.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar .right .button.titlebutton:nth-last-child(2), -.titlebar .right:dir(rtl) .button.titlebutton:nth-child(2), -.titlebar .left .button.titlebutton:nth-child(2), -.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2), -.header-bar.selection-mode .right .button.titlebutton:nth-last-child(2), -.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), -.header-bar.selection-mode .left .button.titlebutton:nth-child(2), -.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2), -.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), -.titlebar.selection-mode .left .button.titlebutton:nth-child(2), -.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2) { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-dark.png"), url("assets/titlebutton-maximize-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(2):hover, .header-bar .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar .left .button.titlebutton:nth-child(2):hover, - .header-bar .left .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(2):hover, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar .left .button.titlebutton:nth-child(2):hover, - .titlebar .left .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover-dark.png"), url("assets/titlebutton-maximize-hover-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(2):active:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .header-bar .left .button.titlebutton:nth-child(2):active:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar .right .button.titlebutton:nth-last-child(2):active:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .titlebar .left .button.titlebutton:nth-child(2):active:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active-dark.png"), url("assets/titlebutton-maximize-active-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(2):backdrop, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .header-bar .left .button.titlebutton:nth-child(2):backdrop, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .titlebar .left .button.titlebutton:nth-child(2):backdrop, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop-dark.png"), url("assets/titlebutton-maximize-backdrop-dark@2.png")); } - -.header-bar .right .button.titlebutton:last-child, -.header-bar .right:dir(rtl) .button.titlebutton:first-child, -.header-bar .left .button.titlebutton:first-child, -.header-bar .left:dir(rtl) .button.titlebutton:last-child, .titlebar .right .button.titlebutton:last-child, -.titlebar .right:dir(rtl) .button.titlebutton:first-child, -.titlebar .left .button.titlebutton:first-child, -.titlebar .left:dir(rtl) .button.titlebutton:last-child, -.header-bar.selection-mode .right .button.titlebutton:last-child, -.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, -.header-bar.selection-mode .left .button.titlebutton:first-child, -.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child, .titlebar.selection-mode .right .button.titlebutton:last-child, -.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, -.titlebar.selection-mode .left .button.titlebutton:first-child, -.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child { - background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } - .header-bar .right .button.titlebutton:last-child:hover, .header-bar .right .button.titlebutton:last-child:backdrop:hover, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:hover, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .header-bar .left .button.titlebutton:first-child:hover, - .header-bar .left .button.titlebutton:first-child:backdrop:hover, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:hover, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar .right .button.titlebutton:last-child:hover, .titlebar .right .button.titlebutton:last-child:backdrop:hover, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:hover, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .titlebar .left .button.titlebutton:first-child:hover, - .titlebar .left .button.titlebutton:first-child:backdrop:hover, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:hover, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .right .button.titlebutton:last-child:hover, - .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left .button.titlebutton:first-child:hover, - .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left .button.titlebutton:first-child:hover, - .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } - .header-bar .right .button.titlebutton:last-child:active:hover, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .header-bar .left .button.titlebutton:first-child:active:hover, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar .right .button.titlebutton:last-child:active:hover, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .titlebar .left .button.titlebutton:first-child:active:hover, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .right .button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left .button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:active:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left .button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } - .header-bar .right .button.titlebutton:last-child:backdrop, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .header-bar .left .button.titlebutton:first-child:backdrop, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar .right .button.titlebutton:last-child:backdrop, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .titlebar .left .button.titlebutton:first-child:backdrop, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop, - .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } - -.header-bar .left GtkMenuButton.button.titlebutton:first-child, -.header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, -.header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, -.header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, .titlebar .left GtkMenuButton.button.titlebutton:first-child, -.titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, -.titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, -.titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child { - padding: 4px 6px 4px 6px; - color: rgba(89, 128, 143, 0.8); } - .header-bar .left GtkMenuButton.button.titlebutton:first-child, .header-bar .left GtkMenuButton.button.titlebutton:first-child:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:backdrop, .header-bar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child, .titlebar .left GtkMenuButton.button.titlebutton:first-child:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:backdrop, .titlebar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover { - background-image: none; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .header-bar .left GtkMenuButton.button.titlebutton:first-child:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .header-bar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:checked, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:checked, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked, .titlebar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:checked, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:checked, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - -.view:selected, .view:selected:focus, .view:selected:hover, GtkLabel:selected, GtkLabel:selected:focus, GtkLabel:selected:hover, GtkFlowBox .grid-child:selected, .menuitem.button.flat:active, .menuitem.button.flat:selected, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, -GtkEntry.gb-command-bar-entry.entry.flat:focus:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); } - -GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, -ScratchMainWindow .notebook tab.reorderable-page.top:active, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, -ScratchMainWindow .notebook tab.top:active, -ScratchMainWindow .notebook tab.top.active-page, -ScratchMainWindow .notebook tab.top.active-page:hover, -EphyNotebook.notebook tab.reorderable-page.top:active, -EphyNotebook.notebook tab.reorderable-page.top.active-page, -EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, -EphyNotebook.notebook tab.top:active, -EphyNotebook.notebook tab.top.active-page, -EphyNotebook.notebook tab.top.active-page:hover, -MidoriNotebook .notebook tab.reorderable-page.top:active, -MidoriNotebook .notebook tab.reorderable-page.top.active-page, -MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, -MidoriNotebook .notebook tab.top:active, -MidoriNotebook .notebook tab.top.active-page, -MidoriNotebook .notebook tab.top.active-page:hover, -TerminalWindow .notebook tab.reorderable-page.top:active, -TerminalWindow .notebook tab.reorderable-page.top.active-page, -TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -TerminalWindow .notebook tab.top:active, -TerminalWindow .notebook tab.top.active-page, -TerminalWindow .notebook tab.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - -TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.top { - padding-top: 7px; - border-top-width: 3px; } - -TerminalWindow .notebook.header.top, -PantheonTerminalPantheonTerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #001b22, inset 0 -1px #001317; } - -GtkHTML { - background-color: #073642; - color: #657b83; } - GtkHTML:active { - color: #fdf6e3; - background-color: #268bd2; } - -SushiFontWidget { - padding: 6px 12px; } - -TerminalWindow .background { - background-color: transparent; } - -TerminalWindow .scrollbar.vertical .slider { - margin-left: 3px; } - -TerminalWindow .scrollbar.trough { - border-width: 0; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { - color: #657b83; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { - color: #fdf6e3; } - -NautilusNotebook.notebook { - background-color: #073642; } - NautilusNotebook.notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; } - -NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { - padding: 5px; - box-shadow: none; - background-color: #073642; } - -NemoWindow EelEditableLabel.entry { - transition: none; } - -NemoWindow .sidebar .frame { - border-width: 0; } - -NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #001317; } - -NemoWindow .primary-toolbar NemoPathBar.linked > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - background-color: rgba(0, 193, 243, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37), inset -1px 0 rgba(0, 0, 0, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.gedit-headerbar-paned { - color: rgba(0, 27, 34, 0.97); } - -.open-document-selector-listbox-row { - border-bottom: 1px solid #00171d; - padding: 6px 6px 6px 12px; } - .open-document-selector-listbox-row .path-label { - font-size: smaller; - color: rgba(101, 123, 131, 0.7); } - .open-document-selector-listbox-row:selected .path-label { - color: rgba(253, 246, 227, 0.7); } - -.gedit-document-panel .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; } - .gedit-document-panel .list-row .button GtkImage { - color: inherit; } - -.gedit-document-panel .prelight-row .button { - color: #425f68; } - -.gedit-document-panel .list-row .button:hover, -.gedit-document-panel .prelight-row .button:hover { - color: #ff4d4d; } - -.gedit-document-panel .prelight-row:selected .button:hover { - color: #ff6666; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; } - .gedit-document-panel .prelight-row:selected .button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -.gedit-document-panel-dragged-row { - border: 1px solid #001317; - background-color: #000203; - color: #657b83; } - -GeditStatusbar { - border-top: 1px solid #001317; - background-color: #002b36; } - -GeditStatusMenuButton.button.flat, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton:checked.button.flat { - border-bottom-style: none; - border-radius: 0; } - -GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #001317; } - -.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { - color: rgba(101, 123, 131, 0.6); - margin: 2px; - padding: 2px; } - -GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { - background-color: #003340; - padding: 6px; - border-color: #001317; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image:hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image:hover { - color: inherit; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):insensitive, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { - box-shadow: -1px 0 #268bd2; } - -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; } - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - box-shadow: 1px 0 #268bd2; } - -GbEditorFrame .gb-search-slider { - padding: 2px; } - -GdTaggedEntry { - color: #657b83; } - -.preferences.sidebar GtkViewport { - border: none; } - -.preferences.sidebar GtkListBox { - background-color: #002b36; } - -.preferences.sidebar GtkListBoxRow { - padding: 10px; } - -GbPreferencesPageLanguage GtkSearchEntry { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - -GbPreferencesPageLanguage GtkScrolledWindow { - border-top-width: 0; } - -GtkBox.gb-command-bar-box { - border: none; - background-color: #073642; } - GtkBox.gb-command-bar-box GtkLabel { - color: #657b83; } - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: #657b83; - background-image: none; - background-color: #073642; - padding: 6px 6px 6px 6px; - border: none; } - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; } - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; } - -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; } - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #001317; } - -GbViewStack.focused GtkBox.header.notebook { - background-color: #073642; } - GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook GtkLabel.button.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { - opacity: 1; } - -EphyWindow .floating-bar { - color: #657b83; } - -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon { - background-color: rgba(101, 123, 131, 0.3); - border-radius: 2px; } - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: #78b9e6; } - -.documents-entry-tag { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover { - color: #fdf6e3; - background-color: #3295da; } - .documents-entry-tag:active { - color: #fdf6e3; - background-color: #2380c1; } - .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; } - .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { - color: rgba(253, 246, 227, 0.7); } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -TotemGrilo.vertical GdMainView.frame { - border-width: 0; } - -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { - background-color: #268bd2; } - -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; } - -.gnome-panel-menu-bar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: #657b83; - background-image: linear-gradient(to bottom, rgba(5, 36, 44, 0.95)); } - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: #657b83; } - -PanelApplet .button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); - border-color: rgba(0, 0, 0, 0.17); } - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: rgba(0, 0, 0, 0.25); - border-radius: 0; - border-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -PanelApplet:hover { - color: white; } - -PanelApplet:active, -PanelApplet:hover:active { - color: #268bd2; } - -WnckPager { - color: #333e42; } - WnckPager:selected { - color: #268bd2; } - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; } - -ClockBox { - color: #657b83; } - -.xfce4-panel.panel { - background-color: rgba(5, 36, 44, 0.95); - text-shadow: none; - icon-shadow: none; } - .xfce4-panel.panel .button.flat { - color: #657b83; - background-color: rgba(5, 36, 44, 0); - border-radius: 0; - border: none; } - .xfce4-panel.panel .button.flat:hover { - border: none; - background-color: rgba(10, 74, 90, 0.95); } - .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - -.floating-bar { - background-color: #268bd2; - color: #fdf6e3; } - .floating-bar.top { - border-radius: 0 0 2px 2px; } - .floating-bar.right { - border-radius: 2px 0 0 2px; } - .floating-bar.bottom { - border-radius: 2px 2px 0 0; } - .floating-bar.left { - border-radius: 0 2px 2px 0; } - .floating-bar .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - background-color: transparent; - box-shadow: none; - border: none; } - -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; } - -MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { - color: #fdf6e3; - background-color: #268bd2; - outline-color: transparent; } - -MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { - background-color: transparent; } - -MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { - outline-color: transparent; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - .marlin-pathbar.pathbar:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; - border: solid transparent; - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { - padding: 0 3px; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { - background-color: rgba(255, 255, 255, 0.05); - border: solid rgba(255, 255, 255, 0.07); - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { - color: rgba(101, 123, 131, 0.45); } - -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; } - -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: #657b83; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration.top { - border: 1px solid rgba(0, 15, 18, 0.97); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #002b36); - color: rgba(89, 128, 143, 0.8); - box-shadow: inset 0 1px rgba(0, 55, 69, 0.97); } - UnityDecoration.top:backdrop { - border-bottom-width: 0; - color: rgba(89, 128, 143, 0.5); } - UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 15, 18, 0.97)); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: rgba(0, 75, 95, 0.97); - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; } - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar GtkLabel { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #001317; - border-right: 1px solid #001317; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #001317; } - .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { - padding: 0 3px 0 3px; } - -.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #001317; - background-color: #002b36; } - .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view { - background-color: #002b36; - color: #657b83; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:prelight { - background-color: #003f50; } - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: #002b36; - background-image: none; } - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #657b83; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GraniteWidgetsWelcome { - background-color: #073642; } - -GraniteWidgetsWelcome GtkLabel { - color: #33535d; - font: open sans 11; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(101, 123, 131, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #073642); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry.entry { - padding: 4px; } - -.h1 { - font: open sans 24px; } - -.h2 { - font: open sans light 18px; } - -.h3 { - font: open sans 11px; } - -.h4, -.category-label { - color: #47636c; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: rgba(5, 36, 44, 0.95); - color: #657b83; - font: bold; - box-shadow: inset 0 -1px rgba(1, 10, 12, 0.95); } - #panel_window .menubar { - padding-left: 5px; } - #panel_window .menubar, #panel_window .menubar > .menuitem { - background-color: transparent; - color: #657b83; - font: bold; } - #panel_window .menubar .menuitem:insensitive { - color: rgba(101, 123, 131, 0.5); } - #panel_window .menubar .menuitem:insensitive GtkLabel { - color: inherit; } - #panel_window .menubar .menu .menuitem { - font: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: #657b83; } - -#content_frame { - padding-bottom: 14px; - background-color: #002b36; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - #content_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - #content_frame .button:active, #content_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - #content_frame .button:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - #content_frame .button:insensitive > GtkLabel { - color: inherit; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: rgba(0, 43, 54, 0.97); - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px rgba(0, 27, 34, 0.97); } - -#buttonbox_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - #buttonbox_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - #buttonbox_frame .button:active, #buttonbox_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - #buttonbox_frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -#login_window #user_combobox { - color: #657b83; - font: 13px; } - #login_window #user_combobox .menu { - font: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font: bold; } - -.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { - color: rgba(0, 27, 34, 0.97); } - -NemoWindow GtkEventBox { - background-color: #002b36; } - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; } - -GtkFileChooserDialog .sidebar, -NautilusWindow .sidebar, -NemoWindow .sidebar { - border-right: 1px solid rgba(5, 35, 43, 0.95); } - -GtkFileChooserDialog .sidebar:dir(rtl), -NautilusWindow .sidebar:dir(rtl), -NemoWindow .sidebar:dir(rtl) { - border-left: 1px solid rgba(5, 35, 43, 0.95); } - -NautilusWindow GtkBox.sidebar { - background-color: transparent; } - -GtkFileChooserDialog.csd.background, -GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, -NautilusWindow.csd.background, -NautilusWindow .source-list, -NautilusWindow .source-list.view, -NautilusWindow .source-list.view:prelight, -NemoWindow.csd.background, -NemoWindow .source-list, -NemoWindow .source-list.view, -NemoWindow .source-list.view:prelight, -MarlinViewWindow.csd.background, -MarlinViewWindow .source-list, -MarlinViewWindow .source-list.view, -MarlinViewWindow .source-list.view:prelight { - background-color: transparent; } - -GtkFileChooserDialog .sidebar, GtkFileChooserDialog MarlinPlacesSidebar, -NautilusWindow .sidebar, -NautilusWindow MarlinPlacesSidebar, -NemoWindow .sidebar, -NemoWindow MarlinPlacesSidebar, -MarlinViewWindow .sidebar, -MarlinViewWindow MarlinPlacesSidebar { - background-color: rgba(7, 54, 66, 0.95); } - GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar .source-list.sidebar row, GtkFileChooserDialog MarlinPlacesSidebar .view, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row, - NautilusWindow .sidebar .view, - NautilusWindow .sidebar .source-list.sidebar row, - NautilusWindow MarlinPlacesSidebar .view, - NautilusWindow MarlinPlacesSidebar .source-list.sidebar row, - NemoWindow .sidebar .view, - NemoWindow .sidebar .source-list.sidebar row, - NemoWindow MarlinPlacesSidebar .view, - NemoWindow MarlinPlacesSidebar .source-list.sidebar row, - MarlinViewWindow .sidebar .view, - MarlinViewWindow .sidebar .source-list.sidebar row, - MarlinViewWindow MarlinPlacesSidebar .view, - MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row { - background-color: transparent; - color: #657b83; } - GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar .source-list.sidebar row.image, GtkFileChooserDialog MarlinPlacesSidebar .view.image, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.image, - NautilusWindow .sidebar .view.image, - NautilusWindow .sidebar .source-list.sidebar row.image, - NautilusWindow MarlinPlacesSidebar .view.image, - NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.image, - NemoWindow .sidebar .view.image, - NemoWindow .sidebar .source-list.sidebar row.image, - NemoWindow MarlinPlacesSidebar .view.image, - NemoWindow MarlinPlacesSidebar .source-list.sidebar row.image, - MarlinViewWindow .sidebar .view.image, - MarlinViewWindow .sidebar .source-list.sidebar row.image, - MarlinViewWindow MarlinPlacesSidebar .view.image, - MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.image { - color: rgba(101, 123, 131, 0.7); } - GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar .source-list.sidebar row.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .view.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.cell:selected, - NautilusWindow .sidebar .view.cell:selected, - NautilusWindow .sidebar .source-list.sidebar row.cell:selected, - NautilusWindow MarlinPlacesSidebar .view.cell:selected, - NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, - NemoWindow .sidebar .view.cell:selected, - NemoWindow .sidebar .source-list.sidebar row.cell:selected, - NemoWindow MarlinPlacesSidebar .view.cell:selected, - NemoWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, - MarlinViewWindow .sidebar .view.cell:selected, - MarlinViewWindow .sidebar .source-list.sidebar row.cell:selected, - MarlinViewWindow MarlinPlacesSidebar .view.cell:selected, - MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog MarlinPlacesSidebar.frame, - NautilusWindow .sidebar.frame, - NautilusWindow MarlinPlacesSidebar.frame, - NemoWindow .sidebar.frame, - NemoWindow MarlinPlacesSidebar.frame, - MarlinViewWindow .sidebar.frame, - MarlinViewWindow MarlinPlacesSidebar.frame { - color: #657b83; } - GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog MarlinPlacesSidebar .separator, GtkFileChooserDialog MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserDialog MarlinPlacesSidebar .view.separator, - NautilusWindow .sidebar .separator, - NautilusWindow GtkPlacesSidebar.sidebar .view.separator, - NautilusWindow MarlinPlacesSidebar .separator, - NautilusWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - NautilusWindow MarlinPlacesSidebar .view.separator, - NemoWindow .sidebar .separator, - NemoWindow GtkPlacesSidebar.sidebar .view.separator, - NemoWindow MarlinPlacesSidebar .separator, - NemoWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - NemoWindow MarlinPlacesSidebar .view.separator, - MarlinViewWindow .sidebar .separator, - MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, - MarlinViewWindow MarlinPlacesSidebar .separator, - MarlinViewWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - MarlinViewWindow MarlinPlacesSidebar .view.separator { - color: transparent; } - -GtkFileChooserDialog.maximized .sidebar, -NautilusWindow.maximized .sidebar, -NemoWindow.maximized .sidebar, -MarlinViewWindow.maximized .sidebar { - background-color: #073642; } - -GtkFileChooserDialog .pane-separator, -NautilusWindow .pane-separator, -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { - background-color: rgba(5, 35, 43, 0.95); } - -NautilusWindow NautilusWindowSlot { - background-color: #073642; } - -NautilusDesktopWindow NautilusWindowSlot { - background-color: transparent; } - -GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { - background-color: rgba(7, 54, 66, 0.95); } - -GtkFileChooserDialog .sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #002b36; } - -GtkFileChooserDialog .dialog-action-box { - background-color: #002b36; } - -GtkFileChooserDialog .dialog-vbox > .frame { - color: #657b83; - border-color: transparent; } - -GtkFileChooserDialog .action-bar.frame { - background-color: transparent; - border-color: rgba(2, 16, 20, 0.95); } - -GtkFileChooserDialog .action-bar.frame GtkLabel, GtkFileChooserDialog .action-bar.frame GtkComboBox, -GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, -GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { - color: #657b83; } - -FeedReaderreaderUI.background.csd > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd > .titlebar .pane-separator, -GeditWindow.background.csd.maximized > .titlebar .pane-separator, -GeditWindow.background.csd > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { - background-color: rgba(0, 27, 34, 0.97); } - -FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: rgba(0, 43, 54, 0.97); } - FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: rgba(0, 49, 62, 0.97); } - -FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #002b36; } - FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #00313e; } - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; } - -GeditWindow.background.csd { - background-color: transparent; } - -GeditWindow.background .gedit-side-panel-paned .pane-separator { - background-color: rgba(5, 35, 43, 0.95); } - -GeditWindow.background .gedit-bottom-panel-paned .pane-separator { - background-color: #001317; } - -GeditWindow.background > .titlebar.default-decoration, -GeditWindow.background > .titlebar.default-decoration:backdrop { - background-color: #002b36; } - -.gedit-bottom-panel-paned { - background-color: #073642; } - -.gedit-document-panel { - background-color: rgba(7, 54, 66, 0.95); } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel .list-row { - color: #657b83; } - .gedit-document-panel .list-row { - background-color: rgba(101, 123, 131, 0); - border: solid rgba(101, 123, 131, 0); - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:hover { - border: solid rgba(101, 123, 131, 0.15); - border-width: 3px 2px 3px 2px; - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel .list-row:active { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:active .button { - color: #fdf6e3; } - .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -GeditFileBrowserWidget { - background-color: rgba(7, 54, 66, 0.95); } - .maximized GeditFileBrowserWidget { - background-color: #073642; } - GeditFileBrowserWidget .scrollbars-junction, - GeditFileBrowserWidget .scrollbars-junction.frame { - border-color: transparent; - background-color: transparent; } - GeditFileBrowserWidget .horizontal { - background-color: transparent; - border-color: rgba(4, 28, 34, 0.95); } - GeditFileBrowserWidget .horizontal GtkComboBox { - color: #657b83; } - -GeditWindow.background.csd GeditFileBrowserView.view { - background-color: transparent; - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander { - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { - color: #268bd2; } - -GtkFileChooserDialog .action-bar.frame .button, -GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - GtkFileChooserDialog .action-bar.frame .button:hover, - GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - GtkFileChooserDialog .action-bar.frame .button:active, - GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog .action-bar.frame .button:checked, - GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - GtkFileChooserDialog .action-bar.frame .button:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -GtkFileChooserDialog .action-bar.frame .entry, -GtkFileChooserDialog .dialog-vbox > .frame .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.35)); - background-color: transparent; } - GtkFileChooserDialog .action-bar.frame .image.entry, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog .action-bar.frame .image.entry:hover, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { - color: inherit; } - GtkFileChooserDialog .action-bar.frame .entry:focus, - GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, #268bd2); } - GtkFileChooserDialog .action-bar.frame .entry:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.2)); } - -GtkFileChooserDialog .sidebar .trough.scrollbar, GtkFileChooserDialog MarlinPlacesSidebar .trough.scrollbar, -NautilusWindow .sidebar .trough.scrollbar, -NautilusWindow MarlinPlacesSidebar .trough.scrollbar, -NemoWindow .sidebar .trough.scrollbar, -NemoWindow MarlinPlacesSidebar .trough.scrollbar, -MarlinViewWindow .sidebar .trough.scrollbar, -MarlinViewWindow MarlinPlacesSidebar .trough.scrollbar, GeditFileBrowserWidget .trough.scrollbar { - background-color: transparent; - border-color: transparent; } - -GtkFileChooserDialog .sidebar .slider.scrollbar, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar, -NautilusWindow .sidebar .slider.scrollbar, -NautilusWindow MarlinPlacesSidebar .slider.scrollbar, -NemoWindow .sidebar .slider.scrollbar, -NemoWindow MarlinPlacesSidebar .slider.scrollbar, -MarlinViewWindow .sidebar .slider.scrollbar, -MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar, GeditFileBrowserWidget .slider.scrollbar { - border-radius: 20px; - border: 3px solid transparent; - background-color: rgba(141, 160, 167, 0.7); } - GtkFileChooserDialog .sidebar .slider.scrollbar:hover, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar:hover, - NautilusWindow .sidebar .slider.scrollbar:hover, - NautilusWindow MarlinPlacesSidebar .slider.scrollbar:hover, - NemoWindow .sidebar .slider.scrollbar:hover, - NemoWindow MarlinPlacesSidebar .slider.scrollbar:hover, - MarlinViewWindow .sidebar .slider.scrollbar:hover, - MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar:hover, GeditFileBrowserWidget .slider.scrollbar:hover { - background-color: #9cacb2; } - GtkFileChooserDialog .sidebar .slider.scrollbar:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar:prelight:active, - NautilusWindow .sidebar .slider.scrollbar:prelight:active, - NautilusWindow MarlinPlacesSidebar .slider.scrollbar:prelight:active, - NemoWindow .sidebar .slider.scrollbar:prelight:active, - NemoWindow MarlinPlacesSidebar .slider.scrollbar:prelight:active, - MarlinViewWindow .sidebar .slider.scrollbar:prelight:active, - MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar:prelight:active, GeditFileBrowserWidget .slider.scrollbar:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog .sidebar .slider.fine-tune.scrollbar, GtkFileChooserDialog MarlinPlacesSidebar .slider.fine-tune.scrollbar, - NautilusWindow .sidebar .slider.fine-tune.scrollbar, - NautilusWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar, - NemoWindow .sidebar .slider.fine-tune.scrollbar, - NemoWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar, - MarlinViewWindow .sidebar .slider.fine-tune.scrollbar, - MarlinViewWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar, GeditFileBrowserWidget .slider.fine-tune.scrollbar { - border-width: 4px; } - GtkFileChooserDialog .sidebar .slider.fine-tune.scrollbar:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, - NautilusWindow .sidebar .slider.fine-tune.scrollbar:prelight:active, - NautilusWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, - NemoWindow .sidebar .slider.fine-tune.scrollbar:prelight:active, - NemoWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, - MarlinViewWindow .sidebar .slider.fine-tune.scrollbar:prelight:active, - MarlinViewWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, GeditFileBrowserWidget .slider.fine-tune.scrollbar:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog .sidebar .slider.scrollbar:insensitive, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar:insensitive, - NautilusWindow .sidebar .slider.scrollbar:insensitive, - NautilusWindow MarlinPlacesSidebar .slider.scrollbar:insensitive, - NemoWindow .sidebar .slider.scrollbar:insensitive, - NemoWindow MarlinPlacesSidebar .slider.scrollbar:insensitive, - MarlinViewWindow .sidebar .slider.scrollbar:insensitive, - MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar:insensitive, GeditFileBrowserWidget .slider.scrollbar:insensitive { - background-color: transparent; } - -/* GTK NAMED COLORS */ -@define-color theme_fg_color #657b83; -@define-color theme_text_color #657b83; -@define-color theme_bg_color #002b36; -@define-color theme_base_color #073642; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #657b83; -@define-color text_color #657b83; -@define-color bg_color #002b36; -@define-color base_color #073642; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #003340; -@define-color insensitive_fg_color alpha(#657b83, 0.5); -@define-color insensitive_base_color #073642; -@define-color theme_unfocused_fg_color #657b83; -@define-color theme_unfocused_text_color #657b83; -@define-color theme_unfocused_bg_color #002b36; -@define-color theme_unfocused_base_color #073642; -@define-color borders #001317; -@define-color unfocused_borders #001317; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #78b9e6; -@define-color wm_title alpha(#59808f, 0.8); -@define-color wm_unfocused_title alpha(#59808f, 0.5); -@define-color wm_bg #002b36; -@define-color wm_bg_unfocused #00313e; -@define-color wm_highlight #003745; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #dc322f; -@define-color wm_button_close_hover_bg #cb4b16; -@define-color wm_button_close_active_bg #dc322f; -@define-color wm_icon_close_bg #002b36; -@define-color wm_button_hover_bg #657b83; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #002b36; -@define-color wm_icon_bg #93a1a1; -@define-color wm_icon_unfocused_bg #657b83; -@define-color wm_icon_hover_bg #93a1a1; -@define-color wm_icon_active_bg #fdf6e3; -@define-color content_view_bg #073642; diff --git a/common/gtk-3.0/3.14/gtk-darker.css b/common/gtk-3.0/3.14/gtk-darker.css deleted file mode 100644 index 1c98822..0000000 --- a/common/gtk-3.0/3.14/gtk-darker.css +++ /dev/null @@ -1,4057 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -GtkPaned-handle-size: 1; - -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: #1e6ea7; - -GtkWidget-visited-link-color: #16527c; - -GtkWidget-focus-padding: 2; - -GtkWidget-focus-line-width: 1; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - -GtkStatusbar-shadow-type: none; - outline-color: rgba(92, 97, 108, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; } - -.background { - color: #5c616c; - background-color: rgba(245, 246, 247, 0.999); } - -*:insensitive { - -gtk-image-effect: dim; } - -.gtkstyle-fallback { - background-color: #F5F6F7; - color: #5c616c; } - .gtkstyle-fallback:prelight { - background-color: white; - color: #5c616c; } - .gtkstyle-fallback:active { - background-color: #d9dde0; - color: #5c616c; } - .gtkstyle-fallback:insensitive { - background-color: #faf6eb; - color: rgba(92, 97, 108, 0.55); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view { - color: #5c616c; - background-color: #fdf6e3; } - .view.dim-label, GtkLabel.view.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .view.subtitle { - color: rgba(92, 97, 108, 0.55); } - .view.dim-label:selected, GtkLabel.view.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, GtkLabel.view.separator:selected:focus, .header-bar .view.subtitle:selected:focus { - color: rgba(253, 246, 227, 0.65); - text-shadow: none; } - -.rubberband { - border: 1px solid #268bd2; - background-color: rgba(38, 139, 210, 0.2); } - -GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator { - color: #5c616c; } - -GtkLabel:insensitive { - color: rgba(92, 97, 108, 0.55); } - -.dim-label, GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .subtitle { - opacity: 0.55; } - -GtkAssistant .sidebar { - background-color: #fdf6e3; - border-top: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #dcdfe3; } - -GtkAssistant.csd .sidebar { - border-top-style: none; } - -GtkAssistant .sidebar GtkLabel { - padding: 6px 12px; } - -GtkAssistant .sidebar GtkLabel.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -GtkTextView { - background-color: #f9f6ed; } - -GtkFlowBox .grid-child { - padding: 3px; - border-radius: 3px; } - GtkFlowBox .grid-child:selected { - outline-offset: -2px; } - -.popover.osd, .osd { - color: #657b83; - border: none; - background-color: rgba(7, 54, 66, 0.95); - background-clip: padding-box; - outline-color: rgba(101, 123, 131, 0.3); - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - .spinner:active { - opacity: 1; - animation: spin 1s linear infinite; } - .spinner:active:insensitive { - opacity: 0.5; } - -.entry { - border: 1px solid; - padding: 5px 8px; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry.image.left { - padding-left: 0; } - .entry.image.right { - padding-right: 0; } - .entry.flat, .entry.flat:focus { - padding: 2px; - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); - border: none; - border-radius: 0; } - .entry:focus { - background-clip: border-box; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(253, 246, 227, 0.55); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.55)); } - .entry:selected, .entry:selected:focus { - background-color: #268bd2; - color: #fdf6e3; } - .entry.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - .linked > .entry:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .linked > .entry:first-child:dir(rtl) { - border-right-style: none; } - .linked > .entry:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; } - .linked > .entry:last-child:dir(rtl) { - border-left-style: solid; } - .entry.warning { - color: #fdf6e3; - border-color: #cb4b16; - background-image: linear-gradient(to bottom, #df8f68); } - .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); - box-shadow: none; } - .entry.warning:selected, .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .entry.error { - color: #fdf6e3; - border-color: #dc322f; - background-image: linear-gradient(to bottom, #e98077); } - .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); - box-shadow: none; } - .entry.error:selected, .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - .entry.image { - color: #7c7f84; } - .linked.vertical > .entry { - border-bottom-color: #f3efe3; - box-shadow: none; } - .linked.vertical > .entry:focus { - border-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:insensitive { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:first-child { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:first-child:focus { - border-bottom-color: #268bd2; - box-shadow: none; } - .linked.vertical > .entry:first-child:insensitive { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:last-child { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .linked.vertical > .entry:last-child:focus { - border-bottom-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:last-child:insensitive { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .osd .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.35)); - background-color: transparent; } - .osd .entry.image, .osd .entry.image:hover { - color: inherit; } - .osd .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, #268bd2); } - .osd .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.2)); } - -GtkSearchEntry.entry { - border-radius: 20px; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -.button { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 5px 8px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(251, 251, 252, 0); - border-color: rgba(101, 123, 131, 0); - transition: none; } - .button.flat:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - .button.flat:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; - -gtk-image-effect: highlight; } - .button:active, .button:checked { - background-clip: border-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; - transition-duration: 50ms; } - .button:active { - color: #5c616c; } - .button:active:hover, .button:checked { - color: #fdf6e3; } - .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; } - .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button:insensitive > GtkLabel { - color: inherit; } - .button:insensitive:active, .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { - color: inherit; } - .button.osd { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(3, 24, 29, 0.95); } - .button.osd.image-button, .header-bar .button.osd.titlebutton, .titlebar .button.osd.titlebutton { - padding: 10px; } - .button.osd:hover { - color: #268bd2; } - .button.osd:active, .button.osd:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .button.osd:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .osd .button:dir(rtl) { - border-radius: 0; - border-right-style: none; - border-left-style: none; } - .osd .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:dir(rtl) { - border-left-style: solid; } - .osd .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd .button:hover, .osd .button:hover:first-child, .osd .button:hover:last-child { - box-shadow: none; } - .osd .button:active, .osd .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd .button.flat:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd .button.flat:hover, .osd .button.flat:hover:first-child, .osd .button.flat:hover:last-child { - box-shadow: none; } - .osd .button.flat:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); - background-image: none; } - .osd .button.flat:active, .osd .button.flat:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .button.suggested-action:active, .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .button.suggested-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.suggested-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .button.destructive-action:active, .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .button.destructive-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.destructive-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - .button.image-button, .header-bar .button.titlebutton, .titlebar .button.titlebutton, - .header-bar.selection-mode .button.titlebutton, .titlebar.selection-mode .button.titlebutton { - padding: 7px; } - .header-bar .button.image-button, .header-bar .button.titlebutton, .header-bar.selection-mode .button.titlebutton, .header-bar .titlebar.selection-mode .button.titlebutton, .titlebar.selection-mode .header-bar .button.titlebutton { - padding: 7px 10px; } - .button.text-button { - padding-left: 16px; - padding-right: 16px; } - .button.text-button.image-button, .header-bar .button.text-button.titlebutton, .titlebar .button.text-button.titlebutton { - padding: 5px 8px; } - .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, .titlebar .button.text-button.titlebutton GtkLabel:first-child { - padding-left: 8px; } - .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, .titlebar .button.text-button.titlebutton GtkLabel:last-child { - padding-right: 8px; } - .stack-switcher > .button { - outline-offset: -3px; } - .stack-switcher > .button > GtkLabel { - 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 { - padding: 5px 10px; } - .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, .titlebar .stack-switcher > .button.titlebutton { - padding: 2px 4px; } - .stack-switcher > .button.needs-attention:active > .label, - .stack-switcher > .button.needs-attention:active > GtkImage, - .stack-switcher > .button.needs-attention:checked > GtkLabel, - .stack-switcher > .button.needs-attention:checked > GtkImage { - animation: none; - background-image: none; } - .stack-switcher > .button.needs-attention > GtkLabel, - .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 4px; } - .stack-switcher > .button.needs-attention > GtkLabel:dir(rtl), - .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { - background-position: left 3px, left 4px; } - .inline-toolbar .button, .inline-toolbar .button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar GtkToolButton > .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .inline-toolbar GtkToolButton > .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { - color: inherit; } - .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { - color: inherit; } - -.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, -.linked > .button:hover, -.linked > .button:active, -.linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4), inset -1px 0 rgba(101, 123, 131, 0.4); } - .inline-toolbar GtkToolButton > .button.flat:active, .osd .button:active, .inline-toolbar .button:active, .linked > .button:active, GtkComboBox.combobox-entry .entry:active, GtkComboBox.combobox-entry .button:active, .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, .linked > GtkComboBox > .button:active:dir(ltr), .inline-toolbar GtkToolButton > .button.flat:checked, .osd .button:checked, .inline-toolbar .button:checked, .linked > .button:checked, GtkComboBox.combobox-entry .entry:checked, GtkComboBox.combobox-entry .button:checked, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked, .linked > GtkComboBox > .button:checked:dir(ltr) { - box-shadow: none; } - .inline-toolbar.toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .inline-toolbar .button:dir(rtl):backdrop, .linked > .button:dir(rtl), - .linked > .button:dir(rtl):hover, - .linked > .button:dir(rtl):active, - .linked > .button:dir(rtl):checked, GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), .primary-toolbar .linked.path-bar > .button:dir(rtl), .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { - border-radius: 0; } - -.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, .primary-toolbar .linked.path-bar > .button:first-child, .header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.4); } - .osd .button:first-child:active, .inline-toolbar .button:first-child:active, .linked > .button:first-child:active, .inline-toolbar GtkToolButton:first-child > .button.flat:active, GtkComboBox.combobox-entry .entry:first-child:active, GtkComboBox.combobox-entry .button:first-child:active, .linked > GtkComboBox:first-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, .osd .button:first-child:checked, .inline-toolbar .button:first-child:checked, .linked > .button:first-child:checked, .inline-toolbar GtkToolButton:first-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:first-child:checked, GtkComboBox.combobox-entry .button:first-child:checked, .linked > GtkComboBox:first-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - -.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, .primary-toolbar .linked.path-bar > .button:last-child, .header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4); } - .osd .button:last-child:active, .inline-toolbar .button:last-child:active, .linked > .button:last-child:active, .inline-toolbar GtkToolButton:last-child > .button.flat:active, GtkComboBox.combobox-entry .entry:last-child:active, GtkComboBox.combobox-entry .button:last-child:active, .linked > GtkComboBox:last-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, .osd .button:last-child:checked, .inline-toolbar .button:last-child:checked, .linked > .button:last-child:checked, .inline-toolbar GtkToolButton:last-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:last-child:checked, GtkComboBox.combobox-entry .button:last-child:checked, .linked > GtkComboBox:last-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { - border-bottom-left-radius: 0; } - -.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, .primary-toolbar .linked.path-bar > .button:only-child, .header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - .osd .button:only-child:active, .inline-toolbar .button:only-child:active, .linked > .button:only-child:active, .inline-toolbar GtkToolButton:only-child > .button.flat:active, GtkComboBox.combobox-entry .entry:only-child:active, GtkComboBox.combobox-entry .button:only-child:active, .linked > GtkComboBox:only-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, .osd .button:only-child:checked, .inline-toolbar .button:only-child:checked, .linked > .button:only-child:checked, .inline-toolbar GtkToolButton:only-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:only-child:checked, GtkComboBox.combobox-entry .button:only-child:checked, .linked > GtkComboBox:only-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, -.linked.vertical > .button:hover, -.linked.vertical > .button:active, -.linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, -.linked.vertical > GtkComboBox > .button { - border-style: solid; - border-bottom-style: none; - border-top-style: none; - border-radius: 0; } - .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, - .linked.vertical > GtkComboBox > .button:hover { - box-shadow: inset 0 -1px rgba(101, 123, 131, 0.4), inset 0 1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:active, .linked.vertical > .button:active, .linked.vertical > GtkComboBoxText > .button:active, - .linked.vertical > GtkComboBox > .button:active, .linked.vertical > .entry:checked, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button:checked, - .linked.vertical > GtkComboBox > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, -.linked.vertical > GtkComboBox:first-child > .button { - border-radius: 3px 3px 0 0; - border-top-style: solid; } - .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, - .linked.vertical > GtkComboBox:first-child > .button:hover { - box-shadow: inset 0 -1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:first-child:active, .linked.vertical > .button:first-child:active, .linked.vertical > GtkComboBoxText:first-child > .button:active, - .linked.vertical > GtkComboBox:first-child > .button:active, .linked.vertical > .entry:first-child:checked, .linked.vertical > .button:first-child:checked, .linked.vertical > GtkComboBoxText:first-child > .button:checked, - .linked.vertical > GtkComboBox:first-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, -.linked.vertical > GtkComboBox:last-child > .button { - border-radius: 0 0 3px 3px; - border-bottom-style: solid; } - .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, - .linked.vertical > GtkComboBox:last-child > .button:hover { - box-shadow: inset 0 1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:last-child:active, .linked.vertical > .button:last-child:active, .linked.vertical > GtkComboBoxText:last-child > .button:active, - .linked.vertical > GtkComboBox:last-child > .button:active, .linked.vertical > .entry:last-child:checked, .linked.vertical > .button:last-child:checked, .linked.vertical > GtkComboBoxText:last-child > .button:checked, - .linked.vertical > GtkComboBox:last-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, -.linked.vertical > GtkComboBox:only-child > .button { - border-radius: 3px; - border-style: solid; } - .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, - .linked.vertical > GtkComboBox:only-child > .button:hover { - box-shadow: none; } - .linked.vertical > .entry:only-child:active, .linked.vertical > .button:only-child:active, .linked.vertical > GtkComboBoxText:only-child > .button:active, - .linked.vertical > GtkComboBox:only-child > .button:active, .linked.vertical > .entry:only-child:checked, .linked.vertical > .button:only-child:checked, .linked.vertical > GtkComboBoxText:only-child > .button:checked, - .linked.vertical > GtkComboBox:only-child > .button:checked { - box-shadow: none; } - -.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, -.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, -.app-notification.frame .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -/* menu buttons */ -.menuitem.button.flat { - transition: none; - outline-offset: -1px; - border-radius: 2px; } - .menuitem.button.flat:hover { - background-color: #edeff0; } - .menuitem.button.flat:checked { - color: #5c616c; } - -*:link, .button:link, .button:visited { - color: #1e6ea7; } - *:link:visited, .button:visited { - color: #16527c; } - *:selected *:link:visited, *:selected .button:visited:link, *:selected .button:visited { - color: #a7cbdc; } - *:link:hover, .button:hover:link, .button:hover:visited { - color: #268bd2; } - *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { - color: #e8ebe1; } - *:link:active, .button:active:link, .button:active:visited { - color: #1e6ea7; } - *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { - color: #d2e1e0; } - *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { - color: #d2e1e0; } - -.spinbutton { - border-radius: 3px; } - .spinbutton .button { - background-image: none; - border: 1px solid rgba(220, 223, 227, 0.6); - border-style: none none none solid; - color: #646872; - border-radius: 0; - box-shadow: none; } - .spinbutton .button:dir(rtl) { - border-style: none solid none none; } - .spinbutton .button:first-child { - color: red; } - .spinbutton .button:insensitive { - color: rgba(92, 97, 108, 0.55); } - .spinbutton .button:active { - background-color: #268bd2; - color: #fdf6e3; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - border-radius: 2px 2px 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:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; } - GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: #268bd2; - border-radius: 0; - box-shadow: none; } - -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; } - GtkComboBox > .button { - padding-top: 3px; - padding-bottom: 3px; } - GtkComboBox:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { - -GtkWidget-wide-separators: true; } - GtkComboBox.combobox-entry .entry:dir(ltr) { - border-right-style: none; } - GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: 1px 0 #268bd2; } - GtkComboBox.combobox-entry .entry:dir(rtl) { - border-left-style: none; } - GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: -1px 0 #268bd2; } - GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 #657b83; } - GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.55); } - GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 #657b83; } - GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.55); } - -.toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #F5F6F7; } - .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.85); } - -.primary-toolbar { - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #002b36, rgba(0, 15, 18, 0.97)) 1 0 1 0; } - -.inline-toolbar { - background-color: #edeef0; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -.search-bar { - background-color: #F5F6F7; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 0 1px; - padding: 3px; } - -.action-bar { - background-color: #edeef0; } - -.header-bar { - padding: 5px 5px 4px 5px; - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: #001b22; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; } - .csd .header-bar { - background-color: rgba(0, 43, 54, 0.97); - border-color: rgba(0, 27, 34, 0.97); } - .header-bar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .header-bar .title { - padding-left: 12px; - padding-right: 12px; } - .header-bar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .header-bar.selection-mode, .header-bar.titlebar.selection-mode { - color: #fdf6e3; - background-color: rgba(38, 139, 210, 0.95); - border-color: rgba(35, 128, 193, 0.95); - box-shadow: none; } - .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { - background-color: rgba(38, 139, 210, 0.95); - color: rgba(253, 246, 227, 0.6); } - .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.05); - border-color: rgba(253, 246, 227, 0.5); } - .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { - color: rgba(38, 139, 210, 0.95); - outline-color: rgba(38, 139, 210, 0.25); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { - color: rgba(38, 139, 210, 0.35); - background-color: rgba(253, 246, 227, 0.15); - border-color: rgba(253, 246, 227, 0.15); } - .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { - background-color: #268bd2; } - .tiled .header-bar, .tiled .header-bar:backdrop, - .maximized .header-bar, .maximized .header-bar:backdrop { - border-radius: 0; } - .maximized .header-bar { - background-color: #002b36; - border-color: #001b22; } - .header-bar.default-decoration, - .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, - .csd .header-bar.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: #002b36; - border-bottom-width: 0; } - .maximized .header-bar.default-decoration, .maximized - .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized - .csd .header-bar.default-decoration:backdrop { - background-color: #002b36; } - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: 3px 3px 0 0; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: inset 0 1px rgba(0, 55, 69, 0.97); } - .csd .titlebar { - background-color: rgba(0, 43, 54, 0.97); } - .titlebar:backdrop { - color: rgba(89, 128, 143, 0.5); - background-color: #00313e; } - .csd .titlebar:backdrop { - background-color: rgba(0, 49, 62, 0.97); } - .maximized .titlebar { - background-color: #002b36; } - .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { - background-color: #00313e; } - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { - background-color: transparent; } - -.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, -.header-bar > GtkBox > .separator.vertical, GtkPlacesSidebar.sidebar -.header-bar > GtkBox > .vertical.view.separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(89, 128, 143, 0) 25%, rgba(89, 128, 143, 0.15) 25%, rgba(89, 128, 143, 0.15) 75%, rgba(89, 128, 143, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, - .header-bar > GtkBox > .separator.vertical:backdrop, GtkPlacesSidebar.sidebar - .header-bar > GtkBox > .vertical.view.separator:backdrop { - opacity: 0.6; } - -.primary-toolbar .entry, .header-bar .entry { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { - color: inherit; } - .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { - opacity: 0.85; } - .primary-toolbar .entry:focus, .header-bar .entry:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - background-clip: padding-box; } - .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { - color: #fdf6e3; } - .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar .entry.warning, .header-bar .entry.warning { - color: white; - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(125, 63, 34, 0.988)); } - .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); } - .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar .entry.error, .header-bar .entry.error { - color: white; - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(135, 47, 50, 0.988)); } - .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); } - .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar .button, .header-bar .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - outline-offset: -3px; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:backdrop, .header-bar .button:backdrop { - opacity: 0.7; } - .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { - color: inherit; } - .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.primary-toolbar .linked > .button, .header-bar .linked > .button { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { - box-shadow: none; } - -.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - background-color: rgba(0, 193, 243, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .primary-toolbar .linked.stack-switcher > .button:insensitive, .header-bar .linked.stack-switcher > .button:insensitive, .primary-toolbar .linked.path-bar > .button:insensitive, .header-bar .linked.path-bar > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37), inset -1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked { - box-shadow: none; } - -.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, .primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, .primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { - color: #fdf6e3; } - .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { - background-color: rgba(253, 246, 227, 0.1); - border-color: transparent; } - .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { - color: rgba(253, 246, 227, 0.4); } - -.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(89, 128, 143, 0.8); } - .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { - background-color: rgba(89, 128, 143, 0.05); - border-color: transparent; } - .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(89, 128, 143, 0.5); } - .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { - background-color: rgba(0, 0, 0, 0.1); } - -.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(89, 128, 143, 0.2); } - -.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { - color: inherit; } - .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr), .header-bar GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 transparent; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl), .header-bar GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 transparent; } - -.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { - opacity: 0.75; } - -.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.37)); } - .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.27)); } - -.primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, #005469); - border-color: rgba(0, 0, 0, 0.67); } - .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { - background-image: linear-gradient(to bottom, #006883); - border-color: rgba(0, 0, 0, 0.67); } - .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 72, 90, 0.991)); - border-color: rgba(0, 0, 0, 0.67); } - -.path-bar .button { - padding: 5px 10px; } - .path-bar .button:first-child { - padding-left: 10px; } - .path-bar .button:last-child { - padding-right: 10px; } - .path-bar .button:only-child { - padding-left: 14px; - padding-right: 14px; } - .path-bar .button GtkLabel:last-child { - padding-left: 4px; } - .path-bar .button GtkLabel:first-child { - padding-right: 4px; } - .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { - padding-right: 0; - padding-left: 0; } - .path-bar .button GtkImage { - padding-top: 2px; - padding-bottom: 1px; } - -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-color: rgba(92, 97, 108, 0.2); } - GtkTreeView.view.dnd { - border-style: solid none; - border-width: 1px; - border-color: #41769f; } - GtkTreeView.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #adaca8; } - GtkTreeView.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - GtkTreeView.view.expander:hover { - color: #5c616c; } - GtkTreeView.view.expander:selected { - color: #bdd6de; } - GtkTreeView.view.expander:selected:hover { - color: #fdf6e3; } - GtkTreeView.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - GtkTreeView.view.progressbar, GtkTreeView.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-image: linear-gradient(to bottom, #268bd2); } - GtkTreeView.view.progressbar:selected, GtkTreeView.view.progressbar:selected:focus, GtkTreeView.view.progressbar:focus:selected, GtkTreeView.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-image: linear-gradient(to bottom, #fdf6e3); } - GtkTreeView.view.trough { - color: #5c616c; - background-image: linear-gradient(to bottom, #657b83); - border-radius: 3px; - border-width: 0; } - GtkTreeView.view.trough:selected, GtkTreeView.view.trough:selected:focus { - color: #fdf6e3; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); - border-radius: 3px; - border-width: 0; } - -column-header .button { - color: #7c7f84; - background-color: #fdf6e3; } - column-header .button:hover { - color: #268bd2; - box-shadow: none; - transition: none; } - column-header .button:active { - color: #5c616c; - transition: none; } - -column-header:last-child .button, column-header:last-child.button { - border-right-style: none; - border-image: none; } - -column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { - transition: none; - color: #268bd2; - box-shadow: inset 1px 1px 0 1px #268bd2, inset -1px 0 0 1px #268bd2, inset 1px 1px #fdf6e3, inset -1px 0 #fdf6e3; } - -column-header .button, column-header .button:hover, column-header .button:active { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; } - column-header .button:active, column-header .button:hover { - background-color: #fdf6e3; } - column-header .button:active:hover { - color: #5c616c; } - column-header .button:insensitive { - border-color: #F5F6F7; - background-image: none; } - -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #002b36; - color: rgba(89, 128, 143, 0.8); } - .menubar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .menubar > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - .menubar > .menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - .menubar > .menuitem:insensitive { - color: rgba(89, 128, 143, 0.2); - border-color: transparent; } - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; } - .csd .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - .menu .menuitem { - padding: 5px; } - .menu .menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - .menu .menuitem:insensitive { - color: rgba(92, 97, 108, 0.55); } - .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator { - color: rgba(253, 246, 227, 0); } - .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 #ede7d7; } - .menu.button.bottom { - border-top: 1px solid #ede7d7; } - .menu.button:hover { - background-color: #ede7d7; } - .menu.button:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent; } - -.csd .popup { - border-radius: 2px; } - -.menuitem .accelerator { - color: alpha(currentColor,0.55); } - -.popover { - margin: 10px; - padding: 2px; - border: 1px solid #cdd2d7; - border-radius: 3px; - background-clip: border-box; - background-color: #fdf6e3; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } - .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { - color: rgba(253, 246, 227, 0); } - .popover > .list, - .popover > .view, - .popover > .toolbar, - .popover > .inline-toolbar, - .popover.osd > .toolbar, - .popover.osd > .inline-toolbar { - border-style: none; - background-color: transparent; } - -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - .entry.cursor-handle.top, - .cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - .entry.cursor-handle.bottom, - .cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -.notebook { - padding: 0; - background-color: #fdf6e3; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -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.frame { - border: 1px solid #dcdfe3; } - .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.header { - background-color: #F5F6F7; } - .notebook.header.frame { - border: 0px solid #dcdfe3; } - .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.top { - box-shadow: inset 0 -1px #dcdfe3; } - .notebook.header.bottom { - box-shadow: inset 0 1px #dcdfe3; } - .notebook.header.right { - box-shadow: inset 1px 0 #dcdfe3; } - .notebook.header.left { - box-shadow: inset -1px 0 #dcdfe3; } - .notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - outline-offset: 0; } - .notebook tab.top, .notebook tab.bottom { - padding: 4px 15px; } - .notebook tab.left, .notebook tab.right { - padding: 4px 15px; } - .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { - padding-left: 12px; - padding-right: 12px; } - .notebook tab.reorderable-page.top, .notebook tab.top { - padding-top: 6px; - border-radius: 3.5px 2px 0 0; - border-width: 0; - border-top-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #fdf6e3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom, .notebook tab.bottom { - padding-bottom: 6px; - border-radius: 0 0 2px 3.5px; - border-width: 0; - border-bottom-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 -1px #fdf6e3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right, .notebook tab.right { - padding-right: 17px; - border-radius: 0 3.5px 3.5px 0; - border-width: 0; - border-right-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #fdf6e3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left, .notebook tab.left { - padding-left: 17px; - border-radius: 3.5px 0 0 3.5px; - border-width: 0; - border-left-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #fdf6e3; } - .notebook tab GtkLabel { - padding: 0 2px; - color: rgba(92, 97, 108, 0.55); } - .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(92, 97, 108, 0.775); } - .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { - color: #5c616c; } - .notebook tab .button { - padding: 0; - color: #92959d; } - .notebook tab .button:hover { - color: #ff4d4d; } - .notebook tab .button:active { - color: #268bd2; } - .notebook tab .button > GtkImage { - padding: 2px; } - .notebook.arrow { - color: rgba(92, 97, 108, 0.55); } - .notebook.arrow:hover { - color: rgba(92, 97, 108, 0.775); } - .notebook.arrow:active { - color: #5c616c; } - .notebook.arrow:insensitive { - color: rgba(92, 97, 108, 0.25); } - -.scrollbar { - background-clip: padding-box; - background-image: none; - border-style: solid; - -GtkRange-trough-border: 0; - -GtkScrollbar-has-backward-stepper: false; - -GtkScrollbar-has-forward-stepper: false; - -GtkRange-slider-width: 13; - -GtkScrollbar-min-slider-length: 42; - -GtkRange-stepper-spacing: 0; - -GtkRange-trough-under-steppers: 1; } - .scrollbar .button { - border: none; } - .scrollbar.trough { - background-color: #fdf4de; - border-left: 1px solid #dcdfe3; } - .scrollbar.trough.horizontal { - border-left: none; - border-top: 1px solid #dcdfe3; } - .scrollbar.slider { - border-radius: 21px 20px 20px 21px; - border: 3px solid transparent; - border-left-width: 4px; - background-color: #b8babf; } - .scrollbar.slider.horizontal { - border-radius: 21px 21px 20px 20px; - border-left-width: 3px; - border-top-width: 4px; } - .scrollbar.slider:hover { - background-color: #cfd1d4; } - .scrollbar.slider:prelight:active, .scrollbar.slider:active { - background-color: #268bd2; } - .scrollbar.slider.fine-tune { - border-width: 4px; } - .scrollbar.slider.fine-tune:prelight:active { - background-color: #268bd2; } - .scrollbar.slider:insensitive { - background-color: transparent; } - -.scrollbars-junction, -.scrollbars-junction.frame { - border-color: transparent; - background-color: #fdf4de; } - -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 41; - outline-color: transparent; } - GtkSwitch.trough, GtkSwitch.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; } - GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { - background-position: left center; } - -GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough, -.list-row:selected GtkSwitch.trough, -GtkInfoBar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -.header-bar GtkSwitch.trough, -.primary-toolbar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } - -GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active, -.list-row:selected GtkSwitch.trough:active, -GtkInfoBar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -.header-bar GtkSwitch.trough:active, -.primary-toolbar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } - -GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:insensitive, -.list-row:selected GtkSwitch.trough:insensitive, -GtkInfoBar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:insensitive, -.primary-toolbar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } - -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active:insensitive, -.list-row:selected GtkSwitch.trough:active:insensitive, -GtkInfoBar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:active:insensitive, -.primary-toolbar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } - -.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check, -GtkFileChooserDialog .dialog-vbox > .frame .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -.menu .menuitem.check:hover, -GtkTreeView.view.check:selected, -.list-row:selected .check, -GtkInfoBar .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.check:insensitive:hover, -GtkTreeView.view.check:insensitive:selected, -.list-row:selected .check:insensitive, -GtkInfoBar .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -.menu .menuitem.check:inconsistent:hover, -GtkTreeView.view.check:inconsistent:selected, -.list-row:selected .check:inconsistent, -GtkInfoBar .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.check:inconsistent:insensitive:hover, -GtkTreeView.view.check:inconsistent:insensitive:selected, -.list-row:selected .check:inconsistent:insensitive, -GtkInfoBar .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -.menu .menuitem.check:checked:hover, -GtkTreeView.view.check:checked:selected, -.list-row:selected .check:checked, -GtkInfoBar .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -.menu .menuitem.check:checked:insensitive:hover, -GtkTreeView.view.check:checked:insensitive:selected, -.list-row:selected .check:checked:insensitive, -GtkInfoBar .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio, -GtkFileChooserDialog .dialog-vbox > .frame .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -.menu .menuitem.radio:hover, -GtkTreeView.view.radio:selected, -.list-row:selected .radio, -GtkInfoBar .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:insensitive:hover, -GtkTreeView.view.radio:insensitive:selected, -.list-row:selected .radio:insensitive, -GtkInfoBar .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:hover, -GtkTreeView.view.radio:inconsistent:selected, -.list-row:selected .radio:inconsistent, -GtkInfoBar .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:insensitive:hover, -GtkTreeView.view.radio:inconsistent:insensitive:selected, -.list-row:selected .radio:inconsistent:insensitive, -GtkInfoBar .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -.menu .menuitem.radio:checked:hover, -GtkTreeView.view.radio:checked:selected, -.list-row:selected .radio:checked, -GtkInfoBar .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:checked:insensitive:hover, -GtkTreeView.view.radio:checked:insensitive:selected, -.list-row:selected .radio:checked:insensitive, -GtkInfoBar .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -GtkIconView.view.check, -GtkFlowBox.view.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); - background-color: transparent; } - -GtkIconView.view.check:checked, -GtkFlowBox.view.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-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: rgba(92, 97, 108, 0.55); } - -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; } - .scale.trough { - margin: 5px; } - .scale.fine-tune.trough { - border-radius: 5px; - margin: 3px; } - .scale.slider { - background-clip: border-box; - background-image: linear-gradient(to bottom, #fbfbfc); - border: 1px solid rgba(45, 55, 59, 0.5); - border-radius: 50%; - box-shadow: none; } - .scale.slider:hover { - background-image: linear-gradient(to bottom, white); - border-color: rgba(45, 55, 59, 0.5); } - .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #f9f6ec); - border-color: rgba(45, 55, 59, 0.3); } - .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .osd .scale.slider { - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.95)); - border-color: #268bd2; } - .osd .scale.slider:hover { - background-image: linear-gradient(to bottom, #268bd2); } - .osd .scale.slider:active { - background-image: linear-gradient(to bottom, #1e6ea7); - border-color: #1e6ea7; } - .menu .menuitem:hover .scale.slider, - .list-row:selected .scale.slider, - GtkInfoBar .scale.slider { - background-image: linear-gradient(to bottom, #fdf6e3); - border-color: #fdf6e3; } - .menu .menuitem:hover .scale.slider:hover, - .list-row:selected .scale.slider:hover, - GtkInfoBar .scale.slider:hover { - background-image: linear-gradient(to bottom, #dde6e0); - border-color: #dde6e0; } - .menu .menuitem:hover .scale.slider:active, - .list-row:selected .scale.slider:active, - GtkInfoBar .scale.slider:active { - background-image: linear-gradient(to bottom, #92c1db); - border-color: #92c1db; } - .menu .menuitem:hover .scale.slider:insensitive, - .list-row:selected .scale.slider:insensitive, - GtkInfoBar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); - border-color: #9cc6db; } - .scale.trough { - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, #657b83); } - .scale.trough.highlight { - background-image: linear-gradient(to bottom, #268bd2); } - .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, rgba(38, 139, 210, 0.55)); } - .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(101, 123, 131, 0.55)); } - .osd .scale.trough { - background-image: linear-gradient(to bottom, rgba(10, 80, 98, 0.95)); - outline-color: rgba(101, 123, 131, 0.2); } - .osd .scale.trough.highlight { - background-image: none; - background-image: linear-gradient(to bottom, #268bd2); } - .menu .menuitem:hover .scale.trough, - .list-row:selected .scale.trough, - GtkInfoBar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } - .menu .menuitem:hover .scale.trough.highlight, - .list-row:selected .scale.trough.highlight, - GtkInfoBar .scale.trough.highlight { - background-image: linear-gradient(to bottom, #fdf6e3); } - .menu .menuitem:hover .scale.trough.highlight:insensitive, - .list-row:selected .scale.trough.highlight:insensitive, - GtkInfoBar .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); } - .menu .menuitem:hover .scale.trough:insensitive, - .list-row:selected .scale.trough:insensitive, - GtkInfoBar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -GtkProgressBar { - padding: 0; - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - GtkProgressBar.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; } - -.progressbar { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - .progressbar.osd { - background-color: #268bd2; } - .list-row:selected .progressbar, - GtkInfoBar .progressbar { - background-color: #fdf6e3; } - -.osd .scale.progressbar { - background-color: #268bd2; } - -GtkProgressBar.trough, .level-bar.trough { - border: none; - border-radius: 3px; - background-color: #657b83; } - GtkProgressBar.trough.osd, .osd.level-bar.trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, - GtkInfoBar GtkProgressBar.trough, - GtkInfoBar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.2); } - -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; } - GtkLevelBar.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; } - -.level-bar.trough { - padding: 3px; - border-radius: 4px; } - -.level-bar.fill-block { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - .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 { - border-color: #859900; - background-color: #859900; } - .level-bar.fill-block.level-low { - border-color: #cb4b16; - background-color: #cb4b16; } - .level-bar.fill-block.empty-fill-block { - background-color: rgba(92, 97, 108, 0.2); - border-color: rgba(92, 97, 108, 0.2); } - -.frame { - border: 1px solid #dcdfe3; - padding: 0; } - .frame.flat { - border-style: none; } - .frame.action-bar { - padding: 6px; - border-width: 1px 0 0; } - -GtkScrolledWindow GtkViewport.frame { - border-style: none; } - -.separator, GtkPlacesSidebar.sidebar .view.separator { - color: rgba(0, 0, 0, 0.1); } - GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, - GtkFontButton .separator, - GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .view.separator, - GtkFileChooserButton .separator.vertical, - GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFileChooserButton .vertical.view.separator, - GtkFontButton .separator.vertical, - GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .vertical.view.separator { - -GtkWidget-wide-separators: true; } - -.list, .list-row { - background-color: #fdf6e3; - border-color: #dcdfe3; } - -.list-row, -.grid-child { - padding: 2px; } - -.list-row.button { - background-color: transparent; - border-style: none; - border-radius: 0; - box-shadow: none; } - .list-row.button:hover { - background-color: rgba(0, 0, 0, 0.05); } - .list-row.button:active { - color: #5c616c; } - .list-row.button:selected:active { - color: #fdf6e3; } - .list-row.button:selected:hover { - background-color: #227dbd; } - .list-row.button:selected:insensitive { - color: rgba(253, 246, 227, 0.7); - background-color: rgba(38, 139, 210, 0.7); } - .list-row.button:selected:insensitive GtkLabel { - color: inherit; } - -.list-row, list-row.button { - transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .list-row:hover, list-row.button:hover { - transition: none; } - -.app-notification, -.app-notification.frame { - padding: 10px; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: rgba(2, 16, 20, 0.95); } - .app-notification .button, - .app-notification.frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .app-notification .button.flat, - .app-notification.frame .button.flat { - border-color: rgba(38, 139, 210, 0); } - .app-notification .button:hover, - .app-notification.frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .app-notification .button:active, .app-notification .button:checked, - .app-notification.frame .button:active, - .app-notification.frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification .button:insensitive, - .app-notification.frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - .expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - .expander:hover { - color: #aaaeb7; } - .expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GtkCalendar { - color: #5c616c; - border: 1px solid #dcdfe3; - border-radius: 3px; - padding: 2px; } - GtkCalendar:selected { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 1.5px; } - GtkCalendar.header { - color: #5c616c; - border: none; - border-radius: 0; } - GtkCalendar.button, GtkCalendar.button:focus { - color: rgba(92, 97, 108, 0.45); - border-color: transparent; - background-color: transparent; - background-image: none; } - GtkCalendar.button:hover, GtkCalendar.button:focus:hover { - color: #5c616c; } - GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { - color: rgba(92, 97, 108, 0.55); - background-color: transparent; - background-image: none; } - GtkCalendar.highlight { - color: alpha(currentColor,0.55); } - -.message-dialog .dialog-action-area .button { - padding: 8px; } - -.message-dialog { - -GtkDialog-button-spacing: 0; } - .message-dialog .titlebar { - background-color: rgba(0, 43, 54, 0.97); - border-bottom: 1px solid rgba(0, 15, 18, 0.97); } - .message-dialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - .message-dialog.csd .dialog-action-area .button { - padding: 8px; - border-radius: 0; } - .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 { - border-right-style: none; - border-bottom-style: none; } - .message-dialog.csd .dialog-action-area .button:last-child { - border-bottom-right-radius: 3px; } - .message-dialog.csd .dialog-action-area .button:first-child { - border-left-style: none; - border-bottom-left-radius: 3px; } - -GtkFileChooserDialog .search-bar { - background-color: #F5F6F7; - border-color: #dcdfe3; - box-shadow: none; } - -GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #dcdfe3; } - -.sidebar { - border: none; - background-color: #fbfbfc; } - .sidebar .scrollbar.trough { - background-color: transparent; - border-width: 2px; - border-color: transparent; } - .sidebar:selected { - background-color: #268bd2; } - -GtkPlacesSidebar.sidebar .view { - color: #5c616c; - background-color: transparent; } - GtkPlacesSidebar.sidebar .view:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.sidebar-item { - padding: 10px 4px; } - .sidebar-item > GtkLabel { - padding-left: 6px; - padding-right: 6px; } - .sidebar-item.needs-attention > GtkLabel { - background-size: 6px 6px, 0 0; } - -GtkPaned { - margin: 0 8px 8px 0; } - GtkPaned:dir(rtl) { - margin-right: 0; - margin-left: 8px; } - -.pane-separator { - background-image: linear-gradient(to bottom, #dcdfe3); } - -GtkInfoBar { - border-style: none; } - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: #268bd2; - color: #fdf6e3; } - -.list-row:selected .button, GtkInfoBar .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - .list-row:selected .flat.button, GtkInfoBar .flat.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .list-row:selected .button:hover, GtkInfoBar .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.2); } - .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.2); } - -.tooltip { - color: #657b83; - border-radius: 2px; } - .tooltip.background { - background-color: rgba(12, 92, 112, 0.95); - background-clip: padding-box; } - .tooltip.window-frame.csd { - background-color: transparent; } - -.tooltip * { - padding: 4px; - background-color: transparent; - color: inherit; } - -GtkColorSwatch { - border: none; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.4); } - GtkColorSwatch.color-light:hover { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4)); } - GtkColorSwatch.color-dark:hover { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } - GtkColorSwatch:hover { - border-color: rgba(0, 0, 0, 0.5); } - GtkColorSwatch.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - GtkColorSwatch.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; } - GtkColorSwatch.left, GtkColorSwatch:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - GtkColorSwatch.right, GtkColorSwatch:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } - GtkColorSwatch:only-child { - border-radius: 3px; } - GtkColorSwatch.color-active-badge { - border-width: 2px; } - GtkColorSwatch.color-active-badge:hover { - background-image: none; } - GtkColorSwatch.color-active-badge.color-light, GtkColorSwatch.color-active-badge.color-light:hover { - color: rgba(0, 0, 0, 0.3); - border-color: rgba(0, 0, 0, 0.3); } - GtkColorSwatch.color-active-badge.color-dark, GtkColorSwatch.color-active-badge.color-dark:hover { - color: rgba(255, 255, 255, 0.5); - border-color: rgba(255, 255, 255, 0.5); } - -GtkColorChooserWidget #add-color-button { - border-color: #e8ebed; - background-color: #e8ebed; - color: #F5F6F7; - box-shadow: none; } - GtkColorChooserWidget #add-color-button:hover { - border-color: #dcdfe3; - background-color: #dcdfe3; } - -GtkColorButton.button { - padding: 5px; } - GtkColorButton.button GtkColorSwatch { - border-radius: 0; } - -.scale-popup .button { - padding: 6px; } - .scale-popup .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - -GtkVolumeButton.button { - padding: 8px; } - -.touch-selection, -.context-menu { - font: initial; } - -.monospace { - font: Monospace; } - -.overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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; } - -.window-frame { - border-radius: 3px 3px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.97), 0 8px 8px 0 rgba(0, 0, 0, 0.2); - margin: 10px; } - .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.87), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } - .window-frame.tiled { - border-radius: 0; } - .window-frame.popup { - box-shadow: none; - border-radius: 0; } - .window-frame.csd.popup, .window-frame.csd.menu { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.message-dialog { - border-radius: 3px; } - -.header-bar.default-decoration .button.titlebutton, .titlebar.default-decoration .button.titlebutton, -.header-bar.selection-mode.default-decoration .button.titlebutton, .titlebar.selection-mode.default-decoration .button.titlebutton { - padding-top: 0px; - padding-bottom: 0px; } - -.header-bar .button.titlebutton, .titlebar .button.titlebutton, -.header-bar.selection-mode .button.titlebutton, .titlebar.selection-mode .button.titlebutton { - padding: 8px 4px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); - color: transparent; - background-position: center; - background-repeat: no-repeat; } - .header-bar .button.titlebutton:backdrop, .titlebar .button.titlebutton:backdrop, - .header-bar.selection-mode .button.titlebutton:backdrop, .titlebar.selection-mode .button.titlebutton:backdrop { - opacity: 1; } - -.header-bar .right .button.titlebutton:nth-last-child(3), -.header-bar .right:dir(rtl) .button.titlebutton:nth-child(3), -.header-bar .left .button.titlebutton:nth-child(3), -.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar .right .button.titlebutton:nth-last-child(3), -.titlebar .right:dir(rtl) .button.titlebutton:nth-child(3), -.titlebar .left .button.titlebutton:nth-child(3), -.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3), -.header-bar.selection-mode .right .button.titlebutton:nth-last-child(3), -.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), -.header-bar.selection-mode .left .button.titlebutton:nth-child(3), -.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3), -.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), -.titlebar.selection-mode .left .button.titlebutton:nth-child(3), -.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3) { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-dark.png"), url("assets/titlebutton-minimize-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(3):hover, .header-bar .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar .left .button.titlebutton:nth-child(3):hover, - .header-bar .left .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(3):hover, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar .left .button.titlebutton:nth-child(3):hover, - .titlebar .left .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover-dark.png"), url("assets/titlebutton-minimize-hover-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(3):active:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .header-bar .left .button.titlebutton:nth-child(3):active:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar .right .button.titlebutton:nth-last-child(3):active:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .titlebar .left .button.titlebutton:nth-child(3):active:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active-dark.png"), url("assets/titlebutton-minimize-active-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(3):backdrop, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .header-bar .left .button.titlebutton:nth-child(3):backdrop, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .titlebar .left .button.titlebutton:nth-child(3):backdrop, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop-dark.png"), url("assets/titlebutton-minimize-backdrop-dark@2.png")); } - -.header-bar .right .button.titlebutton:nth-last-child(2), -.header-bar .right:dir(rtl) .button.titlebutton:nth-child(2), -.header-bar .left .button.titlebutton:nth-child(2), -.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar .right .button.titlebutton:nth-last-child(2), -.titlebar .right:dir(rtl) .button.titlebutton:nth-child(2), -.titlebar .left .button.titlebutton:nth-child(2), -.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2), -.header-bar.selection-mode .right .button.titlebutton:nth-last-child(2), -.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), -.header-bar.selection-mode .left .button.titlebutton:nth-child(2), -.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2), -.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), -.titlebar.selection-mode .left .button.titlebutton:nth-child(2), -.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2) { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-dark.png"), url("assets/titlebutton-maximize-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(2):hover, .header-bar .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar .left .button.titlebutton:nth-child(2):hover, - .header-bar .left .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(2):hover, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar .left .button.titlebutton:nth-child(2):hover, - .titlebar .left .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover-dark.png"), url("assets/titlebutton-maximize-hover-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(2):active:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .header-bar .left .button.titlebutton:nth-child(2):active:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar .right .button.titlebutton:nth-last-child(2):active:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .titlebar .left .button.titlebutton:nth-child(2):active:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active-dark.png"), url("assets/titlebutton-maximize-active-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(2):backdrop, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .header-bar .left .button.titlebutton:nth-child(2):backdrop, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .titlebar .left .button.titlebutton:nth-child(2):backdrop, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop-dark.png"), url("assets/titlebutton-maximize-backdrop-dark@2.png")); } - -.header-bar .right .button.titlebutton:last-child, -.header-bar .right:dir(rtl) .button.titlebutton:first-child, -.header-bar .left .button.titlebutton:first-child, -.header-bar .left:dir(rtl) .button.titlebutton:last-child, .titlebar .right .button.titlebutton:last-child, -.titlebar .right:dir(rtl) .button.titlebutton:first-child, -.titlebar .left .button.titlebutton:first-child, -.titlebar .left:dir(rtl) .button.titlebutton:last-child, -.header-bar.selection-mode .right .button.titlebutton:last-child, -.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, -.header-bar.selection-mode .left .button.titlebutton:first-child, -.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child, .titlebar.selection-mode .right .button.titlebutton:last-child, -.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, -.titlebar.selection-mode .left .button.titlebutton:first-child, -.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child { - background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } - .header-bar .right .button.titlebutton:last-child:hover, .header-bar .right .button.titlebutton:last-child:backdrop:hover, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:hover, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .header-bar .left .button.titlebutton:first-child:hover, - .header-bar .left .button.titlebutton:first-child:backdrop:hover, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:hover, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar .right .button.titlebutton:last-child:hover, .titlebar .right .button.titlebutton:last-child:backdrop:hover, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:hover, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .titlebar .left .button.titlebutton:first-child:hover, - .titlebar .left .button.titlebutton:first-child:backdrop:hover, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:hover, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .right .button.titlebutton:last-child:hover, - .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left .button.titlebutton:first-child:hover, - .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left .button.titlebutton:first-child:hover, - .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } - .header-bar .right .button.titlebutton:last-child:active:hover, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .header-bar .left .button.titlebutton:first-child:active:hover, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar .right .button.titlebutton:last-child:active:hover, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .titlebar .left .button.titlebutton:first-child:active:hover, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .right .button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left .button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:active:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left .button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } - .header-bar .right .button.titlebutton:last-child:backdrop, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .header-bar .left .button.titlebutton:first-child:backdrop, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar .right .button.titlebutton:last-child:backdrop, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .titlebar .left .button.titlebutton:first-child:backdrop, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop, - .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } - -.header-bar .left GtkMenuButton.button.titlebutton:first-child, -.header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, -.header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, -.header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, .titlebar .left GtkMenuButton.button.titlebutton:first-child, -.titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, -.titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, -.titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child { - padding: 4px 6px 4px 6px; - color: rgba(89, 128, 143, 0.8); } - .header-bar .left GtkMenuButton.button.titlebutton:first-child, .header-bar .left GtkMenuButton.button.titlebutton:first-child:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:backdrop, .header-bar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child, .titlebar .left GtkMenuButton.button.titlebutton:first-child:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:backdrop, .titlebar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover { - background-image: none; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .header-bar .left GtkMenuButton.button.titlebutton:first-child:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .header-bar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:checked, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:checked, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked, .titlebar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:checked, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:checked, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - -.view:selected, .view:selected:focus, .view:selected:hover, GtkLabel:selected, GtkLabel:selected:focus, GtkLabel:selected:hover, GtkFlowBox .grid-child:selected, .menuitem.button.flat:active, .menuitem.button.flat:selected, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, -GtkEntry.gb-command-bar-entry.entry.flat:focus:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); } - -GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, -ScratchMainWindow .notebook tab.reorderable-page.top:active, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, -ScratchMainWindow .notebook tab.top:active, -ScratchMainWindow .notebook tab.top.active-page, -ScratchMainWindow .notebook tab.top.active-page:hover, -EphyNotebook.notebook tab.reorderable-page.top:active, -EphyNotebook.notebook tab.reorderable-page.top.active-page, -EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, -EphyNotebook.notebook tab.top:active, -EphyNotebook.notebook tab.top.active-page, -EphyNotebook.notebook tab.top.active-page:hover, -MidoriNotebook .notebook tab.reorderable-page.top:active, -MidoriNotebook .notebook tab.reorderable-page.top.active-page, -MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, -MidoriNotebook .notebook tab.top:active, -MidoriNotebook .notebook tab.top.active-page, -MidoriNotebook .notebook tab.top.active-page:hover, -TerminalWindow .notebook tab.reorderable-page.top:active, -TerminalWindow .notebook tab.reorderable-page.top.active-page, -TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -TerminalWindow .notebook tab.top:active, -TerminalWindow .notebook tab.top.active-page, -TerminalWindow .notebook tab.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - -TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.top { - padding-top: 7px; - border-top-width: 3px; } - -TerminalWindow .notebook.header.top, -PantheonTerminalPantheonTerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #001b22, inset 0 -1px #dcdfe3; } - -GtkHTML { - background-color: #fdf6e3; - color: #5c616c; } - GtkHTML:active { - color: #fdf6e3; - background-color: #268bd2; } - -SushiFontWidget { - padding: 6px 12px; } - -TerminalWindow .background { - background-color: transparent; } - -TerminalWindow .scrollbar.vertical .slider { - margin-left: 3px; } - -TerminalWindow .scrollbar.trough { - border-width: 0; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { - color: #5c616c; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { - color: #fdf6e3; } - -NautilusNotebook.notebook { - background-color: #fdf6e3; } - NautilusNotebook.notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; } - -NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { - padding: 5px; - box-shadow: none; - background-color: #fdf6e3; } - -NemoWindow EelEditableLabel.entry { - transition: none; } - -NemoWindow .sidebar .frame { - border-width: 0; } - -NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #dcdfe3; } - -NemoWindow .primary-toolbar NemoPathBar.linked > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - background-color: rgba(0, 193, 243, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37), inset -1px 0 rgba(0, 0, 0, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.gedit-headerbar-paned { - color: rgba(0, 27, 34, 0.97); } - -.open-document-selector-listbox-row { - border-bottom: 1px solid #e7e9ec; - padding: 6px 6px 6px 12px; } - .open-document-selector-listbox-row .path-label { - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - .open-document-selector-listbox-row:selected .path-label { - color: rgba(253, 246, 227, 0.7); } - -.gedit-document-panel .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; } - .gedit-document-panel .list-row .button GtkImage { - color: inherit; } - -.gedit-document-panel .prelight-row .button { - color: #92959d; } - -.gedit-document-panel .list-row .button:hover, -.gedit-document-panel .prelight-row .button:hover { - color: #ff4d4d; } - -.gedit-document-panel .prelight-row:selected .button:hover { - color: #ff6666; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; } - .gedit-document-panel .prelight-row:selected .button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel .prelight-row .button:active { - color: #5c616c; } - -.gedit-document-panel-dragged-row { - border: 1px solid #dcdfe3; - background-color: #d9dde0; - color: #5c616c; } - -GeditStatusbar { - border-top: 1px solid #dcdfe3; - background-color: #F5F6F7; } - -GeditStatusMenuButton.button.flat, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton:checked.button.flat { - border-bottom-style: none; - border-radius: 0; } - -GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #dcdfe3; } - -.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { - color: rgba(92, 97, 108, 0.6); - margin: 2px; - padding: 2px; } - -GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { - background-color: #fbfbfc; - padding: 6px; - border-color: #dcdfe3; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image:hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image:hover { - color: inherit; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):insensitive, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { - box-shadow: -1px 0 #268bd2; } - -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; } - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - box-shadow: 1px 0 #268bd2; } - -GbEditorFrame .gb-search-slider { - padding: 2px; } - -GdTaggedEntry { - color: #5c616c; } - -.preferences.sidebar GtkViewport { - border: none; } - -.preferences.sidebar GtkListBox { - background-color: #F5F6F7; } - -.preferences.sidebar GtkListBoxRow { - padding: 10px; } - -GbPreferencesPageLanguage GtkSearchEntry { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - -GbPreferencesPageLanguage GtkScrolledWindow { - border-top-width: 0; } - -GtkBox.gb-command-bar-box { - border: none; - background-color: #073642; } - GtkBox.gb-command-bar-box GtkLabel { - color: #657b83; } - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: #657b83; - background-image: none; - background-color: #073642; - padding: 6px 6px 6px 6px; - border: none; } - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; } - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; } - -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; } - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbViewStack.focused GtkBox.header.notebook { - background-color: #fdf6e3; } - GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook GtkLabel.button.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { - opacity: 1; } - -EphyWindow .floating-bar { - color: #5c616c; } - -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon { - background-color: rgba(92, 97, 108, 0.3); - border-radius: 2px; } - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: #78b9e6; } - -.documents-entry-tag { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover { - color: #fdf6e3; - background-color: #3295da; } - .documents-entry-tag:active { - color: #fdf6e3; - background-color: #2380c1; } - .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; } - .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { - color: rgba(253, 246, 227, 0.7); } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -TotemGrilo.vertical GdMainView.frame { - border-width: 0; } - -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { - background-color: #268bd2; } - -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; } - -.gnome-panel-menu-bar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: #657b83; - background-image: linear-gradient(to bottom, rgba(5, 36, 44, 0.95)); } - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: #657b83; } - -PanelApplet .button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); - border-color: rgba(0, 0, 0, 0.17); } - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: rgba(0, 0, 0, 0.25); - border-radius: 0; - border-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -PanelApplet:hover { - color: white; } - -PanelApplet:active, -PanelApplet:hover:active { - color: #268bd2; } - -WnckPager { - color: #333e42; } - WnckPager:selected { - color: #268bd2; } - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; } - -ClockBox { - color: #657b83; } - -.xfce4-panel.panel { - background-color: rgba(5, 36, 44, 0.95); - text-shadow: none; - icon-shadow: none; } - .xfce4-panel.panel .button.flat { - color: #657b83; - background-color: rgba(5, 36, 44, 0); - border-radius: 0; - border: none; } - .xfce4-panel.panel .button.flat:hover { - border: none; - background-color: rgba(10, 74, 90, 0.95); } - .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - -.floating-bar { - background-color: #268bd2; - color: #fdf6e3; } - .floating-bar.top { - border-radius: 0 0 2px 2px; } - .floating-bar.right { - border-radius: 2px 0 0 2px; } - .floating-bar.bottom { - border-radius: 2px 2px 0 0; } - .floating-bar.left { - border-radius: 0 2px 2px 0; } - .floating-bar .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - background-color: transparent; - box-shadow: none; - border: none; } - -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; } - -MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { - color: #fdf6e3; - background-color: #268bd2; - outline-color: transparent; } - -MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { - background-color: transparent; } - -MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { - outline-color: transparent; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - .marlin-pathbar.pathbar:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; - border: solid transparent; - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { - padding: 0 3px; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { - background-color: rgba(0, 0, 0, 0.04); - border: solid rgba(0, 0, 0, 0.08); - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { - color: rgba(92, 97, 108, 0.55); } - -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; } - -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: #5c616c; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration.top { - border: 1px solid rgba(0, 15, 18, 0.97); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #002b36); - color: rgba(89, 128, 143, 0.8); - box-shadow: inset 0 1px rgba(0, 55, 69, 0.97); } - UnityDecoration.top:backdrop { - border-bottom-width: 0; - color: rgba(89, 128, 143, 0.5); } - UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 15, 18, 0.97)); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: rgba(0, 75, 95, 0.97); - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; } - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar GtkLabel { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #dcdfe3; - border-right: 1px solid #dcdfe3; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #dcdfe3; } - .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { - padding: 0 3px 0 3px; } - -.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #dcdfe3; - background-color: #F5F6F7; } - .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view { - background-color: #F5F6F7; - color: #5c616c; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:prelight { - background-color: white; } - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: #F5F6F7; - background-image: none; } - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #5c616c; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GraniteWidgetsWelcome { - background-color: #fdf6e3; } - -GraniteWidgetsWelcome GtkLabel { - color: #a9acb2; - font: open sans 11; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(92, 97, 108, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #fdf6e3); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry.entry { - padding: 4px; } - -.h1 { - font: open sans 24px; } - -.h2 { - font: open sans light 18px; } - -.h3 { - font: open sans 11px; } - -.h4, -.category-label { - color: #8a8e96; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: rgba(5, 36, 44, 0.95); - color: #657b83; - font: bold; - box-shadow: inset 0 -1px rgba(1, 10, 12, 0.95); } - #panel_window .menubar { - padding-left: 5px; } - #panel_window .menubar, #panel_window .menubar > .menuitem { - background-color: transparent; - color: #657b83; - font: bold; } - #panel_window .menubar .menuitem:insensitive { - color: rgba(101, 123, 131, 0.5); } - #panel_window .menubar .menuitem:insensitive GtkLabel { - color: inherit; } - #panel_window .menubar .menu .menuitem { - font: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: #5c616c; } - -#content_frame { - padding-bottom: 14px; - background-color: #F5F6F7; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - #content_frame .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - #content_frame .button:active, #content_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - #content_frame .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - #content_frame .button:insensitive > GtkLabel { - color: inherit; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: rgba(7, 54, 66, 0.95); - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px rgba(7, 54, 66, 0.95); } - -#buttonbox_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - #buttonbox_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - #buttonbox_frame .button:active, #buttonbox_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - #buttonbox_frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -#login_window #user_combobox { - color: #5c616c; - font: 13px; } - #login_window #user_combobox .menu { - font: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font: bold; } - -.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { - color: rgba(0, 27, 34, 0.97); } - -NemoWindow GtkEventBox { - background-color: #F5F6F7; } - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; } - -NautilusWindow GtkBox.sidebar { - background-color: transparent; } - -GtkFileChooserDialog.csd.background, -GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, -NautilusWindow.csd.background, -NautilusWindow .source-list, -NautilusWindow .source-list.view, -NautilusWindow .source-list.view:prelight, -NemoWindow.csd.background, -NemoWindow .source-list, -NemoWindow .source-list.view, -NemoWindow .source-list.view:prelight, -MarlinViewWindow.csd.background, -MarlinViewWindow .source-list, -MarlinViewWindow .source-list.view, -MarlinViewWindow .source-list.view:prelight { - background-color: transparent; } - -GtkFileChooserDialog .sidebar, GtkFileChooserDialog MarlinPlacesSidebar, -NautilusWindow .sidebar, -NautilusWindow MarlinPlacesSidebar, -NemoWindow .sidebar, -NemoWindow MarlinPlacesSidebar, -MarlinViewWindow .sidebar, -MarlinViewWindow MarlinPlacesSidebar { - background-color: rgba(7, 54, 66, 0.95); } - GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar .source-list.sidebar row, GtkFileChooserDialog MarlinPlacesSidebar .view, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row, - NautilusWindow .sidebar .view, - NautilusWindow .sidebar .source-list.sidebar row, - NautilusWindow MarlinPlacesSidebar .view, - NautilusWindow MarlinPlacesSidebar .source-list.sidebar row, - NemoWindow .sidebar .view, - NemoWindow .sidebar .source-list.sidebar row, - NemoWindow MarlinPlacesSidebar .view, - NemoWindow MarlinPlacesSidebar .source-list.sidebar row, - MarlinViewWindow .sidebar .view, - MarlinViewWindow .sidebar .source-list.sidebar row, - MarlinViewWindow MarlinPlacesSidebar .view, - MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row { - background-color: transparent; - color: #657b83; } - GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar .source-list.sidebar row.image, GtkFileChooserDialog MarlinPlacesSidebar .view.image, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.image, - NautilusWindow .sidebar .view.image, - NautilusWindow .sidebar .source-list.sidebar row.image, - NautilusWindow MarlinPlacesSidebar .view.image, - NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.image, - NemoWindow .sidebar .view.image, - NemoWindow .sidebar .source-list.sidebar row.image, - NemoWindow MarlinPlacesSidebar .view.image, - NemoWindow MarlinPlacesSidebar .source-list.sidebar row.image, - MarlinViewWindow .sidebar .view.image, - MarlinViewWindow .sidebar .source-list.sidebar row.image, - MarlinViewWindow MarlinPlacesSidebar .view.image, - MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.image { - color: rgba(101, 123, 131, 0.7); } - GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar .source-list.sidebar row.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .view.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.cell:selected, - NautilusWindow .sidebar .view.cell:selected, - NautilusWindow .sidebar .source-list.sidebar row.cell:selected, - NautilusWindow MarlinPlacesSidebar .view.cell:selected, - NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, - NemoWindow .sidebar .view.cell:selected, - NemoWindow .sidebar .source-list.sidebar row.cell:selected, - NemoWindow MarlinPlacesSidebar .view.cell:selected, - NemoWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, - MarlinViewWindow .sidebar .view.cell:selected, - MarlinViewWindow .sidebar .source-list.sidebar row.cell:selected, - MarlinViewWindow MarlinPlacesSidebar .view.cell:selected, - MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog MarlinPlacesSidebar.frame, - NautilusWindow .sidebar.frame, - NautilusWindow MarlinPlacesSidebar.frame, - NemoWindow .sidebar.frame, - NemoWindow MarlinPlacesSidebar.frame, - MarlinViewWindow .sidebar.frame, - MarlinViewWindow MarlinPlacesSidebar.frame { - color: #657b83; } - GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog MarlinPlacesSidebar .separator, GtkFileChooserDialog MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserDialog MarlinPlacesSidebar .view.separator, - NautilusWindow .sidebar .separator, - NautilusWindow GtkPlacesSidebar.sidebar .view.separator, - NautilusWindow MarlinPlacesSidebar .separator, - NautilusWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - NautilusWindow MarlinPlacesSidebar .view.separator, - NemoWindow .sidebar .separator, - NemoWindow GtkPlacesSidebar.sidebar .view.separator, - NemoWindow MarlinPlacesSidebar .separator, - NemoWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - NemoWindow MarlinPlacesSidebar .view.separator, - MarlinViewWindow .sidebar .separator, - MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, - MarlinViewWindow MarlinPlacesSidebar .separator, - MarlinViewWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - MarlinViewWindow MarlinPlacesSidebar .view.separator { - color: transparent; } - -GtkFileChooserDialog.maximized .sidebar, -NautilusWindow.maximized .sidebar, -NemoWindow.maximized .sidebar, -MarlinViewWindow.maximized .sidebar { - background-color: #073642; } - -GtkFileChooserDialog .pane-separator, -NautilusWindow .pane-separator, -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { - background-color: rgba(7, 54, 66, 0.95); } - -NautilusWindow NautilusWindowSlot { - background-color: #fdf6e3; } - -NautilusDesktopWindow NautilusWindowSlot { - background-color: transparent; } - -GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { - background-color: rgba(7, 54, 66, 0.95); } - -GtkFileChooserDialog .sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-action-box { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-vbox > .frame { - color: #657b83; - border-color: transparent; } - -GtkFileChooserDialog .action-bar.frame { - background-color: transparent; - border-color: rgba(5, 35, 43, 0.95); } - -GtkFileChooserDialog .action-bar.frame GtkLabel, GtkFileChooserDialog .action-bar.frame GtkComboBox, -GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, -GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { - color: #657b83; } - -FeedReaderreaderUI.background.csd > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd > .titlebar .pane-separator, -GeditWindow.background.csd.maximized > .titlebar .pane-separator, -GeditWindow.background.csd > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { - background-color: rgba(0, 27, 34, 0.97); } - -FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: rgba(0, 43, 54, 0.97); } - FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: rgba(0, 49, 62, 0.97); } - -FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #002b36; } - FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #00313e; } - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; } - -GeditWindow.background.csd { - background-color: transparent; } - -GeditWindow.background .gedit-side-panel-paned .pane-separator { - background-color: rgba(7, 54, 66, 0.95); } - -GeditWindow.background .gedit-bottom-panel-paned .pane-separator { - background-color: #dcdfe3; } - -GeditWindow.background > .titlebar.default-decoration, -GeditWindow.background > .titlebar.default-decoration:backdrop { - background-color: #002b36; } - -.gedit-bottom-panel-paned { - background-color: #fdf6e3; } - -.gedit-document-panel { - background-color: rgba(7, 54, 66, 0.95); } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel .list-row { - color: #657b83; } - .gedit-document-panel .list-row { - background-color: rgba(101, 123, 131, 0); - border: solid rgba(101, 123, 131, 0); - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:hover { - border: solid rgba(101, 123, 131, 0.15); - border-width: 3px 2px 3px 2px; - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel .list-row:active { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:active .button { - color: #fdf6e3; } - .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -GeditFileBrowserWidget { - background-color: rgba(7, 54, 66, 0.95); } - .maximized GeditFileBrowserWidget { - background-color: #073642; } - GeditFileBrowserWidget .scrollbars-junction, - GeditFileBrowserWidget .scrollbars-junction.frame { - border-color: transparent; - background-color: transparent; } - GeditFileBrowserWidget .horizontal { - background-color: transparent; - border-color: rgba(4, 28, 34, 0.95); } - GeditFileBrowserWidget .horizontal GtkComboBox { - color: #657b83; } - -GeditWindow.background.csd GeditFileBrowserView.view { - background-color: transparent; - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander { - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { - color: #268bd2; } - -GtkFileChooserDialog .action-bar.frame .button, -GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - GtkFileChooserDialog .action-bar.frame .button:hover, - GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - GtkFileChooserDialog .action-bar.frame .button:active, - GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog .action-bar.frame .button:checked, - GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - GtkFileChooserDialog .action-bar.frame .button:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -GtkFileChooserDialog .action-bar.frame .entry, -GtkFileChooserDialog .dialog-vbox > .frame .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.35)); - background-color: transparent; } - GtkFileChooserDialog .action-bar.frame .image.entry, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog .action-bar.frame .image.entry:hover, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { - color: inherit; } - GtkFileChooserDialog .action-bar.frame .entry:focus, - GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, #268bd2); } - GtkFileChooserDialog .action-bar.frame .entry:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.2)); } - -GtkFileChooserDialog .sidebar .trough.scrollbar, GtkFileChooserDialog MarlinPlacesSidebar .trough.scrollbar, -NautilusWindow .sidebar .trough.scrollbar, -NautilusWindow MarlinPlacesSidebar .trough.scrollbar, -NemoWindow .sidebar .trough.scrollbar, -NemoWindow MarlinPlacesSidebar .trough.scrollbar, -MarlinViewWindow .sidebar .trough.scrollbar, -MarlinViewWindow MarlinPlacesSidebar .trough.scrollbar, GeditFileBrowserWidget .trough.scrollbar { - background-color: transparent; - border-color: transparent; } - -GtkFileChooserDialog .sidebar .slider.scrollbar, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar, -NautilusWindow .sidebar .slider.scrollbar, -NautilusWindow MarlinPlacesSidebar .slider.scrollbar, -NemoWindow .sidebar .slider.scrollbar, -NemoWindow MarlinPlacesSidebar .slider.scrollbar, -MarlinViewWindow .sidebar .slider.scrollbar, -MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar, GeditFileBrowserWidget .slider.scrollbar { - border-radius: 20px; - border: 3px solid transparent; - background-color: rgba(141, 160, 167, 0.7); } - GtkFileChooserDialog .sidebar .slider.scrollbar:hover, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar:hover, - NautilusWindow .sidebar .slider.scrollbar:hover, - NautilusWindow MarlinPlacesSidebar .slider.scrollbar:hover, - NemoWindow .sidebar .slider.scrollbar:hover, - NemoWindow MarlinPlacesSidebar .slider.scrollbar:hover, - MarlinViewWindow .sidebar .slider.scrollbar:hover, - MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar:hover, GeditFileBrowserWidget .slider.scrollbar:hover { - background-color: #9cacb2; } - GtkFileChooserDialog .sidebar .slider.scrollbar:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar:prelight:active, - NautilusWindow .sidebar .slider.scrollbar:prelight:active, - NautilusWindow MarlinPlacesSidebar .slider.scrollbar:prelight:active, - NemoWindow .sidebar .slider.scrollbar:prelight:active, - NemoWindow MarlinPlacesSidebar .slider.scrollbar:prelight:active, - MarlinViewWindow .sidebar .slider.scrollbar:prelight:active, - MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar:prelight:active, GeditFileBrowserWidget .slider.scrollbar:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog .sidebar .slider.fine-tune.scrollbar, GtkFileChooserDialog MarlinPlacesSidebar .slider.fine-tune.scrollbar, - NautilusWindow .sidebar .slider.fine-tune.scrollbar, - NautilusWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar, - NemoWindow .sidebar .slider.fine-tune.scrollbar, - NemoWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar, - MarlinViewWindow .sidebar .slider.fine-tune.scrollbar, - MarlinViewWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar, GeditFileBrowserWidget .slider.fine-tune.scrollbar { - border-width: 4px; } - GtkFileChooserDialog .sidebar .slider.fine-tune.scrollbar:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, - NautilusWindow .sidebar .slider.fine-tune.scrollbar:prelight:active, - NautilusWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, - NemoWindow .sidebar .slider.fine-tune.scrollbar:prelight:active, - NemoWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, - MarlinViewWindow .sidebar .slider.fine-tune.scrollbar:prelight:active, - MarlinViewWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, GeditFileBrowserWidget .slider.fine-tune.scrollbar:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog .sidebar .slider.scrollbar:insensitive, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar:insensitive, - NautilusWindow .sidebar .slider.scrollbar:insensitive, - NautilusWindow MarlinPlacesSidebar .slider.scrollbar:insensitive, - NemoWindow .sidebar .slider.scrollbar:insensitive, - NemoWindow MarlinPlacesSidebar .slider.scrollbar:insensitive, - MarlinViewWindow .sidebar .slider.scrollbar:insensitive, - MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar:insensitive, GeditFileBrowserWidget .slider.scrollbar:insensitive { - background-color: transparent; } - -/* GTK NAMED COLORS */ -@define-color theme_fg_color #5c616c; -@define-color theme_text_color #5c616c; -@define-color theme_bg_color #F5F6F7; -@define-color theme_base_color #fdf6e3; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #5c616c; -@define-color text_color #5c616c; -@define-color bg_color #F5F6F7; -@define-color base_color #fdf6e3; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #faf6eb; -@define-color insensitive_fg_color alpha(#5c616c, 0.5); -@define-color insensitive_base_color #fdf6e3; -@define-color theme_unfocused_fg_color #5c616c; -@define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #F5F6F7; -@define-color theme_unfocused_base_color #fdf6e3; -@define-color borders #dcdfe3; -@define-color unfocused_borders #dcdfe3; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #1e6ea7; -@define-color wm_title alpha(#59808f, 0.8); -@define-color wm_unfocused_title alpha(#59808f, 0.5); -@define-color wm_bg #002b36; -@define-color wm_bg_unfocused #00313e; -@define-color wm_highlight #003745; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #dc322f; -@define-color wm_button_close_hover_bg #cb4b16; -@define-color wm_button_close_active_bg #dc322f; -@define-color wm_icon_close_bg #002b36; -@define-color wm_button_hover_bg #657b83; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #002b36; -@define-color wm_icon_bg #93a1a1; -@define-color wm_icon_unfocused_bg #657b83; -@define-color wm_icon_hover_bg #93a1a1; -@define-color wm_icon_active_bg #fdf6e3; -@define-color content_view_bg #fdf6e3; diff --git a/common/gtk-3.0/3.14/gtk-solid-dark.css b/common/gtk-3.0/3.14/gtk-solid-dark.css deleted file mode 100644 index 29679d8..0000000 --- a/common/gtk-3.0/3.14/gtk-solid-dark.css +++ /dev/null @@ -1,4064 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -GtkPaned-handle-size: 1; - -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: #78b9e6; - -GtkWidget-visited-link-color: #4ca2df; - -GtkWidget-focus-padding: 2; - -GtkWidget-focus-line-width: 1; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - -GtkStatusbar-shadow-type: none; - outline-color: rgba(101, 123, 131, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; } - -.background { - color: #657b83; - background-color: #002b36; } - -*:insensitive { - -gtk-image-effect: dim; } - -.gtkstyle-fallback { - background-color: #002b36; - color: #657b83; } - .gtkstyle-fallback:prelight { - background-color: #005469; - color: #657b83; } - .gtkstyle-fallback:active { - background-color: #000203; - color: #657b83; } - .gtkstyle-fallback:insensitive { - background-color: #003340; - color: rgba(101, 123, 131, 0.45); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view { - color: #657b83; - background-color: #073642; } - .view.dim-label, GtkLabel.view.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .view.subtitle { - color: rgba(101, 123, 131, 0.55); } - .view.dim-label:selected, GtkLabel.view.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, GtkLabel.view.separator:selected:focus, .header-bar .view.subtitle:selected:focus { - color: rgba(253, 246, 227, 0.65); - text-shadow: none; } - -.rubberband { - border: 1px solid #268bd2; - background-color: rgba(38, 139, 210, 0.2); } - -GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator { - color: #657b83; } - -GtkLabel:insensitive { - color: rgba(101, 123, 131, 0.45); } - -.dim-label, GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .subtitle { - opacity: 0.55; } - -GtkAssistant .sidebar { - background-color: #073642; - border-top: 1px solid #001317; } - GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #001317; } - GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #001317; } - -GtkAssistant.csd .sidebar { - border-top-style: none; } - -GtkAssistant .sidebar GtkLabel { - padding: 6px 12px; } - -GtkAssistant .sidebar GtkLabel.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -GtkTextView { - background-color: #04313c; } - -GtkFlowBox .grid-child { - padding: 3px; - border-radius: 3px; } - GtkFlowBox .grid-child:selected { - outline-offset: -2px; } - -.popover.osd, .osd { - color: #657b83; - border: none; - background-color: #073642; - background-clip: padding-box; - outline-color: rgba(101, 123, 131, 0.3); - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - .spinner:active { - opacity: 1; - animation: spin 1s linear infinite; } - .spinner:active:insensitive { - opacity: 0.5; } - -.entry { - border: 1px solid; - padding: 5px 8px; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #657b83; - border-color: #001317; - background-color: #073642; - background-image: linear-gradient(to bottom, #073642); } - .entry.image.left { - padding-left: 0; } - .entry.image.right { - padding-right: 0; } - .entry.flat, .entry.flat:focus { - padding: 2px; - color: #657b83; - border-color: #001317; - background-color: #073642; - background-image: linear-gradient(to bottom, #073642); - border: none; - border-radius: 0; } - .entry:focus { - background-clip: border-box; - color: #657b83; - border-color: #001317; - background-color: #073642; - background-image: linear-gradient(to bottom, #073642); - box-shadow: inset 1px 0 #268bd2, inset -1px 0 #268bd2, inset 0 1px #268bd2, inset 0 -1px #268bd2; } - .entry:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(7, 54, 66, 0.55); - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.55)); } - .entry:selected, .entry:selected:focus { - background-color: #268bd2; - color: #fdf6e3; } - .entry.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - .linked > .entry:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .linked > .entry:first-child:dir(rtl) { - border-right-style: none; } - .linked > .entry:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; } - .linked > .entry:last-child:dir(rtl) { - border-left-style: solid; } - .entry.warning { - color: #fdf6e3; - border-color: #001317; - background-image: linear-gradient(to bottom, #7d4328); } - .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); - box-shadow: none; } - .entry.warning:selected, .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .entry.error { - color: #fdf6e3; - border-color: #001317; - background-image: linear-gradient(to bottom, #873437); } - .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); - box-shadow: none; } - .entry.error:selected, .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - .entry.image { - color: #526d76; } - .linked.vertical > .entry { - border-bottom-color: #052b35; - box-shadow: none; } - .linked.vertical > .entry:focus { - border-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:insensitive { - border-bottom-color: #052b35; } - .linked.vertical > .entry:first-child { - border-bottom-color: #052b35; } - .linked.vertical > .entry:first-child:focus { - border-bottom-color: #268bd2; - box-shadow: none; } - .linked.vertical > .entry:first-child:insensitive { - border-bottom-color: #052b35; } - .linked.vertical > .entry:last-child { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .linked.vertical > .entry:last-child:focus { - border-bottom-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:last-child:insensitive { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .osd .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.4)); - background-color: transparent; } - .osd .entry.image, .osd .entry.image:hover { - color: inherit; } - .osd .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, #268bd2); } - .osd .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.25)); } - -GtkSearchEntry.entry { - border-radius: 20px; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -.button { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 5px 8px; - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(8, 62, 75, 0); - border-color: rgba(0, 19, 23, 0); - transition: none; } - .button.flat:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - .button.flat:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; - -gtk-image-effect: highlight; } - .button:active, .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; - transition-duration: 50ms; } - .button:active { - color: #657b83; } - .button:active:hover, .button:checked { - color: #fdf6e3; } - .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; } - .button:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .button:insensitive > GtkLabel { - color: inherit; } - .button:insensitive:active, .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { - color: inherit; } - .button.osd { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - background-color: #073642; - border-color: #03181d; } - .button.osd.image-button, .header-bar .button.osd.titlebutton, .titlebar .button.osd.titlebutton { - padding: 10px; } - .button.osd:hover { - color: #268bd2; } - .button.osd:active, .button.osd:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .button.osd:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .osd .button:dir(rtl) { - border-radius: 0; - border-right-style: none; - border-left-style: none; } - .osd .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:dir(rtl) { - border-left-style: solid; } - .osd .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd .button:hover, .osd .button:hover:first-child, .osd .button:hover:last-child { - box-shadow: none; } - .osd .button:active, .osd .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd .button.flat:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd .button.flat:hover, .osd .button.flat:hover:first-child, .osd .button.flat:hover:last-child { - box-shadow: none; } - .osd .button.flat:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); - background-image: none; } - .osd .button.flat:active, .osd .button.flat:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .button.suggested-action:active, .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .button.suggested-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(101, 123, 131, 0.45); } - .button.suggested-action:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .button.destructive-action:active, .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .button.destructive-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(101, 123, 131, 0.45); } - .button.destructive-action:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - .button.image-button, .header-bar .button.titlebutton, .titlebar .button.titlebutton, - .header-bar.selection-mode .button.titlebutton, .titlebar.selection-mode .button.titlebutton { - padding: 7px; } - .header-bar .button.image-button, .header-bar .button.titlebutton, .header-bar.selection-mode .button.titlebutton, .header-bar .titlebar.selection-mode .button.titlebutton, .titlebar.selection-mode .header-bar .button.titlebutton { - padding: 7px 10px; } - .button.text-button { - padding-left: 16px; - padding-right: 16px; } - .button.text-button.image-button, .header-bar .button.text-button.titlebutton, .titlebar .button.text-button.titlebutton { - padding: 5px 8px; } - .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, .titlebar .button.text-button.titlebutton GtkLabel:first-child { - padding-left: 8px; } - .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, .titlebar .button.text-button.titlebutton GtkLabel:last-child { - padding-right: 8px; } - .stack-switcher > .button { - outline-offset: -3px; } - .stack-switcher > .button > GtkLabel { - 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 { - padding: 5px 10px; } - .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, .titlebar .stack-switcher > .button.titlebutton { - padding: 2px 4px; } - .stack-switcher > .button.needs-attention:active > .label, - .stack-switcher > .button.needs-attention:active > GtkImage, - .stack-switcher > .button.needs-attention:checked > GtkLabel, - .stack-switcher > .button.needs-attention:checked > GtkImage { - animation: none; - background-image: none; } - .stack-switcher > .button.needs-attention > GtkLabel, - .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 2px; } - .stack-switcher > .button.needs-attention > GtkLabel:dir(rtl), - .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { - background-position: left 3px, left 2px; } - .inline-toolbar .button, .inline-toolbar .button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar GtkToolButton > .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .inline-toolbar GtkToolButton > .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { - color: inherit; } - .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { - color: inherit; } - -.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, -.linked > .button:hover, -.linked > .button:active, -.linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5), inset -1px 0 rgba(0, 19, 23, 0.5); } - .inline-toolbar GtkToolButton > .button.flat:active, .osd .button:active, .inline-toolbar .button:active, .linked > .button:active, GtkComboBox.combobox-entry .entry:active, GtkComboBox.combobox-entry .button:active, .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, .linked > GtkComboBox > .button:active:dir(ltr), .inline-toolbar GtkToolButton > .button.flat:checked, .osd .button:checked, .inline-toolbar .button:checked, .linked > .button:checked, GtkComboBox.combobox-entry .entry:checked, GtkComboBox.combobox-entry .button:checked, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked, .linked > GtkComboBox > .button:checked:dir(ltr) { - box-shadow: none; } - .inline-toolbar.toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .inline-toolbar .button:dir(rtl):backdrop, .linked > .button:dir(rtl), - .linked > .button:dir(rtl):hover, - .linked > .button:dir(rtl):active, - .linked > .button:dir(rtl):checked, GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), .primary-toolbar .linked.path-bar > .button:dir(rtl), .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { - border-radius: 0; } - -.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, .primary-toolbar .linked.path-bar > .button:first-child, .header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 19, 23, 0.5); } - .osd .button:first-child:active, .inline-toolbar .button:first-child:active, .linked > .button:first-child:active, .inline-toolbar GtkToolButton:first-child > .button.flat:active, GtkComboBox.combobox-entry .entry:first-child:active, GtkComboBox.combobox-entry .button:first-child:active, .linked > GtkComboBox:first-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, .osd .button:first-child:checked, .inline-toolbar .button:first-child:checked, .linked > .button:first-child:checked, .inline-toolbar GtkToolButton:first-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:first-child:checked, GtkComboBox.combobox-entry .button:first-child:checked, .linked > GtkComboBox:first-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - -.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, .primary-toolbar .linked.path-bar > .button:last-child, .header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5); } - .osd .button:last-child:active, .inline-toolbar .button:last-child:active, .linked > .button:last-child:active, .inline-toolbar GtkToolButton:last-child > .button.flat:active, GtkComboBox.combobox-entry .entry:last-child:active, GtkComboBox.combobox-entry .button:last-child:active, .linked > GtkComboBox:last-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, .osd .button:last-child:checked, .inline-toolbar .button:last-child:checked, .linked > .button:last-child:checked, .inline-toolbar GtkToolButton:last-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:last-child:checked, GtkComboBox.combobox-entry .button:last-child:checked, .linked > GtkComboBox:last-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { - border-bottom-left-radius: 0; } - -.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, .primary-toolbar .linked.path-bar > .button:only-child, .header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - .osd .button:only-child:active, .inline-toolbar .button:only-child:active, .linked > .button:only-child:active, .inline-toolbar GtkToolButton:only-child > .button.flat:active, GtkComboBox.combobox-entry .entry:only-child:active, GtkComboBox.combobox-entry .button:only-child:active, .linked > GtkComboBox:only-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, .osd .button:only-child:checked, .inline-toolbar .button:only-child:checked, .linked > .button:only-child:checked, .inline-toolbar GtkToolButton:only-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:only-child:checked, GtkComboBox.combobox-entry .button:only-child:checked, .linked > GtkComboBox:only-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, -.linked.vertical > .button:hover, -.linked.vertical > .button:active, -.linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, -.linked.vertical > GtkComboBox > .button { - border-style: solid; - border-bottom-style: none; - border-top-style: none; - border-radius: 0; } - .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, - .linked.vertical > GtkComboBox > .button:hover { - box-shadow: inset 0 -1px rgba(0, 19, 23, 0.5), inset 0 1px rgba(0, 19, 23, 0.5); } - .linked.vertical > .entry:active, .linked.vertical > .button:active, .linked.vertical > GtkComboBoxText > .button:active, - .linked.vertical > GtkComboBox > .button:active, .linked.vertical > .entry:checked, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button:checked, - .linked.vertical > GtkComboBox > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, -.linked.vertical > GtkComboBox:first-child > .button { - border-radius: 3px 3px 0 0; - border-top-style: solid; } - .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, - .linked.vertical > GtkComboBox:first-child > .button:hover { - box-shadow: inset 0 -1px rgba(0, 19, 23, 0.5); } - .linked.vertical > .entry:first-child:active, .linked.vertical > .button:first-child:active, .linked.vertical > GtkComboBoxText:first-child > .button:active, - .linked.vertical > GtkComboBox:first-child > .button:active, .linked.vertical > .entry:first-child:checked, .linked.vertical > .button:first-child:checked, .linked.vertical > GtkComboBoxText:first-child > .button:checked, - .linked.vertical > GtkComboBox:first-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, -.linked.vertical > GtkComboBox:last-child > .button { - border-radius: 0 0 3px 3px; - border-bottom-style: solid; } - .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, - .linked.vertical > GtkComboBox:last-child > .button:hover { - box-shadow: inset 0 1px rgba(0, 19, 23, 0.5); } - .linked.vertical > .entry:last-child:active, .linked.vertical > .button:last-child:active, .linked.vertical > GtkComboBoxText:last-child > .button:active, - .linked.vertical > GtkComboBox:last-child > .button:active, .linked.vertical > .entry:last-child:checked, .linked.vertical > .button:last-child:checked, .linked.vertical > GtkComboBoxText:last-child > .button:checked, - .linked.vertical > GtkComboBox:last-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, -.linked.vertical > GtkComboBox:only-child > .button { - border-radius: 3px; - border-style: solid; } - .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, - .linked.vertical > GtkComboBox:only-child > .button:hover { - box-shadow: none; } - .linked.vertical > .entry:only-child:active, .linked.vertical > .button:only-child:active, .linked.vertical > GtkComboBoxText:only-child > .button:active, - .linked.vertical > GtkComboBox:only-child > .button:active, .linked.vertical > .entry:only-child:checked, .linked.vertical > .button:only-child:checked, .linked.vertical > GtkComboBoxText:only-child > .button:checked, - .linked.vertical > GtkComboBox:only-child > .button:checked { - box-shadow: none; } - -.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, -.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, -.app-notification.frame .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -/* menu buttons */ -.menuitem.button.flat { - transition: none; - outline-offset: -1px; - border-radius: 2px; } - .menuitem.button.flat:hover { - background-color: #0a333e; } - .menuitem.button.flat:checked { - color: #657b83; } - -*:link, .button:link, .button:visited { - color: #78b9e6; } - *:link:visited, .button:visited { - color: #4ca2df; } - *:selected *:link:visited, *:selected .button:visited:link, *:selected .button:visited { - color: #a7cbdc; } - *:link:hover, .button:hover:link, .button:hover:visited { - color: #a3cfee; } - *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { - color: #e8ebe1; } - *:link:active, .button:active:link, .button:active:visited { - color: #78b9e6; } - *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { - color: #d2e1e0; } - *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { - color: #d2e1e0; } - -.spinbutton { - border-radius: 3px; } - .spinbutton .button { - background-image: none; - border: 1px solid rgba(0, 19, 23, 0.6); - border-style: none none none solid; - color: #607880; - border-radius: 0; - box-shadow: none; } - .spinbutton .button:dir(rtl) { - border-style: none solid none none; } - .spinbutton .button:first-child { - color: red; } - .spinbutton .button:insensitive { - color: rgba(101, 123, 131, 0.45); } - .spinbutton .button:active { - background-color: #268bd2; - color: #fdf6e3; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - border-radius: 2px 2px 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:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; } - GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: #268bd2; - border-radius: 0; - box-shadow: none; } - -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; } - GtkComboBox > .button { - padding-top: 3px; - padding-bottom: 3px; } - GtkComboBox:insensitive { - color: rgba(101, 123, 131, 0.45); } - GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { - -GtkWidget-wide-separators: true; } - GtkComboBox.combobox-entry .entry:dir(ltr) { - border-right-style: none; } - GtkComboBox.combobox-entry .entry:dir(rtl) { - border-left-style: none; } - GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 #001317; } - GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.55); } - GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 #001317; } - GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 rgba(0, 19, 23, 0.55); } - -.toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #002b36; } - .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.9); } - -.primary-toolbar { - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #002b36, #000f12) 1 0 1 0; } - -.inline-toolbar { - background-color: #001f27; - border-style: solid; - border-color: #001317; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -.search-bar { - background-color: #002b36; - border-style: solid; - border-color: #001317; - border-width: 0 0 1px; - padding: 3px; } - -.action-bar { - background-color: #001f27; } - -.header-bar { - padding: 5px 5px 4px 5px; - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: #001b22; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; } - .csd .header-bar { - background-color: #002b36; - border-color: #001b22; } - .header-bar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .header-bar .title { - padding-left: 12px; - padding-right: 12px; } - .header-bar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .header-bar.selection-mode, .header-bar.titlebar.selection-mode { - color: #fdf6e3; - background-color: #268bd2; - border-color: #2380c1; - box-shadow: none; } - .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { - background-color: #268bd2; - color: rgba(253, 246, 227, 0.6); } - .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.05); - border-color: rgba(253, 246, 227, 0.5); } - .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.15); - border-color: rgba(253, 246, 227, 0.15); } - .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { - background-color: #268bd2; } - .tiled .header-bar, .tiled .header-bar:backdrop, - .maximized .header-bar, .maximized .header-bar:backdrop { - border-radius: 0; } - .maximized .header-bar { - background-color: #002b36; - border-color: #001b22; } - .header-bar.default-decoration, - .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, - .csd .header-bar.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: #002b36; - border-bottom-width: 0; } - .maximized .header-bar.default-decoration, .maximized - .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized - .csd .header-bar.default-decoration:backdrop { - background-color: #002b36; } - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: 3px 3px 0 0; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: inset 0 1px #003745; } - .csd .titlebar { - background-color: #002b36; } - .titlebar:backdrop { - color: rgba(89, 128, 143, 0.5); - background-color: #00313e; } - .csd .titlebar:backdrop { - background-color: #00313e; } - .maximized .titlebar { - background-color: #002b36; } - .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { - background-color: #00313e; } - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { - background-color: transparent; } - -.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, -.header-bar > GtkBox > .separator.vertical, GtkPlacesSidebar.sidebar -.header-bar > GtkBox > .vertical.view.separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(89, 128, 143, 0) 25%, rgba(89, 128, 143, 0.15) 25%, rgba(89, 128, 143, 0.15) 75%, rgba(89, 128, 143, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, - .header-bar > GtkBox > .separator.vertical:backdrop, GtkPlacesSidebar.sidebar - .header-bar > GtkBox > .vertical.view.separator:backdrop { - opacity: 0.6; } - -.primary-toolbar .entry, .header-bar .entry { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { - color: inherit; } - .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { - opacity: 0.85; } - .primary-toolbar .entry:focus, .header-bar .entry:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - background-clip: padding-box; } - .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { - color: #fdf6e3; } - .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar .entry.warning, .header-bar .entry.warning { - color: white; - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, #7a3e23); } - .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); } - .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar .entry.error, .header-bar .entry.error { - color: white; - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, #842f32); } - .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); } - .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar .button, .header-bar .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - outline-offset: -3px; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:backdrop, .header-bar .button:backdrop { - opacity: 0.7; } - .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { - color: inherit; } - .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.primary-toolbar .linked > .button, .header-bar .linked > .button { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { - box-shadow: none; } - -.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - background-color: rgba(0, 193, 243, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .primary-toolbar .linked.stack-switcher > .button:insensitive, .header-bar .linked.stack-switcher > .button:insensitive, .primary-toolbar .linked.path-bar > .button:insensitive, .header-bar .linked.path-bar > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4), inset -1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked { - box-shadow: none; } - -.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, .primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, .primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { - color: #fdf6e3; } - .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { - background-color: rgba(253, 246, 227, 0.1); - border-color: transparent; } - .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { - color: rgba(253, 246, 227, 0.4); } - -.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(89, 128, 143, 0.8); } - .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { - background-color: rgba(89, 128, 143, 0.05); - border-color: transparent; } - .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(89, 128, 143, 0.5); } - .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { - background-color: rgba(0, 0, 0, 0.1); } - -.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(89, 128, 143, 0.2); } - -.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { - color: inherit; } - .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr), .header-bar GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 transparent; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl), .header-bar GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 transparent; } - -.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { - opacity: 0.75; } - -.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4)); } - .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3)); } - -.primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, #005469); - border-color: rgba(0, 0, 0, 0.7); } - .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { - background-image: linear-gradient(to bottom, #006883); - border-color: rgba(0, 0, 0, 0.7); } - .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #00475a); - border-color: rgba(0, 0, 0, 0.7); } - -.path-bar .button { - padding: 5px 10px; } - .path-bar .button:first-child { - padding-left: 10px; } - .path-bar .button:last-child { - padding-right: 10px; } - .path-bar .button:only-child { - padding-left: 14px; - padding-right: 14px; } - .path-bar .button GtkLabel:last-child { - padding-left: 4px; } - .path-bar .button GtkLabel:first-child { - padding-right: 4px; } - .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { - padding-right: 0; - padding-left: 0; } - .path-bar .button GtkImage { - padding-top: 2px; - padding-bottom: 1px; } - -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-color: rgba(101, 123, 131, 0.2); } - GtkTreeView.view.dnd { - border-style: solid none; - border-width: 1px; - border-color: #4683ab; } - GtkTreeView.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #365963; } - GtkTreeView.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - GtkTreeView.view.expander:hover { - color: #657b83; } - GtkTreeView.view.expander:selected { - color: #bdd6de; } - GtkTreeView.view.expander:selected:hover { - color: #fdf6e3; } - GtkTreeView.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - GtkTreeView.view.progressbar, GtkTreeView.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-image: linear-gradient(to bottom, #268bd2); } - GtkTreeView.view.progressbar:selected, GtkTreeView.view.progressbar:selected:focus, GtkTreeView.view.progressbar:focus:selected, GtkTreeView.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-image: linear-gradient(to bottom, #fdf6e3); } - GtkTreeView.view.trough { - color: #657b83; - background-image: linear-gradient(to bottom, #001317); - border-radius: 3px; - border-width: 0; } - GtkTreeView.view.trough:selected, GtkTreeView.view.trough:selected:focus { - color: #fdf6e3; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); - border-radius: 3px; - border-width: 0; } - -column-header .button { - color: #526d76; - background-color: #073642; } - column-header .button:hover { - color: #268bd2; - box-shadow: none; - transition: none; } - column-header .button:active { - color: #657b83; - transition: none; } - -column-header:last-child .button, column-header:last-child.button { - border-right-style: none; - border-image: none; } - -column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { - transition: none; - color: #268bd2; - box-shadow: inset 1px 1px 0 1px #268bd2, inset -1px 0 0 1px #268bd2, inset 1px 1px #073642, inset -1px 0 #073642; } - -column-header .button, column-header .button:hover, column-header .button:active { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.11) 20%, rgba(255, 255, 255, 0.11) 80%, rgba(255, 255, 255, 0) 80%) 0 1 0 0/0 1px 0 0 stretch; } - column-header .button:active, column-header .button:hover { - background-color: #073642; } - column-header .button:active:hover { - color: #657b83; } - column-header .button:insensitive { - border-color: #002b36; - background-image: none; } - -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #002b36; - color: rgba(89, 128, 143, 0.8); } - .menubar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .menubar > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - .menubar > .menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - .menubar > .menuitem:insensitive { - color: rgba(89, 128, 143, 0.2); - border-color: transparent; } - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #002b36; - border: 1px solid #001317; } - .csd .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - .menu .menuitem { - padding: 5px; } - .menu .menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - .menu .menuitem:insensitive { - color: rgba(101, 123, 131, 0.45); } - .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator { - color: rgba(7, 54, 66, 0); } - .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 #103d49; } - .menu.button.bottom { - border-top: 1px solid #103d49; } - .menu.button:hover { - background-color: #103d49; } - .menu.button:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent; } - -.csd .popup { - border-radius: 2px; } - -.menuitem .accelerator { - color: alpha(currentColor,0.55); } - -.popover { - margin: 10px; - padding: 2px; - border: 1px solid black; - border-radius: 3px; - background-clip: border-box; - background-color: #002b36; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } - .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { - color: rgba(7, 54, 66, 0); } - .popover > .list, - .popover > .view, - .popover > .toolbar, - .popover > .inline-toolbar, - .popover.osd > .toolbar, - .popover.osd > .inline-toolbar { - border-style: none; - background-color: transparent; } - -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - .entry.cursor-handle.top, - .cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - .entry.cursor-handle.bottom, - .cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -.notebook { - padding: 0; - background-color: #073642; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -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.frame { - border: 1px solid #001317; } - .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.header { - background-color: #002b36; } - .notebook.header.frame { - border: 0px solid #001317; } - .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.top { - box-shadow: inset 0 -1px #001317; } - .notebook.header.bottom { - box-shadow: inset 0 1px #001317; } - .notebook.header.right { - box-shadow: inset 1px 0 #001317; } - .notebook.header.left { - box-shadow: inset -1px 0 #001317; } - .notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - outline-offset: 0; } - .notebook tab.top, .notebook tab.bottom { - padding: 4px 15px; } - .notebook tab.left, .notebook tab.right { - padding: 4px 15px; } - .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { - padding-left: 12px; - padding-right: 12px; } - .notebook tab.reorderable-page.top, .notebook tab.top { - padding-top: 6px; - border-radius: 3.5px 2px 0 0; - border-width: 0; - border-top-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { - background-color: #073642; - box-shadow: inset 0 1px #001317, inset 0 -1px #073642, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.bottom, .notebook tab.bottom { - padding-bottom: 6px; - border-radius: 0 0 2px 3.5px; - border-width: 0; - border-bottom-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { - background-color: #073642; - box-shadow: inset 0 -1px #073642, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.right, .notebook tab.right { - padding-right: 17px; - border-radius: 0 3.5px 3.5px 0; - border-width: 0; - border-right-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { - background-color: #073642; - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #073642, inset -1px 0 #001317; } - .notebook tab.reorderable-page.left, .notebook tab.left { - padding-left: 17px; - border-radius: 3.5px 0 0 3.5px; - border-width: 0; - border-left-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { - background-color: #073642; - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #073642; } - .notebook tab GtkLabel { - padding: 0 2px; - color: rgba(101, 123, 131, 0.45); } - .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(101, 123, 131, 0.725); } - .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { - color: #657b83; } - .notebook tab .button { - padding: 0; - color: #425f68; } - .notebook tab .button:hover { - color: #ff4d4d; } - .notebook tab .button:active { - color: #268bd2; } - .notebook tab .button > GtkImage { - padding: 2px; } - .notebook.arrow { - color: rgba(101, 123, 131, 0.45); } - .notebook.arrow:hover { - color: rgba(101, 123, 131, 0.725); } - .notebook.arrow:active { - color: #657b83; } - .notebook.arrow:insensitive { - color: rgba(101, 123, 131, 0.15); } - -.scrollbar { - background-clip: padding-box; - background-image: none; - border-style: solid; - -GtkRange-trough-border: 0; - -GtkScrollbar-has-backward-stepper: false; - -GtkScrollbar-has-forward-stepper: false; - -GtkRange-slider-width: 13; - -GtkScrollbar-min-slider-length: 42; - -GtkRange-stepper-spacing: 0; - -GtkRange-trough-under-steppers: 1; } - .scrollbar .button { - border: none; } - .scrollbar.trough { - background-color: #07323d; - border-left: 1px solid #001317; } - .scrollbar.trough.horizontal { - border-left: none; - border-top: 1px solid #001317; } - .scrollbar.slider { - border-radius: 21px 20px 20px 21px; - border: 3px solid transparent; - border-left-width: 4px; - background-color: #284b55; } - .scrollbar.slider.horizontal { - border-radius: 21px 21px 20px 20px; - border-left-width: 3px; - border-top-width: 4px; } - .scrollbar.slider:hover { - background-color: #193f49; } - .scrollbar.slider:prelight:active, .scrollbar.slider:active { - background-color: #268bd2; } - .scrollbar.slider.fine-tune { - border-width: 4px; } - .scrollbar.slider.fine-tune:prelight:active { - background-color: #268bd2; } - .scrollbar.slider:insensitive { - background-color: transparent; } - -.scrollbars-junction, -.scrollbars-junction.frame { - border-color: transparent; - background-color: #07323d; } - -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 41; - outline-color: transparent; } - GtkSwitch.trough, GtkSwitch.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; } - GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { - background-position: left center; } - -GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough, -.list-row:selected GtkSwitch.trough, -GtkInfoBar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -.header-bar GtkSwitch.trough, -.primary-toolbar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } - -GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active, -.list-row:selected GtkSwitch.trough:active, -GtkInfoBar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -.header-bar GtkSwitch.trough:active, -.primary-toolbar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } - -GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:insensitive, -.list-row:selected GtkSwitch.trough:insensitive, -GtkInfoBar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:insensitive, -.primary-toolbar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } - -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active:insensitive, -.list-row:selected GtkSwitch.trough:active:insensitive, -GtkInfoBar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:active:insensitive, -.primary-toolbar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } - -.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check, -GtkFileChooserDialog .dialog-vbox > .frame .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -.menu .menuitem.check:hover, -GtkTreeView.view.check:selected, -.list-row:selected .check, -GtkInfoBar .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.check:insensitive:hover, -GtkTreeView.view.check:insensitive:selected, -.list-row:selected .check:insensitive, -GtkInfoBar .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -.menu .menuitem.check:inconsistent:hover, -GtkTreeView.view.check:inconsistent:selected, -.list-row:selected .check:inconsistent, -GtkInfoBar .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.check:inconsistent:insensitive:hover, -GtkTreeView.view.check:inconsistent:insensitive:selected, -.list-row:selected .check:inconsistent:insensitive, -GtkInfoBar .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -.menu .menuitem.check:checked:hover, -GtkTreeView.view.check:checked:selected, -.list-row:selected .check:checked, -GtkInfoBar .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -.menu .menuitem.check:checked:insensitive:hover, -GtkTreeView.view.check:checked:insensitive:selected, -.list-row:selected .check:checked:insensitive, -GtkInfoBar .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio, -GtkFileChooserDialog .dialog-vbox > .frame .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -.menu .menuitem.radio:hover, -GtkTreeView.view.radio:selected, -.list-row:selected .radio, -GtkInfoBar .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:insensitive:hover, -GtkTreeView.view.radio:insensitive:selected, -.list-row:selected .radio:insensitive, -GtkInfoBar .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:hover, -GtkTreeView.view.radio:inconsistent:selected, -.list-row:selected .radio:inconsistent, -GtkInfoBar .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:insensitive:hover, -GtkTreeView.view.radio:inconsistent:insensitive:selected, -.list-row:selected .radio:inconsistent:insensitive, -GtkInfoBar .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -.menu .menuitem.radio:checked:hover, -GtkTreeView.view.radio:checked:selected, -.list-row:selected .radio:checked, -GtkInfoBar .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:checked:insensitive:hover, -GtkTreeView.view.radio:checked:insensitive:selected, -.list-row:selected .radio:checked:insensitive, -GtkInfoBar .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -GtkIconView.view.check, -GtkFlowBox.view.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); - background-color: transparent; } - -GtkIconView.view.check:checked, -GtkFlowBox.view.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@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: rgba(101, 123, 131, 0.45); } - -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; } - .scale.trough { - margin: 5px; } - .scale.fine-tune.trough { - border-radius: 5px; - margin: 3px; } - .scale.slider { - background-clip: border-box; - background-image: linear-gradient(to bottom, #083e4b); - border: 1px solid #000b0d; - border-radius: 50%; - box-shadow: none; } - .scale.slider:hover { - background-image: linear-gradient(to bottom, #0a5062); - border-color: #000b0d; } - .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #04313d); - border-color: rgba(0, 11, 13, 0.8); } - .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .osd .scale.slider { - background-image: linear-gradient(to bottom, #073642); - border-color: #268bd2; } - .osd .scale.slider:hover { - background-image: linear-gradient(to bottom, #268bd2); } - .osd .scale.slider:active { - background-image: linear-gradient(to bottom, #1e6ea7); - border-color: #1e6ea7; } - .menu .menuitem:hover .scale.slider, - .list-row:selected .scale.slider, - GtkInfoBar .scale.slider { - background-image: linear-gradient(to bottom, #fdf6e3); - border-color: #fdf6e3; } - .menu .menuitem:hover .scale.slider:hover, - .list-row:selected .scale.slider:hover, - GtkInfoBar .scale.slider:hover { - background-image: linear-gradient(to bottom, #dde6e0); - border-color: #dde6e0; } - .menu .menuitem:hover .scale.slider:active, - .list-row:selected .scale.slider:active, - GtkInfoBar .scale.slider:active { - background-image: linear-gradient(to bottom, #92c1db); - border-color: #92c1db; } - .menu .menuitem:hover .scale.slider:insensitive, - .list-row:selected .scale.slider:insensitive, - GtkInfoBar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); - border-color: #9cc6db; } - .scale.trough { - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, #00171d); } - .scale.trough.highlight { - background-image: linear-gradient(to bottom, #268bd2); } - .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, rgba(38, 139, 210, 0.55)); } - .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 23, 29, 0.55)); } - .osd .scale.trough { - background-image: linear-gradient(to bottom, #0a5062); - outline-color: rgba(101, 123, 131, 0.2); } - .osd .scale.trough.highlight { - background-image: none; - background-image: linear-gradient(to bottom, #268bd2); } - .menu .menuitem:hover .scale.trough, - .list-row:selected .scale.trough, - GtkInfoBar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } - .menu .menuitem:hover .scale.trough.highlight, - .list-row:selected .scale.trough.highlight, - GtkInfoBar .scale.trough.highlight { - background-image: linear-gradient(to bottom, #fdf6e3); } - .menu .menuitem:hover .scale.trough.highlight:insensitive, - .list-row:selected .scale.trough.highlight:insensitive, - GtkInfoBar .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); } - .menu .menuitem:hover .scale.trough:insensitive, - .list-row:selected .scale.trough:insensitive, - GtkInfoBar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -GtkProgressBar { - padding: 0; - font-size: smaller; - color: rgba(101, 123, 131, 0.7); } - GtkProgressBar.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; } - -.progressbar { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - .progressbar.osd { - background-color: #268bd2; } - .list-row:selected .progressbar, - GtkInfoBar .progressbar { - background-color: #fdf6e3; } - -.osd .scale.progressbar { - background-color: #268bd2; } - -GtkProgressBar.trough, .level-bar.trough { - border: none; - border-radius: 3px; - background-color: #00171d; } - GtkProgressBar.trough.osd, .osd.level-bar.trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, - GtkInfoBar GtkProgressBar.trough, - GtkInfoBar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.2); } - -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; } - GtkLevelBar.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; } - -.level-bar.trough { - padding: 3px; - border-radius: 4px; } - -.level-bar.fill-block { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - .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 { - border-color: #859900; - background-color: #859900; } - .level-bar.fill-block.level-low { - border-color: #cb4b16; - background-color: #cb4b16; } - .level-bar.fill-block.empty-fill-block { - background-color: #073642; - border-color: #073642; } - -.frame { - border: 1px solid #001317; - padding: 0; } - .frame.flat { - border-style: none; } - .frame.action-bar { - padding: 6px; - border-width: 1px 0 0; } - -GtkScrolledWindow GtkViewport.frame { - border-style: none; } - -.separator, GtkPlacesSidebar.sidebar .view.separator { - color: rgba(0, 0, 0, 0.1); } - GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, - GtkFontButton .separator, - GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .view.separator, - GtkFileChooserButton .separator.vertical, - GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFileChooserButton .vertical.view.separator, - GtkFontButton .separator.vertical, - GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .vertical.view.separator { - -GtkWidget-wide-separators: true; } - -.list, .list-row { - background-color: #073642; - border-color: #001317; } - -.list-row, -.grid-child { - padding: 2px; } - -.list-row.button { - background-color: transparent; - border-style: none; - border-radius: 0; - box-shadow: none; } - .list-row.button:hover { - background-color: rgba(255, 255, 255, 0.03); } - .list-row.button:active { - color: #657b83; } - .list-row.button:selected:active { - color: #fdf6e3; } - .list-row.button:selected:hover { - background-color: #227dbd; } - .list-row.button:selected:insensitive { - color: rgba(253, 246, 227, 0.7); - background-color: rgba(38, 139, 210, 0.7); } - .list-row.button:selected:insensitive GtkLabel { - color: inherit; } - -.list-row, list-row.button { - transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .list-row:hover, list-row.button:hover { - transition: none; } - -.app-notification, -.app-notification.frame { - padding: 10px; - color: #657b83; - background-color: #073642; - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: #021014; } - .app-notification .button, - .app-notification.frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .app-notification .button.flat, - .app-notification.frame .button.flat { - border-color: rgba(38, 139, 210, 0); } - .app-notification .button:hover, - .app-notification.frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .app-notification .button:active, .app-notification .button:checked, - .app-notification.frame .button:active, - .app-notification.frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification .button:insensitive, - .app-notification.frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - .expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - .expander:hover { - color: #b8c4c9; } - .expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GtkCalendar { - color: #657b83; - border: 1px solid #001317; - border-radius: 3px; - padding: 2px; } - GtkCalendar:selected { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 1.5px; } - GtkCalendar.header { - color: #657b83; - border: none; - border-radius: 0; } - GtkCalendar.button, GtkCalendar.button:focus { - color: rgba(101, 123, 131, 0.45); - border-color: transparent; - background-color: transparent; - background-image: none; } - GtkCalendar.button:hover, GtkCalendar.button:focus:hover { - color: #657b83; } - GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { - color: rgba(101, 123, 131, 0.45); - background-color: transparent; - background-image: none; } - GtkCalendar.highlight { - color: alpha(currentColor,0.55); } - -.message-dialog .dialog-action-area .button { - padding: 8px; } - -.message-dialog { - -GtkDialog-button-spacing: 0; } - .message-dialog .titlebar { - background-color: #002b36; - border-bottom: 1px solid #000f12; } - .message-dialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - .message-dialog.csd .dialog-action-area .button { - padding: 8px; - border-radius: 0; } - .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 { - border-right-style: none; - border-bottom-style: none; } - .message-dialog.csd .dialog-action-area .button:last-child { - border-bottom-right-radius: 3px; } - .message-dialog.csd .dialog-action-area .button:first-child { - border-left-style: none; - border-bottom-left-radius: 3px; } - -GtkFileChooserDialog .search-bar { - background-color: #002b36; - border-color: #001317; - box-shadow: none; } - -GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #001317; } - -.sidebar { - border: none; - background-color: #003340; } - .sidebar .scrollbar.trough { - background-color: transparent; - border-width: 2px; - border-color: transparent; } - .sidebar:selected { - background-color: #268bd2; } - -GtkPlacesSidebar.sidebar .view { - color: #657b83; - background-color: transparent; } - GtkPlacesSidebar.sidebar .view:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.sidebar-item { - padding: 10px 4px; } - .sidebar-item > GtkLabel { - padding-left: 6px; - padding-right: 6px; } - .sidebar-item.needs-attention > GtkLabel { - background-size: 6px 6px, 0 0; } - -GtkPaned { - margin: 0 8px 8px 0; } - GtkPaned:dir(rtl) { - margin-right: 0; - margin-left: 8px; } - -.pane-separator { - background-image: linear-gradient(to bottom, #001317); } - -GtkInfoBar { - border-style: none; } - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: #268bd2; - color: #fdf6e3; } - -.list-row:selected .button, GtkInfoBar .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - .list-row:selected .flat.button, GtkInfoBar .flat.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .list-row:selected .button:hover, GtkInfoBar .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.2); } - .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.2); } - -.tooltip { - color: #657b83; - border-radius: 2px; } - .tooltip.background { - background-color: #0c5c70; - background-clip: padding-box; } - .tooltip.window-frame.csd { - background-color: transparent; } - -.tooltip * { - padding: 4px; - background-color: transparent; - color: inherit; } - -GtkColorSwatch { - border: none; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.4); } - GtkColorSwatch.color-light:hover { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4)); } - GtkColorSwatch.color-dark:hover { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } - GtkColorSwatch:hover { - border-color: rgba(0, 0, 0, 0.5); } - GtkColorSwatch.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - GtkColorSwatch.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; } - GtkColorSwatch.left, GtkColorSwatch:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - GtkColorSwatch.right, GtkColorSwatch:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } - GtkColorSwatch:only-child { - border-radius: 3px; } - GtkColorSwatch.color-active-badge { - border-width: 2px; } - GtkColorSwatch.color-active-badge:hover { - background-image: none; } - GtkColorSwatch.color-active-badge.color-light, GtkColorSwatch.color-active-badge.color-light:hover { - color: rgba(0, 0, 0, 0.3); - border-color: rgba(0, 0, 0, 0.3); } - GtkColorSwatch.color-active-badge.color-dark, GtkColorSwatch.color-active-badge.color-dark:hover { - color: rgba(255, 255, 255, 0.5); - border-color: rgba(255, 255, 255, 0.5); } - -GtkColorChooserWidget #add-color-button { - border-color: #001f27; - background-color: #001f27; - color: #002b36; - box-shadow: none; } - GtkColorChooserWidget #add-color-button:hover { - border-color: #001317; - background-color: #001317; } - -GtkColorButton.button { - padding: 5px; } - GtkColorButton.button GtkColorSwatch { - border-radius: 0; } - -.scale-popup .button { - padding: 6px; } - .scale-popup .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - -GtkVolumeButton.button { - padding: 8px; } - -.touch-selection, -.context-menu { - font: initial; } - -.monospace { - font: Monospace; } - -.overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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; } - -.window-frame { - border-radius: 3px 3px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px #000f12, 0 8px 8px 0 rgba(0, 0, 0, 0.35); - margin: 10px; } - .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.35); } - .window-frame.tiled { - border-radius: 0; } - .window-frame.popup { - box-shadow: none; - border-radius: 0; } - .window-frame.csd.popup, .window-frame.csd.menu { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #000203; } - .window-frame.csd.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.25); } - .window-frame.csd.message-dialog { - border-radius: 3px; } - -.header-bar.default-decoration .button.titlebutton, .titlebar.default-decoration .button.titlebutton, -.header-bar.selection-mode.default-decoration .button.titlebutton, .titlebar.selection-mode.default-decoration .button.titlebutton { - padding-top: 0px; - padding-bottom: 0px; } - -.header-bar .button.titlebutton, .titlebar .button.titlebutton, -.header-bar.selection-mode .button.titlebutton, .titlebar.selection-mode .button.titlebutton { - padding: 8px 4px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); - color: transparent; - background-position: center; - background-repeat: no-repeat; } - .header-bar .button.titlebutton:backdrop, .titlebar .button.titlebutton:backdrop, - .header-bar.selection-mode .button.titlebutton:backdrop, .titlebar.selection-mode .button.titlebutton:backdrop { - opacity: 1; } - -.header-bar .right .button.titlebutton:nth-last-child(3), -.header-bar .right:dir(rtl) .button.titlebutton:nth-child(3), -.header-bar .left .button.titlebutton:nth-child(3), -.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar .right .button.titlebutton:nth-last-child(3), -.titlebar .right:dir(rtl) .button.titlebutton:nth-child(3), -.titlebar .left .button.titlebutton:nth-child(3), -.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3), -.header-bar.selection-mode .right .button.titlebutton:nth-last-child(3), -.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), -.header-bar.selection-mode .left .button.titlebutton:nth-child(3), -.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3), -.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), -.titlebar.selection-mode .left .button.titlebutton:nth-child(3), -.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3) { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-dark.png"), url("assets/titlebutton-minimize-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(3):hover, .header-bar .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar .left .button.titlebutton:nth-child(3):hover, - .header-bar .left .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(3):hover, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar .left .button.titlebutton:nth-child(3):hover, - .titlebar .left .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover-dark.png"), url("assets/titlebutton-minimize-hover-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(3):active:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .header-bar .left .button.titlebutton:nth-child(3):active:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar .right .button.titlebutton:nth-last-child(3):active:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .titlebar .left .button.titlebutton:nth-child(3):active:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active-dark.png"), url("assets/titlebutton-minimize-active-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(3):backdrop, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .header-bar .left .button.titlebutton:nth-child(3):backdrop, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .titlebar .left .button.titlebutton:nth-child(3):backdrop, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop-dark.png"), url("assets/titlebutton-minimize-backdrop-dark@2.png")); } - -.header-bar .right .button.titlebutton:nth-last-child(2), -.header-bar .right:dir(rtl) .button.titlebutton:nth-child(2), -.header-bar .left .button.titlebutton:nth-child(2), -.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar .right .button.titlebutton:nth-last-child(2), -.titlebar .right:dir(rtl) .button.titlebutton:nth-child(2), -.titlebar .left .button.titlebutton:nth-child(2), -.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2), -.header-bar.selection-mode .right .button.titlebutton:nth-last-child(2), -.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), -.header-bar.selection-mode .left .button.titlebutton:nth-child(2), -.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2), -.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), -.titlebar.selection-mode .left .button.titlebutton:nth-child(2), -.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2) { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-dark.png"), url("assets/titlebutton-maximize-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(2):hover, .header-bar .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar .left .button.titlebutton:nth-child(2):hover, - .header-bar .left .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(2):hover, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar .left .button.titlebutton:nth-child(2):hover, - .titlebar .left .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover-dark.png"), url("assets/titlebutton-maximize-hover-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(2):active:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .header-bar .left .button.titlebutton:nth-child(2):active:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar .right .button.titlebutton:nth-last-child(2):active:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .titlebar .left .button.titlebutton:nth-child(2):active:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active-dark.png"), url("assets/titlebutton-maximize-active-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(2):backdrop, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .header-bar .left .button.titlebutton:nth-child(2):backdrop, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .titlebar .left .button.titlebutton:nth-child(2):backdrop, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop-dark.png"), url("assets/titlebutton-maximize-backdrop-dark@2.png")); } - -.header-bar .right .button.titlebutton:last-child, -.header-bar .right:dir(rtl) .button.titlebutton:first-child, -.header-bar .left .button.titlebutton:first-child, -.header-bar .left:dir(rtl) .button.titlebutton:last-child, .titlebar .right .button.titlebutton:last-child, -.titlebar .right:dir(rtl) .button.titlebutton:first-child, -.titlebar .left .button.titlebutton:first-child, -.titlebar .left:dir(rtl) .button.titlebutton:last-child, -.header-bar.selection-mode .right .button.titlebutton:last-child, -.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, -.header-bar.selection-mode .left .button.titlebutton:first-child, -.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child, .titlebar.selection-mode .right .button.titlebutton:last-child, -.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, -.titlebar.selection-mode .left .button.titlebutton:first-child, -.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child { - background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } - .header-bar .right .button.titlebutton:last-child:hover, .header-bar .right .button.titlebutton:last-child:backdrop:hover, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:hover, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .header-bar .left .button.titlebutton:first-child:hover, - .header-bar .left .button.titlebutton:first-child:backdrop:hover, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:hover, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar .right .button.titlebutton:last-child:hover, .titlebar .right .button.titlebutton:last-child:backdrop:hover, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:hover, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .titlebar .left .button.titlebutton:first-child:hover, - .titlebar .left .button.titlebutton:first-child:backdrop:hover, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:hover, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .right .button.titlebutton:last-child:hover, - .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left .button.titlebutton:first-child:hover, - .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left .button.titlebutton:first-child:hover, - .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } - .header-bar .right .button.titlebutton:last-child:active:hover, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .header-bar .left .button.titlebutton:first-child:active:hover, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar .right .button.titlebutton:last-child:active:hover, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .titlebar .left .button.titlebutton:first-child:active:hover, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .right .button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left .button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:active:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left .button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } - .header-bar .right .button.titlebutton:last-child:backdrop, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .header-bar .left .button.titlebutton:first-child:backdrop, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar .right .button.titlebutton:last-child:backdrop, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .titlebar .left .button.titlebutton:first-child:backdrop, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop, - .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } - -.header-bar .left GtkMenuButton.button.titlebutton:first-child, -.header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, -.header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, -.header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, .titlebar .left GtkMenuButton.button.titlebutton:first-child, -.titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, -.titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, -.titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child { - padding: 4px 6px 4px 6px; - color: rgba(89, 128, 143, 0.8); } - .header-bar .left GtkMenuButton.button.titlebutton:first-child, .header-bar .left GtkMenuButton.button.titlebutton:first-child:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:backdrop, .header-bar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child, .titlebar .left GtkMenuButton.button.titlebutton:first-child:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:backdrop, .titlebar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover { - background-image: none; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .header-bar .left GtkMenuButton.button.titlebutton:first-child:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .header-bar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:checked, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:checked, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked, .titlebar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:checked, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:checked, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - -.view:selected, .view:selected:focus, .view:selected:hover, GtkLabel:selected, GtkLabel:selected:focus, GtkLabel:selected:hover, GtkFlowBox .grid-child:selected, .menuitem.button.flat:active, .menuitem.button.flat:selected, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, -GtkEntry.gb-command-bar-entry.entry.flat:focus:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); } - -GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, -ScratchMainWindow .notebook tab.reorderable-page.top:active, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, -ScratchMainWindow .notebook tab.top:active, -ScratchMainWindow .notebook tab.top.active-page, -ScratchMainWindow .notebook tab.top.active-page:hover, -EphyNotebook.notebook tab.reorderable-page.top:active, -EphyNotebook.notebook tab.reorderable-page.top.active-page, -EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, -EphyNotebook.notebook tab.top:active, -EphyNotebook.notebook tab.top.active-page, -EphyNotebook.notebook tab.top.active-page:hover, -MidoriNotebook .notebook tab.reorderable-page.top:active, -MidoriNotebook .notebook tab.reorderable-page.top.active-page, -MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, -MidoriNotebook .notebook tab.top:active, -MidoriNotebook .notebook tab.top.active-page, -MidoriNotebook .notebook tab.top.active-page:hover, -TerminalWindow .notebook tab.reorderable-page.top:active, -TerminalWindow .notebook tab.reorderable-page.top.active-page, -TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -TerminalWindow .notebook tab.top:active, -TerminalWindow .notebook tab.top.active-page, -TerminalWindow .notebook tab.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - -TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.top { - padding-top: 7px; - border-top-width: 3px; } - -TerminalWindow .notebook.header.top, -PantheonTerminalPantheonTerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #001b22, inset 0 -1px #001317; } - -GtkHTML { - background-color: #073642; - color: #657b83; } - GtkHTML:active { - color: #fdf6e3; - background-color: #268bd2; } - -SushiFontWidget { - padding: 6px 12px; } - -TerminalWindow .background { - background-color: transparent; } - -TerminalWindow .scrollbar.vertical .slider { - margin-left: 3px; } - -TerminalWindow .scrollbar.trough { - border-width: 0; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { - color: #657b83; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { - color: #fdf6e3; } - -NautilusNotebook.notebook { - background-color: #073642; } - NautilusNotebook.notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; } - -NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { - padding: 5px; - box-shadow: none; - background-color: #073642; } - -NemoWindow EelEditableLabel.entry { - transition: none; } - -NemoWindow .sidebar .frame { - border-width: 0; } - -NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #001317; } - -NemoWindow .primary-toolbar NemoPathBar.linked > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - background-color: rgba(0, 193, 243, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4), inset -1px 0 rgba(0, 0, 0, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.gedit-headerbar-paned { - color: #001b22; } - -.open-document-selector-listbox-row { - border-bottom: 1px solid #00171d; - padding: 6px 6px 6px 12px; } - .open-document-selector-listbox-row .path-label { - font-size: smaller; - color: rgba(101, 123, 131, 0.7); } - .open-document-selector-listbox-row:selected .path-label { - color: rgba(253, 246, 227, 0.7); } - -.gedit-document-panel .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; } - .gedit-document-panel .list-row .button GtkImage { - color: inherit; } - -.gedit-document-panel .prelight-row .button { - color: #425f68; } - -.gedit-document-panel .list-row .button:hover, -.gedit-document-panel .prelight-row .button:hover { - color: #ff4d4d; } - -.gedit-document-panel .prelight-row:selected .button:hover { - color: #ff6666; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; } - .gedit-document-panel .prelight-row:selected .button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -.gedit-document-panel-dragged-row { - border: 1px solid #001317; - background-color: #000203; - color: #657b83; } - -GeditStatusbar { - border-top: 1px solid #001317; - background-color: #002b36; } - -GeditStatusMenuButton.button.flat, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton:checked.button.flat { - border-bottom-style: none; - border-radius: 0; } - -GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #001317; } - -.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { - color: rgba(101, 123, 131, 0.6); - margin: 2px; - padding: 2px; } - -GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { - background-color: #003340; - padding: 6px; - border-color: #001317; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image:hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image:hover { - color: inherit; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):insensitive, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { - box-shadow: -1px 0 #268bd2; } - -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; } - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - box-shadow: 1px 0 #268bd2; } - -GbEditorFrame .gb-search-slider { - padding: 2px; } - -GdTaggedEntry { - color: #657b83; } - -.preferences.sidebar GtkViewport { - border: none; } - -.preferences.sidebar GtkListBox { - background-color: #002b36; } - -.preferences.sidebar GtkListBoxRow { - padding: 10px; } - -GbPreferencesPageLanguage GtkSearchEntry { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - -GbPreferencesPageLanguage GtkScrolledWindow { - border-top-width: 0; } - -GtkBox.gb-command-bar-box { - border: none; - background-color: #073642; } - GtkBox.gb-command-bar-box GtkLabel { - color: #657b83; } - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: #657b83; - background-image: none; - background-color: #073642; - padding: 6px 6px 6px 6px; - border: none; } - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; } - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; } - -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; } - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #001317; } - -GbViewStack.focused GtkBox.header.notebook { - background-color: #073642; } - GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook GtkLabel.button.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { - opacity: 1; } - -EphyWindow .floating-bar { - color: #657b83; } - -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon { - background-color: rgba(101, 123, 131, 0.3); - border-radius: 2px; } - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: #78b9e6; } - -.documents-entry-tag { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover { - color: #fdf6e3; - background-color: #3295da; } - .documents-entry-tag:active { - color: #fdf6e3; - background-color: #2380c1; } - .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; } - .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { - color: rgba(253, 246, 227, 0.7); } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -TotemGrilo.vertical GdMainView.frame { - border-width: 0; } - -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { - background-color: #268bd2; } - -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; } - -.gnome-panel-menu-bar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: #657b83; - background-image: linear-gradient(to bottom, #05242c); } - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: #657b83; } - -PanelApplet .button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); - border-color: rgba(0, 0, 0, 0.17); } - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: rgba(0, 0, 0, 0.25); - border-radius: 0; - border-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -PanelApplet:hover { - color: white; } - -PanelApplet:active, -PanelApplet:hover:active { - color: #268bd2; } - -WnckPager { - color: #333e42; } - WnckPager:selected { - color: #268bd2; } - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; } - -ClockBox { - color: #657b83; } - -.xfce4-panel.panel { - background-color: #05242c; - text-shadow: none; - icon-shadow: none; } - .xfce4-panel.panel .button.flat { - color: #657b83; - background-color: rgba(5, 36, 44, 0); - border-radius: 0; - border: none; } - .xfce4-panel.panel .button.flat:hover { - border: none; - background-color: #0a4a5a; } - .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - -.floating-bar { - background-color: #268bd2; - color: #fdf6e3; } - .floating-bar.top { - border-radius: 0 0 2px 2px; } - .floating-bar.right { - border-radius: 2px 0 0 2px; } - .floating-bar.bottom { - border-radius: 2px 2px 0 0; } - .floating-bar.left { - border-radius: 0 2px 2px 0; } - .floating-bar .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - background-color: transparent; - box-shadow: none; - border: none; } - -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; } - -MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { - color: #fdf6e3; - background-color: #268bd2; - outline-color: transparent; } - -MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { - background-color: transparent; } - -MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { - outline-color: transparent; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - .marlin-pathbar.pathbar:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; - border: solid transparent; - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { - padding: 0 3px; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { - background-color: rgba(255, 255, 255, 0.05); - border: solid rgba(255, 255, 255, 0.07); - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { - color: rgba(101, 123, 131, 0.45); } - -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; } - -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: #657b83; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration.top { - border: 1px solid #000f12; - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #002b36); - color: rgba(89, 128, 143, 0.8); - box-shadow: inset 0 1px #003745; } - UnityDecoration.top:backdrop { - border-bottom-width: 0; - color: rgba(89, 128, 143, 0.5); } - UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, #000f12); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: #004b5f; - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; } - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar GtkLabel { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #001317; - border-right: 1px solid #001317; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #001317; } - .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { - padding: 0 3px 0 3px; } - -.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #001317; - background-color: #002b36; } - .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view { - background-color: #002b36; - color: #657b83; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:prelight { - background-color: #003f50; } - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: #002b36; - background-image: none; } - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #657b83; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GraniteWidgetsWelcome { - background-color: #073642; } - -GraniteWidgetsWelcome GtkLabel { - color: #33535d; - font: open sans 11; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(101, 123, 131, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #073642); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry.entry { - padding: 4px; } - -.h1 { - font: open sans 24px; } - -.h2 { - font: open sans light 18px; } - -.h3 { - font: open sans 11px; } - -.h4, -.category-label { - color: #47636c; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: #05242c; - color: #657b83; - font: bold; - box-shadow: inset 0 -1px #010a0c; } - #panel_window .menubar { - padding-left: 5px; } - #panel_window .menubar, #panel_window .menubar > .menuitem { - background-color: transparent; - color: #657b83; - font: bold; } - #panel_window .menubar .menuitem:insensitive { - color: rgba(101, 123, 131, 0.5); } - #panel_window .menubar .menuitem:insensitive GtkLabel { - color: inherit; } - #panel_window .menubar .menu .menuitem { - font: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: #657b83; } - -#content_frame { - padding-bottom: 14px; - background-color: #002b36; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - #content_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - #content_frame .button:active, #content_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - #content_frame .button:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - #content_frame .button:insensitive > GtkLabel { - color: inherit; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: #002b36; - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px #001b22; } - -#buttonbox_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - #buttonbox_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - #buttonbox_frame .button:active, #buttonbox_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - #buttonbox_frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -#login_window #user_combobox { - color: #657b83; - font: 13px; } - #login_window #user_combobox .menu { - font: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font: bold; } - -.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { - color: #001b22; } - -NemoWindow GtkEventBox { - background-color: #002b36; } - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; } - -GtkFileChooserDialog .sidebar, -NautilusWindow .sidebar, -NemoWindow .sidebar { - border-right: 1px solid #05232b; } - -GtkFileChooserDialog .sidebar:dir(rtl), -NautilusWindow .sidebar:dir(rtl), -NemoWindow .sidebar:dir(rtl) { - border-left: 1px solid #05232b; } - -NautilusWindow GtkBox.sidebar { - background-color: transparent; } - -GtkFileChooserDialog.csd.background, -GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, -NautilusWindow.csd.background, -NautilusWindow .source-list, -NautilusWindow .source-list.view, -NautilusWindow .source-list.view:prelight, -NemoWindow.csd.background, -NemoWindow .source-list, -NemoWindow .source-list.view, -NemoWindow .source-list.view:prelight, -MarlinViewWindow.csd.background, -MarlinViewWindow .source-list, -MarlinViewWindow .source-list.view, -MarlinViewWindow .source-list.view:prelight { - background-color: transparent; } - -GtkFileChooserDialog .sidebar, GtkFileChooserDialog MarlinPlacesSidebar, -NautilusWindow .sidebar, -NautilusWindow MarlinPlacesSidebar, -NemoWindow .sidebar, -NemoWindow MarlinPlacesSidebar, -MarlinViewWindow .sidebar, -MarlinViewWindow MarlinPlacesSidebar { - background-color: #073642; } - GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar .source-list.sidebar row, GtkFileChooserDialog MarlinPlacesSidebar .view, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row, - NautilusWindow .sidebar .view, - NautilusWindow .sidebar .source-list.sidebar row, - NautilusWindow MarlinPlacesSidebar .view, - NautilusWindow MarlinPlacesSidebar .source-list.sidebar row, - NemoWindow .sidebar .view, - NemoWindow .sidebar .source-list.sidebar row, - NemoWindow MarlinPlacesSidebar .view, - NemoWindow MarlinPlacesSidebar .source-list.sidebar row, - MarlinViewWindow .sidebar .view, - MarlinViewWindow .sidebar .source-list.sidebar row, - MarlinViewWindow MarlinPlacesSidebar .view, - MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row { - background-color: transparent; - color: #657b83; } - GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar .source-list.sidebar row.image, GtkFileChooserDialog MarlinPlacesSidebar .view.image, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.image, - NautilusWindow .sidebar .view.image, - NautilusWindow .sidebar .source-list.sidebar row.image, - NautilusWindow MarlinPlacesSidebar .view.image, - NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.image, - NemoWindow .sidebar .view.image, - NemoWindow .sidebar .source-list.sidebar row.image, - NemoWindow MarlinPlacesSidebar .view.image, - NemoWindow MarlinPlacesSidebar .source-list.sidebar row.image, - MarlinViewWindow .sidebar .view.image, - MarlinViewWindow .sidebar .source-list.sidebar row.image, - MarlinViewWindow MarlinPlacesSidebar .view.image, - MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.image { - color: rgba(101, 123, 131, 0.7); } - GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar .source-list.sidebar row.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .view.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.cell:selected, - NautilusWindow .sidebar .view.cell:selected, - NautilusWindow .sidebar .source-list.sidebar row.cell:selected, - NautilusWindow MarlinPlacesSidebar .view.cell:selected, - NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, - NemoWindow .sidebar .view.cell:selected, - NemoWindow .sidebar .source-list.sidebar row.cell:selected, - NemoWindow MarlinPlacesSidebar .view.cell:selected, - NemoWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, - MarlinViewWindow .sidebar .view.cell:selected, - MarlinViewWindow .sidebar .source-list.sidebar row.cell:selected, - MarlinViewWindow MarlinPlacesSidebar .view.cell:selected, - MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog MarlinPlacesSidebar.frame, - NautilusWindow .sidebar.frame, - NautilusWindow MarlinPlacesSidebar.frame, - NemoWindow .sidebar.frame, - NemoWindow MarlinPlacesSidebar.frame, - MarlinViewWindow .sidebar.frame, - MarlinViewWindow MarlinPlacesSidebar.frame { - color: #657b83; } - GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog MarlinPlacesSidebar .separator, GtkFileChooserDialog MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserDialog MarlinPlacesSidebar .view.separator, - NautilusWindow .sidebar .separator, - NautilusWindow GtkPlacesSidebar.sidebar .view.separator, - NautilusWindow MarlinPlacesSidebar .separator, - NautilusWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - NautilusWindow MarlinPlacesSidebar .view.separator, - NemoWindow .sidebar .separator, - NemoWindow GtkPlacesSidebar.sidebar .view.separator, - NemoWindow MarlinPlacesSidebar .separator, - NemoWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - NemoWindow MarlinPlacesSidebar .view.separator, - MarlinViewWindow .sidebar .separator, - MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, - MarlinViewWindow MarlinPlacesSidebar .separator, - MarlinViewWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - MarlinViewWindow MarlinPlacesSidebar .view.separator { - color: transparent; } - -GtkFileChooserDialog.maximized .sidebar, -NautilusWindow.maximized .sidebar, -NemoWindow.maximized .sidebar, -MarlinViewWindow.maximized .sidebar { - background-color: #073642; } - -GtkFileChooserDialog .pane-separator, -NautilusWindow .pane-separator, -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { - background-color: #05232b; } - -NautilusWindow NautilusWindowSlot { - background-color: #073642; } - -NautilusDesktopWindow NautilusWindowSlot { - background-color: transparent; } - -GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { - background-color: #073642; } - -GtkFileChooserDialog .sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #002b36; } - -GtkFileChooserDialog .dialog-action-box { - background-color: #002b36; } - -GtkFileChooserDialog .dialog-vbox > .frame { - color: #657b83; - border-color: transparent; } - -GtkFileChooserDialog .action-bar.frame { - background-color: transparent; - border-color: #021014; } - -GtkFileChooserDialog .action-bar.frame GtkLabel, GtkFileChooserDialog .action-bar.frame GtkComboBox, -GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, -GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { - color: #657b83; } - -FeedReaderreaderUI.background.csd > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd > .titlebar .pane-separator, -GeditWindow.background.csd.maximized > .titlebar .pane-separator, -GeditWindow.background.csd > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { - background-color: #001b22; } - -FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #002b36; } - FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #00313e; } - -FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #002b36; } - FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #00313e; } - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; } - -GeditWindow.background.csd { - background-color: transparent; } - -GeditWindow.background .gedit-side-panel-paned .pane-separator { - background-color: #05232b; } - -GeditWindow.background .gedit-bottom-panel-paned .pane-separator { - background-color: #001317; } - -GeditWindow.background > .titlebar.default-decoration, -GeditWindow.background > .titlebar.default-decoration:backdrop { - background-color: #002b36; } - -.gedit-bottom-panel-paned { - background-color: #073642; } - -.gedit-document-panel { - background-color: #073642; } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel .list-row { - color: #657b83; } - .gedit-document-panel .list-row { - background-color: rgba(101, 123, 131, 0); - border: solid rgba(101, 123, 131, 0); - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:hover { - border: solid rgba(101, 123, 131, 0.15); - border-width: 3px 2px 3px 2px; - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel .list-row:active { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:active .button { - color: #fdf6e3; } - .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -GeditFileBrowserWidget { - background-color: #073642; } - .maximized GeditFileBrowserWidget { - background-color: #073642; } - GeditFileBrowserWidget .scrollbars-junction, - GeditFileBrowserWidget .scrollbars-junction.frame { - border-color: transparent; - background-color: transparent; } - GeditFileBrowserWidget .horizontal { - background-color: transparent; - border-color: #041c22; } - GeditFileBrowserWidget .horizontal GtkComboBox { - color: #657b83; } - -GeditWindow.background.csd GeditFileBrowserView.view { - background-color: transparent; - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander { - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { - color: #268bd2; } - -GtkFileChooserDialog .action-bar.frame .button, -GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - GtkFileChooserDialog .action-bar.frame .button:hover, - GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - GtkFileChooserDialog .action-bar.frame .button:active, - GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog .action-bar.frame .button:checked, - GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - GtkFileChooserDialog .action-bar.frame .button:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -GtkFileChooserDialog .action-bar.frame .entry, -GtkFileChooserDialog .dialog-vbox > .frame .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.4)); - background-color: transparent; } - GtkFileChooserDialog .action-bar.frame .image.entry, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog .action-bar.frame .image.entry:hover, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { - color: inherit; } - GtkFileChooserDialog .action-bar.frame .entry:focus, - GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, #268bd2); } - GtkFileChooserDialog .action-bar.frame .entry:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.25)); } - -GtkFileChooserDialog .sidebar .trough.scrollbar, GtkFileChooserDialog MarlinPlacesSidebar .trough.scrollbar, -NautilusWindow .sidebar .trough.scrollbar, -NautilusWindow MarlinPlacesSidebar .trough.scrollbar, -NemoWindow .sidebar .trough.scrollbar, -NemoWindow MarlinPlacesSidebar .trough.scrollbar, -MarlinViewWindow .sidebar .trough.scrollbar, -MarlinViewWindow MarlinPlacesSidebar .trough.scrollbar, GeditFileBrowserWidget .trough.scrollbar { - background-color: transparent; - border-color: transparent; } - -GtkFileChooserDialog .sidebar .slider.scrollbar, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar, -NautilusWindow .sidebar .slider.scrollbar, -NautilusWindow MarlinPlacesSidebar .slider.scrollbar, -NemoWindow .sidebar .slider.scrollbar, -NemoWindow MarlinPlacesSidebar .slider.scrollbar, -MarlinViewWindow .sidebar .slider.scrollbar, -MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar, GeditFileBrowserWidget .slider.scrollbar { - border-radius: 20px; - border: 3px solid transparent; - background-color: rgba(141, 160, 167, 0.7); } - GtkFileChooserDialog .sidebar .slider.scrollbar:hover, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar:hover, - NautilusWindow .sidebar .slider.scrollbar:hover, - NautilusWindow MarlinPlacesSidebar .slider.scrollbar:hover, - NemoWindow .sidebar .slider.scrollbar:hover, - NemoWindow MarlinPlacesSidebar .slider.scrollbar:hover, - MarlinViewWindow .sidebar .slider.scrollbar:hover, - MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar:hover, GeditFileBrowserWidget .slider.scrollbar:hover { - background-color: #9cacb2; } - GtkFileChooserDialog .sidebar .slider.scrollbar:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar:prelight:active, - NautilusWindow .sidebar .slider.scrollbar:prelight:active, - NautilusWindow MarlinPlacesSidebar .slider.scrollbar:prelight:active, - NemoWindow .sidebar .slider.scrollbar:prelight:active, - NemoWindow MarlinPlacesSidebar .slider.scrollbar:prelight:active, - MarlinViewWindow .sidebar .slider.scrollbar:prelight:active, - MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar:prelight:active, GeditFileBrowserWidget .slider.scrollbar:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog .sidebar .slider.fine-tune.scrollbar, GtkFileChooserDialog MarlinPlacesSidebar .slider.fine-tune.scrollbar, - NautilusWindow .sidebar .slider.fine-tune.scrollbar, - NautilusWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar, - NemoWindow .sidebar .slider.fine-tune.scrollbar, - NemoWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar, - MarlinViewWindow .sidebar .slider.fine-tune.scrollbar, - MarlinViewWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar, GeditFileBrowserWidget .slider.fine-tune.scrollbar { - border-width: 4px; } - GtkFileChooserDialog .sidebar .slider.fine-tune.scrollbar:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, - NautilusWindow .sidebar .slider.fine-tune.scrollbar:prelight:active, - NautilusWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, - NemoWindow .sidebar .slider.fine-tune.scrollbar:prelight:active, - NemoWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, - MarlinViewWindow .sidebar .slider.fine-tune.scrollbar:prelight:active, - MarlinViewWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, GeditFileBrowserWidget .slider.fine-tune.scrollbar:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog .sidebar .slider.scrollbar:insensitive, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar:insensitive, - NautilusWindow .sidebar .slider.scrollbar:insensitive, - NautilusWindow MarlinPlacesSidebar .slider.scrollbar:insensitive, - NemoWindow .sidebar .slider.scrollbar:insensitive, - NemoWindow MarlinPlacesSidebar .slider.scrollbar:insensitive, - MarlinViewWindow .sidebar .slider.scrollbar:insensitive, - MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar:insensitive, GeditFileBrowserWidget .slider.scrollbar:insensitive { - background-color: transparent; } - -/* GTK NAMED COLORS */ -@define-color theme_fg_color #657b83; -@define-color theme_text_color #657b83; -@define-color theme_bg_color #002b36; -@define-color theme_base_color #073642; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #657b83; -@define-color text_color #657b83; -@define-color bg_color #002b36; -@define-color base_color #073642; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #003340; -@define-color insensitive_fg_color alpha(#657b83, 0.5); -@define-color insensitive_base_color #073642; -@define-color theme_unfocused_fg_color #657b83; -@define-color theme_unfocused_text_color #657b83; -@define-color theme_unfocused_bg_color #002b36; -@define-color theme_unfocused_base_color #073642; -@define-color borders #001317; -@define-color unfocused_borders #001317; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #78b9e6; -@define-color wm_title alpha(#59808f, 0.8); -@define-color wm_unfocused_title alpha(#59808f, 0.5); -@define-color wm_bg #002b36; -@define-color wm_bg_unfocused #00313e; -@define-color wm_highlight #003745; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #dc322f; -@define-color wm_button_close_hover_bg #cb4b16; -@define-color wm_button_close_active_bg #dc322f; -@define-color wm_icon_close_bg #002b36; -@define-color wm_button_hover_bg #657b83; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #002b36; -@define-color wm_icon_bg #93a1a1; -@define-color wm_icon_unfocused_bg #657b83; -@define-color wm_icon_hover_bg #93a1a1; -@define-color wm_icon_active_bg #fdf6e3; -@define-color content_view_bg #073642; diff --git a/common/gtk-3.0/3.14/gtk-solid-darker.css b/common/gtk-3.0/3.14/gtk-solid-darker.css deleted file mode 100644 index e6dd188..0000000 --- a/common/gtk-3.0/3.14/gtk-solid-darker.css +++ /dev/null @@ -1,4057 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -GtkPaned-handle-size: 1; - -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: #1e6ea7; - -GtkWidget-visited-link-color: #16527c; - -GtkWidget-focus-padding: 2; - -GtkWidget-focus-line-width: 1; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - -GtkStatusbar-shadow-type: none; - outline-color: rgba(92, 97, 108, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; } - -.background { - color: #5c616c; - background-color: #F5F6F7; } - -*:insensitive { - -gtk-image-effect: dim; } - -.gtkstyle-fallback { - background-color: #F5F6F7; - color: #5c616c; } - .gtkstyle-fallback:prelight { - background-color: white; - color: #5c616c; } - .gtkstyle-fallback:active { - background-color: #d9dde0; - color: #5c616c; } - .gtkstyle-fallback:insensitive { - background-color: #faf6eb; - color: rgba(92, 97, 108, 0.55); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view { - color: #5c616c; - background-color: #fdf6e3; } - .view.dim-label, GtkLabel.view.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .view.subtitle { - color: rgba(92, 97, 108, 0.55); } - .view.dim-label:selected, GtkLabel.view.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, GtkLabel.view.separator:selected:focus, .header-bar .view.subtitle:selected:focus { - color: rgba(253, 246, 227, 0.65); - text-shadow: none; } - -.rubberband { - border: 1px solid #268bd2; - background-color: rgba(38, 139, 210, 0.2); } - -GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator { - color: #5c616c; } - -GtkLabel:insensitive { - color: rgba(92, 97, 108, 0.55); } - -.dim-label, GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .subtitle { - opacity: 0.55; } - -GtkAssistant .sidebar { - background-color: #fdf6e3; - border-top: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #dcdfe3; } - -GtkAssistant.csd .sidebar { - border-top-style: none; } - -GtkAssistant .sidebar GtkLabel { - padding: 6px 12px; } - -GtkAssistant .sidebar GtkLabel.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -GtkTextView { - background-color: #f9f6ed; } - -GtkFlowBox .grid-child { - padding: 3px; - border-radius: 3px; } - GtkFlowBox .grid-child:selected { - outline-offset: -2px; } - -.popover.osd, .osd { - color: #657b83; - border: none; - background-color: #073642; - background-clip: padding-box; - outline-color: rgba(101, 123, 131, 0.3); - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - .spinner:active { - opacity: 1; - animation: spin 1s linear infinite; } - .spinner:active:insensitive { - opacity: 0.5; } - -.entry { - border: 1px solid; - padding: 5px 8px; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry.image.left { - padding-left: 0; } - .entry.image.right { - padding-right: 0; } - .entry.flat, .entry.flat:focus { - padding: 2px; - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); - border: none; - border-radius: 0; } - .entry:focus { - background-clip: border-box; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(253, 246, 227, 0.55); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.55)); } - .entry:selected, .entry:selected:focus { - background-color: #268bd2; - color: #fdf6e3; } - .entry.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - .linked > .entry:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .linked > .entry:first-child:dir(rtl) { - border-right-style: none; } - .linked > .entry:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; } - .linked > .entry:last-child:dir(rtl) { - border-left-style: solid; } - .entry.warning { - color: #fdf6e3; - border-color: #cb4b16; - background-image: linear-gradient(to bottom, #df8f68); } - .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); - box-shadow: none; } - .entry.warning:selected, .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .entry.error { - color: #fdf6e3; - border-color: #dc322f; - background-image: linear-gradient(to bottom, #e98077); } - .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); - box-shadow: none; } - .entry.error:selected, .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - .entry.image { - color: #7c7f84; } - .linked.vertical > .entry { - border-bottom-color: #f3efe3; - box-shadow: none; } - .linked.vertical > .entry:focus { - border-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:insensitive { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:first-child { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:first-child:focus { - border-bottom-color: #268bd2; - box-shadow: none; } - .linked.vertical > .entry:first-child:insensitive { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:last-child { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .linked.vertical > .entry:last-child:focus { - border-bottom-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:last-child:insensitive { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .osd .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.4)); - background-color: transparent; } - .osd .entry.image, .osd .entry.image:hover { - color: inherit; } - .osd .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, #268bd2); } - .osd .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.25)); } - -GtkSearchEntry.entry { - border-radius: 20px; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -.button { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 5px 8px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(251, 251, 252, 0); - border-color: rgba(101, 123, 131, 0); - transition: none; } - .button.flat:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - .button.flat:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; - -gtk-image-effect: highlight; } - .button:active, .button:checked { - background-clip: border-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; - transition-duration: 50ms; } - .button:active { - color: #5c616c; } - .button:active:hover, .button:checked { - color: #fdf6e3; } - .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; } - .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button:insensitive > GtkLabel { - color: inherit; } - .button:insensitive:active, .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { - color: inherit; } - .button.osd { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - background-color: #073642; - border-color: #03181d; } - .button.osd.image-button, .header-bar .button.osd.titlebutton, .titlebar .button.osd.titlebutton { - padding: 10px; } - .button.osd:hover { - color: #268bd2; } - .button.osd:active, .button.osd:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .button.osd:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .osd .button:dir(rtl) { - border-radius: 0; - border-right-style: none; - border-left-style: none; } - .osd .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:dir(rtl) { - border-left-style: solid; } - .osd .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd .button:hover, .osd .button:hover:first-child, .osd .button:hover:last-child { - box-shadow: none; } - .osd .button:active, .osd .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd .button.flat:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd .button.flat:hover, .osd .button.flat:hover:first-child, .osd .button.flat:hover:last-child { - box-shadow: none; } - .osd .button.flat:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); - background-image: none; } - .osd .button.flat:active, .osd .button.flat:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .button.suggested-action:active, .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .button.suggested-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.suggested-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .button.destructive-action:active, .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .button.destructive-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.destructive-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - .button.image-button, .header-bar .button.titlebutton, .titlebar .button.titlebutton, - .header-bar.selection-mode .button.titlebutton, .titlebar.selection-mode .button.titlebutton { - padding: 7px; } - .header-bar .button.image-button, .header-bar .button.titlebutton, .header-bar.selection-mode .button.titlebutton, .header-bar .titlebar.selection-mode .button.titlebutton, .titlebar.selection-mode .header-bar .button.titlebutton { - padding: 7px 10px; } - .button.text-button { - padding-left: 16px; - padding-right: 16px; } - .button.text-button.image-button, .header-bar .button.text-button.titlebutton, .titlebar .button.text-button.titlebutton { - padding: 5px 8px; } - .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, .titlebar .button.text-button.titlebutton GtkLabel:first-child { - padding-left: 8px; } - .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, .titlebar .button.text-button.titlebutton GtkLabel:last-child { - padding-right: 8px; } - .stack-switcher > .button { - outline-offset: -3px; } - .stack-switcher > .button > GtkLabel { - 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 { - padding: 5px 10px; } - .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, .titlebar .stack-switcher > .button.titlebutton { - padding: 2px 4px; } - .stack-switcher > .button.needs-attention:active > .label, - .stack-switcher > .button.needs-attention:active > GtkImage, - .stack-switcher > .button.needs-attention:checked > GtkLabel, - .stack-switcher > .button.needs-attention:checked > GtkImage { - animation: none; - background-image: none; } - .stack-switcher > .button.needs-attention > GtkLabel, - .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 4px; } - .stack-switcher > .button.needs-attention > GtkLabel:dir(rtl), - .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { - background-position: left 3px, left 4px; } - .inline-toolbar .button, .inline-toolbar .button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar GtkToolButton > .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .inline-toolbar GtkToolButton > .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { - color: inherit; } - .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { - color: inherit; } - -.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, -.linked > .button:hover, -.linked > .button:active, -.linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4), inset -1px 0 rgba(101, 123, 131, 0.4); } - .inline-toolbar GtkToolButton > .button.flat:active, .osd .button:active, .inline-toolbar .button:active, .linked > .button:active, GtkComboBox.combobox-entry .entry:active, GtkComboBox.combobox-entry .button:active, .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, .linked > GtkComboBox > .button:active:dir(ltr), .inline-toolbar GtkToolButton > .button.flat:checked, .osd .button:checked, .inline-toolbar .button:checked, .linked > .button:checked, GtkComboBox.combobox-entry .entry:checked, GtkComboBox.combobox-entry .button:checked, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked, .linked > GtkComboBox > .button:checked:dir(ltr) { - box-shadow: none; } - .inline-toolbar.toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .inline-toolbar .button:dir(rtl):backdrop, .linked > .button:dir(rtl), - .linked > .button:dir(rtl):hover, - .linked > .button:dir(rtl):active, - .linked > .button:dir(rtl):checked, GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), .primary-toolbar .linked.path-bar > .button:dir(rtl), .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { - border-radius: 0; } - -.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, .primary-toolbar .linked.path-bar > .button:first-child, .header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.4); } - .osd .button:first-child:active, .inline-toolbar .button:first-child:active, .linked > .button:first-child:active, .inline-toolbar GtkToolButton:first-child > .button.flat:active, GtkComboBox.combobox-entry .entry:first-child:active, GtkComboBox.combobox-entry .button:first-child:active, .linked > GtkComboBox:first-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, .osd .button:first-child:checked, .inline-toolbar .button:first-child:checked, .linked > .button:first-child:checked, .inline-toolbar GtkToolButton:first-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:first-child:checked, GtkComboBox.combobox-entry .button:first-child:checked, .linked > GtkComboBox:first-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - -.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, .primary-toolbar .linked.path-bar > .button:last-child, .header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4); } - .osd .button:last-child:active, .inline-toolbar .button:last-child:active, .linked > .button:last-child:active, .inline-toolbar GtkToolButton:last-child > .button.flat:active, GtkComboBox.combobox-entry .entry:last-child:active, GtkComboBox.combobox-entry .button:last-child:active, .linked > GtkComboBox:last-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, .osd .button:last-child:checked, .inline-toolbar .button:last-child:checked, .linked > .button:last-child:checked, .inline-toolbar GtkToolButton:last-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:last-child:checked, GtkComboBox.combobox-entry .button:last-child:checked, .linked > GtkComboBox:last-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { - border-bottom-left-radius: 0; } - -.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, .primary-toolbar .linked.path-bar > .button:only-child, .header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - .osd .button:only-child:active, .inline-toolbar .button:only-child:active, .linked > .button:only-child:active, .inline-toolbar GtkToolButton:only-child > .button.flat:active, GtkComboBox.combobox-entry .entry:only-child:active, GtkComboBox.combobox-entry .button:only-child:active, .linked > GtkComboBox:only-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, .osd .button:only-child:checked, .inline-toolbar .button:only-child:checked, .linked > .button:only-child:checked, .inline-toolbar GtkToolButton:only-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:only-child:checked, GtkComboBox.combobox-entry .button:only-child:checked, .linked > GtkComboBox:only-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, -.linked.vertical > .button:hover, -.linked.vertical > .button:active, -.linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, -.linked.vertical > GtkComboBox > .button { - border-style: solid; - border-bottom-style: none; - border-top-style: none; - border-radius: 0; } - .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, - .linked.vertical > GtkComboBox > .button:hover { - box-shadow: inset 0 -1px rgba(101, 123, 131, 0.4), inset 0 1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:active, .linked.vertical > .button:active, .linked.vertical > GtkComboBoxText > .button:active, - .linked.vertical > GtkComboBox > .button:active, .linked.vertical > .entry:checked, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button:checked, - .linked.vertical > GtkComboBox > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, -.linked.vertical > GtkComboBox:first-child > .button { - border-radius: 3px 3px 0 0; - border-top-style: solid; } - .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, - .linked.vertical > GtkComboBox:first-child > .button:hover { - box-shadow: inset 0 -1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:first-child:active, .linked.vertical > .button:first-child:active, .linked.vertical > GtkComboBoxText:first-child > .button:active, - .linked.vertical > GtkComboBox:first-child > .button:active, .linked.vertical > .entry:first-child:checked, .linked.vertical > .button:first-child:checked, .linked.vertical > GtkComboBoxText:first-child > .button:checked, - .linked.vertical > GtkComboBox:first-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, -.linked.vertical > GtkComboBox:last-child > .button { - border-radius: 0 0 3px 3px; - border-bottom-style: solid; } - .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, - .linked.vertical > GtkComboBox:last-child > .button:hover { - box-shadow: inset 0 1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:last-child:active, .linked.vertical > .button:last-child:active, .linked.vertical > GtkComboBoxText:last-child > .button:active, - .linked.vertical > GtkComboBox:last-child > .button:active, .linked.vertical > .entry:last-child:checked, .linked.vertical > .button:last-child:checked, .linked.vertical > GtkComboBoxText:last-child > .button:checked, - .linked.vertical > GtkComboBox:last-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, -.linked.vertical > GtkComboBox:only-child > .button { - border-radius: 3px; - border-style: solid; } - .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, - .linked.vertical > GtkComboBox:only-child > .button:hover { - box-shadow: none; } - .linked.vertical > .entry:only-child:active, .linked.vertical > .button:only-child:active, .linked.vertical > GtkComboBoxText:only-child > .button:active, - .linked.vertical > GtkComboBox:only-child > .button:active, .linked.vertical > .entry:only-child:checked, .linked.vertical > .button:only-child:checked, .linked.vertical > GtkComboBoxText:only-child > .button:checked, - .linked.vertical > GtkComboBox:only-child > .button:checked { - box-shadow: none; } - -.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, -.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, -.app-notification.frame .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -/* menu buttons */ -.menuitem.button.flat { - transition: none; - outline-offset: -1px; - border-radius: 2px; } - .menuitem.button.flat:hover { - background-color: #edeff0; } - .menuitem.button.flat:checked { - color: #5c616c; } - -*:link, .button:link, .button:visited { - color: #1e6ea7; } - *:link:visited, .button:visited { - color: #16527c; } - *:selected *:link:visited, *:selected .button:visited:link, *:selected .button:visited { - color: #a7cbdc; } - *:link:hover, .button:hover:link, .button:hover:visited { - color: #268bd2; } - *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { - color: #e8ebe1; } - *:link:active, .button:active:link, .button:active:visited { - color: #1e6ea7; } - *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { - color: #d2e1e0; } - *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { - color: #d2e1e0; } - -.spinbutton { - border-radius: 3px; } - .spinbutton .button { - background-image: none; - border: 1px solid rgba(220, 223, 227, 0.6); - border-style: none none none solid; - color: #646872; - border-radius: 0; - box-shadow: none; } - .spinbutton .button:dir(rtl) { - border-style: none solid none none; } - .spinbutton .button:first-child { - color: red; } - .spinbutton .button:insensitive { - color: rgba(92, 97, 108, 0.55); } - .spinbutton .button:active { - background-color: #268bd2; - color: #fdf6e3; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - border-radius: 2px 2px 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:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; } - GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: #268bd2; - border-radius: 0; - box-shadow: none; } - -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; } - GtkComboBox > .button { - padding-top: 3px; - padding-bottom: 3px; } - GtkComboBox:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { - -GtkWidget-wide-separators: true; } - GtkComboBox.combobox-entry .entry:dir(ltr) { - border-right-style: none; } - GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: 1px 0 #268bd2; } - GtkComboBox.combobox-entry .entry:dir(rtl) { - border-left-style: none; } - GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: -1px 0 #268bd2; } - GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 #657b83; } - GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.55); } - GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 #657b83; } - GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.55); } - -.toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #F5F6F7; } - .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.9); } - -.primary-toolbar { - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #002b36, #000f12) 1 0 1 0; } - -.inline-toolbar { - background-color: #edeef0; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -.search-bar { - background-color: #F5F6F7; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 0 1px; - padding: 3px; } - -.action-bar { - background-color: #edeef0; } - -.header-bar { - padding: 5px 5px 4px 5px; - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: #001b22; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; } - .csd .header-bar { - background-color: #002b36; - border-color: #001b22; } - .header-bar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .header-bar .title { - padding-left: 12px; - padding-right: 12px; } - .header-bar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .header-bar.selection-mode, .header-bar.titlebar.selection-mode { - color: #fdf6e3; - background-color: #268bd2; - border-color: #2380c1; - box-shadow: none; } - .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { - background-color: #268bd2; - color: rgba(253, 246, 227, 0.6); } - .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.05); - border-color: rgba(253, 246, 227, 0.5); } - .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.15); - border-color: rgba(253, 246, 227, 0.15); } - .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { - background-color: #268bd2; } - .tiled .header-bar, .tiled .header-bar:backdrop, - .maximized .header-bar, .maximized .header-bar:backdrop { - border-radius: 0; } - .maximized .header-bar { - background-color: #002b36; - border-color: #001b22; } - .header-bar.default-decoration, - .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, - .csd .header-bar.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: #002b36; - border-bottom-width: 0; } - .maximized .header-bar.default-decoration, .maximized - .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized - .csd .header-bar.default-decoration:backdrop { - background-color: #002b36; } - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: 3px 3px 0 0; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: inset 0 1px #003745; } - .csd .titlebar { - background-color: #002b36; } - .titlebar:backdrop { - color: rgba(89, 128, 143, 0.5); - background-color: #00313e; } - .csd .titlebar:backdrop { - background-color: #00313e; } - .maximized .titlebar { - background-color: #002b36; } - .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { - background-color: #00313e; } - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { - background-color: transparent; } - -.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, -.header-bar > GtkBox > .separator.vertical, GtkPlacesSidebar.sidebar -.header-bar > GtkBox > .vertical.view.separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(89, 128, 143, 0) 25%, rgba(89, 128, 143, 0.15) 25%, rgba(89, 128, 143, 0.15) 75%, rgba(89, 128, 143, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, - .header-bar > GtkBox > .separator.vertical:backdrop, GtkPlacesSidebar.sidebar - .header-bar > GtkBox > .vertical.view.separator:backdrop { - opacity: 0.6; } - -.primary-toolbar .entry, .header-bar .entry { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { - color: inherit; } - .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { - opacity: 0.85; } - .primary-toolbar .entry:focus, .header-bar .entry:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - background-clip: padding-box; } - .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { - color: #fdf6e3; } - .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar .entry.warning, .header-bar .entry.warning { - color: white; - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, #7a3e23); } - .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); } - .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar .entry.error, .header-bar .entry.error { - color: white; - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, #842f32); } - .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); } - .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar .button, .header-bar .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - outline-offset: -3px; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:backdrop, .header-bar .button:backdrop { - opacity: 0.7; } - .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { - color: inherit; } - .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.primary-toolbar .linked > .button, .header-bar .linked > .button { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { - box-shadow: none; } - -.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - background-color: rgba(0, 193, 243, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .primary-toolbar .linked.stack-switcher > .button:insensitive, .header-bar .linked.stack-switcher > .button:insensitive, .primary-toolbar .linked.path-bar > .button:insensitive, .header-bar .linked.path-bar > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4), inset -1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked { - box-shadow: none; } - -.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, .primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, .primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { - color: #fdf6e3; } - .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { - background-color: rgba(253, 246, 227, 0.1); - border-color: transparent; } - .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { - color: rgba(253, 246, 227, 0.4); } - -.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(89, 128, 143, 0.8); } - .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { - background-color: rgba(89, 128, 143, 0.05); - border-color: transparent; } - .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(89, 128, 143, 0.5); } - .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { - background-color: rgba(0, 0, 0, 0.1); } - -.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(89, 128, 143, 0.2); } - -.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { - color: inherit; } - .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr), .header-bar GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 transparent; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl), .header-bar GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 transparent; } - -.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { - opacity: 0.75; } - -.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4)); } - .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3)); } - -.primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, #005469); - border-color: rgba(0, 0, 0, 0.7); } - .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { - background-image: linear-gradient(to bottom, #006883); - border-color: rgba(0, 0, 0, 0.7); } - .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #00475a); - border-color: rgba(0, 0, 0, 0.7); } - -.path-bar .button { - padding: 5px 10px; } - .path-bar .button:first-child { - padding-left: 10px; } - .path-bar .button:last-child { - padding-right: 10px; } - .path-bar .button:only-child { - padding-left: 14px; - padding-right: 14px; } - .path-bar .button GtkLabel:last-child { - padding-left: 4px; } - .path-bar .button GtkLabel:first-child { - padding-right: 4px; } - .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { - padding-right: 0; - padding-left: 0; } - .path-bar .button GtkImage { - padding-top: 2px; - padding-bottom: 1px; } - -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-color: rgba(92, 97, 108, 0.2); } - GtkTreeView.view.dnd { - border-style: solid none; - border-width: 1px; - border-color: #41769f; } - GtkTreeView.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #adaca8; } - GtkTreeView.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - GtkTreeView.view.expander:hover { - color: #5c616c; } - GtkTreeView.view.expander:selected { - color: #bdd6de; } - GtkTreeView.view.expander:selected:hover { - color: #fdf6e3; } - GtkTreeView.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - GtkTreeView.view.progressbar, GtkTreeView.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-image: linear-gradient(to bottom, #268bd2); } - GtkTreeView.view.progressbar:selected, GtkTreeView.view.progressbar:selected:focus, GtkTreeView.view.progressbar:focus:selected, GtkTreeView.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-image: linear-gradient(to bottom, #fdf6e3); } - GtkTreeView.view.trough { - color: #5c616c; - background-image: linear-gradient(to bottom, #657b83); - border-radius: 3px; - border-width: 0; } - GtkTreeView.view.trough:selected, GtkTreeView.view.trough:selected:focus { - color: #fdf6e3; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); - border-radius: 3px; - border-width: 0; } - -column-header .button { - color: #7c7f84; - background-color: #fdf6e3; } - column-header .button:hover { - color: #268bd2; - box-shadow: none; - transition: none; } - column-header .button:active { - color: #5c616c; - transition: none; } - -column-header:last-child .button, column-header:last-child.button { - border-right-style: none; - border-image: none; } - -column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { - transition: none; - color: #268bd2; - box-shadow: inset 1px 1px 0 1px #268bd2, inset -1px 0 0 1px #268bd2, inset 1px 1px #fdf6e3, inset -1px 0 #fdf6e3; } - -column-header .button, column-header .button:hover, column-header .button:active { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; } - column-header .button:active, column-header .button:hover { - background-color: #fdf6e3; } - column-header .button:active:hover { - color: #5c616c; } - column-header .button:insensitive { - border-color: #F5F6F7; - background-image: none; } - -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #002b36; - color: rgba(89, 128, 143, 0.8); } - .menubar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .menubar > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - .menubar > .menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - .menubar > .menuitem:insensitive { - color: rgba(89, 128, 143, 0.2); - border-color: transparent; } - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; } - .csd .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - .menu .menuitem { - padding: 5px; } - .menu .menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - .menu .menuitem:insensitive { - color: rgba(92, 97, 108, 0.55); } - .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator { - color: rgba(253, 246, 227, 0); } - .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 #ede7d7; } - .menu.button.bottom { - border-top: 1px solid #ede7d7; } - .menu.button:hover { - background-color: #ede7d7; } - .menu.button:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent; } - -.csd .popup { - border-radius: 2px; } - -.menuitem .accelerator { - color: alpha(currentColor,0.55); } - -.popover { - margin: 10px; - padding: 2px; - border: 1px solid #cdd2d7; - border-radius: 3px; - background-clip: border-box; - background-color: #fdf6e3; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } - .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { - color: rgba(253, 246, 227, 0); } - .popover > .list, - .popover > .view, - .popover > .toolbar, - .popover > .inline-toolbar, - .popover.osd > .toolbar, - .popover.osd > .inline-toolbar { - border-style: none; - background-color: transparent; } - -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - .entry.cursor-handle.top, - .cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - .entry.cursor-handle.bottom, - .cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -.notebook { - padding: 0; - background-color: #fdf6e3; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -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.frame { - border: 1px solid #dcdfe3; } - .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.header { - background-color: #F5F6F7; } - .notebook.header.frame { - border: 0px solid #dcdfe3; } - .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.top { - box-shadow: inset 0 -1px #dcdfe3; } - .notebook.header.bottom { - box-shadow: inset 0 1px #dcdfe3; } - .notebook.header.right { - box-shadow: inset 1px 0 #dcdfe3; } - .notebook.header.left { - box-shadow: inset -1px 0 #dcdfe3; } - .notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - outline-offset: 0; } - .notebook tab.top, .notebook tab.bottom { - padding: 4px 15px; } - .notebook tab.left, .notebook tab.right { - padding: 4px 15px; } - .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { - padding-left: 12px; - padding-right: 12px; } - .notebook tab.reorderable-page.top, .notebook tab.top { - padding-top: 6px; - border-radius: 3.5px 2px 0 0; - border-width: 0; - border-top-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #fdf6e3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom, .notebook tab.bottom { - padding-bottom: 6px; - border-radius: 0 0 2px 3.5px; - border-width: 0; - border-bottom-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 -1px #fdf6e3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right, .notebook tab.right { - padding-right: 17px; - border-radius: 0 3.5px 3.5px 0; - border-width: 0; - border-right-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #fdf6e3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left, .notebook tab.left { - padding-left: 17px; - border-radius: 3.5px 0 0 3.5px; - border-width: 0; - border-left-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #fdf6e3; } - .notebook tab GtkLabel { - padding: 0 2px; - color: rgba(92, 97, 108, 0.55); } - .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(92, 97, 108, 0.775); } - .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { - color: #5c616c; } - .notebook tab .button { - padding: 0; - color: #92959d; } - .notebook tab .button:hover { - color: #ff4d4d; } - .notebook tab .button:active { - color: #268bd2; } - .notebook tab .button > GtkImage { - padding: 2px; } - .notebook.arrow { - color: rgba(92, 97, 108, 0.55); } - .notebook.arrow:hover { - color: rgba(92, 97, 108, 0.775); } - .notebook.arrow:active { - color: #5c616c; } - .notebook.arrow:insensitive { - color: rgba(92, 97, 108, 0.25); } - -.scrollbar { - background-clip: padding-box; - background-image: none; - border-style: solid; - -GtkRange-trough-border: 0; - -GtkScrollbar-has-backward-stepper: false; - -GtkScrollbar-has-forward-stepper: false; - -GtkRange-slider-width: 13; - -GtkScrollbar-min-slider-length: 42; - -GtkRange-stepper-spacing: 0; - -GtkRange-trough-under-steppers: 1; } - .scrollbar .button { - border: none; } - .scrollbar.trough { - background-color: #fdf4de; - border-left: 1px solid #dcdfe3; } - .scrollbar.trough.horizontal { - border-left: none; - border-top: 1px solid #dcdfe3; } - .scrollbar.slider { - border-radius: 21px 20px 20px 21px; - border: 3px solid transparent; - border-left-width: 4px; - background-color: #b8babf; } - .scrollbar.slider.horizontal { - border-radius: 21px 21px 20px 20px; - border-left-width: 3px; - border-top-width: 4px; } - .scrollbar.slider:hover { - background-color: #cfd1d4; } - .scrollbar.slider:prelight:active, .scrollbar.slider:active { - background-color: #268bd2; } - .scrollbar.slider.fine-tune { - border-width: 4px; } - .scrollbar.slider.fine-tune:prelight:active { - background-color: #268bd2; } - .scrollbar.slider:insensitive { - background-color: transparent; } - -.scrollbars-junction, -.scrollbars-junction.frame { - border-color: transparent; - background-color: #fdf4de; } - -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 41; - outline-color: transparent; } - GtkSwitch.trough, GtkSwitch.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; } - GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { - background-position: left center; } - -GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough, -.list-row:selected GtkSwitch.trough, -GtkInfoBar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -.header-bar GtkSwitch.trough, -.primary-toolbar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } - -GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active, -.list-row:selected GtkSwitch.trough:active, -GtkInfoBar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -.header-bar GtkSwitch.trough:active, -.primary-toolbar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } - -GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:insensitive, -.list-row:selected GtkSwitch.trough:insensitive, -GtkInfoBar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:insensitive, -.primary-toolbar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } - -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active:insensitive, -.list-row:selected GtkSwitch.trough:active:insensitive, -GtkInfoBar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:active:insensitive, -.primary-toolbar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } - -.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check, -GtkFileChooserDialog .dialog-vbox > .frame .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -.menu .menuitem.check:hover, -GtkTreeView.view.check:selected, -.list-row:selected .check, -GtkInfoBar .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.check:insensitive:hover, -GtkTreeView.view.check:insensitive:selected, -.list-row:selected .check:insensitive, -GtkInfoBar .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -.menu .menuitem.check:inconsistent:hover, -GtkTreeView.view.check:inconsistent:selected, -.list-row:selected .check:inconsistent, -GtkInfoBar .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.check:inconsistent:insensitive:hover, -GtkTreeView.view.check:inconsistent:insensitive:selected, -.list-row:selected .check:inconsistent:insensitive, -GtkInfoBar .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -.menu .menuitem.check:checked:hover, -GtkTreeView.view.check:checked:selected, -.list-row:selected .check:checked, -GtkInfoBar .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -.menu .menuitem.check:checked:insensitive:hover, -GtkTreeView.view.check:checked:insensitive:selected, -.list-row:selected .check:checked:insensitive, -GtkInfoBar .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio, -GtkFileChooserDialog .dialog-vbox > .frame .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -.menu .menuitem.radio:hover, -GtkTreeView.view.radio:selected, -.list-row:selected .radio, -GtkInfoBar .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:insensitive:hover, -GtkTreeView.view.radio:insensitive:selected, -.list-row:selected .radio:insensitive, -GtkInfoBar .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:hover, -GtkTreeView.view.radio:inconsistent:selected, -.list-row:selected .radio:inconsistent, -GtkInfoBar .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:insensitive:hover, -GtkTreeView.view.radio:inconsistent:insensitive:selected, -.list-row:selected .radio:inconsistent:insensitive, -GtkInfoBar .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -.menu .menuitem.radio:checked:hover, -GtkTreeView.view.radio:checked:selected, -.list-row:selected .radio:checked, -GtkInfoBar .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:checked:insensitive:hover, -GtkTreeView.view.radio:checked:insensitive:selected, -.list-row:selected .radio:checked:insensitive, -GtkInfoBar .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -GtkIconView.view.check, -GtkFlowBox.view.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); - background-color: transparent; } - -GtkIconView.view.check:checked, -GtkFlowBox.view.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-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: rgba(92, 97, 108, 0.55); } - -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; } - .scale.trough { - margin: 5px; } - .scale.fine-tune.trough { - border-radius: 5px; - margin: 3px; } - .scale.slider { - background-clip: border-box; - background-image: linear-gradient(to bottom, #fbfbfc); - border: 1px solid rgba(45, 55, 59, 0.5); - border-radius: 50%; - box-shadow: none; } - .scale.slider:hover { - background-image: linear-gradient(to bottom, white); - border-color: rgba(45, 55, 59, 0.5); } - .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #f9f6ec); - border-color: rgba(45, 55, 59, 0.3); } - .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .osd .scale.slider { - background-image: linear-gradient(to bottom, #073642); - border-color: #268bd2; } - .osd .scale.slider:hover { - background-image: linear-gradient(to bottom, #268bd2); } - .osd .scale.slider:active { - background-image: linear-gradient(to bottom, #1e6ea7); - border-color: #1e6ea7; } - .menu .menuitem:hover .scale.slider, - .list-row:selected .scale.slider, - GtkInfoBar .scale.slider { - background-image: linear-gradient(to bottom, #fdf6e3); - border-color: #fdf6e3; } - .menu .menuitem:hover .scale.slider:hover, - .list-row:selected .scale.slider:hover, - GtkInfoBar .scale.slider:hover { - background-image: linear-gradient(to bottom, #dde6e0); - border-color: #dde6e0; } - .menu .menuitem:hover .scale.slider:active, - .list-row:selected .scale.slider:active, - GtkInfoBar .scale.slider:active { - background-image: linear-gradient(to bottom, #92c1db); - border-color: #92c1db; } - .menu .menuitem:hover .scale.slider:insensitive, - .list-row:selected .scale.slider:insensitive, - GtkInfoBar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); - border-color: #9cc6db; } - .scale.trough { - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, #657b83); } - .scale.trough.highlight { - background-image: linear-gradient(to bottom, #268bd2); } - .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, rgba(38, 139, 210, 0.55)); } - .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(101, 123, 131, 0.55)); } - .osd .scale.trough { - background-image: linear-gradient(to bottom, #0a5062); - outline-color: rgba(101, 123, 131, 0.2); } - .osd .scale.trough.highlight { - background-image: none; - background-image: linear-gradient(to bottom, #268bd2); } - .menu .menuitem:hover .scale.trough, - .list-row:selected .scale.trough, - GtkInfoBar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } - .menu .menuitem:hover .scale.trough.highlight, - .list-row:selected .scale.trough.highlight, - GtkInfoBar .scale.trough.highlight { - background-image: linear-gradient(to bottom, #fdf6e3); } - .menu .menuitem:hover .scale.trough.highlight:insensitive, - .list-row:selected .scale.trough.highlight:insensitive, - GtkInfoBar .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); } - .menu .menuitem:hover .scale.trough:insensitive, - .list-row:selected .scale.trough:insensitive, - GtkInfoBar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -GtkProgressBar { - padding: 0; - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - GtkProgressBar.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; } - -.progressbar { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - .progressbar.osd { - background-color: #268bd2; } - .list-row:selected .progressbar, - GtkInfoBar .progressbar { - background-color: #fdf6e3; } - -.osd .scale.progressbar { - background-color: #268bd2; } - -GtkProgressBar.trough, .level-bar.trough { - border: none; - border-radius: 3px; - background-color: #657b83; } - GtkProgressBar.trough.osd, .osd.level-bar.trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, - GtkInfoBar GtkProgressBar.trough, - GtkInfoBar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.2); } - -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; } - GtkLevelBar.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; } - -.level-bar.trough { - padding: 3px; - border-radius: 4px; } - -.level-bar.fill-block { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - .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 { - border-color: #859900; - background-color: #859900; } - .level-bar.fill-block.level-low { - border-color: #cb4b16; - background-color: #cb4b16; } - .level-bar.fill-block.empty-fill-block { - background-color: rgba(92, 97, 108, 0.2); - border-color: rgba(92, 97, 108, 0.2); } - -.frame { - border: 1px solid #dcdfe3; - padding: 0; } - .frame.flat { - border-style: none; } - .frame.action-bar { - padding: 6px; - border-width: 1px 0 0; } - -GtkScrolledWindow GtkViewport.frame { - border-style: none; } - -.separator, GtkPlacesSidebar.sidebar .view.separator { - color: rgba(0, 0, 0, 0.1); } - GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, - GtkFontButton .separator, - GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .view.separator, - GtkFileChooserButton .separator.vertical, - GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFileChooserButton .vertical.view.separator, - GtkFontButton .separator.vertical, - GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .vertical.view.separator { - -GtkWidget-wide-separators: true; } - -.list, .list-row { - background-color: #fdf6e3; - border-color: #dcdfe3; } - -.list-row, -.grid-child { - padding: 2px; } - -.list-row.button { - background-color: transparent; - border-style: none; - border-radius: 0; - box-shadow: none; } - .list-row.button:hover { - background-color: rgba(0, 0, 0, 0.05); } - .list-row.button:active { - color: #5c616c; } - .list-row.button:selected:active { - color: #fdf6e3; } - .list-row.button:selected:hover { - background-color: #227dbd; } - .list-row.button:selected:insensitive { - color: rgba(253, 246, 227, 0.7); - background-color: rgba(38, 139, 210, 0.7); } - .list-row.button:selected:insensitive GtkLabel { - color: inherit; } - -.list-row, list-row.button { - transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .list-row:hover, list-row.button:hover { - transition: none; } - -.app-notification, -.app-notification.frame { - padding: 10px; - color: #657b83; - background-color: #073642; - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: #021014; } - .app-notification .button, - .app-notification.frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .app-notification .button.flat, - .app-notification.frame .button.flat { - border-color: rgba(38, 139, 210, 0); } - .app-notification .button:hover, - .app-notification.frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .app-notification .button:active, .app-notification .button:checked, - .app-notification.frame .button:active, - .app-notification.frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification .button:insensitive, - .app-notification.frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - .expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - .expander:hover { - color: #aaaeb7; } - .expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GtkCalendar { - color: #5c616c; - border: 1px solid #dcdfe3; - border-radius: 3px; - padding: 2px; } - GtkCalendar:selected { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 1.5px; } - GtkCalendar.header { - color: #5c616c; - border: none; - border-radius: 0; } - GtkCalendar.button, GtkCalendar.button:focus { - color: rgba(92, 97, 108, 0.45); - border-color: transparent; - background-color: transparent; - background-image: none; } - GtkCalendar.button:hover, GtkCalendar.button:focus:hover { - color: #5c616c; } - GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { - color: rgba(92, 97, 108, 0.55); - background-color: transparent; - background-image: none; } - GtkCalendar.highlight { - color: alpha(currentColor,0.55); } - -.message-dialog .dialog-action-area .button { - padding: 8px; } - -.message-dialog { - -GtkDialog-button-spacing: 0; } - .message-dialog .titlebar { - background-color: #002b36; - border-bottom: 1px solid #000f12; } - .message-dialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - .message-dialog.csd .dialog-action-area .button { - padding: 8px; - border-radius: 0; } - .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 { - border-right-style: none; - border-bottom-style: none; } - .message-dialog.csd .dialog-action-area .button:last-child { - border-bottom-right-radius: 3px; } - .message-dialog.csd .dialog-action-area .button:first-child { - border-left-style: none; - border-bottom-left-radius: 3px; } - -GtkFileChooserDialog .search-bar { - background-color: #F5F6F7; - border-color: #dcdfe3; - box-shadow: none; } - -GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #dcdfe3; } - -.sidebar { - border: none; - background-color: #fbfbfc; } - .sidebar .scrollbar.trough { - background-color: transparent; - border-width: 2px; - border-color: transparent; } - .sidebar:selected { - background-color: #268bd2; } - -GtkPlacesSidebar.sidebar .view { - color: #5c616c; - background-color: transparent; } - GtkPlacesSidebar.sidebar .view:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.sidebar-item { - padding: 10px 4px; } - .sidebar-item > GtkLabel { - padding-left: 6px; - padding-right: 6px; } - .sidebar-item.needs-attention > GtkLabel { - background-size: 6px 6px, 0 0; } - -GtkPaned { - margin: 0 8px 8px 0; } - GtkPaned:dir(rtl) { - margin-right: 0; - margin-left: 8px; } - -.pane-separator { - background-image: linear-gradient(to bottom, #dcdfe3); } - -GtkInfoBar { - border-style: none; } - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: #268bd2; - color: #fdf6e3; } - -.list-row:selected .button, GtkInfoBar .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - .list-row:selected .flat.button, GtkInfoBar .flat.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .list-row:selected .button:hover, GtkInfoBar .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.2); } - .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.2); } - -.tooltip { - color: #657b83; - border-radius: 2px; } - .tooltip.background { - background-color: #0c5c70; - background-clip: padding-box; } - .tooltip.window-frame.csd { - background-color: transparent; } - -.tooltip * { - padding: 4px; - background-color: transparent; - color: inherit; } - -GtkColorSwatch { - border: none; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.4); } - GtkColorSwatch.color-light:hover { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4)); } - GtkColorSwatch.color-dark:hover { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } - GtkColorSwatch:hover { - border-color: rgba(0, 0, 0, 0.5); } - GtkColorSwatch.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - GtkColorSwatch.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; } - GtkColorSwatch.left, GtkColorSwatch:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - GtkColorSwatch.right, GtkColorSwatch:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } - GtkColorSwatch:only-child { - border-radius: 3px; } - GtkColorSwatch.color-active-badge { - border-width: 2px; } - GtkColorSwatch.color-active-badge:hover { - background-image: none; } - GtkColorSwatch.color-active-badge.color-light, GtkColorSwatch.color-active-badge.color-light:hover { - color: rgba(0, 0, 0, 0.3); - border-color: rgba(0, 0, 0, 0.3); } - GtkColorSwatch.color-active-badge.color-dark, GtkColorSwatch.color-active-badge.color-dark:hover { - color: rgba(255, 255, 255, 0.5); - border-color: rgba(255, 255, 255, 0.5); } - -GtkColorChooserWidget #add-color-button { - border-color: #e8ebed; - background-color: #e8ebed; - color: #F5F6F7; - box-shadow: none; } - GtkColorChooserWidget #add-color-button:hover { - border-color: #dcdfe3; - background-color: #dcdfe3; } - -GtkColorButton.button { - padding: 5px; } - GtkColorButton.button GtkColorSwatch { - border-radius: 0; } - -.scale-popup .button { - padding: 6px; } - .scale-popup .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - -GtkVolumeButton.button { - padding: 8px; } - -.touch-selection, -.context-menu { - font: initial; } - -.monospace { - font: Monospace; } - -.overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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; } - -.window-frame { - border-radius: 3px 3px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px #000f12, 0 8px 8px 0 rgba(0, 0, 0, 0.2); - margin: 10px; } - .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } - .window-frame.tiled { - border-radius: 0; } - .window-frame.popup { - box-shadow: none; - border-radius: 0; } - .window-frame.csd.popup, .window-frame.csd.menu { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.message-dialog { - border-radius: 3px; } - -.header-bar.default-decoration .button.titlebutton, .titlebar.default-decoration .button.titlebutton, -.header-bar.selection-mode.default-decoration .button.titlebutton, .titlebar.selection-mode.default-decoration .button.titlebutton { - padding-top: 0px; - padding-bottom: 0px; } - -.header-bar .button.titlebutton, .titlebar .button.titlebutton, -.header-bar.selection-mode .button.titlebutton, .titlebar.selection-mode .button.titlebutton { - padding: 8px 4px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); - color: transparent; - background-position: center; - background-repeat: no-repeat; } - .header-bar .button.titlebutton:backdrop, .titlebar .button.titlebutton:backdrop, - .header-bar.selection-mode .button.titlebutton:backdrop, .titlebar.selection-mode .button.titlebutton:backdrop { - opacity: 1; } - -.header-bar .right .button.titlebutton:nth-last-child(3), -.header-bar .right:dir(rtl) .button.titlebutton:nth-child(3), -.header-bar .left .button.titlebutton:nth-child(3), -.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar .right .button.titlebutton:nth-last-child(3), -.titlebar .right:dir(rtl) .button.titlebutton:nth-child(3), -.titlebar .left .button.titlebutton:nth-child(3), -.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3), -.header-bar.selection-mode .right .button.titlebutton:nth-last-child(3), -.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), -.header-bar.selection-mode .left .button.titlebutton:nth-child(3), -.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3), -.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), -.titlebar.selection-mode .left .button.titlebutton:nth-child(3), -.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3) { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-dark.png"), url("assets/titlebutton-minimize-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(3):hover, .header-bar .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar .left .button.titlebutton:nth-child(3):hover, - .header-bar .left .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(3):hover, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar .left .button.titlebutton:nth-child(3):hover, - .titlebar .left .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover-dark.png"), url("assets/titlebutton-minimize-hover-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(3):active:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .header-bar .left .button.titlebutton:nth-child(3):active:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar .right .button.titlebutton:nth-last-child(3):active:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .titlebar .left .button.titlebutton:nth-child(3):active:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active-dark.png"), url("assets/titlebutton-minimize-active-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(3):backdrop, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .header-bar .left .button.titlebutton:nth-child(3):backdrop, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .titlebar .left .button.titlebutton:nth-child(3):backdrop, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop-dark.png"), url("assets/titlebutton-minimize-backdrop-dark@2.png")); } - -.header-bar .right .button.titlebutton:nth-last-child(2), -.header-bar .right:dir(rtl) .button.titlebutton:nth-child(2), -.header-bar .left .button.titlebutton:nth-child(2), -.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar .right .button.titlebutton:nth-last-child(2), -.titlebar .right:dir(rtl) .button.titlebutton:nth-child(2), -.titlebar .left .button.titlebutton:nth-child(2), -.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2), -.header-bar.selection-mode .right .button.titlebutton:nth-last-child(2), -.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), -.header-bar.selection-mode .left .button.titlebutton:nth-child(2), -.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2), -.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), -.titlebar.selection-mode .left .button.titlebutton:nth-child(2), -.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2) { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-dark.png"), url("assets/titlebutton-maximize-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(2):hover, .header-bar .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar .left .button.titlebutton:nth-child(2):hover, - .header-bar .left .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(2):hover, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar .left .button.titlebutton:nth-child(2):hover, - .titlebar .left .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover-dark.png"), url("assets/titlebutton-maximize-hover-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(2):active:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .header-bar .left .button.titlebutton:nth-child(2):active:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar .right .button.titlebutton:nth-last-child(2):active:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .titlebar .left .button.titlebutton:nth-child(2):active:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active-dark.png"), url("assets/titlebutton-maximize-active-dark@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(2):backdrop, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .header-bar .left .button.titlebutton:nth-child(2):backdrop, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .titlebar .left .button.titlebutton:nth-child(2):backdrop, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop-dark.png"), url("assets/titlebutton-maximize-backdrop-dark@2.png")); } - -.header-bar .right .button.titlebutton:last-child, -.header-bar .right:dir(rtl) .button.titlebutton:first-child, -.header-bar .left .button.titlebutton:first-child, -.header-bar .left:dir(rtl) .button.titlebutton:last-child, .titlebar .right .button.titlebutton:last-child, -.titlebar .right:dir(rtl) .button.titlebutton:first-child, -.titlebar .left .button.titlebutton:first-child, -.titlebar .left:dir(rtl) .button.titlebutton:last-child, -.header-bar.selection-mode .right .button.titlebutton:last-child, -.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, -.header-bar.selection-mode .left .button.titlebutton:first-child, -.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child, .titlebar.selection-mode .right .button.titlebutton:last-child, -.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, -.titlebar.selection-mode .left .button.titlebutton:first-child, -.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child { - background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } - .header-bar .right .button.titlebutton:last-child:hover, .header-bar .right .button.titlebutton:last-child:backdrop:hover, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:hover, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .header-bar .left .button.titlebutton:first-child:hover, - .header-bar .left .button.titlebutton:first-child:backdrop:hover, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:hover, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar .right .button.titlebutton:last-child:hover, .titlebar .right .button.titlebutton:last-child:backdrop:hover, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:hover, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .titlebar .left .button.titlebutton:first-child:hover, - .titlebar .left .button.titlebutton:first-child:backdrop:hover, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:hover, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .right .button.titlebutton:last-child:hover, - .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left .button.titlebutton:first-child:hover, - .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left .button.titlebutton:first-child:hover, - .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } - .header-bar .right .button.titlebutton:last-child:active:hover, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .header-bar .left .button.titlebutton:first-child:active:hover, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar .right .button.titlebutton:last-child:active:hover, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .titlebar .left .button.titlebutton:first-child:active:hover, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .right .button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left .button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:active:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left .button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } - .header-bar .right .button.titlebutton:last-child:backdrop, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .header-bar .left .button.titlebutton:first-child:backdrop, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar .right .button.titlebutton:last-child:backdrop, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .titlebar .left .button.titlebutton:first-child:backdrop, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop, - .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } - -.header-bar .left GtkMenuButton.button.titlebutton:first-child, -.header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, -.header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, -.header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, .titlebar .left GtkMenuButton.button.titlebutton:first-child, -.titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, -.titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, -.titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child { - padding: 4px 6px 4px 6px; - color: rgba(89, 128, 143, 0.8); } - .header-bar .left GtkMenuButton.button.titlebutton:first-child, .header-bar .left GtkMenuButton.button.titlebutton:first-child:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:backdrop, .header-bar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child, .titlebar .left GtkMenuButton.button.titlebutton:first-child:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:backdrop, .titlebar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover { - background-image: none; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .header-bar .left GtkMenuButton.button.titlebutton:first-child:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .header-bar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:checked, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:checked, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked, .titlebar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:checked, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:checked, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - -.view:selected, .view:selected:focus, .view:selected:hover, GtkLabel:selected, GtkLabel:selected:focus, GtkLabel:selected:hover, GtkFlowBox .grid-child:selected, .menuitem.button.flat:active, .menuitem.button.flat:selected, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, -GtkEntry.gb-command-bar-entry.entry.flat:focus:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); } - -GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, -ScratchMainWindow .notebook tab.reorderable-page.top:active, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, -ScratchMainWindow .notebook tab.top:active, -ScratchMainWindow .notebook tab.top.active-page, -ScratchMainWindow .notebook tab.top.active-page:hover, -EphyNotebook.notebook tab.reorderable-page.top:active, -EphyNotebook.notebook tab.reorderable-page.top.active-page, -EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, -EphyNotebook.notebook tab.top:active, -EphyNotebook.notebook tab.top.active-page, -EphyNotebook.notebook tab.top.active-page:hover, -MidoriNotebook .notebook tab.reorderable-page.top:active, -MidoriNotebook .notebook tab.reorderable-page.top.active-page, -MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, -MidoriNotebook .notebook tab.top:active, -MidoriNotebook .notebook tab.top.active-page, -MidoriNotebook .notebook tab.top.active-page:hover, -TerminalWindow .notebook tab.reorderable-page.top:active, -TerminalWindow .notebook tab.reorderable-page.top.active-page, -TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -TerminalWindow .notebook tab.top:active, -TerminalWindow .notebook tab.top.active-page, -TerminalWindow .notebook tab.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - -TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.top { - padding-top: 7px; - border-top-width: 3px; } - -TerminalWindow .notebook.header.top, -PantheonTerminalPantheonTerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #001b22, inset 0 -1px #dcdfe3; } - -GtkHTML { - background-color: #fdf6e3; - color: #5c616c; } - GtkHTML:active { - color: #fdf6e3; - background-color: #268bd2; } - -SushiFontWidget { - padding: 6px 12px; } - -TerminalWindow .background { - background-color: transparent; } - -TerminalWindow .scrollbar.vertical .slider { - margin-left: 3px; } - -TerminalWindow .scrollbar.trough { - border-width: 0; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { - color: #5c616c; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { - color: #fdf6e3; } - -NautilusNotebook.notebook { - background-color: #fdf6e3; } - NautilusNotebook.notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; } - -NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { - padding: 5px; - box-shadow: none; - background-color: #fdf6e3; } - -NemoWindow EelEditableLabel.entry { - transition: none; } - -NemoWindow .sidebar .frame { - border-width: 0; } - -NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #dcdfe3; } - -NemoWindow .primary-toolbar NemoPathBar.linked > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - background-color: rgba(0, 193, 243, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4), inset -1px 0 rgba(0, 0, 0, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.gedit-headerbar-paned { - color: #001b22; } - -.open-document-selector-listbox-row { - border-bottom: 1px solid #e7e9ec; - padding: 6px 6px 6px 12px; } - .open-document-selector-listbox-row .path-label { - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - .open-document-selector-listbox-row:selected .path-label { - color: rgba(253, 246, 227, 0.7); } - -.gedit-document-panel .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; } - .gedit-document-panel .list-row .button GtkImage { - color: inherit; } - -.gedit-document-panel .prelight-row .button { - color: #92959d; } - -.gedit-document-panel .list-row .button:hover, -.gedit-document-panel .prelight-row .button:hover { - color: #ff4d4d; } - -.gedit-document-panel .prelight-row:selected .button:hover { - color: #ff6666; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; } - .gedit-document-panel .prelight-row:selected .button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel .prelight-row .button:active { - color: #5c616c; } - -.gedit-document-panel-dragged-row { - border: 1px solid #dcdfe3; - background-color: #d9dde0; - color: #5c616c; } - -GeditStatusbar { - border-top: 1px solid #dcdfe3; - background-color: #F5F6F7; } - -GeditStatusMenuButton.button.flat, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton:checked.button.flat { - border-bottom-style: none; - border-radius: 0; } - -GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #dcdfe3; } - -.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { - color: rgba(92, 97, 108, 0.6); - margin: 2px; - padding: 2px; } - -GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { - background-color: #fbfbfc; - padding: 6px; - border-color: #dcdfe3; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image:hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image:hover { - color: inherit; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):insensitive, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { - box-shadow: -1px 0 #268bd2; } - -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; } - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - box-shadow: 1px 0 #268bd2; } - -GbEditorFrame .gb-search-slider { - padding: 2px; } - -GdTaggedEntry { - color: #5c616c; } - -.preferences.sidebar GtkViewport { - border: none; } - -.preferences.sidebar GtkListBox { - background-color: #F5F6F7; } - -.preferences.sidebar GtkListBoxRow { - padding: 10px; } - -GbPreferencesPageLanguage GtkSearchEntry { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - -GbPreferencesPageLanguage GtkScrolledWindow { - border-top-width: 0; } - -GtkBox.gb-command-bar-box { - border: none; - background-color: #073642; } - GtkBox.gb-command-bar-box GtkLabel { - color: #657b83; } - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: #657b83; - background-image: none; - background-color: #073642; - padding: 6px 6px 6px 6px; - border: none; } - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; } - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; } - -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; } - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbViewStack.focused GtkBox.header.notebook { - background-color: #fdf6e3; } - GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook GtkLabel.button.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { - opacity: 1; } - -EphyWindow .floating-bar { - color: #5c616c; } - -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon { - background-color: rgba(92, 97, 108, 0.3); - border-radius: 2px; } - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: #78b9e6; } - -.documents-entry-tag { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover { - color: #fdf6e3; - background-color: #3295da; } - .documents-entry-tag:active { - color: #fdf6e3; - background-color: #2380c1; } - .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; } - .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { - color: rgba(253, 246, 227, 0.7); } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -TotemGrilo.vertical GdMainView.frame { - border-width: 0; } - -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { - background-color: #268bd2; } - -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; } - -.gnome-panel-menu-bar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: #657b83; - background-image: linear-gradient(to bottom, #05242c); } - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: #657b83; } - -PanelApplet .button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); - border-color: rgba(0, 0, 0, 0.17); } - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: rgba(0, 0, 0, 0.25); - border-radius: 0; - border-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -PanelApplet:hover { - color: white; } - -PanelApplet:active, -PanelApplet:hover:active { - color: #268bd2; } - -WnckPager { - color: #333e42; } - WnckPager:selected { - color: #268bd2; } - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; } - -ClockBox { - color: #657b83; } - -.xfce4-panel.panel { - background-color: #05242c; - text-shadow: none; - icon-shadow: none; } - .xfce4-panel.panel .button.flat { - color: #657b83; - background-color: rgba(5, 36, 44, 0); - border-radius: 0; - border: none; } - .xfce4-panel.panel .button.flat:hover { - border: none; - background-color: #0a4a5a; } - .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - -.floating-bar { - background-color: #268bd2; - color: #fdf6e3; } - .floating-bar.top { - border-radius: 0 0 2px 2px; } - .floating-bar.right { - border-radius: 2px 0 0 2px; } - .floating-bar.bottom { - border-radius: 2px 2px 0 0; } - .floating-bar.left { - border-radius: 0 2px 2px 0; } - .floating-bar .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - background-color: transparent; - box-shadow: none; - border: none; } - -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; } - -MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { - color: #fdf6e3; - background-color: #268bd2; - outline-color: transparent; } - -MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { - background-color: transparent; } - -MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { - outline-color: transparent; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - .marlin-pathbar.pathbar:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; - border: solid transparent; - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { - padding: 0 3px; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { - background-color: rgba(0, 0, 0, 0.04); - border: solid rgba(0, 0, 0, 0.08); - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { - color: rgba(92, 97, 108, 0.55); } - -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; } - -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: #5c616c; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration.top { - border: 1px solid #000f12; - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #002b36); - color: rgba(89, 128, 143, 0.8); - box-shadow: inset 0 1px #003745; } - UnityDecoration.top:backdrop { - border-bottom-width: 0; - color: rgba(89, 128, 143, 0.5); } - UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, #000f12); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: #004b5f; - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; } - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar GtkLabel { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #dcdfe3; - border-right: 1px solid #dcdfe3; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #dcdfe3; } - .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { - padding: 0 3px 0 3px; } - -.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #dcdfe3; - background-color: #F5F6F7; } - .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view { - background-color: #F5F6F7; - color: #5c616c; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:prelight { - background-color: white; } - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: #F5F6F7; - background-image: none; } - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #5c616c; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GraniteWidgetsWelcome { - background-color: #fdf6e3; } - -GraniteWidgetsWelcome GtkLabel { - color: #a9acb2; - font: open sans 11; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(92, 97, 108, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #fdf6e3); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry.entry { - padding: 4px; } - -.h1 { - font: open sans 24px; } - -.h2 { - font: open sans light 18px; } - -.h3 { - font: open sans 11px; } - -.h4, -.category-label { - color: #8a8e96; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: #05242c; - color: #657b83; - font: bold; - box-shadow: inset 0 -1px #010a0c; } - #panel_window .menubar { - padding-left: 5px; } - #panel_window .menubar, #panel_window .menubar > .menuitem { - background-color: transparent; - color: #657b83; - font: bold; } - #panel_window .menubar .menuitem:insensitive { - color: rgba(101, 123, 131, 0.5); } - #panel_window .menubar .menuitem:insensitive GtkLabel { - color: inherit; } - #panel_window .menubar .menu .menuitem { - font: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: #5c616c; } - -#content_frame { - padding-bottom: 14px; - background-color: #F5F6F7; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - #content_frame .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - #content_frame .button:active, #content_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - #content_frame .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - #content_frame .button:insensitive > GtkLabel { - color: inherit; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: #073642; - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px #073642; } - -#buttonbox_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - #buttonbox_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - #buttonbox_frame .button:active, #buttonbox_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - #buttonbox_frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -#login_window #user_combobox { - color: #5c616c; - font: 13px; } - #login_window #user_combobox .menu { - font: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font: bold; } - -.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { - color: #001b22; } - -NemoWindow GtkEventBox { - background-color: #F5F6F7; } - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; } - -NautilusWindow GtkBox.sidebar { - background-color: transparent; } - -GtkFileChooserDialog.csd.background, -GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, -NautilusWindow.csd.background, -NautilusWindow .source-list, -NautilusWindow .source-list.view, -NautilusWindow .source-list.view:prelight, -NemoWindow.csd.background, -NemoWindow .source-list, -NemoWindow .source-list.view, -NemoWindow .source-list.view:prelight, -MarlinViewWindow.csd.background, -MarlinViewWindow .source-list, -MarlinViewWindow .source-list.view, -MarlinViewWindow .source-list.view:prelight { - background-color: transparent; } - -GtkFileChooserDialog .sidebar, GtkFileChooserDialog MarlinPlacesSidebar, -NautilusWindow .sidebar, -NautilusWindow MarlinPlacesSidebar, -NemoWindow .sidebar, -NemoWindow MarlinPlacesSidebar, -MarlinViewWindow .sidebar, -MarlinViewWindow MarlinPlacesSidebar { - background-color: #073642; } - GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar .source-list.sidebar row, GtkFileChooserDialog MarlinPlacesSidebar .view, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row, - NautilusWindow .sidebar .view, - NautilusWindow .sidebar .source-list.sidebar row, - NautilusWindow MarlinPlacesSidebar .view, - NautilusWindow MarlinPlacesSidebar .source-list.sidebar row, - NemoWindow .sidebar .view, - NemoWindow .sidebar .source-list.sidebar row, - NemoWindow MarlinPlacesSidebar .view, - NemoWindow MarlinPlacesSidebar .source-list.sidebar row, - MarlinViewWindow .sidebar .view, - MarlinViewWindow .sidebar .source-list.sidebar row, - MarlinViewWindow MarlinPlacesSidebar .view, - MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row { - background-color: transparent; - color: #657b83; } - GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar .source-list.sidebar row.image, GtkFileChooserDialog MarlinPlacesSidebar .view.image, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.image, - NautilusWindow .sidebar .view.image, - NautilusWindow .sidebar .source-list.sidebar row.image, - NautilusWindow MarlinPlacesSidebar .view.image, - NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.image, - NemoWindow .sidebar .view.image, - NemoWindow .sidebar .source-list.sidebar row.image, - NemoWindow MarlinPlacesSidebar .view.image, - NemoWindow MarlinPlacesSidebar .source-list.sidebar row.image, - MarlinViewWindow .sidebar .view.image, - MarlinViewWindow .sidebar .source-list.sidebar row.image, - MarlinViewWindow MarlinPlacesSidebar .view.image, - MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.image { - color: rgba(101, 123, 131, 0.7); } - GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar .source-list.sidebar row.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .view.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.cell:selected, - NautilusWindow .sidebar .view.cell:selected, - NautilusWindow .sidebar .source-list.sidebar row.cell:selected, - NautilusWindow MarlinPlacesSidebar .view.cell:selected, - NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, - NemoWindow .sidebar .view.cell:selected, - NemoWindow .sidebar .source-list.sidebar row.cell:selected, - NemoWindow MarlinPlacesSidebar .view.cell:selected, - NemoWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, - MarlinViewWindow .sidebar .view.cell:selected, - MarlinViewWindow .sidebar .source-list.sidebar row.cell:selected, - MarlinViewWindow MarlinPlacesSidebar .view.cell:selected, - MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog MarlinPlacesSidebar.frame, - NautilusWindow .sidebar.frame, - NautilusWindow MarlinPlacesSidebar.frame, - NemoWindow .sidebar.frame, - NemoWindow MarlinPlacesSidebar.frame, - MarlinViewWindow .sidebar.frame, - MarlinViewWindow MarlinPlacesSidebar.frame { - color: #657b83; } - GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog MarlinPlacesSidebar .separator, GtkFileChooserDialog MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserDialog MarlinPlacesSidebar .view.separator, - NautilusWindow .sidebar .separator, - NautilusWindow GtkPlacesSidebar.sidebar .view.separator, - NautilusWindow MarlinPlacesSidebar .separator, - NautilusWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - NautilusWindow MarlinPlacesSidebar .view.separator, - NemoWindow .sidebar .separator, - NemoWindow GtkPlacesSidebar.sidebar .view.separator, - NemoWindow MarlinPlacesSidebar .separator, - NemoWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - NemoWindow MarlinPlacesSidebar .view.separator, - MarlinViewWindow .sidebar .separator, - MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, - MarlinViewWindow MarlinPlacesSidebar .separator, - MarlinViewWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - MarlinViewWindow MarlinPlacesSidebar .view.separator { - color: transparent; } - -GtkFileChooserDialog.maximized .sidebar, -NautilusWindow.maximized .sidebar, -NemoWindow.maximized .sidebar, -MarlinViewWindow.maximized .sidebar { - background-color: #073642; } - -GtkFileChooserDialog .pane-separator, -NautilusWindow .pane-separator, -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { - background-color: #073642; } - -NautilusWindow NautilusWindowSlot { - background-color: #fdf6e3; } - -NautilusDesktopWindow NautilusWindowSlot { - background-color: transparent; } - -GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { - background-color: #073642; } - -GtkFileChooserDialog .sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-action-box { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-vbox > .frame { - color: #657b83; - border-color: transparent; } - -GtkFileChooserDialog .action-bar.frame { - background-color: transparent; - border-color: #05232b; } - -GtkFileChooserDialog .action-bar.frame GtkLabel, GtkFileChooserDialog .action-bar.frame GtkComboBox, -GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, -GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { - color: #657b83; } - -FeedReaderreaderUI.background.csd > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd > .titlebar .pane-separator, -GeditWindow.background.csd.maximized > .titlebar .pane-separator, -GeditWindow.background.csd > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { - background-color: #001b22; } - -FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #002b36; } - FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #00313e; } - -FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #002b36; } - FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #00313e; } - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; } - -GeditWindow.background.csd { - background-color: transparent; } - -GeditWindow.background .gedit-side-panel-paned .pane-separator { - background-color: #073642; } - -GeditWindow.background .gedit-bottom-panel-paned .pane-separator { - background-color: #dcdfe3; } - -GeditWindow.background > .titlebar.default-decoration, -GeditWindow.background > .titlebar.default-decoration:backdrop { - background-color: #002b36; } - -.gedit-bottom-panel-paned { - background-color: #fdf6e3; } - -.gedit-document-panel { - background-color: #073642; } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel .list-row { - color: #657b83; } - .gedit-document-panel .list-row { - background-color: rgba(101, 123, 131, 0); - border: solid rgba(101, 123, 131, 0); - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:hover { - border: solid rgba(101, 123, 131, 0.15); - border-width: 3px 2px 3px 2px; - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel .list-row:active { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:active .button { - color: #fdf6e3; } - .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -GeditFileBrowserWidget { - background-color: #073642; } - .maximized GeditFileBrowserWidget { - background-color: #073642; } - GeditFileBrowserWidget .scrollbars-junction, - GeditFileBrowserWidget .scrollbars-junction.frame { - border-color: transparent; - background-color: transparent; } - GeditFileBrowserWidget .horizontal { - background-color: transparent; - border-color: #041c22; } - GeditFileBrowserWidget .horizontal GtkComboBox { - color: #657b83; } - -GeditWindow.background.csd GeditFileBrowserView.view { - background-color: transparent; - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander { - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { - color: #268bd2; } - -GtkFileChooserDialog .action-bar.frame .button, -GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - GtkFileChooserDialog .action-bar.frame .button:hover, - GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - GtkFileChooserDialog .action-bar.frame .button:active, - GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog .action-bar.frame .button:checked, - GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - GtkFileChooserDialog .action-bar.frame .button:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -GtkFileChooserDialog .action-bar.frame .entry, -GtkFileChooserDialog .dialog-vbox > .frame .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.4)); - background-color: transparent; } - GtkFileChooserDialog .action-bar.frame .image.entry, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog .action-bar.frame .image.entry:hover, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { - color: inherit; } - GtkFileChooserDialog .action-bar.frame .entry:focus, - GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, #268bd2); } - GtkFileChooserDialog .action-bar.frame .entry:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.25)); } - -GtkFileChooserDialog .sidebar .trough.scrollbar, GtkFileChooserDialog MarlinPlacesSidebar .trough.scrollbar, -NautilusWindow .sidebar .trough.scrollbar, -NautilusWindow MarlinPlacesSidebar .trough.scrollbar, -NemoWindow .sidebar .trough.scrollbar, -NemoWindow MarlinPlacesSidebar .trough.scrollbar, -MarlinViewWindow .sidebar .trough.scrollbar, -MarlinViewWindow MarlinPlacesSidebar .trough.scrollbar, GeditFileBrowserWidget .trough.scrollbar { - background-color: transparent; - border-color: transparent; } - -GtkFileChooserDialog .sidebar .slider.scrollbar, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar, -NautilusWindow .sidebar .slider.scrollbar, -NautilusWindow MarlinPlacesSidebar .slider.scrollbar, -NemoWindow .sidebar .slider.scrollbar, -NemoWindow MarlinPlacesSidebar .slider.scrollbar, -MarlinViewWindow .sidebar .slider.scrollbar, -MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar, GeditFileBrowserWidget .slider.scrollbar { - border-radius: 20px; - border: 3px solid transparent; - background-color: rgba(141, 160, 167, 0.7); } - GtkFileChooserDialog .sidebar .slider.scrollbar:hover, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar:hover, - NautilusWindow .sidebar .slider.scrollbar:hover, - NautilusWindow MarlinPlacesSidebar .slider.scrollbar:hover, - NemoWindow .sidebar .slider.scrollbar:hover, - NemoWindow MarlinPlacesSidebar .slider.scrollbar:hover, - MarlinViewWindow .sidebar .slider.scrollbar:hover, - MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar:hover, GeditFileBrowserWidget .slider.scrollbar:hover { - background-color: #9cacb2; } - GtkFileChooserDialog .sidebar .slider.scrollbar:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar:prelight:active, - NautilusWindow .sidebar .slider.scrollbar:prelight:active, - NautilusWindow MarlinPlacesSidebar .slider.scrollbar:prelight:active, - NemoWindow .sidebar .slider.scrollbar:prelight:active, - NemoWindow MarlinPlacesSidebar .slider.scrollbar:prelight:active, - MarlinViewWindow .sidebar .slider.scrollbar:prelight:active, - MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar:prelight:active, GeditFileBrowserWidget .slider.scrollbar:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog .sidebar .slider.fine-tune.scrollbar, GtkFileChooserDialog MarlinPlacesSidebar .slider.fine-tune.scrollbar, - NautilusWindow .sidebar .slider.fine-tune.scrollbar, - NautilusWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar, - NemoWindow .sidebar .slider.fine-tune.scrollbar, - NemoWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar, - MarlinViewWindow .sidebar .slider.fine-tune.scrollbar, - MarlinViewWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar, GeditFileBrowserWidget .slider.fine-tune.scrollbar { - border-width: 4px; } - GtkFileChooserDialog .sidebar .slider.fine-tune.scrollbar:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, - NautilusWindow .sidebar .slider.fine-tune.scrollbar:prelight:active, - NautilusWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, - NemoWindow .sidebar .slider.fine-tune.scrollbar:prelight:active, - NemoWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, - MarlinViewWindow .sidebar .slider.fine-tune.scrollbar:prelight:active, - MarlinViewWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, GeditFileBrowserWidget .slider.fine-tune.scrollbar:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog .sidebar .slider.scrollbar:insensitive, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar:insensitive, - NautilusWindow .sidebar .slider.scrollbar:insensitive, - NautilusWindow MarlinPlacesSidebar .slider.scrollbar:insensitive, - NemoWindow .sidebar .slider.scrollbar:insensitive, - NemoWindow MarlinPlacesSidebar .slider.scrollbar:insensitive, - MarlinViewWindow .sidebar .slider.scrollbar:insensitive, - MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar:insensitive, GeditFileBrowserWidget .slider.scrollbar:insensitive { - background-color: transparent; } - -/* GTK NAMED COLORS */ -@define-color theme_fg_color #5c616c; -@define-color theme_text_color #5c616c; -@define-color theme_bg_color #F5F6F7; -@define-color theme_base_color #fdf6e3; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #5c616c; -@define-color text_color #5c616c; -@define-color bg_color #F5F6F7; -@define-color base_color #fdf6e3; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #faf6eb; -@define-color insensitive_fg_color alpha(#5c616c, 0.5); -@define-color insensitive_base_color #fdf6e3; -@define-color theme_unfocused_fg_color #5c616c; -@define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #F5F6F7; -@define-color theme_unfocused_base_color #fdf6e3; -@define-color borders #dcdfe3; -@define-color unfocused_borders #dcdfe3; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #1e6ea7; -@define-color wm_title alpha(#59808f, 0.8); -@define-color wm_unfocused_title alpha(#59808f, 0.5); -@define-color wm_bg #002b36; -@define-color wm_bg_unfocused #00313e; -@define-color wm_highlight #003745; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #dc322f; -@define-color wm_button_close_hover_bg #cb4b16; -@define-color wm_button_close_active_bg #dc322f; -@define-color wm_icon_close_bg #002b36; -@define-color wm_button_hover_bg #657b83; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #002b36; -@define-color wm_icon_bg #93a1a1; -@define-color wm_icon_unfocused_bg #657b83; -@define-color wm_icon_hover_bg #93a1a1; -@define-color wm_icon_active_bg #fdf6e3; -@define-color content_view_bg #fdf6e3; diff --git a/common/gtk-3.0/3.14/gtk-solid.css b/common/gtk-3.0/3.14/gtk-solid.css deleted file mode 100644 index bc442eb..0000000 --- a/common/gtk-3.0/3.14/gtk-solid.css +++ /dev/null @@ -1,4057 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -GtkPaned-handle-size: 1; - -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: #1e6ea7; - -GtkWidget-visited-link-color: #16527c; - -GtkWidget-focus-padding: 2; - -GtkWidget-focus-line-width: 1; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - -GtkStatusbar-shadow-type: none; - outline-color: rgba(92, 97, 108, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; } - -.background { - color: #5c616c; - background-color: #F5F6F7; } - -*:insensitive { - -gtk-image-effect: dim; } - -.gtkstyle-fallback { - background-color: #F5F6F7; - color: #5c616c; } - .gtkstyle-fallback:prelight { - background-color: white; - color: #5c616c; } - .gtkstyle-fallback:active { - background-color: #d9dde0; - color: #5c616c; } - .gtkstyle-fallback:insensitive { - background-color: #faf6eb; - color: rgba(92, 97, 108, 0.55); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view { - color: #5c616c; - background-color: #fdf6e3; } - .view.dim-label, GtkLabel.view.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .view.subtitle { - color: rgba(92, 97, 108, 0.55); } - .view.dim-label:selected, GtkLabel.view.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, GtkLabel.view.separator:selected:focus, .header-bar .view.subtitle:selected:focus { - color: rgba(253, 246, 227, 0.65); - text-shadow: none; } - -.rubberband { - border: 1px solid #268bd2; - background-color: rgba(38, 139, 210, 0.2); } - -GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator { - color: #5c616c; } - -GtkLabel:insensitive { - color: rgba(92, 97, 108, 0.55); } - -.dim-label, GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .subtitle { - opacity: 0.55; } - -GtkAssistant .sidebar { - background-color: #fdf6e3; - border-top: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #dcdfe3; } - -GtkAssistant.csd .sidebar { - border-top-style: none; } - -GtkAssistant .sidebar GtkLabel { - padding: 6px 12px; } - -GtkAssistant .sidebar GtkLabel.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -GtkTextView { - background-color: #f9f6ed; } - -GtkFlowBox .grid-child { - padding: 3px; - border-radius: 3px; } - GtkFlowBox .grid-child:selected { - outline-offset: -2px; } - -.popover.osd, .osd { - color: #657b83; - border: none; - background-color: #073642; - background-clip: padding-box; - outline-color: rgba(101, 123, 131, 0.3); - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - .spinner:active { - opacity: 1; - animation: spin 1s linear infinite; } - .spinner:active:insensitive { - opacity: 0.5; } - -.entry { - border: 1px solid; - padding: 5px 8px; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry.image.left { - padding-left: 0; } - .entry.image.right { - padding-right: 0; } - .entry.flat, .entry.flat:focus { - padding: 2px; - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); - border: none; - border-radius: 0; } - .entry:focus { - background-clip: border-box; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(253, 246, 227, 0.55); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.55)); } - .entry:selected, .entry:selected:focus { - background-color: #268bd2; - color: #fdf6e3; } - .entry.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - .linked > .entry:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .linked > .entry:first-child:dir(rtl) { - border-right-style: none; } - .linked > .entry:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; } - .linked > .entry:last-child:dir(rtl) { - border-left-style: solid; } - .entry.warning { - color: #fdf6e3; - border-color: #cb4b16; - background-image: linear-gradient(to bottom, #df8f68); } - .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); - box-shadow: none; } - .entry.warning:selected, .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .entry.error { - color: #fdf6e3; - border-color: #dc322f; - background-image: linear-gradient(to bottom, #e98077); } - .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); - box-shadow: none; } - .entry.error:selected, .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - .entry.image { - color: #7c7f84; } - .linked.vertical > .entry { - border-bottom-color: #f3efe3; - box-shadow: none; } - .linked.vertical > .entry:focus { - border-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:insensitive { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:first-child { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:first-child:focus { - border-bottom-color: #268bd2; - box-shadow: none; } - .linked.vertical > .entry:first-child:insensitive { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:last-child { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .linked.vertical > .entry:last-child:focus { - border-bottom-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:last-child:insensitive { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .osd .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.4)); - background-color: transparent; } - .osd .entry.image, .osd .entry.image:hover { - color: inherit; } - .osd .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, #268bd2); } - .osd .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.25)); } - -GtkSearchEntry.entry { - border-radius: 20px; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -.button { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 5px 8px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(251, 251, 252, 0); - border-color: rgba(101, 123, 131, 0); - transition: none; } - .button.flat:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - .button.flat:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; - -gtk-image-effect: highlight; } - .button:active, .button:checked { - background-clip: border-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; - transition-duration: 50ms; } - .button:active { - color: #5c616c; } - .button:active:hover, .button:checked { - color: #fdf6e3; } - .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; } - .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button:insensitive > GtkLabel { - color: inherit; } - .button:insensitive:active, .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { - color: inherit; } - .button.osd { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - background-color: #073642; - border-color: #03181d; } - .button.osd.image-button, .header-bar .button.osd.titlebutton, .titlebar .button.osd.titlebutton { - padding: 10px; } - .button.osd:hover { - color: #268bd2; } - .button.osd:active, .button.osd:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .button.osd:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .osd .button:dir(rtl) { - border-radius: 0; - border-right-style: none; - border-left-style: none; } - .osd .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:dir(rtl) { - border-left-style: solid; } - .osd .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd .button:hover, .osd .button:hover:first-child, .osd .button:hover:last-child { - box-shadow: none; } - .osd .button:active, .osd .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd .button.flat:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd .button.flat:hover, .osd .button.flat:hover:first-child, .osd .button.flat:hover:last-child { - box-shadow: none; } - .osd .button.flat:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); - background-image: none; } - .osd .button.flat:active, .osd .button.flat:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .button.suggested-action:active, .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .button.suggested-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.suggested-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .button.destructive-action:active, .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .button.destructive-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.destructive-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - .button.image-button, .header-bar .button.titlebutton, .titlebar .button.titlebutton, - .header-bar.selection-mode .button.titlebutton, .titlebar.selection-mode .button.titlebutton { - padding: 7px; } - .header-bar .button.image-button, .header-bar .button.titlebutton, .header-bar.selection-mode .button.titlebutton, .header-bar .titlebar.selection-mode .button.titlebutton, .titlebar.selection-mode .header-bar .button.titlebutton { - padding: 7px 10px; } - .button.text-button { - padding-left: 16px; - padding-right: 16px; } - .button.text-button.image-button, .header-bar .button.text-button.titlebutton, .titlebar .button.text-button.titlebutton { - padding: 5px 8px; } - .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, .titlebar .button.text-button.titlebutton GtkLabel:first-child { - padding-left: 8px; } - .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, .titlebar .button.text-button.titlebutton GtkLabel:last-child { - padding-right: 8px; } - .stack-switcher > .button { - outline-offset: -3px; } - .stack-switcher > .button > GtkLabel { - 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 { - padding: 5px 10px; } - .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, .titlebar .stack-switcher > .button.titlebutton { - padding: 2px 4px; } - .stack-switcher > .button.needs-attention:active > .label, - .stack-switcher > .button.needs-attention:active > GtkImage, - .stack-switcher > .button.needs-attention:checked > GtkLabel, - .stack-switcher > .button.needs-attention:checked > GtkImage { - animation: none; - background-image: none; } - .stack-switcher > .button.needs-attention > GtkLabel, - .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 4px; } - .stack-switcher > .button.needs-attention > GtkLabel:dir(rtl), - .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { - background-position: left 3px, left 4px; } - .inline-toolbar .button, .inline-toolbar .button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar GtkToolButton > .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .inline-toolbar GtkToolButton > .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { - color: inherit; } - .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { - color: inherit; } - -.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, -.linked > .button:hover, -.linked > .button:active, -.linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4), inset -1px 0 rgba(101, 123, 131, 0.4); } - .inline-toolbar GtkToolButton > .button.flat:active, .osd .button:active, .inline-toolbar .button:active, .linked > .button:active, GtkComboBox.combobox-entry .entry:active, GtkComboBox.combobox-entry .button:active, .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, .linked > GtkComboBox > .button:active:dir(ltr), .inline-toolbar GtkToolButton > .button.flat:checked, .osd .button:checked, .inline-toolbar .button:checked, .linked > .button:checked, GtkComboBox.combobox-entry .entry:checked, GtkComboBox.combobox-entry .button:checked, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked, .linked > GtkComboBox > .button:checked:dir(ltr) { - box-shadow: none; } - .inline-toolbar.toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .inline-toolbar .button:dir(rtl):backdrop, .linked > .button:dir(rtl), - .linked > .button:dir(rtl):hover, - .linked > .button:dir(rtl):active, - .linked > .button:dir(rtl):checked, GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), .primary-toolbar .linked.path-bar > .button:dir(rtl), .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { - border-radius: 0; } - -.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, .primary-toolbar .linked.path-bar > .button:first-child, .header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.4); } - .osd .button:first-child:active, .inline-toolbar .button:first-child:active, .linked > .button:first-child:active, .inline-toolbar GtkToolButton:first-child > .button.flat:active, GtkComboBox.combobox-entry .entry:first-child:active, GtkComboBox.combobox-entry .button:first-child:active, .linked > GtkComboBox:first-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, .osd .button:first-child:checked, .inline-toolbar .button:first-child:checked, .linked > .button:first-child:checked, .inline-toolbar GtkToolButton:first-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:first-child:checked, GtkComboBox.combobox-entry .button:first-child:checked, .linked > GtkComboBox:first-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - -.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, .primary-toolbar .linked.path-bar > .button:last-child, .header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4); } - .osd .button:last-child:active, .inline-toolbar .button:last-child:active, .linked > .button:last-child:active, .inline-toolbar GtkToolButton:last-child > .button.flat:active, GtkComboBox.combobox-entry .entry:last-child:active, GtkComboBox.combobox-entry .button:last-child:active, .linked > GtkComboBox:last-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, .osd .button:last-child:checked, .inline-toolbar .button:last-child:checked, .linked > .button:last-child:checked, .inline-toolbar GtkToolButton:last-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:last-child:checked, GtkComboBox.combobox-entry .button:last-child:checked, .linked > GtkComboBox:last-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { - border-bottom-left-radius: 0; } - -.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, .primary-toolbar .linked.path-bar > .button:only-child, .header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - .osd .button:only-child:active, .inline-toolbar .button:only-child:active, .linked > .button:only-child:active, .inline-toolbar GtkToolButton:only-child > .button.flat:active, GtkComboBox.combobox-entry .entry:only-child:active, GtkComboBox.combobox-entry .button:only-child:active, .linked > GtkComboBox:only-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, .osd .button:only-child:checked, .inline-toolbar .button:only-child:checked, .linked > .button:only-child:checked, .inline-toolbar GtkToolButton:only-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:only-child:checked, GtkComboBox.combobox-entry .button:only-child:checked, .linked > GtkComboBox:only-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, -.linked.vertical > .button:hover, -.linked.vertical > .button:active, -.linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, -.linked.vertical > GtkComboBox > .button { - border-style: solid; - border-bottom-style: none; - border-top-style: none; - border-radius: 0; } - .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, - .linked.vertical > GtkComboBox > .button:hover { - box-shadow: inset 0 -1px rgba(101, 123, 131, 0.4), inset 0 1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:active, .linked.vertical > .button:active, .linked.vertical > GtkComboBoxText > .button:active, - .linked.vertical > GtkComboBox > .button:active, .linked.vertical > .entry:checked, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button:checked, - .linked.vertical > GtkComboBox > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, -.linked.vertical > GtkComboBox:first-child > .button { - border-radius: 3px 3px 0 0; - border-top-style: solid; } - .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, - .linked.vertical > GtkComboBox:first-child > .button:hover { - box-shadow: inset 0 -1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:first-child:active, .linked.vertical > .button:first-child:active, .linked.vertical > GtkComboBoxText:first-child > .button:active, - .linked.vertical > GtkComboBox:first-child > .button:active, .linked.vertical > .entry:first-child:checked, .linked.vertical > .button:first-child:checked, .linked.vertical > GtkComboBoxText:first-child > .button:checked, - .linked.vertical > GtkComboBox:first-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, -.linked.vertical > GtkComboBox:last-child > .button { - border-radius: 0 0 3px 3px; - border-bottom-style: solid; } - .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, - .linked.vertical > GtkComboBox:last-child > .button:hover { - box-shadow: inset 0 1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:last-child:active, .linked.vertical > .button:last-child:active, .linked.vertical > GtkComboBoxText:last-child > .button:active, - .linked.vertical > GtkComboBox:last-child > .button:active, .linked.vertical > .entry:last-child:checked, .linked.vertical > .button:last-child:checked, .linked.vertical > GtkComboBoxText:last-child > .button:checked, - .linked.vertical > GtkComboBox:last-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, -.linked.vertical > GtkComboBox:only-child > .button { - border-radius: 3px; - border-style: solid; } - .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, - .linked.vertical > GtkComboBox:only-child > .button:hover { - box-shadow: none; } - .linked.vertical > .entry:only-child:active, .linked.vertical > .button:only-child:active, .linked.vertical > GtkComboBoxText:only-child > .button:active, - .linked.vertical > GtkComboBox:only-child > .button:active, .linked.vertical > .entry:only-child:checked, .linked.vertical > .button:only-child:checked, .linked.vertical > GtkComboBoxText:only-child > .button:checked, - .linked.vertical > GtkComboBox:only-child > .button:checked { - box-shadow: none; } - -.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, -.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, -.app-notification.frame .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -/* menu buttons */ -.menuitem.button.flat { - transition: none; - outline-offset: -1px; - border-radius: 2px; } - .menuitem.button.flat:hover { - background-color: #edeff0; } - .menuitem.button.flat:checked { - color: #5c616c; } - -*:link, .button:link, .button:visited { - color: #1e6ea7; } - *:link:visited, .button:visited { - color: #16527c; } - *:selected *:link:visited, *:selected .button:visited:link, *:selected .button:visited { - color: #a7cbdc; } - *:link:hover, .button:hover:link, .button:hover:visited { - color: #268bd2; } - *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { - color: #e8ebe1; } - *:link:active, .button:active:link, .button:active:visited { - color: #1e6ea7; } - *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { - color: #d2e1e0; } - *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { - color: #d2e1e0; } - -.spinbutton { - border-radius: 3px; } - .spinbutton .button { - background-image: none; - border: 1px solid rgba(220, 223, 227, 0.6); - border-style: none none none solid; - color: #646872; - border-radius: 0; - box-shadow: none; } - .spinbutton .button:dir(rtl) { - border-style: none solid none none; } - .spinbutton .button:first-child { - color: red; } - .spinbutton .button:insensitive { - color: rgba(92, 97, 108, 0.55); } - .spinbutton .button:active { - background-color: #268bd2; - color: #fdf6e3; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - border-radius: 2px 2px 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:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; } - GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: #268bd2; - border-radius: 0; - box-shadow: none; } - -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; } - GtkComboBox > .button { - padding-top: 3px; - padding-bottom: 3px; } - GtkComboBox:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { - -GtkWidget-wide-separators: true; } - GtkComboBox.combobox-entry .entry:dir(ltr) { - border-right-style: none; } - GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: 1px 0 #268bd2; } - GtkComboBox.combobox-entry .entry:dir(rtl) { - border-left-style: none; } - GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: -1px 0 #268bd2; } - GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 #657b83; } - GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.55); } - GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 #657b83; } - GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.55); } - -.toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #F5F6F7; } - .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.9); } - -.primary-toolbar { - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #eee8d5, #e4dabc) 1 0 1 0; } - -.inline-toolbar { - background-color: #edeef0; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -.search-bar { - background-color: #F5F6F7; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 0 1px; - padding: 3px; } - -.action-bar { - background-color: #edeef0; } - -.header-bar { - padding: 5px 5px 4px 5px; - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: #e4dabc; - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; } - .csd .header-bar { - background-color: #eee8d5; - border-color: #e4dabc; } - .header-bar:backdrop { - color: rgba(82, 93, 118, 0.5); } - .header-bar .title { - padding-left: 12px; - padding-right: 12px; } - .header-bar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .header-bar.selection-mode, .header-bar.titlebar.selection-mode { - color: #fdf6e3; - background-color: #268bd2; - border-color: #2380c1; - box-shadow: none; } - .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { - background-color: #268bd2; - color: rgba(253, 246, 227, 0.6); } - .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.05); - border-color: rgba(253, 246, 227, 0.5); } - .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.15); - border-color: rgba(253, 246, 227, 0.15); } - .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { - background-color: #268bd2; } - .tiled .header-bar, .tiled .header-bar:backdrop, - .maximized .header-bar, .maximized .header-bar:backdrop { - border-radius: 0; } - .maximized .header-bar { - background-color: #eee8d5; - border-color: #e4dabc; } - .header-bar.default-decoration, - .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, - .csd .header-bar.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: #eee8d5; - border-bottom-width: 0; } - .maximized .header-bar.default-decoration, .maximized - .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized - .csd .header-bar.default-decoration:backdrop { - background-color: #eee8d5; } - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: 4px 4px 0 0; - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; - box-shadow: inset 0 1px #f2eee0; } - .csd .titlebar { - background-color: #eee8d5; } - .titlebar:backdrop { - color: rgba(82, 93, 118, 0.5); - background-color: #f2eee0; } - .csd .titlebar:backdrop { - background-color: #f2eee0; } - .maximized .titlebar { - background-color: #eee8d5; } - .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { - background-color: #f2eee0; } - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { - background-color: transparent; } - -.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, -.header-bar > GtkBox > .separator.vertical, GtkPlacesSidebar.sidebar -.header-bar > GtkBox > .vertical.view.separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(82, 93, 118, 0) 25%, rgba(82, 93, 118, 0.15) 25%, rgba(82, 93, 118, 0.15) 75%, rgba(82, 93, 118, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, - .header-bar > GtkBox > .separator.vertical:backdrop, GtkPlacesSidebar.sidebar - .header-bar > GtkBox > .vertical.view.separator:backdrop { - opacity: 0.6; } - -.primary-toolbar .entry, .header-bar .entry { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { - color: inherit; } - .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { - opacity: 0.85; } - .primary-toolbar .entry:focus, .header-bar .entry:focus { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); - background-clip: border-box; } - .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { - color: #fdf6e3; } - .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar .entry.warning, .header-bar .entry.warning { - color: white; - border-color: #cb4b16; - background-image: linear-gradient(to bottom, #d98a62); } - .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); } - .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar .entry.error, .header-bar .entry.error { - color: white; - border-color: #dc322f; - background-image: linear-gradient(to bottom, #e37b71); } - .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); } - .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar .button, .header-bar .button { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - outline-offset: -3px; - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button:backdrop, .header-bar .button:backdrop { - opacity: 0.7; } - .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; - background-clip: border-box; } - .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(82, 93, 118, 0.35); - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { - color: inherit; } - .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.primary-toolbar .linked > .button, .header-bar .linked > .button { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { - box-shadow: none; } - -.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - background-color: rgba(255, 255, 255, 0.9); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .primary-toolbar .linked.stack-switcher > .button:insensitive, .header-bar .linked.stack-switcher > .button:insensitive, .primary-toolbar .linked.path-bar > .button:insensitive, .header-bar .linked.path-bar > .button:insensitive { - color: rgba(82, 93, 118, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1), inset -1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked { - box-shadow: none; } - -.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { - color: rgba(82, 93, 118, 0.35); - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, .primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { - color: rgba(82, 93, 118, 0.35); - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, .primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { - color: #fdf6e3; } - .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { - background-color: rgba(253, 246, 227, 0.1); - border-color: transparent; } - .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { - color: rgba(253, 246, 227, 0.4); } - -.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(82, 93, 118, 0.8); } - .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { - background-color: rgba(82, 93, 118, 0.05); - border-color: transparent; } - .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(82, 93, 118, 0.5); } - .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { - background-color: rgba(0, 0, 0, 0.1); } - -.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(82, 93, 118, 0.2); } - -.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { - color: inherit; } - .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr), .header-bar GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0); } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl), .header-bar GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0); } - -.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { - opacity: 0.75; } - -.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(82, 93, 118, 0.15); } - -.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(82, 93, 118, 0.15)); } - .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(82, 93, 118, 0.1)); } - -.primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, #fbfbfc); - border-color: rgba(82, 93, 118, 0.3); } - .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { - background-image: linear-gradient(to bottom, white); - border-color: rgba(82, 93, 118, 0.3); } - .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #f7f5f0); - border-color: rgba(82, 93, 118, 0.3); } - -.path-bar .button { - padding: 5px 10px; } - .path-bar .button:first-child { - padding-left: 10px; } - .path-bar .button:last-child { - padding-right: 10px; } - .path-bar .button:only-child { - padding-left: 14px; - padding-right: 14px; } - .path-bar .button GtkLabel:last-child { - padding-left: 4px; } - .path-bar .button GtkLabel:first-child { - padding-right: 4px; } - .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { - padding-right: 0; - padding-left: 0; } - .path-bar .button GtkImage { - padding-top: 2px; - padding-bottom: 1px; } - -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-color: rgba(92, 97, 108, 0.2); } - GtkTreeView.view.dnd { - border-style: solid none; - border-width: 1px; - border-color: #41769f; } - GtkTreeView.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #adaca8; } - GtkTreeView.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - GtkTreeView.view.expander:hover { - color: #5c616c; } - GtkTreeView.view.expander:selected { - color: #bdd6de; } - GtkTreeView.view.expander:selected:hover { - color: #fdf6e3; } - GtkTreeView.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - GtkTreeView.view.progressbar, GtkTreeView.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-image: linear-gradient(to bottom, #268bd2); } - GtkTreeView.view.progressbar:selected, GtkTreeView.view.progressbar:selected:focus, GtkTreeView.view.progressbar:focus:selected, GtkTreeView.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-image: linear-gradient(to bottom, #fdf6e3); } - GtkTreeView.view.trough { - color: #5c616c; - background-image: linear-gradient(to bottom, #657b83); - border-radius: 3px; - border-width: 0; } - GtkTreeView.view.trough:selected, GtkTreeView.view.trough:selected:focus { - color: #fdf6e3; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); - border-radius: 3px; - border-width: 0; } - -column-header .button { - color: #7c7f84; - background-color: #fdf6e3; } - column-header .button:hover { - color: #268bd2; - box-shadow: none; - transition: none; } - column-header .button:active { - color: #5c616c; - transition: none; } - -column-header:last-child .button, column-header:last-child.button { - border-right-style: none; - border-image: none; } - -column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { - transition: none; - color: #268bd2; - box-shadow: inset 1px 1px 0 1px #268bd2, inset -1px 0 0 1px #268bd2, inset 1px 1px #fdf6e3, inset -1px 0 #fdf6e3; } - -column-header .button, column-header .button:hover, column-header .button:active { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; } - column-header .button:active, column-header .button:hover { - background-color: #fdf6e3; } - column-header .button:active:hover { - color: #5c616c; } - column-header .button:insensitive { - border-color: #F5F6F7; - background-image: none; } - -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #eee8d5; - color: rgba(82, 93, 118, 0.8); } - .menubar:backdrop { - color: rgba(82, 93, 118, 0.5); } - .menubar > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - .menubar > .menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - .menubar > .menuitem:insensitive { - color: rgba(82, 93, 118, 0.2); - border-color: transparent; } - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; } - .csd .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - .menu .menuitem { - padding: 5px; } - .menu .menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - .menu .menuitem:insensitive { - color: rgba(92, 97, 108, 0.55); } - .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator { - color: rgba(253, 246, 227, 0); } - .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 #ede7d7; } - .menu.button.bottom { - border-top: 1px solid #ede7d7; } - .menu.button:hover { - background-color: #ede7d7; } - .menu.button:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent; } - -.csd .popup { - border-radius: 2px; } - -.menuitem .accelerator { - color: alpha(currentColor,0.55); } - -.popover { - margin: 10px; - padding: 2px; - border: 1px solid #cdd2d7; - border-radius: 3px; - background-clip: border-box; - background-color: #fdf6e3; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } - .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { - color: rgba(253, 246, 227, 0); } - .popover > .list, - .popover > .view, - .popover > .toolbar, - .popover > .inline-toolbar, - .popover.osd > .toolbar, - .popover.osd > .inline-toolbar { - border-style: none; - background-color: transparent; } - -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - .entry.cursor-handle.top, - .cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - .entry.cursor-handle.bottom, - .cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -.notebook { - padding: 0; - background-color: #fdf6e3; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -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.frame { - border: 1px solid #dcdfe3; } - .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.header { - background-color: #F5F6F7; } - .notebook.header.frame { - border: 0px solid #dcdfe3; } - .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.top { - box-shadow: inset 0 -1px #dcdfe3; } - .notebook.header.bottom { - box-shadow: inset 0 1px #dcdfe3; } - .notebook.header.right { - box-shadow: inset 1px 0 #dcdfe3; } - .notebook.header.left { - box-shadow: inset -1px 0 #dcdfe3; } - .notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - outline-offset: 0; } - .notebook tab.top, .notebook tab.bottom { - padding: 4px 15px; } - .notebook tab.left, .notebook tab.right { - padding: 4px 15px; } - .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { - padding-left: 12px; - padding-right: 12px; } - .notebook tab.reorderable-page.top, .notebook tab.top { - padding-top: 6px; - border-radius: 3.5px 2px 0 0; - border-width: 0; - border-top-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #fdf6e3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom, .notebook tab.bottom { - padding-bottom: 6px; - border-radius: 0 0 2px 3.5px; - border-width: 0; - border-bottom-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 -1px #fdf6e3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right, .notebook tab.right { - padding-right: 17px; - border-radius: 0 3.5px 3.5px 0; - border-width: 0; - border-right-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #fdf6e3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left, .notebook tab.left { - padding-left: 17px; - border-radius: 3.5px 0 0 3.5px; - border-width: 0; - border-left-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #fdf6e3; } - .notebook tab GtkLabel { - padding: 0 2px; - color: rgba(92, 97, 108, 0.55); } - .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(92, 97, 108, 0.775); } - .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { - color: #5c616c; } - .notebook tab .button { - padding: 0; - color: #92959d; } - .notebook tab .button:hover { - color: #ff4d4d; } - .notebook tab .button:active { - color: #268bd2; } - .notebook tab .button > GtkImage { - padding: 2px; } - .notebook.arrow { - color: rgba(92, 97, 108, 0.55); } - .notebook.arrow:hover { - color: rgba(92, 97, 108, 0.775); } - .notebook.arrow:active { - color: #5c616c; } - .notebook.arrow:insensitive { - color: rgba(92, 97, 108, 0.25); } - -.scrollbar { - background-clip: padding-box; - background-image: none; - border-style: solid; - -GtkRange-trough-border: 0; - -GtkScrollbar-has-backward-stepper: false; - -GtkScrollbar-has-forward-stepper: false; - -GtkRange-slider-width: 13; - -GtkScrollbar-min-slider-length: 42; - -GtkRange-stepper-spacing: 0; - -GtkRange-trough-under-steppers: 1; } - .scrollbar .button { - border: none; } - .scrollbar.trough { - background-color: #fdf4de; - border-left: 1px solid #dcdfe3; } - .scrollbar.trough.horizontal { - border-left: none; - border-top: 1px solid #dcdfe3; } - .scrollbar.slider { - border-radius: 21px 20px 20px 21px; - border: 3px solid transparent; - border-left-width: 4px; - background-color: #b8babf; } - .scrollbar.slider.horizontal { - border-radius: 21px 21px 20px 20px; - border-left-width: 3px; - border-top-width: 4px; } - .scrollbar.slider:hover { - background-color: #cfd1d4; } - .scrollbar.slider:prelight:active, .scrollbar.slider:active { - background-color: #268bd2; } - .scrollbar.slider.fine-tune { - border-width: 4px; } - .scrollbar.slider.fine-tune:prelight:active { - background-color: #268bd2; } - .scrollbar.slider:insensitive { - background-color: transparent; } - -.scrollbars-junction, -.scrollbars-junction.frame { - border-color: transparent; - background-color: #fdf4de; } - -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 41; - outline-color: transparent; } - GtkSwitch.trough, GtkSwitch.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; } - GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { - background-position: left center; } - -GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough, -.list-row:selected GtkSwitch.trough, -GtkInfoBar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -.header-bar GtkSwitch.trough, -.primary-toolbar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } - -GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active, -.list-row:selected GtkSwitch.trough:active, -GtkInfoBar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -.header-bar GtkSwitch.trough:active, -.primary-toolbar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } - -GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:insensitive, -.list-row:selected GtkSwitch.trough:insensitive, -GtkInfoBar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:insensitive, -.primary-toolbar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } - -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active:insensitive, -.list-row:selected GtkSwitch.trough:active:insensitive, -GtkInfoBar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:active:insensitive, -.primary-toolbar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } - -.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check, -GtkFileChooserDialog .dialog-vbox > .frame .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -.menu .menuitem.check:hover, -GtkTreeView.view.check:selected, -.list-row:selected .check, -GtkInfoBar .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.check:insensitive:hover, -GtkTreeView.view.check:insensitive:selected, -.list-row:selected .check:insensitive, -GtkInfoBar .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -.menu .menuitem.check:inconsistent:hover, -GtkTreeView.view.check:inconsistent:selected, -.list-row:selected .check:inconsistent, -GtkInfoBar .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.check:inconsistent:insensitive:hover, -GtkTreeView.view.check:inconsistent:insensitive:selected, -.list-row:selected .check:inconsistent:insensitive, -GtkInfoBar .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -.menu .menuitem.check:checked:hover, -GtkTreeView.view.check:checked:selected, -.list-row:selected .check:checked, -GtkInfoBar .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -.menu .menuitem.check:checked:insensitive:hover, -GtkTreeView.view.check:checked:insensitive:selected, -.list-row:selected .check:checked:insensitive, -GtkInfoBar .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio, -GtkFileChooserDialog .dialog-vbox > .frame .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -.menu .menuitem.radio:hover, -GtkTreeView.view.radio:selected, -.list-row:selected .radio, -GtkInfoBar .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:insensitive:hover, -GtkTreeView.view.radio:insensitive:selected, -.list-row:selected .radio:insensitive, -GtkInfoBar .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:hover, -GtkTreeView.view.radio:inconsistent:selected, -.list-row:selected .radio:inconsistent, -GtkInfoBar .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:insensitive:hover, -GtkTreeView.view.radio:inconsistent:insensitive:selected, -.list-row:selected .radio:inconsistent:insensitive, -GtkInfoBar .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -.menu .menuitem.radio:checked:hover, -GtkTreeView.view.radio:checked:selected, -.list-row:selected .radio:checked, -GtkInfoBar .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:checked:insensitive:hover, -GtkTreeView.view.radio:checked:insensitive:selected, -.list-row:selected .radio:checked:insensitive, -GtkInfoBar .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -GtkIconView.view.check, -GtkFlowBox.view.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); - background-color: transparent; } - -GtkIconView.view.check:checked, -GtkFlowBox.view.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-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: rgba(92, 97, 108, 0.55); } - -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; } - .scale.trough { - margin: 5px; } - .scale.fine-tune.trough { - border-radius: 5px; - margin: 3px; } - .scale.slider { - background-clip: border-box; - background-image: linear-gradient(to bottom, #fbfbfc); - border: 1px solid rgba(45, 55, 59, 0.5); - border-radius: 50%; - box-shadow: none; } - .scale.slider:hover { - background-image: linear-gradient(to bottom, white); - border-color: rgba(45, 55, 59, 0.5); } - .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #f9f6ec); - border-color: rgba(45, 55, 59, 0.3); } - .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .osd .scale.slider { - background-image: linear-gradient(to bottom, #073642); - border-color: #268bd2; } - .osd .scale.slider:hover { - background-image: linear-gradient(to bottom, #268bd2); } - .osd .scale.slider:active { - background-image: linear-gradient(to bottom, #1e6ea7); - border-color: #1e6ea7; } - .menu .menuitem:hover .scale.slider, - .list-row:selected .scale.slider, - GtkInfoBar .scale.slider { - background-image: linear-gradient(to bottom, #fdf6e3); - border-color: #fdf6e3; } - .menu .menuitem:hover .scale.slider:hover, - .list-row:selected .scale.slider:hover, - GtkInfoBar .scale.slider:hover { - background-image: linear-gradient(to bottom, #dde6e0); - border-color: #dde6e0; } - .menu .menuitem:hover .scale.slider:active, - .list-row:selected .scale.slider:active, - GtkInfoBar .scale.slider:active { - background-image: linear-gradient(to bottom, #92c1db); - border-color: #92c1db; } - .menu .menuitem:hover .scale.slider:insensitive, - .list-row:selected .scale.slider:insensitive, - GtkInfoBar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); - border-color: #9cc6db; } - .scale.trough { - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, #657b83); } - .scale.trough.highlight { - background-image: linear-gradient(to bottom, #268bd2); } - .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, rgba(38, 139, 210, 0.55)); } - .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(101, 123, 131, 0.55)); } - .osd .scale.trough { - background-image: linear-gradient(to bottom, #0a5062); - outline-color: rgba(101, 123, 131, 0.2); } - .osd .scale.trough.highlight { - background-image: none; - background-image: linear-gradient(to bottom, #268bd2); } - .menu .menuitem:hover .scale.trough, - .list-row:selected .scale.trough, - GtkInfoBar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } - .menu .menuitem:hover .scale.trough.highlight, - .list-row:selected .scale.trough.highlight, - GtkInfoBar .scale.trough.highlight { - background-image: linear-gradient(to bottom, #fdf6e3); } - .menu .menuitem:hover .scale.trough.highlight:insensitive, - .list-row:selected .scale.trough.highlight:insensitive, - GtkInfoBar .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); } - .menu .menuitem:hover .scale.trough:insensitive, - .list-row:selected .scale.trough:insensitive, - GtkInfoBar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -GtkProgressBar { - padding: 0; - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - GtkProgressBar.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; } - -.progressbar { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - .progressbar.osd { - background-color: #268bd2; } - .list-row:selected .progressbar, - GtkInfoBar .progressbar { - background-color: #fdf6e3; } - -.osd .scale.progressbar { - background-color: #268bd2; } - -GtkProgressBar.trough, .level-bar.trough { - border: none; - border-radius: 3px; - background-color: #657b83; } - GtkProgressBar.trough.osd, .osd.level-bar.trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, - GtkInfoBar GtkProgressBar.trough, - GtkInfoBar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.2); } - -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; } - GtkLevelBar.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; } - -.level-bar.trough { - padding: 3px; - border-radius: 4px; } - -.level-bar.fill-block { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - .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 { - border-color: #859900; - background-color: #859900; } - .level-bar.fill-block.level-low { - border-color: #cb4b16; - background-color: #cb4b16; } - .level-bar.fill-block.empty-fill-block { - background-color: rgba(92, 97, 108, 0.2); - border-color: rgba(92, 97, 108, 0.2); } - -.frame { - border: 1px solid #dcdfe3; - padding: 0; } - .frame.flat { - border-style: none; } - .frame.action-bar { - padding: 6px; - border-width: 1px 0 0; } - -GtkScrolledWindow GtkViewport.frame { - border-style: none; } - -.separator, GtkPlacesSidebar.sidebar .view.separator { - color: rgba(0, 0, 0, 0.1); } - GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, - GtkFontButton .separator, - GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .view.separator, - GtkFileChooserButton .separator.vertical, - GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFileChooserButton .vertical.view.separator, - GtkFontButton .separator.vertical, - GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .vertical.view.separator { - -GtkWidget-wide-separators: true; } - -.list, .list-row { - background-color: #fdf6e3; - border-color: #dcdfe3; } - -.list-row, -.grid-child { - padding: 2px; } - -.list-row.button { - background-color: transparent; - border-style: none; - border-radius: 0; - box-shadow: none; } - .list-row.button:hover { - background-color: rgba(0, 0, 0, 0.05); } - .list-row.button:active { - color: #5c616c; } - .list-row.button:selected:active { - color: #fdf6e3; } - .list-row.button:selected:hover { - background-color: #227dbd; } - .list-row.button:selected:insensitive { - color: rgba(253, 246, 227, 0.7); - background-color: rgba(38, 139, 210, 0.7); } - .list-row.button:selected:insensitive GtkLabel { - color: inherit; } - -.list-row, list-row.button { - transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .list-row:hover, list-row.button:hover { - transition: none; } - -.app-notification, -.app-notification.frame { - padding: 10px; - color: #657b83; - background-color: #073642; - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: #021014; } - .app-notification .button, - .app-notification.frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .app-notification .button.flat, - .app-notification.frame .button.flat { - border-color: rgba(38, 139, 210, 0); } - .app-notification .button:hover, - .app-notification.frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .app-notification .button:active, .app-notification .button:checked, - .app-notification.frame .button:active, - .app-notification.frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification .button:insensitive, - .app-notification.frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - .expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - .expander:hover { - color: #aaaeb7; } - .expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GtkCalendar { - color: #5c616c; - border: 1px solid #dcdfe3; - border-radius: 3px; - padding: 2px; } - GtkCalendar:selected { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 1.5px; } - GtkCalendar.header { - color: #5c616c; - border: none; - border-radius: 0; } - GtkCalendar.button, GtkCalendar.button:focus { - color: rgba(92, 97, 108, 0.45); - border-color: transparent; - background-color: transparent; - background-image: none; } - GtkCalendar.button:hover, GtkCalendar.button:focus:hover { - color: #5c616c; } - GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { - color: rgba(92, 97, 108, 0.55); - background-color: transparent; - background-image: none; } - GtkCalendar.highlight { - color: alpha(currentColor,0.55); } - -.message-dialog .dialog-action-area .button { - padding: 8px; } - -.message-dialog { - -GtkDialog-button-spacing: 0; } - .message-dialog .titlebar { - background-color: #eee8d5; - border-bottom: 1px solid #e4dabc; } - .message-dialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - .message-dialog.csd .dialog-action-area .button { - padding: 8px; - border-radius: 0; } - .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 { - border-right-style: none; - border-bottom-style: none; } - .message-dialog.csd .dialog-action-area .button:last-child { - border-bottom-right-radius: 3px; } - .message-dialog.csd .dialog-action-area .button:first-child { - border-left-style: none; - border-bottom-left-radius: 3px; } - -GtkFileChooserDialog .search-bar { - background-color: #F5F6F7; - border-color: #dcdfe3; - box-shadow: none; } - -GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #dcdfe3; } - -.sidebar { - border: none; - background-color: #fbfbfc; } - .sidebar .scrollbar.trough { - background-color: transparent; - border-width: 2px; - border-color: transparent; } - .sidebar:selected { - background-color: #268bd2; } - -GtkPlacesSidebar.sidebar .view { - color: #5c616c; - background-color: transparent; } - GtkPlacesSidebar.sidebar .view:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.sidebar-item { - padding: 10px 4px; } - .sidebar-item > GtkLabel { - padding-left: 6px; - padding-right: 6px; } - .sidebar-item.needs-attention > GtkLabel { - background-size: 6px 6px, 0 0; } - -GtkPaned { - margin: 0 8px 8px 0; } - GtkPaned:dir(rtl) { - margin-right: 0; - margin-left: 8px; } - -.pane-separator { - background-image: linear-gradient(to bottom, #dcdfe3); } - -GtkInfoBar { - border-style: none; } - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: #268bd2; - color: #fdf6e3; } - -.list-row:selected .button, GtkInfoBar .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - .list-row:selected .flat.button, GtkInfoBar .flat.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .list-row:selected .button:hover, GtkInfoBar .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.2); } - .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.2); } - -.tooltip { - color: #657b83; - border-radius: 2px; } - .tooltip.background { - background-color: #0c5c70; - background-clip: padding-box; } - .tooltip.window-frame.csd { - background-color: transparent; } - -.tooltip * { - padding: 4px; - background-color: transparent; - color: inherit; } - -GtkColorSwatch { - border: none; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.4); } - GtkColorSwatch.color-light:hover { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4)); } - GtkColorSwatch.color-dark:hover { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } - GtkColorSwatch:hover { - border-color: rgba(0, 0, 0, 0.5); } - GtkColorSwatch.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - GtkColorSwatch.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; } - GtkColorSwatch.left, GtkColorSwatch:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - GtkColorSwatch.right, GtkColorSwatch:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } - GtkColorSwatch:only-child { - border-radius: 3px; } - GtkColorSwatch.color-active-badge { - border-width: 2px; } - GtkColorSwatch.color-active-badge:hover { - background-image: none; } - GtkColorSwatch.color-active-badge.color-light, GtkColorSwatch.color-active-badge.color-light:hover { - color: rgba(0, 0, 0, 0.3); - border-color: rgba(0, 0, 0, 0.3); } - GtkColorSwatch.color-active-badge.color-dark, GtkColorSwatch.color-active-badge.color-dark:hover { - color: rgba(255, 255, 255, 0.5); - border-color: rgba(255, 255, 255, 0.5); } - -GtkColorChooserWidget #add-color-button { - border-color: #e8ebed; - background-color: #e8ebed; - color: #F5F6F7; - box-shadow: none; } - GtkColorChooserWidget #add-color-button:hover { - border-color: #dcdfe3; - background-color: #dcdfe3; } - -GtkColorButton.button { - padding: 5px; } - GtkColorButton.button GtkColorSwatch { - border-radius: 0; } - -.scale-popup .button { - padding: 6px; } - .scale-popup .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - -GtkVolumeButton.button { - padding: 8px; } - -.touch-selection, -.context-menu { - font: initial; } - -.monospace { - font: Monospace; } - -.overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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; } - -.window-frame { - border-radius: 4px 4px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 8px 8px 0 rgba(0, 0, 0, 0.2); - margin: 10px; } - .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } - .window-frame.tiled { - border-radius: 0; } - .window-frame.popup { - box-shadow: none; - border-radius: 0; } - .window-frame.csd.popup, .window-frame.csd.menu { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.message-dialog { - border-radius: 3px; } - -.header-bar.default-decoration .button.titlebutton, .titlebar.default-decoration .button.titlebutton, -.header-bar.selection-mode.default-decoration .button.titlebutton, .titlebar.selection-mode.default-decoration .button.titlebutton { - padding-top: 0px; - padding-bottom: 0px; } - -.header-bar .button.titlebutton, .titlebar .button.titlebutton, -.header-bar.selection-mode .button.titlebutton, .titlebar.selection-mode .button.titlebutton { - padding: 8px 4px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); - color: transparent; - background-position: center; - background-repeat: no-repeat; } - .header-bar .button.titlebutton:backdrop, .titlebar .button.titlebutton:backdrop, - .header-bar.selection-mode .button.titlebutton:backdrop, .titlebar.selection-mode .button.titlebutton:backdrop { - opacity: 1; } - -.header-bar .right .button.titlebutton:nth-last-child(3), -.header-bar .right:dir(rtl) .button.titlebutton:nth-child(3), -.header-bar .left .button.titlebutton:nth-child(3), -.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar .right .button.titlebutton:nth-last-child(3), -.titlebar .right:dir(rtl) .button.titlebutton:nth-child(3), -.titlebar .left .button.titlebutton:nth-child(3), -.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3), -.header-bar.selection-mode .right .button.titlebutton:nth-last-child(3), -.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), -.header-bar.selection-mode .left .button.titlebutton:nth-child(3), -.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3), -.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), -.titlebar.selection-mode .left .button.titlebutton:nth-child(3), -.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3) { - background-image: -gtk-scaled(url("assets/titlebutton-minimize.png"), url("assets/titlebutton-minimize@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(3):hover, .header-bar .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar .left .button.titlebutton:nth-child(3):hover, - .header-bar .left .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(3):hover, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar .left .button.titlebutton:nth-child(3):hover, - .titlebar .left .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover.png"), url("assets/titlebutton-minimize-hover@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(3):active:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .header-bar .left .button.titlebutton:nth-child(3):active:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar .right .button.titlebutton:nth-last-child(3):active:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .titlebar .left .button.titlebutton:nth-child(3):active:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active.png"), url("assets/titlebutton-minimize-active@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(3):backdrop, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .header-bar .left .button.titlebutton:nth-child(3):backdrop, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .titlebar .left .button.titlebutton:nth-child(3):backdrop, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop.png"), url("assets/titlebutton-minimize-backdrop@2.png")); } - -.header-bar .right .button.titlebutton:nth-last-child(2), -.header-bar .right:dir(rtl) .button.titlebutton:nth-child(2), -.header-bar .left .button.titlebutton:nth-child(2), -.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar .right .button.titlebutton:nth-last-child(2), -.titlebar .right:dir(rtl) .button.titlebutton:nth-child(2), -.titlebar .left .button.titlebutton:nth-child(2), -.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2), -.header-bar.selection-mode .right .button.titlebutton:nth-last-child(2), -.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), -.header-bar.selection-mode .left .button.titlebutton:nth-child(2), -.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2), -.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), -.titlebar.selection-mode .left .button.titlebutton:nth-child(2), -.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2) { - background-image: -gtk-scaled(url("assets/titlebutton-maximize.png"), url("assets/titlebutton-maximize@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(2):hover, .header-bar .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar .left .button.titlebutton:nth-child(2):hover, - .header-bar .left .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(2):hover, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar .left .button.titlebutton:nth-child(2):hover, - .titlebar .left .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover.png"), url("assets/titlebutton-maximize-hover@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(2):active:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .header-bar .left .button.titlebutton:nth-child(2):active:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar .right .button.titlebutton:nth-last-child(2):active:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .titlebar .left .button.titlebutton:nth-child(2):active:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active.png"), url("assets/titlebutton-maximize-active@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(2):backdrop, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .header-bar .left .button.titlebutton:nth-child(2):backdrop, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .titlebar .left .button.titlebutton:nth-child(2):backdrop, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop.png"), url("assets/titlebutton-maximize-backdrop@2.png")); } - -.header-bar .right .button.titlebutton:last-child, -.header-bar .right:dir(rtl) .button.titlebutton:first-child, -.header-bar .left .button.titlebutton:first-child, -.header-bar .left:dir(rtl) .button.titlebutton:last-child, .titlebar .right .button.titlebutton:last-child, -.titlebar .right:dir(rtl) .button.titlebutton:first-child, -.titlebar .left .button.titlebutton:first-child, -.titlebar .left:dir(rtl) .button.titlebutton:last-child, -.header-bar.selection-mode .right .button.titlebutton:last-child, -.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, -.header-bar.selection-mode .left .button.titlebutton:first-child, -.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child, .titlebar.selection-mode .right .button.titlebutton:last-child, -.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, -.titlebar.selection-mode .left .button.titlebutton:first-child, -.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child { - background-image: -gtk-scaled(url("assets/titlebutton-close.png"), url("assets/titlebutton-close@2.png")); } - .header-bar .right .button.titlebutton:last-child:hover, .header-bar .right .button.titlebutton:last-child:backdrop:hover, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:hover, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .header-bar .left .button.titlebutton:first-child:hover, - .header-bar .left .button.titlebutton:first-child:backdrop:hover, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:hover, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar .right .button.titlebutton:last-child:hover, .titlebar .right .button.titlebutton:last-child:backdrop:hover, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:hover, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .titlebar .left .button.titlebutton:first-child:hover, - .titlebar .left .button.titlebutton:first-child:backdrop:hover, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:hover, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .right .button.titlebutton:last-child:hover, - .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left .button.titlebutton:first-child:hover, - .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left .button.titlebutton:first-child:hover, - .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover.png"), url("assets/titlebutton-close-hover@2.png")); } - .header-bar .right .button.titlebutton:last-child:active:hover, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .header-bar .left .button.titlebutton:first-child:active:hover, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar .right .button.titlebutton:last-child:active:hover, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .titlebar .left .button.titlebutton:first-child:active:hover, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .right .button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left .button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:active:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left .button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-active.png"), url("assets/titlebutton-close-active@2.png")); } - .header-bar .right .button.titlebutton:last-child:backdrop, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .header-bar .left .button.titlebutton:first-child:backdrop, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar .right .button.titlebutton:last-child:backdrop, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .titlebar .left .button.titlebutton:first-child:backdrop, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop, - .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop.png"), url("assets/titlebutton-close-backdrop@2.png")); } - -.header-bar .left GtkMenuButton.button.titlebutton:first-child, -.header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, -.header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, -.header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, .titlebar .left GtkMenuButton.button.titlebutton:first-child, -.titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, -.titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, -.titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child { - padding: 4px 6px 4px 6px; - color: rgba(82, 93, 118, 0.8); } - .header-bar .left GtkMenuButton.button.titlebutton:first-child, .header-bar .left GtkMenuButton.button.titlebutton:first-child:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:backdrop, .header-bar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child, .titlebar .left GtkMenuButton.button.titlebutton:first-child:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:backdrop, .titlebar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover { - background-image: none; - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .header-bar .left GtkMenuButton.button.titlebutton:first-child:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .header-bar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:checked, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:checked, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked, .titlebar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:checked, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:checked, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - -.view:selected, .view:selected:focus, .view:selected:hover, GtkLabel:selected, GtkLabel:selected:focus, GtkLabel:selected:hover, GtkFlowBox .grid-child:selected, .menuitem.button.flat:active, .menuitem.button.flat:selected, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, -GtkEntry.gb-command-bar-entry.entry.flat:focus:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); } - -GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, -ScratchMainWindow .notebook tab.reorderable-page.top:active, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, -ScratchMainWindow .notebook tab.top:active, -ScratchMainWindow .notebook tab.top.active-page, -ScratchMainWindow .notebook tab.top.active-page:hover, -EphyNotebook.notebook tab.reorderable-page.top:active, -EphyNotebook.notebook tab.reorderable-page.top.active-page, -EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, -EphyNotebook.notebook tab.top:active, -EphyNotebook.notebook tab.top.active-page, -EphyNotebook.notebook tab.top.active-page:hover, -MidoriNotebook .notebook tab.reorderable-page.top:active, -MidoriNotebook .notebook tab.reorderable-page.top.active-page, -MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, -MidoriNotebook .notebook tab.top:active, -MidoriNotebook .notebook tab.top.active-page, -MidoriNotebook .notebook tab.top.active-page:hover, -TerminalWindow .notebook tab.reorderable-page.top:active, -TerminalWindow .notebook tab.reorderable-page.top.active-page, -TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -TerminalWindow .notebook tab.top:active, -TerminalWindow .notebook tab.top.active-page, -TerminalWindow .notebook tab.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - -TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.top { - padding-top: 7px; - border-top-width: 3px; } - -TerminalWindow .notebook.header.top, -PantheonTerminalPantheonTerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #e4dabc, inset 0 -1px #dcdfe3; } - -GtkHTML { - background-color: #fdf6e3; - color: #5c616c; } - GtkHTML:active { - color: #fdf6e3; - background-color: #268bd2; } - -SushiFontWidget { - padding: 6px 12px; } - -TerminalWindow .background { - background-color: transparent; } - -TerminalWindow .scrollbar.vertical .slider { - margin-left: 3px; } - -TerminalWindow .scrollbar.trough { - border-width: 0; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { - color: #5c616c; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { - color: #fdf6e3; } - -NautilusNotebook.notebook { - background-color: #fdf6e3; } - NautilusNotebook.notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; } - -NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { - padding: 5px; - box-shadow: none; - background-color: #fdf6e3; } - -NemoWindow EelEditableLabel.entry { - transition: none; } - -NemoWindow .sidebar .frame { - border-width: 0; } - -NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #dcdfe3; } - -NemoWindow .primary-toolbar NemoPathBar.linked > .button { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - background-color: rgba(255, 255, 255, 0.9); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:insensitive { - color: rgba(82, 93, 118, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1), inset -1px 0 rgba(82, 93, 118, 0.1); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.gedit-headerbar-paned { - color: #e4dabc; } - -.open-document-selector-listbox-row { - border-bottom: 1px solid #e7e9ec; - padding: 6px 6px 6px 12px; } - .open-document-selector-listbox-row .path-label { - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - .open-document-selector-listbox-row:selected .path-label { - color: rgba(253, 246, 227, 0.7); } - -.gedit-document-panel .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; } - .gedit-document-panel .list-row .button GtkImage { - color: inherit; } - -.gedit-document-panel .prelight-row .button { - color: #92959d; } - -.gedit-document-panel .list-row .button:hover, -.gedit-document-panel .prelight-row .button:hover { - color: #ff4d4d; } - -.gedit-document-panel .prelight-row:selected .button:hover { - color: #ff6666; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; } - .gedit-document-panel .prelight-row:selected .button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel .prelight-row .button:active { - color: #5c616c; } - -.gedit-document-panel-dragged-row { - border: 1px solid #dcdfe3; - background-color: #d9dde0; - color: #5c616c; } - -GeditStatusbar { - border-top: 1px solid #dcdfe3; - background-color: #F5F6F7; } - -GeditStatusMenuButton.button.flat, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton:checked.button.flat { - border-bottom-style: none; - border-radius: 0; } - -GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #dcdfe3; } - -.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { - color: rgba(92, 97, 108, 0.6); - margin: 2px; - padding: 2px; } - -GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { - background-color: #fbfbfc; - padding: 6px; - border-color: #dcdfe3; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image:hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image:hover { - color: inherit; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):insensitive, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { - box-shadow: -1px 0 #268bd2; } - -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; } - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - box-shadow: 1px 0 #268bd2; } - -GbEditorFrame .gb-search-slider { - padding: 2px; } - -GdTaggedEntry { - color: #5c616c; } - -.preferences.sidebar GtkViewport { - border: none; } - -.preferences.sidebar GtkListBox { - background-color: #F5F6F7; } - -.preferences.sidebar GtkListBoxRow { - padding: 10px; } - -GbPreferencesPageLanguage GtkSearchEntry { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - -GbPreferencesPageLanguage GtkScrolledWindow { - border-top-width: 0; } - -GtkBox.gb-command-bar-box { - border: none; - background-color: #073642; } - GtkBox.gb-command-bar-box GtkLabel { - color: #657b83; } - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: #657b83; - background-image: none; - background-color: #073642; - padding: 6px 6px 6px 6px; - border: none; } - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; } - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; } - -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; } - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbViewStack.focused GtkBox.header.notebook { - background-color: #fdf6e3; } - GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook GtkLabel.button.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { - opacity: 1; } - -EphyWindow .floating-bar { - color: #5c616c; } - -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon { - background-color: rgba(92, 97, 108, 0.3); - border-radius: 2px; } - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: #78b9e6; } - -.documents-entry-tag { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover { - color: #fdf6e3; - background-color: #3295da; } - .documents-entry-tag:active { - color: #fdf6e3; - background-color: #2380c1; } - .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; } - .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { - color: rgba(253, 246, 227, 0.7); } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -TotemGrilo.vertical GdMainView.frame { - border-width: 0; } - -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { - background-color: #268bd2; } - -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; } - -.gnome-panel-menu-bar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: #657b83; - background-image: linear-gradient(to bottom, #05242c); } - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: #657b83; } - -PanelApplet .button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); - border-color: rgba(0, 0, 0, 0.17); } - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: rgba(0, 0, 0, 0.25); - border-radius: 0; - border-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -PanelApplet:hover { - color: white; } - -PanelApplet:active, -PanelApplet:hover:active { - color: #268bd2; } - -WnckPager { - color: #333e42; } - WnckPager:selected { - color: #268bd2; } - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; } - -ClockBox { - color: #657b83; } - -.xfce4-panel.panel { - background-color: #05242c; - text-shadow: none; - icon-shadow: none; } - .xfce4-panel.panel .button.flat { - color: #657b83; - background-color: rgba(5, 36, 44, 0); - border-radius: 0; - border: none; } - .xfce4-panel.panel .button.flat:hover { - border: none; - background-color: #0a4a5a; } - .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - -.floating-bar { - background-color: #268bd2; - color: #fdf6e3; } - .floating-bar.top { - border-radius: 0 0 2px 2px; } - .floating-bar.right { - border-radius: 2px 0 0 2px; } - .floating-bar.bottom { - border-radius: 2px 2px 0 0; } - .floating-bar.left { - border-radius: 0 2px 2px 0; } - .floating-bar .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - background-color: transparent; - box-shadow: none; - border: none; } - -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; } - -MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { - color: #fdf6e3; - background-color: #268bd2; - outline-color: transparent; } - -MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { - background-color: transparent; } - -MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { - outline-color: transparent; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); } - .marlin-pathbar.pathbar:insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; - border: solid transparent; - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { - padding: 0 3px; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { - background-color: rgba(0, 0, 0, 0.04); - border: solid rgba(0, 0, 0, 0.08); - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { - color: rgba(92, 97, 108, 0.55); } - -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; } - -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: #5c616c; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration.top { - border: 1px solid rgba(0, 0, 0, 0.1); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #eee8d5); - color: rgba(82, 93, 118, 0.8); - box-shadow: inset 0 1px #f2eee0; } - UnityDecoration.top:backdrop { - border-bottom-width: 0; - color: rgba(82, 93, 118, 0.5); } - UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: #faf8f2; - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; } - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar GtkLabel { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #dcdfe3; - border-right: 1px solid #dcdfe3; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #dcdfe3; } - .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { - padding: 0 3px 0 3px; } - -.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #dcdfe3; - background-color: #F5F6F7; } - .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view { - background-color: #F5F6F7; - color: #5c616c; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:prelight { - background-color: white; } - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: #F5F6F7; - background-image: none; } - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #5c616c; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GraniteWidgetsWelcome { - background-color: #fdf6e3; } - -GraniteWidgetsWelcome GtkLabel { - color: #a9acb2; - font: open sans 11; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(92, 97, 108, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #fdf6e3); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry.entry { - padding: 4px; } - -.h1 { - font: open sans 24px; } - -.h2 { - font: open sans light 18px; } - -.h3 { - font: open sans 11px; } - -.h4, -.category-label { - color: #8a8e96; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: #05242c; - color: #657b83; - font: bold; - box-shadow: inset 0 -1px #010a0c; } - #panel_window .menubar { - padding-left: 5px; } - #panel_window .menubar, #panel_window .menubar > .menuitem { - background-color: transparent; - color: #657b83; - font: bold; } - #panel_window .menubar .menuitem:insensitive { - color: rgba(101, 123, 131, 0.5); } - #panel_window .menubar .menuitem:insensitive GtkLabel { - color: inherit; } - #panel_window .menubar .menu .menuitem { - font: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: #5c616c; } - -#content_frame { - padding-bottom: 14px; - background-color: #F5F6F7; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - #content_frame .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - #content_frame .button:active, #content_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - #content_frame .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - #content_frame .button:insensitive > GtkLabel { - color: inherit; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: #073642; - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px #073642; } - -#buttonbox_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - #buttonbox_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - #buttonbox_frame .button:active, #buttonbox_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - #buttonbox_frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -#login_window #user_combobox { - color: #5c616c; - font: 13px; } - #login_window #user_combobox .menu { - font: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font: bold; } - -.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { - color: #e4dabc; } - -NemoWindow GtkEventBox { - background-color: #F5F6F7; } - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; } - -NautilusWindow GtkBox.sidebar { - background-color: transparent; } - -GtkFileChooserDialog.csd.background, -GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, -NautilusWindow.csd.background, -NautilusWindow .source-list, -NautilusWindow .source-list.view, -NautilusWindow .source-list.view:prelight, -NemoWindow.csd.background, -NemoWindow .source-list, -NemoWindow .source-list.view, -NemoWindow .source-list.view:prelight, -MarlinViewWindow.csd.background, -MarlinViewWindow .source-list, -MarlinViewWindow .source-list.view, -MarlinViewWindow .source-list.view:prelight { - background-color: transparent; } - -GtkFileChooserDialog .sidebar, GtkFileChooserDialog MarlinPlacesSidebar, -NautilusWindow .sidebar, -NautilusWindow MarlinPlacesSidebar, -NemoWindow .sidebar, -NemoWindow MarlinPlacesSidebar, -MarlinViewWindow .sidebar, -MarlinViewWindow MarlinPlacesSidebar { - background-color: #073642; } - GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar .source-list.sidebar row, GtkFileChooserDialog MarlinPlacesSidebar .view, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row, - NautilusWindow .sidebar .view, - NautilusWindow .sidebar .source-list.sidebar row, - NautilusWindow MarlinPlacesSidebar .view, - NautilusWindow MarlinPlacesSidebar .source-list.sidebar row, - NemoWindow .sidebar .view, - NemoWindow .sidebar .source-list.sidebar row, - NemoWindow MarlinPlacesSidebar .view, - NemoWindow MarlinPlacesSidebar .source-list.sidebar row, - MarlinViewWindow .sidebar .view, - MarlinViewWindow .sidebar .source-list.sidebar row, - MarlinViewWindow MarlinPlacesSidebar .view, - MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row { - background-color: transparent; - color: #657b83; } - GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar .source-list.sidebar row.image, GtkFileChooserDialog MarlinPlacesSidebar .view.image, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.image, - NautilusWindow .sidebar .view.image, - NautilusWindow .sidebar .source-list.sidebar row.image, - NautilusWindow MarlinPlacesSidebar .view.image, - NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.image, - NemoWindow .sidebar .view.image, - NemoWindow .sidebar .source-list.sidebar row.image, - NemoWindow MarlinPlacesSidebar .view.image, - NemoWindow MarlinPlacesSidebar .source-list.sidebar row.image, - MarlinViewWindow .sidebar .view.image, - MarlinViewWindow .sidebar .source-list.sidebar row.image, - MarlinViewWindow MarlinPlacesSidebar .view.image, - MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.image { - color: rgba(101, 123, 131, 0.7); } - GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar .source-list.sidebar row.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .view.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.cell:selected, - NautilusWindow .sidebar .view.cell:selected, - NautilusWindow .sidebar .source-list.sidebar row.cell:selected, - NautilusWindow MarlinPlacesSidebar .view.cell:selected, - NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, - NemoWindow .sidebar .view.cell:selected, - NemoWindow .sidebar .source-list.sidebar row.cell:selected, - NemoWindow MarlinPlacesSidebar .view.cell:selected, - NemoWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, - MarlinViewWindow .sidebar .view.cell:selected, - MarlinViewWindow .sidebar .source-list.sidebar row.cell:selected, - MarlinViewWindow MarlinPlacesSidebar .view.cell:selected, - MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog MarlinPlacesSidebar.frame, - NautilusWindow .sidebar.frame, - NautilusWindow MarlinPlacesSidebar.frame, - NemoWindow .sidebar.frame, - NemoWindow MarlinPlacesSidebar.frame, - MarlinViewWindow .sidebar.frame, - MarlinViewWindow MarlinPlacesSidebar.frame { - color: #657b83; } - GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog MarlinPlacesSidebar .separator, GtkFileChooserDialog MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserDialog MarlinPlacesSidebar .view.separator, - NautilusWindow .sidebar .separator, - NautilusWindow GtkPlacesSidebar.sidebar .view.separator, - NautilusWindow MarlinPlacesSidebar .separator, - NautilusWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - NautilusWindow MarlinPlacesSidebar .view.separator, - NemoWindow .sidebar .separator, - NemoWindow GtkPlacesSidebar.sidebar .view.separator, - NemoWindow MarlinPlacesSidebar .separator, - NemoWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - NemoWindow MarlinPlacesSidebar .view.separator, - MarlinViewWindow .sidebar .separator, - MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, - MarlinViewWindow MarlinPlacesSidebar .separator, - MarlinViewWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - MarlinViewWindow MarlinPlacesSidebar .view.separator { - color: transparent; } - -GtkFileChooserDialog.maximized .sidebar, -NautilusWindow.maximized .sidebar, -NemoWindow.maximized .sidebar, -MarlinViewWindow.maximized .sidebar { - background-color: #073642; } - -GtkFileChooserDialog .pane-separator, -NautilusWindow .pane-separator, -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { - background-color: #073642; } - -NautilusWindow NautilusWindowSlot { - background-color: #fdf6e3; } - -NautilusDesktopWindow NautilusWindowSlot { - background-color: transparent; } - -GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { - background-color: #073642; } - -GtkFileChooserDialog .sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-action-box { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-vbox > .frame { - color: #657b83; - border-color: transparent; } - -GtkFileChooserDialog .action-bar.frame { - background-color: transparent; - border-color: #05232b; } - -GtkFileChooserDialog .action-bar.frame GtkLabel, GtkFileChooserDialog .action-bar.frame GtkComboBox, -GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, -GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { - color: #657b83; } - -FeedReaderreaderUI.background.csd > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd > .titlebar .pane-separator, -GeditWindow.background.csd.maximized > .titlebar .pane-separator, -GeditWindow.background.csd > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { - background-color: #e4dabc; } - -FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #eee8d5; } - FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #f2eee0; } - -FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #eee8d5; } - FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #f2eee0; } - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; } - -GeditWindow.background.csd { - background-color: transparent; } - -GeditWindow.background .gedit-side-panel-paned .pane-separator { - background-color: #073642; } - -GeditWindow.background .gedit-bottom-panel-paned .pane-separator { - background-color: #dcdfe3; } - -GeditWindow.background > .titlebar.default-decoration, -GeditWindow.background > .titlebar.default-decoration:backdrop { - background-color: #eee8d5; } - -.gedit-bottom-panel-paned { - background-color: #fdf6e3; } - -.gedit-document-panel { - background-color: #073642; } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel .list-row { - color: #657b83; } - .gedit-document-panel .list-row { - background-color: rgba(101, 123, 131, 0); - border: solid rgba(101, 123, 131, 0); - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:hover { - border: solid rgba(101, 123, 131, 0.15); - border-width: 3px 2px 3px 2px; - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel .list-row:active { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:active .button { - color: #fdf6e3; } - .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -GeditFileBrowserWidget { - background-color: #073642; } - .maximized GeditFileBrowserWidget { - background-color: #073642; } - GeditFileBrowserWidget .scrollbars-junction, - GeditFileBrowserWidget .scrollbars-junction.frame { - border-color: transparent; - background-color: transparent; } - GeditFileBrowserWidget .horizontal { - background-color: transparent; - border-color: #041c22; } - GeditFileBrowserWidget .horizontal GtkComboBox { - color: #657b83; } - -GeditWindow.background.csd GeditFileBrowserView.view { - background-color: transparent; - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander { - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { - color: #268bd2; } - -GtkFileChooserDialog .action-bar.frame .button, -GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - GtkFileChooserDialog .action-bar.frame .button:hover, - GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - GtkFileChooserDialog .action-bar.frame .button:active, - GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog .action-bar.frame .button:checked, - GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - GtkFileChooserDialog .action-bar.frame .button:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -GtkFileChooserDialog .action-bar.frame .entry, -GtkFileChooserDialog .dialog-vbox > .frame .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.4)); - background-color: transparent; } - GtkFileChooserDialog .action-bar.frame .image.entry, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog .action-bar.frame .image.entry:hover, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { - color: inherit; } - GtkFileChooserDialog .action-bar.frame .entry:focus, - GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, #268bd2); } - GtkFileChooserDialog .action-bar.frame .entry:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.25)); } - -GtkFileChooserDialog .sidebar .trough.scrollbar, GtkFileChooserDialog MarlinPlacesSidebar .trough.scrollbar, -NautilusWindow .sidebar .trough.scrollbar, -NautilusWindow MarlinPlacesSidebar .trough.scrollbar, -NemoWindow .sidebar .trough.scrollbar, -NemoWindow MarlinPlacesSidebar .trough.scrollbar, -MarlinViewWindow .sidebar .trough.scrollbar, -MarlinViewWindow MarlinPlacesSidebar .trough.scrollbar, GeditFileBrowserWidget .trough.scrollbar { - background-color: transparent; - border-color: transparent; } - -GtkFileChooserDialog .sidebar .slider.scrollbar, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar, -NautilusWindow .sidebar .slider.scrollbar, -NautilusWindow MarlinPlacesSidebar .slider.scrollbar, -NemoWindow .sidebar .slider.scrollbar, -NemoWindow MarlinPlacesSidebar .slider.scrollbar, -MarlinViewWindow .sidebar .slider.scrollbar, -MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar, GeditFileBrowserWidget .slider.scrollbar { - border-radius: 20px; - border: 3px solid transparent; - background-color: rgba(141, 160, 167, 0.7); } - GtkFileChooserDialog .sidebar .slider.scrollbar:hover, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar:hover, - NautilusWindow .sidebar .slider.scrollbar:hover, - NautilusWindow MarlinPlacesSidebar .slider.scrollbar:hover, - NemoWindow .sidebar .slider.scrollbar:hover, - NemoWindow MarlinPlacesSidebar .slider.scrollbar:hover, - MarlinViewWindow .sidebar .slider.scrollbar:hover, - MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar:hover, GeditFileBrowserWidget .slider.scrollbar:hover { - background-color: #9cacb2; } - GtkFileChooserDialog .sidebar .slider.scrollbar:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar:prelight:active, - NautilusWindow .sidebar .slider.scrollbar:prelight:active, - NautilusWindow MarlinPlacesSidebar .slider.scrollbar:prelight:active, - NemoWindow .sidebar .slider.scrollbar:prelight:active, - NemoWindow MarlinPlacesSidebar .slider.scrollbar:prelight:active, - MarlinViewWindow .sidebar .slider.scrollbar:prelight:active, - MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar:prelight:active, GeditFileBrowserWidget .slider.scrollbar:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog .sidebar .slider.fine-tune.scrollbar, GtkFileChooserDialog MarlinPlacesSidebar .slider.fine-tune.scrollbar, - NautilusWindow .sidebar .slider.fine-tune.scrollbar, - NautilusWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar, - NemoWindow .sidebar .slider.fine-tune.scrollbar, - NemoWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar, - MarlinViewWindow .sidebar .slider.fine-tune.scrollbar, - MarlinViewWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar, GeditFileBrowserWidget .slider.fine-tune.scrollbar { - border-width: 4px; } - GtkFileChooserDialog .sidebar .slider.fine-tune.scrollbar:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, - NautilusWindow .sidebar .slider.fine-tune.scrollbar:prelight:active, - NautilusWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, - NemoWindow .sidebar .slider.fine-tune.scrollbar:prelight:active, - NemoWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, - MarlinViewWindow .sidebar .slider.fine-tune.scrollbar:prelight:active, - MarlinViewWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, GeditFileBrowserWidget .slider.fine-tune.scrollbar:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog .sidebar .slider.scrollbar:insensitive, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar:insensitive, - NautilusWindow .sidebar .slider.scrollbar:insensitive, - NautilusWindow MarlinPlacesSidebar .slider.scrollbar:insensitive, - NemoWindow .sidebar .slider.scrollbar:insensitive, - NemoWindow MarlinPlacesSidebar .slider.scrollbar:insensitive, - MarlinViewWindow .sidebar .slider.scrollbar:insensitive, - MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar:insensitive, GeditFileBrowserWidget .slider.scrollbar:insensitive { - background-color: transparent; } - -/* GTK NAMED COLORS */ -@define-color theme_fg_color #5c616c; -@define-color theme_text_color #5c616c; -@define-color theme_bg_color #F5F6F7; -@define-color theme_base_color #fdf6e3; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #5c616c; -@define-color text_color #5c616c; -@define-color bg_color #F5F6F7; -@define-color base_color #fdf6e3; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #faf6eb; -@define-color insensitive_fg_color alpha(#5c616c, 0.5); -@define-color insensitive_base_color #fdf6e3; -@define-color theme_unfocused_fg_color #5c616c; -@define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #F5F6F7; -@define-color theme_unfocused_base_color #fdf6e3; -@define-color borders #dcdfe3; -@define-color unfocused_borders #dcdfe3; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #1e6ea7; -@define-color wm_title alpha(#525d76, 0.8); -@define-color wm_unfocused_title alpha(#525d76, 0.5); -@define-color wm_bg #eee8d5; -@define-color wm_bg_unfocused #f2eee0; -@define-color wm_highlight #f2eee0; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #f46067; -@define-color wm_button_close_hover_bg #f68086; -@define-color wm_button_close_active_bg #f13039; -@define-color wm_icon_close_bg #657b83; -@define-color wm_button_hover_bg #fdfdfd; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #D1D3DA; -@define-color wm_icon_bg #90949E; -@define-color wm_icon_unfocused_bg #B6B8C0; -@define-color wm_icon_hover_bg #7A7F8B; -@define-color wm_icon_active_bg #fdf6e3; -@define-color content_view_bg #fdf6e3; diff --git a/common/gtk-3.0/3.14/gtk.css b/common/gtk-3.0/3.14/gtk.css deleted file mode 100644 index 8c5dd6b..0000000 --- a/common/gtk-3.0/3.14/gtk.css +++ /dev/null @@ -1,4057 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -GtkPaned-handle-size: 1; - -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: #1e6ea7; - -GtkWidget-visited-link-color: #16527c; - -GtkWidget-focus-padding: 2; - -GtkWidget-focus-line-width: 1; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - -GtkStatusbar-shadow-type: none; - outline-color: rgba(92, 97, 108, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; } - -.background { - color: #5c616c; - background-color: rgba(245, 246, 247, 0.999); } - -*:insensitive { - -gtk-image-effect: dim; } - -.gtkstyle-fallback { - background-color: #F5F6F7; - color: #5c616c; } - .gtkstyle-fallback:prelight { - background-color: white; - color: #5c616c; } - .gtkstyle-fallback:active { - background-color: #d9dde0; - color: #5c616c; } - .gtkstyle-fallback:insensitive { - background-color: #faf6eb; - color: rgba(92, 97, 108, 0.55); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view { - color: #5c616c; - background-color: #fdf6e3; } - .view.dim-label, GtkLabel.view.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .view.subtitle { - color: rgba(92, 97, 108, 0.55); } - .view.dim-label:selected, GtkLabel.view.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, GtkLabel.view.separator:selected:focus, .header-bar .view.subtitle:selected:focus { - color: rgba(253, 246, 227, 0.65); - text-shadow: none; } - -.rubberband { - border: 1px solid #268bd2; - background-color: rgba(38, 139, 210, 0.2); } - -GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator { - color: #5c616c; } - -GtkLabel:insensitive { - color: rgba(92, 97, 108, 0.55); } - -.dim-label, GtkLabel.separator, .popover GtkLabel.separator, GtkPlacesSidebar.sidebar GtkLabel.view.separator, .header-bar .subtitle { - opacity: 0.55; } - -GtkAssistant .sidebar { - background-color: #fdf6e3; - border-top: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #dcdfe3; } - -GtkAssistant.csd .sidebar { - border-top-style: none; } - -GtkAssistant .sidebar GtkLabel { - padding: 6px 12px; } - -GtkAssistant .sidebar GtkLabel.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -GtkTextView { - background-color: #f9f6ed; } - -GtkFlowBox .grid-child { - padding: 3px; - border-radius: 3px; } - GtkFlowBox .grid-child:selected { - outline-offset: -2px; } - -.popover.osd, .osd { - color: #657b83; - border: none; - background-color: rgba(7, 54, 66, 0.95); - background-clip: padding-box; - outline-color: rgba(101, 123, 131, 0.3); - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - .spinner:active { - opacity: 1; - animation: spin 1s linear infinite; } - .spinner:active:insensitive { - opacity: 0.5; } - -.entry { - border: 1px solid; - padding: 5px 8px; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry.image.left { - padding-left: 0; } - .entry.image.right { - padding-right: 0; } - .entry.flat, .entry.flat:focus { - padding: 2px; - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); - border: none; - border-radius: 0; } - .entry:focus { - background-clip: border-box; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(253, 246, 227, 0.55); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.55)); } - .entry:selected, .entry:selected:focus { - background-color: #268bd2; - color: #fdf6e3; } - .entry.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - .linked > .entry:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .linked > .entry:first-child:dir(rtl) { - border-right-style: none; } - .linked > .entry:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; } - .linked > .entry:last-child:dir(rtl) { - border-left-style: solid; } - .entry.warning { - color: #fdf6e3; - border-color: #cb4b16; - background-image: linear-gradient(to bottom, #df8f68); } - .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); - box-shadow: none; } - .entry.warning:selected, .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .entry.error { - color: #fdf6e3; - border-color: #dc322f; - background-image: linear-gradient(to bottom, #e98077); } - .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); - box-shadow: none; } - .entry.error:selected, .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - .entry.image { - color: #7c7f84; } - .linked.vertical > .entry { - border-bottom-color: #f3efe3; - box-shadow: none; } - .linked.vertical > .entry:focus { - border-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:insensitive { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:first-child { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:first-child:focus { - border-bottom-color: #268bd2; - box-shadow: none; } - .linked.vertical > .entry:first-child:insensitive { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:last-child { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .linked.vertical > .entry:last-child:focus { - border-bottom-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:last-child:insensitive { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .osd .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.35)); - background-color: transparent; } - .osd .entry.image, .osd .entry.image:hover { - color: inherit; } - .osd .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, #268bd2); } - .osd .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.2)); } - -GtkSearchEntry.entry { - border-radius: 20px; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -.button { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 5px 8px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(251, 251, 252, 0); - border-color: rgba(101, 123, 131, 0); - transition: none; } - .button.flat:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - .button.flat:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; - -gtk-image-effect: highlight; } - .button:active, .button:checked { - background-clip: border-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; - transition-duration: 50ms; } - .button:active { - color: #5c616c; } - .button:active:hover, .button:checked { - color: #fdf6e3; } - .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; } - .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button:insensitive > GtkLabel { - color: inherit; } - .button:insensitive:active, .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { - color: inherit; } - .button.osd { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(3, 24, 29, 0.95); } - .button.osd.image-button, .header-bar .button.osd.titlebutton, .titlebar .button.osd.titlebutton { - padding: 10px; } - .button.osd:hover { - color: #268bd2; } - .button.osd:active, .button.osd:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .button.osd:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .osd .button:dir(rtl) { - border-radius: 0; - border-right-style: none; - border-left-style: none; } - .osd .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:dir(rtl) { - border-left-style: solid; } - .osd .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd .button:hover, .osd .button:hover:first-child, .osd .button:hover:last-child { - box-shadow: none; } - .osd .button:active, .osd .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd .button.flat:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd .button.flat:hover, .osd .button.flat:hover:first-child, .osd .button.flat:hover:last-child { - box-shadow: none; } - .osd .button.flat:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); - background-image: none; } - .osd .button.flat:active, .osd .button.flat:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .button.suggested-action:active, .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .button.suggested-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.suggested-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .button.destructive-action:active, .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .button.destructive-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.destructive-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - .button.image-button, .header-bar .button.titlebutton, .titlebar .button.titlebutton, - .header-bar.selection-mode .button.titlebutton, .titlebar.selection-mode .button.titlebutton { - padding: 7px; } - .header-bar .button.image-button, .header-bar .button.titlebutton, .header-bar.selection-mode .button.titlebutton, .header-bar .titlebar.selection-mode .button.titlebutton, .titlebar.selection-mode .header-bar .button.titlebutton { - padding: 7px 10px; } - .button.text-button { - padding-left: 16px; - padding-right: 16px; } - .button.text-button.image-button, .header-bar .button.text-button.titlebutton, .titlebar .button.text-button.titlebutton { - padding: 5px 8px; } - .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, .titlebar .button.text-button.titlebutton GtkLabel:first-child { - padding-left: 8px; } - .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, .titlebar .button.text-button.titlebutton GtkLabel:last-child { - padding-right: 8px; } - .stack-switcher > .button { - outline-offset: -3px; } - .stack-switcher > .button > GtkLabel { - 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 { - padding: 5px 10px; } - .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, .titlebar .stack-switcher > .button.titlebutton { - padding: 2px 4px; } - .stack-switcher > .button.needs-attention:active > .label, - .stack-switcher > .button.needs-attention:active > GtkImage, - .stack-switcher > .button.needs-attention:checked > GtkLabel, - .stack-switcher > .button.needs-attention:checked > GtkImage { - animation: none; - background-image: none; } - .stack-switcher > .button.needs-attention > GtkLabel, - .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 4px; } - .stack-switcher > .button.needs-attention > GtkLabel:dir(rtl), - .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { - background-position: left 3px, left 4px; } - .inline-toolbar .button, .inline-toolbar .button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar GtkToolButton > .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .inline-toolbar GtkToolButton > .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { - color: inherit; } - .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { - color: inherit; } - -.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, -.linked > .button:hover, -.linked > .button:active, -.linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4), inset -1px 0 rgba(101, 123, 131, 0.4); } - .inline-toolbar GtkToolButton > .button.flat:active, .osd .button:active, .inline-toolbar .button:active, .linked > .button:active, GtkComboBox.combobox-entry .entry:active, GtkComboBox.combobox-entry .button:active, .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, .linked > GtkComboBox > .button:active:dir(ltr), .inline-toolbar GtkToolButton > .button.flat:checked, .osd .button:checked, .inline-toolbar .button:checked, .linked > .button:checked, GtkComboBox.combobox-entry .entry:checked, GtkComboBox.combobox-entry .button:checked, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked, .linked > GtkComboBox > .button:checked:dir(ltr) { - box-shadow: none; } - .inline-toolbar.toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .inline-toolbar .button:dir(rtl):backdrop, .linked > .button:dir(rtl), - .linked > .button:dir(rtl):hover, - .linked > .button:dir(rtl):active, - .linked > .button:dir(rtl):checked, GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), .primary-toolbar .linked.path-bar > .button:dir(rtl), .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { - border-radius: 0; } - -.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, .primary-toolbar .linked.path-bar > .button:first-child, .header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.4); } - .osd .button:first-child:active, .inline-toolbar .button:first-child:active, .linked > .button:first-child:active, .inline-toolbar GtkToolButton:first-child > .button.flat:active, GtkComboBox.combobox-entry .entry:first-child:active, GtkComboBox.combobox-entry .button:first-child:active, .linked > GtkComboBox:first-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, .osd .button:first-child:checked, .inline-toolbar .button:first-child:checked, .linked > .button:first-child:checked, .inline-toolbar GtkToolButton:first-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:first-child:checked, GtkComboBox.combobox-entry .button:first-child:checked, .linked > GtkComboBox:first-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - -.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, .primary-toolbar .linked.path-bar > .button:last-child, .header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4); } - .osd .button:last-child:active, .inline-toolbar .button:last-child:active, .linked > .button:last-child:active, .inline-toolbar GtkToolButton:last-child > .button.flat:active, GtkComboBox.combobox-entry .entry:last-child:active, GtkComboBox.combobox-entry .button:last-child:active, .linked > GtkComboBox:last-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, .osd .button:last-child:checked, .inline-toolbar .button:last-child:checked, .linked > .button:last-child:checked, .inline-toolbar GtkToolButton:last-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:last-child:checked, GtkComboBox.combobox-entry .button:last-child:checked, .linked > GtkComboBox:last-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { - border-bottom-left-radius: 0; } - -.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, .primary-toolbar .linked.path-bar > .button:only-child, .header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - .osd .button:only-child:active, .inline-toolbar .button:only-child:active, .linked > .button:only-child:active, .inline-toolbar GtkToolButton:only-child > .button.flat:active, GtkComboBox.combobox-entry .entry:only-child:active, GtkComboBox.combobox-entry .button:only-child:active, .linked > GtkComboBox:only-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, .osd .button:only-child:checked, .inline-toolbar .button:only-child:checked, .linked > .button:only-child:checked, .inline-toolbar GtkToolButton:only-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:only-child:checked, GtkComboBox.combobox-entry .button:only-child:checked, .linked > GtkComboBox:only-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, -.linked.vertical > .button:hover, -.linked.vertical > .button:active, -.linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, -.linked.vertical > GtkComboBox > .button { - border-style: solid; - border-bottom-style: none; - border-top-style: none; - border-radius: 0; } - .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, - .linked.vertical > GtkComboBox > .button:hover { - box-shadow: inset 0 -1px rgba(101, 123, 131, 0.4), inset 0 1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:active, .linked.vertical > .button:active, .linked.vertical > GtkComboBoxText > .button:active, - .linked.vertical > GtkComboBox > .button:active, .linked.vertical > .entry:checked, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button:checked, - .linked.vertical > GtkComboBox > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, -.linked.vertical > GtkComboBox:first-child > .button { - border-radius: 3px 3px 0 0; - border-top-style: solid; } - .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, - .linked.vertical > GtkComboBox:first-child > .button:hover { - box-shadow: inset 0 -1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:first-child:active, .linked.vertical > .button:first-child:active, .linked.vertical > GtkComboBoxText:first-child > .button:active, - .linked.vertical > GtkComboBox:first-child > .button:active, .linked.vertical > .entry:first-child:checked, .linked.vertical > .button:first-child:checked, .linked.vertical > GtkComboBoxText:first-child > .button:checked, - .linked.vertical > GtkComboBox:first-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, -.linked.vertical > GtkComboBox:last-child > .button { - border-radius: 0 0 3px 3px; - border-bottom-style: solid; } - .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, - .linked.vertical > GtkComboBox:last-child > .button:hover { - box-shadow: inset 0 1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:last-child:active, .linked.vertical > .button:last-child:active, .linked.vertical > GtkComboBoxText:last-child > .button:active, - .linked.vertical > GtkComboBox:last-child > .button:active, .linked.vertical > .entry:last-child:checked, .linked.vertical > .button:last-child:checked, .linked.vertical > GtkComboBoxText:last-child > .button:checked, - .linked.vertical > GtkComboBox:last-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, -.linked.vertical > GtkComboBox:only-child > .button { - border-radius: 3px; - border-style: solid; } - .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, - .linked.vertical > GtkComboBox:only-child > .button:hover { - box-shadow: none; } - .linked.vertical > .entry:only-child:active, .linked.vertical > .button:only-child:active, .linked.vertical > GtkComboBoxText:only-child > .button:active, - .linked.vertical > GtkComboBox:only-child > .button:active, .linked.vertical > .entry:only-child:checked, .linked.vertical > .button:only-child:checked, .linked.vertical > GtkComboBoxText:only-child > .button:checked, - .linked.vertical > GtkComboBox:only-child > .button:checked { - box-shadow: none; } - -.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, -.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, -.app-notification.frame .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -/* menu buttons */ -.menuitem.button.flat { - transition: none; - outline-offset: -1px; - border-radius: 2px; } - .menuitem.button.flat:hover { - background-color: #edeff0; } - .menuitem.button.flat:checked { - color: #5c616c; } - -*:link, .button:link, .button:visited { - color: #1e6ea7; } - *:link:visited, .button:visited { - color: #16527c; } - *:selected *:link:visited, *:selected .button:visited:link, *:selected .button:visited { - color: #a7cbdc; } - *:link:hover, .button:hover:link, .button:hover:visited { - color: #268bd2; } - *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { - color: #e8ebe1; } - *:link:active, .button:active:link, .button:active:visited { - color: #1e6ea7; } - *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { - color: #d2e1e0; } - *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { - color: #d2e1e0; } - -.spinbutton { - border-radius: 3px; } - .spinbutton .button { - background-image: none; - border: 1px solid rgba(220, 223, 227, 0.6); - border-style: none none none solid; - color: #646872; - border-radius: 0; - box-shadow: none; } - .spinbutton .button:dir(rtl) { - border-style: none solid none none; } - .spinbutton .button:first-child { - color: red; } - .spinbutton .button:insensitive { - color: rgba(92, 97, 108, 0.55); } - .spinbutton .button:active { - background-color: #268bd2; - color: #fdf6e3; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - border-radius: 2px 2px 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:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; } - GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: #268bd2; - border-radius: 0; - box-shadow: none; } - -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; } - GtkComboBox > .button { - padding-top: 3px; - padding-bottom: 3px; } - GtkComboBox:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { - -GtkWidget-wide-separators: true; } - GtkComboBox.combobox-entry .entry:dir(ltr) { - border-right-style: none; } - GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: 1px 0 #268bd2; } - GtkComboBox.combobox-entry .entry:dir(rtl) { - border-left-style: none; } - GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: -1px 0 #268bd2; } - GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 #657b83; } - GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.55); } - GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 #657b83; } - GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.55); } - -.toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #F5F6F7; } - .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.85); } - -.primary-toolbar { - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #eee8d5, rgba(228, 218, 188, 0.95)) 1 0 1 0; } - -.inline-toolbar { - background-color: #edeef0; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -.search-bar { - background-color: #F5F6F7; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 0 1px; - padding: 3px; } - -.action-bar { - background-color: #edeef0; } - -.header-bar { - padding: 5px 5px 4px 5px; - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: #e4dabc; - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; } - .csd .header-bar { - background-color: rgba(238, 232, 213, 0.95); - border-color: rgba(228, 218, 188, 0.95); } - .header-bar:backdrop { - color: rgba(82, 93, 118, 0.5); } - .header-bar .title { - padding-left: 12px; - padding-right: 12px; } - .header-bar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .header-bar.selection-mode, .header-bar.titlebar.selection-mode { - color: #fdf6e3; - background-color: rgba(38, 139, 210, 0.95); - border-color: rgba(35, 128, 193, 0.95); - box-shadow: none; } - .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { - background-color: rgba(38, 139, 210, 0.95); - color: rgba(253, 246, 227, 0.6); } - .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.05); - border-color: rgba(253, 246, 227, 0.5); } - .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { - color: rgba(38, 139, 210, 0.95); - outline-color: rgba(38, 139, 210, 0.25); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { - color: rgba(38, 139, 210, 0.35); - background-color: rgba(253, 246, 227, 0.15); - border-color: rgba(253, 246, 227, 0.15); } - .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { - background-color: #268bd2; } - .tiled .header-bar, .tiled .header-bar:backdrop, - .maximized .header-bar, .maximized .header-bar:backdrop { - border-radius: 0; } - .maximized .header-bar { - background-color: #eee8d5; - border-color: #e4dabc; } - .header-bar.default-decoration, - .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, - .csd .header-bar.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: #eee8d5; - border-bottom-width: 0; } - .maximized .header-bar.default-decoration, .maximized - .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized - .csd .header-bar.default-decoration:backdrop { - background-color: #eee8d5; } - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: 4px 4px 0 0; - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; - box-shadow: inset 0 1px rgba(242, 238, 224, 0.95); } - .csd .titlebar { - background-color: rgba(238, 232, 213, 0.95); } - .titlebar:backdrop { - color: rgba(82, 93, 118, 0.5); - background-color: #f2eee0; } - .csd .titlebar:backdrop { - background-color: rgba(242, 238, 224, 0.95); } - .maximized .titlebar { - background-color: #eee8d5; } - .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { - background-color: #f2eee0; } - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { - background-color: transparent; } - -.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, -.header-bar > GtkBox > .separator.vertical, GtkPlacesSidebar.sidebar -.header-bar > GtkBox > .vertical.view.separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(82, 93, 118, 0) 25%, rgba(82, 93, 118, 0.15) 25%, rgba(82, 93, 118, 0.15) 75%, rgba(82, 93, 118, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, - .header-bar > GtkBox > .separator.vertical:backdrop, GtkPlacesSidebar.sidebar - .header-bar > GtkBox > .vertical.view.separator:backdrop { - opacity: 0.6; } - -.primary-toolbar .entry, .header-bar .entry { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { - color: inherit; } - .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { - opacity: 0.85; } - .primary-toolbar .entry:focus, .header-bar .entry:focus { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); - background-clip: border-box; } - .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { - color: #fdf6e3; } - .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar .entry.warning, .header-bar .entry.warning { - color: white; - border-color: #cb4b16; - background-image: linear-gradient(to bottom, rgba(216, 134, 94, 0.98)); } - .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); } - .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar .entry.error, .header-bar .entry.error { - color: white; - border-color: #dc322f; - background-image: linear-gradient(to bottom, rgba(227, 118, 109, 0.98)); } - .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); } - .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar .button, .header-bar .button { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - outline-offset: -3px; - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button:backdrop, .header-bar .button:backdrop { - opacity: 0.7; } - .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; - background-clip: border-box; } - .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(82, 93, 118, 0.35); - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { - color: inherit; } - .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.primary-toolbar .linked > .button, .header-bar .linked > .button { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { - box-shadow: none; } - -.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - background-color: rgba(255, 255, 255, 0.9); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .primary-toolbar .linked.stack-switcher > .button:insensitive, .header-bar .linked.stack-switcher > .button:insensitive, .primary-toolbar .linked.path-bar > .button:insensitive, .header-bar .linked.path-bar > .button:insensitive { - color: rgba(82, 93, 118, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1), inset -1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked { - box-shadow: none; } - -.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { - color: rgba(82, 93, 118, 0.35); - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, .primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { - color: rgba(82, 93, 118, 0.35); - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, .primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { - color: #fdf6e3; } - .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { - background-color: rgba(253, 246, 227, 0.1); - border-color: transparent; } - .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { - color: rgba(253, 246, 227, 0.4); } - -.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(82, 93, 118, 0.8); } - .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { - background-color: rgba(82, 93, 118, 0.05); - border-color: transparent; } - .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(82, 93, 118, 0.5); } - .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { - background-color: rgba(0, 0, 0, 0.1); } - -.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(82, 93, 118, 0.2); } - -.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { - color: inherit; } - .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr), .header-bar GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0); } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl), .header-bar GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0); } - -.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { - opacity: 0.75; } - -.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(82, 93, 118, 0.15); } - -.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(82, 93, 118, 0.15)); } - .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(82, 93, 118, 0.1)); } - -.primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, #fbfbfc); - border-color: rgba(82, 93, 118, 0.3); } - .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { - background-image: linear-gradient(to bottom, white); - border-color: rgba(82, 93, 118, 0.3); } - .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, rgba(247, 246, 241, 0.985)); - border-color: rgba(82, 93, 118, 0.3); } - -.path-bar .button { - padding: 5px 10px; } - .path-bar .button:first-child { - padding-left: 10px; } - .path-bar .button:last-child { - padding-right: 10px; } - .path-bar .button:only-child { - padding-left: 14px; - padding-right: 14px; } - .path-bar .button GtkLabel:last-child { - padding-left: 4px; } - .path-bar .button GtkLabel:first-child { - padding-right: 4px; } - .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { - padding-right: 0; - padding-left: 0; } - .path-bar .button GtkImage { - padding-top: 2px; - padding-bottom: 1px; } - -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-color: rgba(92, 97, 108, 0.2); } - GtkTreeView.view.dnd { - border-style: solid none; - border-width: 1px; - border-color: #41769f; } - GtkTreeView.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #adaca8; } - GtkTreeView.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - GtkTreeView.view.expander:hover { - color: #5c616c; } - GtkTreeView.view.expander:selected { - color: #bdd6de; } - GtkTreeView.view.expander:selected:hover { - color: #fdf6e3; } - GtkTreeView.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - GtkTreeView.view.progressbar, GtkTreeView.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-image: linear-gradient(to bottom, #268bd2); } - GtkTreeView.view.progressbar:selected, GtkTreeView.view.progressbar:selected:focus, GtkTreeView.view.progressbar:focus:selected, GtkTreeView.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-image: linear-gradient(to bottom, #fdf6e3); } - GtkTreeView.view.trough { - color: #5c616c; - background-image: linear-gradient(to bottom, #657b83); - border-radius: 3px; - border-width: 0; } - GtkTreeView.view.trough:selected, GtkTreeView.view.trough:selected:focus { - color: #fdf6e3; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); - border-radius: 3px; - border-width: 0; } - -column-header .button { - color: #7c7f84; - background-color: #fdf6e3; } - column-header .button:hover { - color: #268bd2; - box-shadow: none; - transition: none; } - column-header .button:active { - color: #5c616c; - transition: none; } - -column-header:last-child .button, column-header:last-child.button { - border-right-style: none; - border-image: none; } - -column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { - transition: none; - color: #268bd2; - box-shadow: inset 1px 1px 0 1px #268bd2, inset -1px 0 0 1px #268bd2, inset 1px 1px #fdf6e3, inset -1px 0 #fdf6e3; } - -column-header .button, column-header .button:hover, column-header .button:active { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; } - column-header .button:active, column-header .button:hover { - background-color: #fdf6e3; } - column-header .button:active:hover { - color: #5c616c; } - column-header .button:insensitive { - border-color: #F5F6F7; - background-image: none; } - -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #eee8d5; - color: rgba(82, 93, 118, 0.8); } - .menubar:backdrop { - color: rgba(82, 93, 118, 0.5); } - .menubar > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - .menubar > .menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - .menubar > .menuitem:insensitive { - color: rgba(82, 93, 118, 0.2); - border-color: transparent; } - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; } - .csd .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - .menu .menuitem { - padding: 5px; } - .menu .menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - .menu .menuitem:insensitive { - color: rgba(92, 97, 108, 0.55); } - .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator { - color: rgba(253, 246, 227, 0); } - .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 #ede7d7; } - .menu.button.bottom { - border-top: 1px solid #ede7d7; } - .menu.button:hover { - background-color: #ede7d7; } - .menu.button:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent; } - -.csd .popup { - border-radius: 2px; } - -.menuitem .accelerator { - color: alpha(currentColor,0.55); } - -.popover { - margin: 10px; - padding: 2px; - border: 1px solid #cdd2d7; - border-radius: 3px; - background-clip: border-box; - background-color: #fdf6e3; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } - .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { - color: rgba(253, 246, 227, 0); } - .popover > .list, - .popover > .view, - .popover > .toolbar, - .popover > .inline-toolbar, - .popover.osd > .toolbar, - .popover.osd > .inline-toolbar { - border-style: none; - background-color: transparent; } - -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - .entry.cursor-handle.top, - .cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - .entry.cursor-handle.bottom, - .cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -.notebook { - padding: 0; - background-color: #fdf6e3; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -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.frame { - border: 1px solid #dcdfe3; } - .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.header { - background-color: #F5F6F7; } - .notebook.header.frame { - border: 0px solid #dcdfe3; } - .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.top { - box-shadow: inset 0 -1px #dcdfe3; } - .notebook.header.bottom { - box-shadow: inset 0 1px #dcdfe3; } - .notebook.header.right { - box-shadow: inset 1px 0 #dcdfe3; } - .notebook.header.left { - box-shadow: inset -1px 0 #dcdfe3; } - .notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - outline-offset: 0; } - .notebook tab.top, .notebook tab.bottom { - padding: 4px 15px; } - .notebook tab.left, .notebook tab.right { - padding: 4px 15px; } - .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { - padding-left: 12px; - padding-right: 12px; } - .notebook tab.reorderable-page.top, .notebook tab.top { - padding-top: 6px; - border-radius: 3.5px 2px 0 0; - border-width: 0; - border-top-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #fdf6e3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom, .notebook tab.bottom { - padding-bottom: 6px; - border-radius: 0 0 2px 3.5px; - border-width: 0; - border-bottom-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 -1px #fdf6e3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right, .notebook tab.right { - padding-right: 17px; - border-radius: 0 3.5px 3.5px 0; - border-width: 0; - border-right-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #fdf6e3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left, .notebook tab.left { - padding-left: 17px; - border-radius: 3.5px 0 0 3.5px; - border-width: 0; - border-left-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #fdf6e3; } - .notebook tab GtkLabel { - padding: 0 2px; - color: rgba(92, 97, 108, 0.55); } - .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(92, 97, 108, 0.775); } - .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { - color: #5c616c; } - .notebook tab .button { - padding: 0; - color: #92959d; } - .notebook tab .button:hover { - color: #ff4d4d; } - .notebook tab .button:active { - color: #268bd2; } - .notebook tab .button > GtkImage { - padding: 2px; } - .notebook.arrow { - color: rgba(92, 97, 108, 0.55); } - .notebook.arrow:hover { - color: rgba(92, 97, 108, 0.775); } - .notebook.arrow:active { - color: #5c616c; } - .notebook.arrow:insensitive { - color: rgba(92, 97, 108, 0.25); } - -.scrollbar { - background-clip: padding-box; - background-image: none; - border-style: solid; - -GtkRange-trough-border: 0; - -GtkScrollbar-has-backward-stepper: false; - -GtkScrollbar-has-forward-stepper: false; - -GtkRange-slider-width: 13; - -GtkScrollbar-min-slider-length: 42; - -GtkRange-stepper-spacing: 0; - -GtkRange-trough-under-steppers: 1; } - .scrollbar .button { - border: none; } - .scrollbar.trough { - background-color: #fdf4de; - border-left: 1px solid #dcdfe3; } - .scrollbar.trough.horizontal { - border-left: none; - border-top: 1px solid #dcdfe3; } - .scrollbar.slider { - border-radius: 21px 20px 20px 21px; - border: 3px solid transparent; - border-left-width: 4px; - background-color: #b8babf; } - .scrollbar.slider.horizontal { - border-radius: 21px 21px 20px 20px; - border-left-width: 3px; - border-top-width: 4px; } - .scrollbar.slider:hover { - background-color: #cfd1d4; } - .scrollbar.slider:prelight:active, .scrollbar.slider:active { - background-color: #268bd2; } - .scrollbar.slider.fine-tune { - border-width: 4px; } - .scrollbar.slider.fine-tune:prelight:active { - background-color: #268bd2; } - .scrollbar.slider:insensitive { - background-color: transparent; } - -.scrollbars-junction, -.scrollbars-junction.frame { - border-color: transparent; - background-color: #fdf4de; } - -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 41; - outline-color: transparent; } - GtkSwitch.trough, GtkSwitch.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; } - GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { - background-position: left center; } - -GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough, -.list-row:selected GtkSwitch.trough, -GtkInfoBar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -.header-bar GtkSwitch.trough, -.primary-toolbar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } - -GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active, -.list-row:selected GtkSwitch.trough:active, -GtkInfoBar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -.header-bar GtkSwitch.trough:active, -.primary-toolbar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } - -GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:insensitive, -.list-row:selected GtkSwitch.trough:insensitive, -GtkInfoBar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:insensitive, -.primary-toolbar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } - -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active:insensitive, -.list-row:selected GtkSwitch.trough:active:insensitive, -GtkInfoBar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:active:insensitive, -.primary-toolbar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } - -.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check, -GtkFileChooserDialog .dialog-vbox > .frame .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -.menu .menuitem.check:hover, -GtkTreeView.view.check:selected, -.list-row:selected .check, -GtkInfoBar .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.check:insensitive:hover, -GtkTreeView.view.check:insensitive:selected, -.list-row:selected .check:insensitive, -GtkInfoBar .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -.menu .menuitem.check:inconsistent:hover, -GtkTreeView.view.check:inconsistent:selected, -.list-row:selected .check:inconsistent, -GtkInfoBar .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.check:inconsistent:insensitive:hover, -GtkTreeView.view.check:inconsistent:insensitive:selected, -.list-row:selected .check:inconsistent:insensitive, -GtkInfoBar .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -.menu .menuitem.check:checked:hover, -GtkTreeView.view.check:checked:selected, -.list-row:selected .check:checked, -GtkInfoBar .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -.menu .menuitem.check:checked:insensitive:hover, -GtkTreeView.view.check:checked:insensitive:selected, -.list-row:selected .check:checked:insensitive, -GtkInfoBar .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio, -GtkFileChooserDialog .dialog-vbox > .frame .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -.menu .menuitem.radio:hover, -GtkTreeView.view.radio:selected, -.list-row:selected .radio, -GtkInfoBar .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:insensitive:hover, -GtkTreeView.view.radio:insensitive:selected, -.list-row:selected .radio:insensitive, -GtkInfoBar .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:hover, -GtkTreeView.view.radio:inconsistent:selected, -.list-row:selected .radio:inconsistent, -GtkInfoBar .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:insensitive:hover, -GtkTreeView.view.radio:inconsistent:insensitive:selected, -.list-row:selected .radio:inconsistent:insensitive, -GtkInfoBar .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -.menu .menuitem.radio:checked:hover, -GtkTreeView.view.radio:checked:selected, -.list-row:selected .radio:checked, -GtkInfoBar .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:checked:insensitive:hover, -GtkTreeView.view.radio:checked:insensitive:selected, -.list-row:selected .radio:checked:insensitive, -GtkInfoBar .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -GtkIconView.view.check, -GtkFlowBox.view.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); - background-color: transparent; } - -GtkIconView.view.check:checked, -GtkFlowBox.view.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-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: rgba(92, 97, 108, 0.55); } - -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; } - .scale.trough { - margin: 5px; } - .scale.fine-tune.trough { - border-radius: 5px; - margin: 3px; } - .scale.slider { - background-clip: border-box; - background-image: linear-gradient(to bottom, #fbfbfc); - border: 1px solid rgba(45, 55, 59, 0.5); - border-radius: 50%; - box-shadow: none; } - .scale.slider:hover { - background-image: linear-gradient(to bottom, white); - border-color: rgba(45, 55, 59, 0.5); } - .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #f9f6ec); - border-color: rgba(45, 55, 59, 0.3); } - .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .osd .scale.slider { - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.95)); - border-color: #268bd2; } - .osd .scale.slider:hover { - background-image: linear-gradient(to bottom, #268bd2); } - .osd .scale.slider:active { - background-image: linear-gradient(to bottom, #1e6ea7); - border-color: #1e6ea7; } - .menu .menuitem:hover .scale.slider, - .list-row:selected .scale.slider, - GtkInfoBar .scale.slider { - background-image: linear-gradient(to bottom, #fdf6e3); - border-color: #fdf6e3; } - .menu .menuitem:hover .scale.slider:hover, - .list-row:selected .scale.slider:hover, - GtkInfoBar .scale.slider:hover { - background-image: linear-gradient(to bottom, #dde6e0); - border-color: #dde6e0; } - .menu .menuitem:hover .scale.slider:active, - .list-row:selected .scale.slider:active, - GtkInfoBar .scale.slider:active { - background-image: linear-gradient(to bottom, #92c1db); - border-color: #92c1db; } - .menu .menuitem:hover .scale.slider:insensitive, - .list-row:selected .scale.slider:insensitive, - GtkInfoBar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); - border-color: #9cc6db; } - .scale.trough { - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, #657b83); } - .scale.trough.highlight { - background-image: linear-gradient(to bottom, #268bd2); } - .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, rgba(38, 139, 210, 0.55)); } - .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(101, 123, 131, 0.55)); } - .osd .scale.trough { - background-image: linear-gradient(to bottom, rgba(10, 80, 98, 0.95)); - outline-color: rgba(101, 123, 131, 0.2); } - .osd .scale.trough.highlight { - background-image: none; - background-image: linear-gradient(to bottom, #268bd2); } - .menu .menuitem:hover .scale.trough, - .list-row:selected .scale.trough, - GtkInfoBar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } - .menu .menuitem:hover .scale.trough.highlight, - .list-row:selected .scale.trough.highlight, - GtkInfoBar .scale.trough.highlight { - background-image: linear-gradient(to bottom, #fdf6e3); } - .menu .menuitem:hover .scale.trough.highlight:insensitive, - .list-row:selected .scale.trough.highlight:insensitive, - GtkInfoBar .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); } - .menu .menuitem:hover .scale.trough:insensitive, - .list-row:selected .scale.trough:insensitive, - GtkInfoBar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -GtkProgressBar { - padding: 0; - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - GtkProgressBar.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; } - -.progressbar { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - .progressbar.osd { - background-color: #268bd2; } - .list-row:selected .progressbar, - GtkInfoBar .progressbar { - background-color: #fdf6e3; } - -.osd .scale.progressbar { - background-color: #268bd2; } - -GtkProgressBar.trough, .level-bar.trough { - border: none; - border-radius: 3px; - background-color: #657b83; } - GtkProgressBar.trough.osd, .osd.level-bar.trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, - GtkInfoBar GtkProgressBar.trough, - GtkInfoBar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.2); } - -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; } - GtkLevelBar.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; } - -.level-bar.trough { - padding: 3px; - border-radius: 4px; } - -.level-bar.fill-block { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - .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 { - border-color: #859900; - background-color: #859900; } - .level-bar.fill-block.level-low { - border-color: #cb4b16; - background-color: #cb4b16; } - .level-bar.fill-block.empty-fill-block { - background-color: rgba(92, 97, 108, 0.2); - border-color: rgba(92, 97, 108, 0.2); } - -.frame { - border: 1px solid #dcdfe3; - padding: 0; } - .frame.flat { - border-style: none; } - .frame.action-bar { - padding: 6px; - border-width: 1px 0 0; } - -GtkScrolledWindow GtkViewport.frame { - border-style: none; } - -.separator, GtkPlacesSidebar.sidebar .view.separator { - color: rgba(0, 0, 0, 0.1); } - GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, - GtkFontButton .separator, - GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .view.separator, - GtkFileChooserButton .separator.vertical, - GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFileChooserButton .vertical.view.separator, - GtkFontButton .separator.vertical, - GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .vertical.view.separator { - -GtkWidget-wide-separators: true; } - -.list, .list-row { - background-color: #fdf6e3; - border-color: #dcdfe3; } - -.list-row, -.grid-child { - padding: 2px; } - -.list-row.button { - background-color: transparent; - border-style: none; - border-radius: 0; - box-shadow: none; } - .list-row.button:hover { - background-color: rgba(0, 0, 0, 0.05); } - .list-row.button:active { - color: #5c616c; } - .list-row.button:selected:active { - color: #fdf6e3; } - .list-row.button:selected:hover { - background-color: #227dbd; } - .list-row.button:selected:insensitive { - color: rgba(253, 246, 227, 0.7); - background-color: rgba(38, 139, 210, 0.7); } - .list-row.button:selected:insensitive GtkLabel { - color: inherit; } - -.list-row, list-row.button { - transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .list-row:hover, list-row.button:hover { - transition: none; } - -.app-notification, -.app-notification.frame { - padding: 10px; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: rgba(2, 16, 20, 0.95); } - .app-notification .button, - .app-notification.frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .app-notification .button.flat, - .app-notification.frame .button.flat { - border-color: rgba(38, 139, 210, 0); } - .app-notification .button:hover, - .app-notification.frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .app-notification .button:active, .app-notification .button:checked, - .app-notification.frame .button:active, - .app-notification.frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification .button:insensitive, - .app-notification.frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - .expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - .expander:hover { - color: #aaaeb7; } - .expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GtkCalendar { - color: #5c616c; - border: 1px solid #dcdfe3; - border-radius: 3px; - padding: 2px; } - GtkCalendar:selected { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 1.5px; } - GtkCalendar.header { - color: #5c616c; - border: none; - border-radius: 0; } - GtkCalendar.button, GtkCalendar.button:focus { - color: rgba(92, 97, 108, 0.45); - border-color: transparent; - background-color: transparent; - background-image: none; } - GtkCalendar.button:hover, GtkCalendar.button:focus:hover { - color: #5c616c; } - GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { - color: rgba(92, 97, 108, 0.55); - background-color: transparent; - background-image: none; } - GtkCalendar.highlight { - color: alpha(currentColor,0.55); } - -.message-dialog .dialog-action-area .button { - padding: 8px; } - -.message-dialog { - -GtkDialog-button-spacing: 0; } - .message-dialog .titlebar { - background-color: rgba(238, 232, 213, 0.95); - border-bottom: 1px solid rgba(228, 218, 188, 0.95); } - .message-dialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - .message-dialog.csd .dialog-action-area .button { - padding: 8px; - border-radius: 0; } - .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 { - border-right-style: none; - border-bottom-style: none; } - .message-dialog.csd .dialog-action-area .button:last-child { - border-bottom-right-radius: 3px; } - .message-dialog.csd .dialog-action-area .button:first-child { - border-left-style: none; - border-bottom-left-radius: 3px; } - -GtkFileChooserDialog .search-bar { - background-color: #F5F6F7; - border-color: #dcdfe3; - box-shadow: none; } - -GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #dcdfe3; } - -.sidebar { - border: none; - background-color: #fbfbfc; } - .sidebar .scrollbar.trough { - background-color: transparent; - border-width: 2px; - border-color: transparent; } - .sidebar:selected { - background-color: #268bd2; } - -GtkPlacesSidebar.sidebar .view { - color: #5c616c; - background-color: transparent; } - GtkPlacesSidebar.sidebar .view:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.sidebar-item { - padding: 10px 4px; } - .sidebar-item > GtkLabel { - padding-left: 6px; - padding-right: 6px; } - .sidebar-item.needs-attention > GtkLabel { - background-size: 6px 6px, 0 0; } - -GtkPaned { - margin: 0 8px 8px 0; } - GtkPaned:dir(rtl) { - margin-right: 0; - margin-left: 8px; } - -.pane-separator { - background-image: linear-gradient(to bottom, #dcdfe3); } - -GtkInfoBar { - border-style: none; } - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: #268bd2; - color: #fdf6e3; } - -.list-row:selected .button, GtkInfoBar .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - .list-row:selected .flat.button, GtkInfoBar .flat.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .list-row:selected .button:hover, GtkInfoBar .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.2); } - .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.2); } - -.tooltip { - color: #657b83; - border-radius: 2px; } - .tooltip.background { - background-color: rgba(12, 92, 112, 0.95); - background-clip: padding-box; } - .tooltip.window-frame.csd { - background-color: transparent; } - -.tooltip * { - padding: 4px; - background-color: transparent; - color: inherit; } - -GtkColorSwatch { - border: none; - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.4); } - GtkColorSwatch.color-light:hover { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4)); } - GtkColorSwatch.color-dark:hover { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } - GtkColorSwatch:hover { - border-color: rgba(0, 0, 0, 0.5); } - GtkColorSwatch.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - GtkColorSwatch.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; } - GtkColorSwatch.left, GtkColorSwatch:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - GtkColorSwatch.right, GtkColorSwatch:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } - GtkColorSwatch:only-child { - border-radius: 3px; } - GtkColorSwatch.color-active-badge { - border-width: 2px; } - GtkColorSwatch.color-active-badge:hover { - background-image: none; } - GtkColorSwatch.color-active-badge.color-light, GtkColorSwatch.color-active-badge.color-light:hover { - color: rgba(0, 0, 0, 0.3); - border-color: rgba(0, 0, 0, 0.3); } - GtkColorSwatch.color-active-badge.color-dark, GtkColorSwatch.color-active-badge.color-dark:hover { - color: rgba(255, 255, 255, 0.5); - border-color: rgba(255, 255, 255, 0.5); } - -GtkColorChooserWidget #add-color-button { - border-color: #e8ebed; - background-color: #e8ebed; - color: #F5F6F7; - box-shadow: none; } - GtkColorChooserWidget #add-color-button:hover { - border-color: #dcdfe3; - background-color: #dcdfe3; } - -GtkColorButton.button { - padding: 5px; } - GtkColorButton.button GtkColorSwatch { - border-radius: 0; } - -.scale-popup .button { - padding: 6px; } - .scale-popup .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - -GtkVolumeButton.button { - padding: 8px; } - -.touch-selection, -.context-menu { - font: initial; } - -.monospace { - font: Monospace; } - -.overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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; } - -.window-frame { - border-radius: 4px 4px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 8px 8px 0 rgba(0, 0, 0, 0.2); - margin: 10px; } - .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } - .window-frame.tiled { - border-radius: 0; } - .window-frame.popup { - box-shadow: none; - border-radius: 0; } - .window-frame.csd.popup, .window-frame.csd.menu { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.message-dialog { - border-radius: 3px; } - -.header-bar.default-decoration .button.titlebutton, .titlebar.default-decoration .button.titlebutton, -.header-bar.selection-mode.default-decoration .button.titlebutton, .titlebar.selection-mode.default-decoration .button.titlebutton { - padding-top: 0px; - padding-bottom: 0px; } - -.header-bar .button.titlebutton, .titlebar .button.titlebutton, -.header-bar.selection-mode .button.titlebutton, .titlebar.selection-mode .button.titlebutton { - padding: 8px 4px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); - color: transparent; - background-position: center; - background-repeat: no-repeat; } - .header-bar .button.titlebutton:backdrop, .titlebar .button.titlebutton:backdrop, - .header-bar.selection-mode .button.titlebutton:backdrop, .titlebar.selection-mode .button.titlebutton:backdrop { - opacity: 1; } - -.header-bar .right .button.titlebutton:nth-last-child(3), -.header-bar .right:dir(rtl) .button.titlebutton:nth-child(3), -.header-bar .left .button.titlebutton:nth-child(3), -.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar .right .button.titlebutton:nth-last-child(3), -.titlebar .right:dir(rtl) .button.titlebutton:nth-child(3), -.titlebar .left .button.titlebutton:nth-child(3), -.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3), -.header-bar.selection-mode .right .button.titlebutton:nth-last-child(3), -.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), -.header-bar.selection-mode .left .button.titlebutton:nth-child(3), -.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3), -.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3), -.titlebar.selection-mode .left .button.titlebutton:nth-child(3), -.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3) { - background-image: -gtk-scaled(url("assets/titlebutton-minimize.png"), url("assets/titlebutton-minimize@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(3):hover, .header-bar .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar .left .button.titlebutton:nth-child(3):hover, - .header-bar .left .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(3):hover, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar .left .button.titlebutton:nth-child(3):hover, - .titlebar .left .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover.png"), url("assets/titlebutton-minimize-hover@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(3):active:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .header-bar .left .button.titlebutton:nth-child(3):active:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar .right .button.titlebutton:nth-last-child(3):active:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .titlebar .left .button.titlebutton:nth-child(3):active:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):active:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):active:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):active:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):active:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active.png"), url("assets/titlebutton-minimize-active@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(3):backdrop, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .header-bar .left .button.titlebutton:nth-child(3):backdrop, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar .right .button.titlebutton:nth-last-child(3):backdrop, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .titlebar .left .button.titlebutton:nth-child(3):backdrop, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .header-bar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(3):backdrop, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(3):backdrop, - .titlebar.selection-mode .left .button.titlebutton:nth-child(3):backdrop, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(3):backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop.png"), url("assets/titlebutton-minimize-backdrop@2.png")); } - -.header-bar .right .button.titlebutton:nth-last-child(2), -.header-bar .right:dir(rtl) .button.titlebutton:nth-child(2), -.header-bar .left .button.titlebutton:nth-child(2), -.header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar .right .button.titlebutton:nth-last-child(2), -.titlebar .right:dir(rtl) .button.titlebutton:nth-child(2), -.titlebar .left .button.titlebutton:nth-child(2), -.titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2), -.header-bar.selection-mode .right .button.titlebutton:nth-last-child(2), -.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), -.header-bar.selection-mode .left .button.titlebutton:nth-child(2), -.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2), .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2), -.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2), -.titlebar.selection-mode .left .button.titlebutton:nth-child(2), -.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2) { - background-image: -gtk-scaled(url("assets/titlebutton-maximize.png"), url("assets/titlebutton-maximize@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(2):hover, .header-bar .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar .left .button.titlebutton:nth-child(2):hover, - .header-bar .left .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar .right .button.titlebutton:nth-last-child(2):hover, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar .left .button.titlebutton:nth-child(2):hover, - .titlebar .left .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover.png"), url("assets/titlebutton-maximize-hover@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(2):active:hover, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .header-bar .left .button.titlebutton:nth-child(2):active:hover, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar .right .button.titlebutton:nth-last-child(2):active:hover, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .titlebar .left .button.titlebutton:nth-child(2):active:hover, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):active:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):active:hover, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):active:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):active:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active.png"), url("assets/titlebutton-maximize-active@2.png")); } - .header-bar .right .button.titlebutton:nth-last-child(2):backdrop, - .header-bar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .header-bar .left .button.titlebutton:nth-child(2):backdrop, - .header-bar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar .right .button.titlebutton:nth-last-child(2):backdrop, - .titlebar .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .titlebar .left .button.titlebutton:nth-child(2):backdrop, - .titlebar .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, - .header-bar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .header-bar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop, .titlebar.selection-mode .right .button.titlebutton:nth-last-child(2):backdrop, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:nth-child(2):backdrop, - .titlebar.selection-mode .left .button.titlebutton:nth-child(2):backdrop, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:nth-last-child(2):backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop.png"), url("assets/titlebutton-maximize-backdrop@2.png")); } - -.header-bar .right .button.titlebutton:last-child, -.header-bar .right:dir(rtl) .button.titlebutton:first-child, -.header-bar .left .button.titlebutton:first-child, -.header-bar .left:dir(rtl) .button.titlebutton:last-child, .titlebar .right .button.titlebutton:last-child, -.titlebar .right:dir(rtl) .button.titlebutton:first-child, -.titlebar .left .button.titlebutton:first-child, -.titlebar .left:dir(rtl) .button.titlebutton:last-child, -.header-bar.selection-mode .right .button.titlebutton:last-child, -.header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, -.header-bar.selection-mode .left .button.titlebutton:first-child, -.header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child, .titlebar.selection-mode .right .button.titlebutton:last-child, -.titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child, -.titlebar.selection-mode .left .button.titlebutton:first-child, -.titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child { - background-image: -gtk-scaled(url("assets/titlebutton-close.png"), url("assets/titlebutton-close@2.png")); } - .header-bar .right .button.titlebutton:last-child:hover, .header-bar .right .button.titlebutton:last-child:backdrop:hover, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:hover, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .header-bar .left .button.titlebutton:first-child:hover, - .header-bar .left .button.titlebutton:first-child:backdrop:hover, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:hover, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar .right .button.titlebutton:last-child:hover, .titlebar .right .button.titlebutton:last-child:backdrop:hover, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:hover, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .titlebar .left .button.titlebutton:first-child:hover, - .titlebar .left .button.titlebutton:first-child:backdrop:hover, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:hover, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .right .button.titlebutton:last-child:hover, - .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left .button.titlebutton:first-child:hover, - .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left .button.titlebutton:first-child:hover, - .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover.png"), url("assets/titlebutton-close-hover@2.png")); } - .header-bar .right .button.titlebutton:last-child:active:hover, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .header-bar .left .button.titlebutton:first-child:active:hover, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar .right .button.titlebutton:last-child:active:hover, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .titlebar .left .button.titlebutton:first-child:active:hover, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .right .button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left .button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover, .titlebar.selection-mode .right .button.titlebutton:last-child:active:hover, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left .button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:active:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-active.png"), url("assets/titlebutton-close-active@2.png")); } - .header-bar .right .button.titlebutton:last-child:backdrop, - .header-bar .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .header-bar .left .button.titlebutton:first-child:backdrop, - .header-bar .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar .right .button.titlebutton:last-child:backdrop, - .titlebar .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .titlebar .left .button.titlebutton:first-child:backdrop, - .titlebar .left:dir(rtl) .button.titlebutton:last-child:backdrop, - .header-bar.selection-mode .right .button.titlebutton:last-child:backdrop, - .header-bar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .header-bar.selection-mode .left .button.titlebutton:first-child:backdrop, - .header-bar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop, .titlebar.selection-mode .right .button.titlebutton:last-child:backdrop, - .titlebar.selection-mode .right:dir(rtl) .button.titlebutton:first-child:backdrop, - .titlebar.selection-mode .left .button.titlebutton:first-child:backdrop, - .titlebar.selection-mode .left:dir(rtl) .button.titlebutton:last-child:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop.png"), url("assets/titlebutton-close-backdrop@2.png")); } - -.header-bar .left GtkMenuButton.button.titlebutton:first-child, -.header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, -.header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, -.header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, .titlebar .left GtkMenuButton.button.titlebutton:first-child, -.titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, -.titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, -.titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child { - padding: 4px 6px 4px 6px; - color: rgba(82, 93, 118, 0.8); } - .header-bar .left GtkMenuButton.button.titlebutton:first-child, .header-bar .left GtkMenuButton.button.titlebutton:first-child:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:backdrop, .header-bar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child, .titlebar .left GtkMenuButton.button.titlebutton:first-child:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:backdrop, .titlebar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover { - background-image: none; - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .header-bar .left GtkMenuButton.button.titlebutton:first-child:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:backdrop:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:backdrop:hover { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .header-bar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .header-bar .left GtkMenuButton.button.titlebutton:first-child:checked, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .header-bar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:checked, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .header-bar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked, .titlebar .left GtkMenuButton.button.titlebutton:first-child:active:hover, .titlebar .left GtkMenuButton.button.titlebutton:first-child:checked, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:active:hover, - .titlebar.selection-mode .left GtkMenuButton.button.titlebutton:first-child:checked, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:active:hover, - .titlebar.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - -.view:selected, .view:selected:focus, .view:selected:hover, GtkLabel:selected, GtkLabel:selected:focus, GtkLabel:selected:hover, GtkFlowBox .grid-child:selected, .menuitem.button.flat:active, .menuitem.button.flat:selected, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, -GtkEntry.gb-command-bar-entry.entry.flat:focus:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); } - -GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, -ScratchMainWindow .notebook tab.reorderable-page.top:active, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, -ScratchMainWindow .notebook tab.top:active, -ScratchMainWindow .notebook tab.top.active-page, -ScratchMainWindow .notebook tab.top.active-page:hover, -EphyNotebook.notebook tab.reorderable-page.top:active, -EphyNotebook.notebook tab.reorderable-page.top.active-page, -EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, -EphyNotebook.notebook tab.top:active, -EphyNotebook.notebook tab.top.active-page, -EphyNotebook.notebook tab.top.active-page:hover, -MidoriNotebook .notebook tab.reorderable-page.top:active, -MidoriNotebook .notebook tab.reorderable-page.top.active-page, -MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, -MidoriNotebook .notebook tab.top:active, -MidoriNotebook .notebook tab.top.active-page, -MidoriNotebook .notebook tab.top.active-page:hover, -TerminalWindow .notebook tab.reorderable-page.top:active, -TerminalWindow .notebook tab.reorderable-page.top.active-page, -TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -TerminalWindow .notebook tab.top:active, -TerminalWindow .notebook tab.top.active-page, -TerminalWindow .notebook tab.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - -TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.top { - padding-top: 7px; - border-top-width: 3px; } - -TerminalWindow .notebook.header.top, -PantheonTerminalPantheonTerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #e4dabc, inset 0 -1px #dcdfe3; } - -GtkHTML { - background-color: #fdf6e3; - color: #5c616c; } - GtkHTML:active { - color: #fdf6e3; - background-color: #268bd2; } - -SushiFontWidget { - padding: 6px 12px; } - -TerminalWindow .background { - background-color: transparent; } - -TerminalWindow .scrollbar.vertical .slider { - margin-left: 3px; } - -TerminalWindow .scrollbar.trough { - border-width: 0; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { - color: #5c616c; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { - color: #fdf6e3; } - -NautilusNotebook.notebook { - background-color: #fdf6e3; } - NautilusNotebook.notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; } - -NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { - padding: 5px; - box-shadow: none; - background-color: #fdf6e3; } - -NemoWindow EelEditableLabel.entry { - transition: none; } - -NemoWindow .sidebar .frame { - border-width: 0; } - -NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #dcdfe3; } - -NemoWindow .primary-toolbar NemoPathBar.linked > .button { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - background-color: rgba(255, 255, 255, 0.9); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:insensitive { - color: rgba(82, 93, 118, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1), inset -1px 0 rgba(82, 93, 118, 0.1); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.gedit-headerbar-paned { - color: rgba(228, 218, 188, 0.95); } - -.open-document-selector-listbox-row { - border-bottom: 1px solid #e7e9ec; - padding: 6px 6px 6px 12px; } - .open-document-selector-listbox-row .path-label { - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - .open-document-selector-listbox-row:selected .path-label { - color: rgba(253, 246, 227, 0.7); } - -.gedit-document-panel .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; } - .gedit-document-panel .list-row .button GtkImage { - color: inherit; } - -.gedit-document-panel .prelight-row .button { - color: #92959d; } - -.gedit-document-panel .list-row .button:hover, -.gedit-document-panel .prelight-row .button:hover { - color: #ff4d4d; } - -.gedit-document-panel .prelight-row:selected .button:hover { - color: #ff6666; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; } - .gedit-document-panel .prelight-row:selected .button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel .prelight-row .button:active { - color: #5c616c; } - -.gedit-document-panel-dragged-row { - border: 1px solid #dcdfe3; - background-color: #d9dde0; - color: #5c616c; } - -GeditStatusbar { - border-top: 1px solid #dcdfe3; - background-color: #F5F6F7; } - -GeditStatusMenuButton.button.flat, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton:checked.button.flat { - border-bottom-style: none; - border-radius: 0; } - -GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #dcdfe3; } - -.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { - color: rgba(92, 97, 108, 0.6); - margin: 2px; - padding: 2px; } - -GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { - background-color: #fbfbfc; - padding: 6px; - border-color: #dcdfe3; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image:hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image:hover { - color: inherit; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):insensitive, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { - box-shadow: -1px 0 #268bd2; } - -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; } - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - box-shadow: 1px 0 #268bd2; } - -GbEditorFrame .gb-search-slider { - padding: 2px; } - -GdTaggedEntry { - color: #5c616c; } - -.preferences.sidebar GtkViewport { - border: none; } - -.preferences.sidebar GtkListBox { - background-color: #F5F6F7; } - -.preferences.sidebar GtkListBoxRow { - padding: 10px; } - -GbPreferencesPageLanguage GtkSearchEntry { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - -GbPreferencesPageLanguage GtkScrolledWindow { - border-top-width: 0; } - -GtkBox.gb-command-bar-box { - border: none; - background-color: #073642; } - GtkBox.gb-command-bar-box GtkLabel { - color: #657b83; } - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: #657b83; - background-image: none; - background-color: #073642; - padding: 6px 6px 6px 6px; - border: none; } - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; } - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; } - -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; } - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbViewStack.focused GtkBox.header.notebook { - background-color: #fdf6e3; } - GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook GtkLabel.button.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { - opacity: 1; } - -EphyWindow .floating-bar { - color: #5c616c; } - -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon { - background-color: rgba(92, 97, 108, 0.3); - border-radius: 2px; } - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: #78b9e6; } - -.documents-entry-tag { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover { - color: #fdf6e3; - background-color: #3295da; } - .documents-entry-tag:active { - color: #fdf6e3; - background-color: #2380c1; } - .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; } - .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { - color: rgba(253, 246, 227, 0.7); } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -TotemGrilo.vertical GdMainView.frame { - border-width: 0; } - -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { - background-color: #268bd2; } - -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; } - -.gnome-panel-menu-bar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: #657b83; - background-image: linear-gradient(to bottom, rgba(5, 36, 44, 0.95)); } - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: #657b83; } - -PanelApplet .button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); - border-color: rgba(0, 0, 0, 0.17); } - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: rgba(0, 0, 0, 0.25); - border-radius: 0; - border-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -PanelApplet:hover { - color: white; } - -PanelApplet:active, -PanelApplet:hover:active { - color: #268bd2; } - -WnckPager { - color: #333e42; } - WnckPager:selected { - color: #268bd2; } - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; } - -ClockBox { - color: #657b83; } - -.xfce4-panel.panel { - background-color: rgba(5, 36, 44, 0.95); - text-shadow: none; - icon-shadow: none; } - .xfce4-panel.panel .button.flat { - color: #657b83; - background-color: rgba(5, 36, 44, 0); - border-radius: 0; - border: none; } - .xfce4-panel.panel .button.flat:hover { - border: none; - background-color: rgba(10, 74, 90, 0.95); } - .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - -.floating-bar { - background-color: #268bd2; - color: #fdf6e3; } - .floating-bar.top { - border-radius: 0 0 2px 2px; } - .floating-bar.right { - border-radius: 2px 0 0 2px; } - .floating-bar.bottom { - border-radius: 2px 2px 0 0; } - .floating-bar.left { - border-radius: 0 2px 2px 0; } - .floating-bar .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - background-color: transparent; - box-shadow: none; - border: none; } - -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; } - -MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { - color: #fdf6e3; - background-color: #268bd2; - outline-color: transparent; } - -MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { - background-color: transparent; } - -MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { - outline-color: transparent; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); } - .marlin-pathbar.pathbar:insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; - border: solid transparent; - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { - padding: 0 3px; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { - background-color: rgba(0, 0, 0, 0.04); - border: solid rgba(0, 0, 0, 0.08); - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { - color: rgba(92, 97, 108, 0.55); } - -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; } - -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: #5c616c; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration.top { - border: 1px solid rgba(0, 0, 0, 0.1); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #eee8d5); - color: rgba(82, 93, 118, 0.8); - box-shadow: inset 0 1px rgba(242, 238, 224, 0.95); } - UnityDecoration.top:backdrop { - border-bottom-width: 0; - color: rgba(82, 93, 118, 0.5); } - UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: rgba(250, 248, 242, 0.95); - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; } - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar GtkLabel { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #dcdfe3; - border-right: 1px solid #dcdfe3; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #dcdfe3; } - .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { - padding: 0 3px 0 3px; } - -.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #dcdfe3; - background-color: #F5F6F7; } - .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view { - background-color: #F5F6F7; - color: #5c616c; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:prelight { - background-color: white; } - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: #F5F6F7; - background-image: none; } - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #5c616c; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GraniteWidgetsWelcome { - background-color: #fdf6e3; } - -GraniteWidgetsWelcome GtkLabel { - color: #a9acb2; - font: open sans 11; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(92, 97, 108, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #fdf6e3); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry.entry { - padding: 4px; } - -.h1 { - font: open sans 24px; } - -.h2 { - font: open sans light 18px; } - -.h3 { - font: open sans 11px; } - -.h4, -.category-label { - color: #8a8e96; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: rgba(5, 36, 44, 0.95); - color: #657b83; - font: bold; - box-shadow: inset 0 -1px rgba(1, 10, 12, 0.95); } - #panel_window .menubar { - padding-left: 5px; } - #panel_window .menubar, #panel_window .menubar > .menuitem { - background-color: transparent; - color: #657b83; - font: bold; } - #panel_window .menubar .menuitem:insensitive { - color: rgba(101, 123, 131, 0.5); } - #panel_window .menubar .menuitem:insensitive GtkLabel { - color: inherit; } - #panel_window .menubar .menu .menuitem { - font: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: #5c616c; } - -#content_frame { - padding-bottom: 14px; - background-color: #F5F6F7; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - #content_frame .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - #content_frame .button:active, #content_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - #content_frame .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - #content_frame .button:insensitive > GtkLabel { - color: inherit; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: rgba(7, 54, 66, 0.95); - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px rgba(7, 54, 66, 0.95); } - -#buttonbox_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - #buttonbox_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - #buttonbox_frame .button:active, #buttonbox_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - #buttonbox_frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -#login_window #user_combobox { - color: #5c616c; - font: 13px; } - #login_window #user_combobox .menu { - font: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font: bold; } - -.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { - color: rgba(228, 218, 188, 0.95); } - -NemoWindow GtkEventBox { - background-color: #F5F6F7; } - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; } - -NautilusWindow GtkBox.sidebar { - background-color: transparent; } - -GtkFileChooserDialog.csd.background, -GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, -NautilusWindow.csd.background, -NautilusWindow .source-list, -NautilusWindow .source-list.view, -NautilusWindow .source-list.view:prelight, -NemoWindow.csd.background, -NemoWindow .source-list, -NemoWindow .source-list.view, -NemoWindow .source-list.view:prelight, -MarlinViewWindow.csd.background, -MarlinViewWindow .source-list, -MarlinViewWindow .source-list.view, -MarlinViewWindow .source-list.view:prelight { - background-color: transparent; } - -GtkFileChooserDialog .sidebar, GtkFileChooserDialog MarlinPlacesSidebar, -NautilusWindow .sidebar, -NautilusWindow MarlinPlacesSidebar, -NemoWindow .sidebar, -NemoWindow MarlinPlacesSidebar, -MarlinViewWindow .sidebar, -MarlinViewWindow MarlinPlacesSidebar { - background-color: rgba(7, 54, 66, 0.95); } - GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar .source-list.sidebar row, GtkFileChooserDialog MarlinPlacesSidebar .view, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row, - NautilusWindow .sidebar .view, - NautilusWindow .sidebar .source-list.sidebar row, - NautilusWindow MarlinPlacesSidebar .view, - NautilusWindow MarlinPlacesSidebar .source-list.sidebar row, - NemoWindow .sidebar .view, - NemoWindow .sidebar .source-list.sidebar row, - NemoWindow MarlinPlacesSidebar .view, - NemoWindow MarlinPlacesSidebar .source-list.sidebar row, - MarlinViewWindow .sidebar .view, - MarlinViewWindow .sidebar .source-list.sidebar row, - MarlinViewWindow MarlinPlacesSidebar .view, - MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row { - background-color: transparent; - color: #657b83; } - GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar .source-list.sidebar row.image, GtkFileChooserDialog MarlinPlacesSidebar .view.image, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.image, - NautilusWindow .sidebar .view.image, - NautilusWindow .sidebar .source-list.sidebar row.image, - NautilusWindow MarlinPlacesSidebar .view.image, - NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.image, - NemoWindow .sidebar .view.image, - NemoWindow .sidebar .source-list.sidebar row.image, - NemoWindow MarlinPlacesSidebar .view.image, - NemoWindow MarlinPlacesSidebar .source-list.sidebar row.image, - MarlinViewWindow .sidebar .view.image, - MarlinViewWindow .sidebar .source-list.sidebar row.image, - MarlinViewWindow MarlinPlacesSidebar .view.image, - MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.image { - color: rgba(101, 123, 131, 0.7); } - GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar .source-list.sidebar row.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .view.cell:selected, GtkFileChooserDialog MarlinPlacesSidebar .source-list.sidebar row.cell:selected, - NautilusWindow .sidebar .view.cell:selected, - NautilusWindow .sidebar .source-list.sidebar row.cell:selected, - NautilusWindow MarlinPlacesSidebar .view.cell:selected, - NautilusWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, - NemoWindow .sidebar .view.cell:selected, - NemoWindow .sidebar .source-list.sidebar row.cell:selected, - NemoWindow MarlinPlacesSidebar .view.cell:selected, - NemoWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected, - MarlinViewWindow .sidebar .view.cell:selected, - MarlinViewWindow .sidebar .source-list.sidebar row.cell:selected, - MarlinViewWindow MarlinPlacesSidebar .view.cell:selected, - MarlinViewWindow MarlinPlacesSidebar .source-list.sidebar row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog MarlinPlacesSidebar.frame, - NautilusWindow .sidebar.frame, - NautilusWindow MarlinPlacesSidebar.frame, - NemoWindow .sidebar.frame, - NemoWindow MarlinPlacesSidebar.frame, - MarlinViewWindow .sidebar.frame, - MarlinViewWindow MarlinPlacesSidebar.frame { - color: #657b83; } - GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog MarlinPlacesSidebar .separator, GtkFileChooserDialog MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserDialog MarlinPlacesSidebar .view.separator, - NautilusWindow .sidebar .separator, - NautilusWindow GtkPlacesSidebar.sidebar .view.separator, - NautilusWindow MarlinPlacesSidebar .separator, - NautilusWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - NautilusWindow MarlinPlacesSidebar .view.separator, - NemoWindow .sidebar .separator, - NemoWindow GtkPlacesSidebar.sidebar .view.separator, - NemoWindow MarlinPlacesSidebar .separator, - NemoWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - NemoWindow MarlinPlacesSidebar .view.separator, - MarlinViewWindow .sidebar .separator, - MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, - MarlinViewWindow MarlinPlacesSidebar .separator, - MarlinViewWindow MarlinPlacesSidebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - MarlinViewWindow MarlinPlacesSidebar .view.separator { - color: transparent; } - -GtkFileChooserDialog.maximized .sidebar, -NautilusWindow.maximized .sidebar, -NemoWindow.maximized .sidebar, -MarlinViewWindow.maximized .sidebar { - background-color: #073642; } - -GtkFileChooserDialog .pane-separator, -NautilusWindow .pane-separator, -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { - background-color: rgba(7, 54, 66, 0.95); } - -NautilusWindow NautilusWindowSlot { - background-color: #fdf6e3; } - -NautilusDesktopWindow NautilusWindowSlot { - background-color: transparent; } - -GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { - background-color: rgba(7, 54, 66, 0.95); } - -GtkFileChooserDialog .sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-action-box { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-vbox > .frame { - color: #657b83; - border-color: transparent; } - -GtkFileChooserDialog .action-bar.frame { - background-color: transparent; - border-color: rgba(5, 35, 43, 0.95); } - -GtkFileChooserDialog .action-bar.frame GtkLabel, GtkFileChooserDialog .action-bar.frame GtkComboBox, -GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, -GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { - color: #657b83; } - -FeedReaderreaderUI.background.csd > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd > .titlebar .pane-separator, -GeditWindow.background.csd.maximized > .titlebar .pane-separator, -GeditWindow.background.csd > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { - background-color: rgba(228, 218, 188, 0.95); } - -FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: rgba(238, 232, 213, 0.95); } - FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: rgba(242, 238, 224, 0.95); } - -FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #eee8d5; } - FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #f2eee0; } - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; } - -GeditWindow.background.csd { - background-color: transparent; } - -GeditWindow.background .gedit-side-panel-paned .pane-separator { - background-color: rgba(7, 54, 66, 0.95); } - -GeditWindow.background .gedit-bottom-panel-paned .pane-separator { - background-color: #dcdfe3; } - -GeditWindow.background > .titlebar.default-decoration, -GeditWindow.background > .titlebar.default-decoration:backdrop { - background-color: #eee8d5; } - -.gedit-bottom-panel-paned { - background-color: #fdf6e3; } - -.gedit-document-panel { - background-color: rgba(7, 54, 66, 0.95); } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel .list-row { - color: #657b83; } - .gedit-document-panel .list-row { - background-color: rgba(101, 123, 131, 0); - border: solid rgba(101, 123, 131, 0); - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:hover { - border: solid rgba(101, 123, 131, 0.15); - border-width: 3px 2px 3px 2px; - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel .list-row:active { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:active .button { - color: #fdf6e3; } - .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -GeditFileBrowserWidget { - background-color: rgba(7, 54, 66, 0.95); } - .maximized GeditFileBrowserWidget { - background-color: #073642; } - GeditFileBrowserWidget .scrollbars-junction, - GeditFileBrowserWidget .scrollbars-junction.frame { - border-color: transparent; - background-color: transparent; } - GeditFileBrowserWidget .horizontal { - background-color: transparent; - border-color: rgba(4, 28, 34, 0.95); } - GeditFileBrowserWidget .horizontal GtkComboBox { - color: #657b83; } - -GeditWindow.background.csd GeditFileBrowserView.view { - background-color: transparent; - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander { - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { - color: #268bd2; } - -GtkFileChooserDialog .action-bar.frame .button, -GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - GtkFileChooserDialog .action-bar.frame .button:hover, - GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - GtkFileChooserDialog .action-bar.frame .button:active, - GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog .action-bar.frame .button:checked, - GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - GtkFileChooserDialog .action-bar.frame .button:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -GtkFileChooserDialog .action-bar.frame .entry, -GtkFileChooserDialog .dialog-vbox > .frame .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.35)); - background-color: transparent; } - GtkFileChooserDialog .action-bar.frame .image.entry, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog .action-bar.frame .image.entry:hover, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { - color: inherit; } - GtkFileChooserDialog .action-bar.frame .entry:focus, - GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, #268bd2); } - GtkFileChooserDialog .action-bar.frame .entry:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.2)); } - -GtkFileChooserDialog .sidebar .trough.scrollbar, GtkFileChooserDialog MarlinPlacesSidebar .trough.scrollbar, -NautilusWindow .sidebar .trough.scrollbar, -NautilusWindow MarlinPlacesSidebar .trough.scrollbar, -NemoWindow .sidebar .trough.scrollbar, -NemoWindow MarlinPlacesSidebar .trough.scrollbar, -MarlinViewWindow .sidebar .trough.scrollbar, -MarlinViewWindow MarlinPlacesSidebar .trough.scrollbar, GeditFileBrowserWidget .trough.scrollbar { - background-color: transparent; - border-color: transparent; } - -GtkFileChooserDialog .sidebar .slider.scrollbar, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar, -NautilusWindow .sidebar .slider.scrollbar, -NautilusWindow MarlinPlacesSidebar .slider.scrollbar, -NemoWindow .sidebar .slider.scrollbar, -NemoWindow MarlinPlacesSidebar .slider.scrollbar, -MarlinViewWindow .sidebar .slider.scrollbar, -MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar, GeditFileBrowserWidget .slider.scrollbar { - border-radius: 20px; - border: 3px solid transparent; - background-color: rgba(141, 160, 167, 0.7); } - GtkFileChooserDialog .sidebar .slider.scrollbar:hover, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar:hover, - NautilusWindow .sidebar .slider.scrollbar:hover, - NautilusWindow MarlinPlacesSidebar .slider.scrollbar:hover, - NemoWindow .sidebar .slider.scrollbar:hover, - NemoWindow MarlinPlacesSidebar .slider.scrollbar:hover, - MarlinViewWindow .sidebar .slider.scrollbar:hover, - MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar:hover, GeditFileBrowserWidget .slider.scrollbar:hover { - background-color: #9cacb2; } - GtkFileChooserDialog .sidebar .slider.scrollbar:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar:prelight:active, - NautilusWindow .sidebar .slider.scrollbar:prelight:active, - NautilusWindow MarlinPlacesSidebar .slider.scrollbar:prelight:active, - NemoWindow .sidebar .slider.scrollbar:prelight:active, - NemoWindow MarlinPlacesSidebar .slider.scrollbar:prelight:active, - MarlinViewWindow .sidebar .slider.scrollbar:prelight:active, - MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar:prelight:active, GeditFileBrowserWidget .slider.scrollbar:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog .sidebar .slider.fine-tune.scrollbar, GtkFileChooserDialog MarlinPlacesSidebar .slider.fine-tune.scrollbar, - NautilusWindow .sidebar .slider.fine-tune.scrollbar, - NautilusWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar, - NemoWindow .sidebar .slider.fine-tune.scrollbar, - NemoWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar, - MarlinViewWindow .sidebar .slider.fine-tune.scrollbar, - MarlinViewWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar, GeditFileBrowserWidget .slider.fine-tune.scrollbar { - border-width: 4px; } - GtkFileChooserDialog .sidebar .slider.fine-tune.scrollbar:prelight:active, GtkFileChooserDialog MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, - NautilusWindow .sidebar .slider.fine-tune.scrollbar:prelight:active, - NautilusWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, - NemoWindow .sidebar .slider.fine-tune.scrollbar:prelight:active, - NemoWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, - MarlinViewWindow .sidebar .slider.fine-tune.scrollbar:prelight:active, - MarlinViewWindow MarlinPlacesSidebar .slider.fine-tune.scrollbar:prelight:active, GeditFileBrowserWidget .slider.fine-tune.scrollbar:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog .sidebar .slider.scrollbar:insensitive, GtkFileChooserDialog MarlinPlacesSidebar .slider.scrollbar:insensitive, - NautilusWindow .sidebar .slider.scrollbar:insensitive, - NautilusWindow MarlinPlacesSidebar .slider.scrollbar:insensitive, - NemoWindow .sidebar .slider.scrollbar:insensitive, - NemoWindow MarlinPlacesSidebar .slider.scrollbar:insensitive, - MarlinViewWindow .sidebar .slider.scrollbar:insensitive, - MarlinViewWindow MarlinPlacesSidebar .slider.scrollbar:insensitive, GeditFileBrowserWidget .slider.scrollbar:insensitive { - background-color: transparent; } - -/* GTK NAMED COLORS */ -@define-color theme_fg_color #5c616c; -@define-color theme_text_color #5c616c; -@define-color theme_bg_color #F5F6F7; -@define-color theme_base_color #fdf6e3; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #5c616c; -@define-color text_color #5c616c; -@define-color bg_color #F5F6F7; -@define-color base_color #fdf6e3; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #faf6eb; -@define-color insensitive_fg_color alpha(#5c616c, 0.5); -@define-color insensitive_base_color #fdf6e3; -@define-color theme_unfocused_fg_color #5c616c; -@define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #F5F6F7; -@define-color theme_unfocused_base_color #fdf6e3; -@define-color borders #dcdfe3; -@define-color unfocused_borders #dcdfe3; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #1e6ea7; -@define-color wm_title alpha(#525d76, 0.8); -@define-color wm_unfocused_title alpha(#525d76, 0.5); -@define-color wm_bg #eee8d5; -@define-color wm_bg_unfocused #f2eee0; -@define-color wm_highlight #f2eee0; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #f46067; -@define-color wm_button_close_hover_bg #f68086; -@define-color wm_button_close_active_bg #f13039; -@define-color wm_icon_close_bg #657b83; -@define-color wm_button_hover_bg #fdfdfd; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #D1D3DA; -@define-color wm_icon_bg #90949E; -@define-color wm_icon_unfocused_bg #B6B8C0; -@define-color wm_icon_hover_bg #7A7F8B; -@define-color wm_icon_active_bg #fdf6e3; -@define-color content_view_bg #fdf6e3; diff --git a/common/gtk-3.0/3.14/render-assets.sh b/common/gtk-3.0/3.14/render-assets.sh deleted file mode 100755 index d31fbb8..0000000 --- a/common/gtk-3.0/3.14/render-assets.sh +++ /dev/null @@ -1,34 +0,0 @@ -#! /bin/bash - -INKSCAPE="/usr/bin/inkscape" -OPTIPNG="/usr/bin/optipng" - -SRC_FILE="assets.svg" -ASSETS_DIR="assets" -INDEX="assets.txt" - -for i in `cat $INDEX` -do -if [ -f $ASSETS_DIR/$i.png ]; then - echo $ASSETS_DIR/$i.png exists. -else - echo - echo Rendering $ASSETS_DIR/$i.png - $INKSCAPE --export-id=$i \ - --export-id-only \ - --export-png=$ASSETS_DIR/$i.png $SRC_FILE >/dev/null \ - && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i.png -fi -if [ -f $ASSETS_DIR/$i@2.png ]; then - echo $ASSETS_DIR/$i@2.png exists. -else - echo - echo Rendering $ASSETS_DIR/$i@2.png - $INKSCAPE --export-id=$i \ - --export-dpi=180 \ - --export-id-only \ - --export-png=$ASSETS_DIR/$i@2.png $SRC_FILE >/dev/null \ - && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i@2.png -fi -done -exit 0 diff --git a/common/gtk-3.0/3.14/sass/_applications.scss b/common/gtk-3.0/3.14/sass/_applications.scss deleted file mode 100644 index a93cf6c..0000000 --- a/common/gtk-3.0/3.14/sass/_applications.scss +++ /dev/null @@ -1,699 +0,0 @@ -// -// Tab overrides -// -GeditNotebook.notebook, -ScratchMainWindow .notebook, -EphyNotebook.notebook, -MidoriNotebook .notebook, -TerminalWindow .notebook, -PantheonTerminalPantheonTerminalWindow .notebook { - - tab.reorderable-page.top, tab.top { - &:active, &.active-page, &.active-page:hover { - box-shadow: inset 0 1px $borders_color, - inset 0 -1px $borders_color, - inset 1px 0 $borders_color, - inset -1px 0 $borders_color; - } - } -} - -TerminalWindow .notebook, -PantheonTerminalPantheonTerminalWindow .notebook { - - tab.reorderable-page.top, tab.top { - padding-top: 7px; - border-top-width: 3px; - } - - &.header.top { - box-shadow: inset 0 1px opacify($header_border, 1), - inset 0 -1px $borders_color; - } -} - -// -// Evolution -// -// needed for webkit/GtkStyle/Evolution compatibility -GtkHTML { - background-color: $base_color; - color: $text_color; - - &:active { - color: $selected_fg_color; - background-color: $selected_bg_color; - } -} - -// -// Sushi -// -// used by gnome-font-viewer and sushi -SushiFontWidget { - padding: 6px 12px; -} - -// -// GNOME Terminal -// -TerminalWindow { - .background { - background-color: transparent; - } - - .scrollbar { - &.vertical .slider { margin-left: 3px; } - &.trough { border-width: 0; } - } -} - -// -// Nautilus -// -.nautilus-canvas-item { - border-radius: 2px; -} - -.nautilus-desktop.nautilus-canvas-item { - color: white; - text-shadow: 1px 1px transparentize(black, 0.4); - - &:active { color: $fg_color; } - &:selected { color: $selected_fg_color; } -} - -NautilusNotebook.notebook { - background-color: $base_color; - - tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - } -} - -NautilusQueryEditor .search-bar.toolbar { - padding: 5px; - box-shadow: none; - background-color: $base_color; -} - -// -// Nemo -// -.nemo-desktop.nemo-canvas-item { - @extend .nautilus-desktop.nautilus-canvas-item; -} - -NemoWindow { - - EelEditableLabel.entry { transition: none; } // Workaround for invisible text in rename entry - - .sidebar .frame { border-width: 0; } - - GtkSeparator.separator.horizontal { color: $borders_color; } - - .primary-toolbar NemoPathBar.linked > .button { - $_linked_separator_color: $header_button_border; - - @include button(header-hover); - - &:hover { background-color: lighten($header_button_bg, 15%); } - &:active, &:checked { @include button(header-active); } - &:insensitive { color: transparentize($header_fg, 0.4); } - - @extend %linked; - - &:hover { - box-shadow: inset 1px 0 $_linked_separator_color, - inset -1px 0 $_linked_separator_color; - } - &:active, &:checked { box-shadow: none; } - - &:first-child { - &:hover { box-shadow: inset -1px 0 $_linked_separator_color; } - &:active, &:checked { box-shadow: none; } - } - &:last-child { - &:hover { box-shadow: inset 1px 0 $_linked_separator_color; } - &:active, &:checked { box-shadow: none; } - } - &:only-child { - &:hover { box-shadow: none; } - &:active, &:checked { box-shadow: none; } - } - } -} - -// -// Gedit -// -.gedit-headerbar-paned { color: $header_border; } - -.open-document-selector-listbox-row { - border-bottom: 1px solid darken($bg_color, 5%); - padding: 6px 6px 6px 12px; - - .path-label { font-size: smaller; color: transparentize($fg_color, 0.3); } - &:selected .path-label { color: transparentize($selected_fg_color, 0.3); } -} - -.gedit-document-panel { - - .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; - & GtkImage { color: inherit; } - } - .prelight-row .button { - color: mix($bg_color, $fg_color, 35%); - } - .list-row .button:hover, - .prelight-row .button:hover { - color: lighten(red, 15%); - } - .prelight-row:selected .button:hover { - color: lighten(red, 20%); - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - &:active { color: $selected_fg_color; } - } - .prelight-row .button:active { - color: $fg_color; - } -} - -.gedit-document-panel-dragged-row { - border: 1px solid $borders_color; - background-color: darken($bg_color, 10%); - color: $fg_color; -} - -//.gedit-document-panel-placeholder-row { -//} - -GeditStatusbar { - border-top: 1px solid $borders_color; - background-color: $bg_color; -} - -GeditStatusMenuButton.button.flat, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton:checked.button.flat { - border-bottom-style: none; - border-radius: 0; -} - - -GeditViewFrame .gedit-search-slider { @extend %search_slider } - -GeditFileBrowserWidget .toolbar { - border-bottom: 1px solid $borders_color; -} - -.gedit-search-entry-occurrences-tag { - color: transparentize($fg_color, 0.4); - margin: 2px; - padding: 2px; -} - -%search_slider { - background-color: lighten($bg_color, 2%); - padding: 6px; - border-color: $borders_color; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; -} - -// -// Gnome Builder -// - -GbSearchBox.linked { - - > GtkMenuButton.button:last-child:dir(ltr), - > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - - @include entry(header-normal); - - &:hover { @include entry(header-focus); } - &:active, &:checked { @include entry(header-focus); } - &:insensitive { @include entry(header-insensitive); } - } - - > GtkMenuButton.button:last-child:dir(ltr) { - - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; - - &:hover { box-shadow: -1px 0 $selected_bg_color; } - } - > GtkMenuButton.button:first-child:dir(rtl) { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; - - &:hover { box-shadow: 1px 0 $selected_bg_color; } - } -} - -//Search entry that slides down from top of editor -GbEditorFrame .gb-search-slider { @extend %search_slider; padding: 2px; } - -.gb-search-entry-occurrences-tag { @extend .gedit-search-entry-occurrences-tag } - -GdTaggedEntry { color: $fg_color; } - -// Preferences sidebar style -.preferences.sidebar { - - GtkViewport { border: none; } - GtkListBox { background-color: $bg_color; } - GtkListBoxRow { padding: 10px; } -} - -// Preference page language style -GbPreferencesPageLanguage { - - GtkSearchEntry { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; - } - GtkScrolledWindow { border-top-width: 0; } -} - -// Command Bar styling -GtkBox.gb-command-bar-box { - border: none; - background-color: opacify($osd_bg_color, 1); - - GtkLabel { color: $osd_fg_color; } -} - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: $osd_fg_color; - background-image: none; - background-color: opacify($osd_bg_color, 1); - padding: 6px 6px 6px 6px; - border: none; - - &:selected, - &:selected:focus { - @extend %selected_items; - } -} - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; -} - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; -} - -// Disable various animatinos that are enabled by default and really annoying -// to the overall flow of Builder. -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; -} - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid $borders_color; -} - -GbViewStack.focused GtkBox.header.notebook { - background-color: $base_color; - - .button.dim-label { opacity: 1; } -} - -// -// Epiphany -// -EphyWindow .floating-bar { // Epiphany overrides the floating-bar style, so reset it - color: $fg_color; -} - -// -// Gnome Documents -// -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; -} - -.documents-icon-bg { - background-color: $selected_bg_color; - color: $selected_fg_color; - border-radius: 2px; -} - -.documents-collection-icon { - background-color: transparentize($fg_color, 0.7); - border-radius: 2px; -} - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: lighten($selected_bg_color, 20%); -} - -.documents-entry-tag { - background-color: $selected_bg_color; - color: $selected_fg_color; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; - - &:hover { - color: $selected_fg_color; - background-color: lighten($selected_bg_color, 4%); - } - &:active { - color: $selected_fg_color; - background-color: darken($selected_bg_color, 4%); - } - - .toolbar .linked &.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; - - &:hover { color: transparentize($selected_fg_color, 0.3) } - } -} - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; -} - -// -// Totem -// -TotemGrilo.vertical GdMainView.frame { - border-width: 0; -} - -// -// Synapse -// -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { background-color: $selected_bg_color; } - -// -// Transmission -// -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; // Remove black border on over- and undershoot -} - -// -// Fallback Mode/Budgie Panel -// -.gnome-panel-menu-bar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: $panel_fg; - background-image: linear-gradient(to bottom, $panel_bg); -} - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: $panel_fg; -} - -PanelApplet .button:hover { - color: lighten($panel_fg, 10%); - background-color: transparentize(black, 0.83); - border-color: transparentize(black, 0.83); -} - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: transparentize(black, 0.75); - border-radius: 0; - border-color: transparentize(black, 0.75); - box-shadow: inset 0 -2px $selected_bg_color; -} - -PanelApplet:hover { - color: white; -} - -PanelApplet:active, -PanelApplet:hover:active { - color: $selected_bg_color; -} - -WnckPager { - color: mix($panel_fg, black, 50%); - &:selected { color: $selected_bg_color } -} - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; -} - -ClockBox { - color: $panel_fg; -} - -// Xfce Panel -.xfce4-panel.panel { - background-color: $panel_bg; - - text-shadow: none; - icon-shadow: none; - - .button.flat { - color: $panel_fg; - background-color: transparentize($panel_bg, 1); - border-radius: 0; - border: none; - - &:hover { - border: none; - background-color: lighten($panel_bg, 10%); - } - &:active, &:checked { - color: $selected_fg_color; - border: none; - background-color: $selected_bg_color; - } - } -} - -// -// Floating Bar -// -.floating-bar { - background-color: $selected_bg_color; - color: $selected_fg_color; - - &.top { border-radius: 0 0 2px 2px; } - &.right { border-radius: 2px 0 0 2px; } - &.bottom { border-radius: 2px 2px 0 0; } - &.left { border-radius: 0 2px 2px 0; } - - .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - - background-color: transparent; - box-shadow: none; - border: none; - } -} - -// Elementary Apps - -// -// Birdie -// -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; -} - -// -// Marlin / Pantheon Files -// -MarlinViewWindow { - - *:selected, *:selected:focus { - color: $selected_fg_color; - background-color: $selected_bg_color; - outline-color: transparent; - } - GtkIconView.view:selected { - &, &:focus, &:hover, &:focus:hover { background-color: transparent; } - } - FMListView, FMColumnView { outline-color: transparent; } -} - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - - @include entry(header-normal); - - &:focus { @include entry(header-focus) } - - &:insensitive { @include entry(header-insensitive) } - - &:active, &:checked { - color: $selected_bg_color; - } -} - -// -// Gala -// -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; - - .title, .label { - color: #5c616c; - } -} - -// -// Wingpanel -// -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px transparentize(black, 0.4); - icon-shadow: 0 1px 2px transparentize(black, 0.4); - - &-shadow { - background-image: none; - background-color: transparent; - } - .menu { - box-shadow: none; - - .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; - } - - .window-frame.menu.csd, - .window-frame.popup.csd { - box-shadow: 0 0 0 1px transparentize(black, 0.8), - 0 10px 20px transparentize(black, 0.81), - 0 6px 6px transparentize(black, 0.77); - } - } - .menubar > .menuitem { - padding: 3px 6px; - &:hover { background-color: transparent; } - } - .window-frame.menu.csd, - .window-frame.popup.csd { box-shadow: none; } -} - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px transparentize(black, 0.4); - icon-shadow: 0 1px 2px transparentize(black, 0.4); - - > GtkWidget > GtkWidget:first-child { padding: 0 2px; } - - .menuitem:active, .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; - } - > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; - } -} - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; -} - -.panel .menu .spinner, -.menu .spinner { opacity: 1 } // Fixes sound indicator buttons - -// -// Wingpanel Popover -// -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - - text-shadow: none; - icon-shadow: none; - - .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; - border: solid transparent; - border-width: 1px 0; - - GtkLabel, GtkImage { padding: 0 3px; } - - &:hover, &:active { - background-color: if($variant == 'light', transparentize(black, 0.96), transparentize(white, 0.95)); - border: solid if($variant == 'light', transparentize(black, 0.92), transparentize(white, 0.93)); - border-width: 1px 0; - } - *:insensitive { color: $insensitive_fg_color; } - } -} - -// -// Pantheon Terminal -// -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; -} - -// -// Switchboard -// -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: $fg_color; -} diff --git a/common/gtk-3.0/3.14/sass/_colors-public.scss b/common/gtk-3.0/3.14/sass/_colors-public.scss deleted file mode 100644 index b6b3dc5..0000000 --- a/common/gtk-3.0/3.14/sass/_colors-public.scss +++ /dev/null @@ -1,71 +0,0 @@ -//apps rely on some named colors to be exported -/* GTK NAMED COLORS */ - -// Sass thinks we're using the colors in the variables as strings and may shoot -// warning, it's innocuous and can be defeated by using "" + $var -@define-color theme_fg_color #{"" + $fg_color}; -@define-color theme_text_color #{"" + $text_color}; -@define-color theme_bg_color #{"" + $bg_color}; -@define-color theme_base_color #{"" + $base_color}; -@define-color theme_selected_bg_color #{"" + $selected_bg_color}; -@define-color theme_selected_fg_color #{"" + $selected_fg_color}; -@define-color fg_color #{"" + $fg_color}; -@define-color text_color #{"" + $text_color}; -@define-color bg_color #{"" + $bg_color}; -@define-color base_color #{"" + $base_color}; -@define-color selected_bg_color #{"" + $selected_bg_color}; -@define-color selected_fg_color #{"" + $selected_fg_color}; -@define-color insensitive_bg_color #{"" + $insensitive_bg_color}; -@define-color insensitive_fg_color alpha(#{"" + opacify($insensitive_fg_color, 1)}, 0.5); -@define-color insensitive_base_color #{"" + $base_color}; -@define-color theme_unfocused_fg_color #{"" + $fg_color}; -@define-color theme_unfocused_text_color #{"" + $text_color}; -@define-color theme_unfocused_bg_color #{"" + $bg_color}; -@define-color theme_unfocused_base_color #{"" + $base_color}; -@define-color borders #{"" + $borders_color}; -@define-color unfocused_borders #{"" + $borders_color}; - -@define-color warning_color #{"" + $warning_color}; -@define-color error_color #{"" + $error_color}; -@define-color success_color #{"" + $success_color}; -@define-color placeholder_text_color #{#A8A8A8}; -@define-color link_color #{"" + $link_color}; - -//WM -$wm_highlight: lighten(opacify($header_bg, 1), 3%); -$wm_bg_unfocused: opacify($header_bg_backdrop, 1); - -@define-color wm_title alpha(#{"" + opacify($header_fg, 1)}, 0.8); -@define-color wm_unfocused_title alpha(#{"" + opacify($header_fg, 1)}, 0.5); - -@define-color wm_bg #{"" + opacify($header_bg, 1)}; -@define-color wm_bg_unfocused #{"" + $wm_bg_unfocused}; - -@define-color wm_highlight #{"" + $wm_highlight}; -@define-color wm_shadow alpha(#{black}, 0.35); - -//WM Buttons - -// Close -@define-color wm_button_close_bg #{"" + $wm_button_close_bg}; -@define-color wm_button_close_hover_bg #{"" + $wm_button_close_hover_bg}; -@define-color wm_button_close_active_bg #{"" + $wm_button_close_active_bg}; - -@define-color wm_icon_close_bg #{"" + $wm_icon_close_bg}; - -// Minimize, Maximize -@define-color wm_button_hover_bg #{"" + $wm_button_hover_bg}; -@define-color wm_button_active_bg #{"" + $wm_button_active_bg}; - -@define-color wm_button_hover_border #{"" + $wm_button_hover_border}; - -@define-color wm_icon_bg #{"" + $wm_icon_bg}; -@define-color wm_icon_unfocused_bg #{"" + $wm_icon_unfocused_bg}; -@define-color wm_icon_hover_bg #{"" + $wm_icon_hover_bg}; -@define-color wm_icon_active_bg #{"" + $wm_icon_active_bg}; - - -//FIXME this is really an API - -@define-color content_view_bg #{"" + $base_color}; - diff --git a/common/gtk-3.0/3.14/sass/_colors.scss b/common/gtk-3.0/3.14/sass/_colors.scss deleted file mode 100644 index fac334a..0000000 --- a/common/gtk-3.0/3.14/sass/_colors.scss +++ /dev/null @@ -1,101 +0,0 @@ -// When color definition differs for dark and light variant, -// it gets @if ed depending on $variant - - -$base_color: if($variant =='light', #fdf6e3, #073642); -$text_color: if($variant == 'light', #5c616c, #657b83); -$bg_color: if($variant =='light', #F5F6F7, #002b36); -$fg_color: if($variant =='light', #5c616c, #657b83); - -$selected_fg_color: #fdf6e3; -$selected_bg_color: #268bd2; -$selected_borders_color: darken($selected_bg_color, 20%); -$borders_color: if($variant =='light', darken($bg_color,9%), darken($bg_color,6%)); - -$link_color: if($variant == 'light', darken($selected_bg_color,10%), - lighten($selected_bg_color,20%)); -$link_visited_color: if($variant == 'light', darken($selected_bg_color,20%), - lighten($selected_bg_color,10%)); - -$selection_mode_bg: if($transparency == 'true', transparentize($selected_bg_color, 0.05), $selected_bg_color); -$selection_mode_fg: $selected_fg_color; -$warning_color: #cb4b16; -$error_color: #dc322f; -$warning_fg_color: white; -$error_fg_color: white; -$success_color: #859900; -$destructive_color: #dc322f; -$suggested_color: #2aa198; -$destructive_fg_color: white; -$suggested_fg_color: white; - -$drop_target_color: #b58900; - -//insensitive state derived colors -$insensitive_fg_color: if($variant == 'light', transparentize($fg_color, 0.45), transparentize($fg_color, 0.55)); -$insensitive_bg_color: if($variant == 'light', mix($bg_color, $base_color, 40%), lighten($bg_color, 2%)); - -$header_bg: red; -@if $transparency=='true' and $variant=='light' { $header_bg: transparentize(#eee8d5, 0.05); } -@if $transparency=='false' and $variant=='light' { $header_bg: #eee8d5; } -@if $transparency=='true' and ($variant=='dark' or $darker=='true') { $header_bg: transparentize(#002b36, 0.03); } -@if $transparency=='false' and ($variant=='dark' or $darker=='true') { $header_bg: #002b36; } - -$header_bg_backdrop: if($darker == 'true' or $variant == 'dark', lighten($header_bg, 1.5%), lighten($header_bg, 3%)); - -$header_border: if($variant == 'light' and $darker=='false', darken($header_bg, 7%), darken($header_bg, 4%)); - -$header_fg: if($variant == 'light', saturate(transparentize($fg_color, 0.2), 10%), saturate(transparentize($fg_color, 0.2), 10%)); -$header_fg: if($darker == 'true', saturate(transparentize(#657b83, 0.2), 10%), $header_fg); - -$dark_sidebar_bg: if($transparency == 'true', transparentize(#073642, 0.05), #073642); -$dark_sidebar_fg: #657b83; -$dark_sidebar_border: if($variant == 'light', $dark_sidebar_bg, darken($dark_sidebar_bg, 5%)); - -$osd_fg_color: $dark_sidebar_fg; -$osd_bg_color: $dark_sidebar_bg; - -$osd_button_bg: transparentize(lighten($osd_bg_color, 22%), 0.6); -$osd_button_border: transparentize(darken($osd_bg_color, 12%), 0.6); - -$osd_entry_bg: transparentize(lighten($osd_bg_color, 22%), 0.6); -$osd_entry_border: transparentize(darken($osd_bg_color, 12%), 0.6); - -$osd_insensitive_bg_color: darken($osd_bg_color, 3%); -$osd_insensitive_fg_color: mix($osd_fg_color, opacify($osd_bg_color, 1), 30%); -$osd_borders_color: transparentize(black, 0.3); - -$panel_bg: darken($dark_sidebar_bg, 4.7%); -$panel_fg: $dark_sidebar_fg; - -$entry_bg: if($variant=='light', $base_color, lighten($base_color, 0%)); -$entry_border: if($variant == 'light', #657b83, darken($borders_color, 0%)); - -$header_entry_bg: if($darker == 'true' or $variant == 'dark', transparentize(lighten($header_bg, 22%), 0.6), transparentize($base_color, 0.1)); -$header_entry_border: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 12%), 0.6), transparentize($header_fg, 0.7)); - -$button_bg: if($variant == 'light', lighten($bg_color, 2%), lighten($base_color, 2%)); -$button_border: $entry_border; - -$header_button_bg: if($darker == 'true' or $variant == 'dark', transparentize(lighten($header_bg, 22%), 0.6), transparentize($button_bg, 0.1)); -$header_button_border: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 12%), 0.6), transparentize($header_fg, 0.7)); - -//WM Buttons - -// Close -$wm_button_close_bg: if($variant == 'light' and $darker == 'false', #f46067, #dc322f); -$wm_button_close_hover_bg: if($variant == 'light' and $darker == 'false', #f68086, #cb4b16); -$wm_button_close_active_bg: if($variant == 'light' and $darker == 'false', #f13039, #dc322f); - -$wm_icon_close_bg: if($variant == 'light' and $darker == 'false',#657b83 , #002b36); - -// Minimize, Maximize -$wm_button_hover_bg: if($variant == 'light' and $darker == 'false', #fdfdfd, #657b83); -$wm_button_active_bg: $selected_bg_color; - -$wm_button_hover_border: if($variant == 'light' and $darker == 'false', #D1D3DA, #002b36); - -$wm_icon_bg: if($variant == 'light' and $darker == 'false', #90949E, #93a1a1); -$wm_icon_unfocused_bg: if($variant == 'light' and $darker == 'false', #B6B8C0, #657b83); -$wm_icon_hover_bg: if($variant == 'light' and $darker == 'false', #7A7F8B, #93a1a1); -$wm_icon_active_bg: $selected_fg_color; diff --git a/common/gtk-3.0/3.14/sass/_common.scss b/common/gtk-3.0/3.14/sass/_common.scss deleted file mode 100644 index 5f98928..0000000 --- a/common/gtk-3.0/3.14/sass/_common.scss +++ /dev/null @@ -1,2786 +0,0 @@ -@function gtkalpha($c,$a) { - @return unquote("alpha(#{$c},#{$a})"); -} - -$ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94); -$asset_suffix: if($variant=='dark', '-dark', ''); // use dark assets in dark variant -$darker_asset_suffix: if($darker=='true', '-dark', $asset_suffix); - -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: $error_color; - -GtkPaned-handle-size: 1; - - -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: $link_color; - -GtkWidget-visited-link-color: $link_visited_color; - - -GtkWidget-focus-padding: 2; // FIXME: do we still need these? - -GtkWidget-focus-line-width: 1; // - - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - - -GtkStatusbar-shadow-type: none; - - // We use the outline properties to signal the focus properties - outline-color: transparentize($fg_color, 0.7); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; -} - - -// -// Base States -// -.background { - color: $fg_color; - background-color: if($transparency == 'true', transparentize($bg_color, 0.001), $bg_color); // without this headerbar transparency doesn't seem to work -} - -*:insensitive { - -gtk-image-effect: dim; -} - -.gtkstyle-fallback { - background-color: $bg_color; - color: $fg_color; - &:prelight { - background-color: lighten($bg_color, 10%); - color: $fg_color; - } - &:active { - background-color: darken($bg_color, 10%); - color: $fg_color; - } - &:insensitive { - background-color: $insensitive_bg_color; - color: $insensitive_fg_color; - } - &:selected { - background-color: $selected_bg_color; - color: $selected_fg_color; - } -} - -.view { - color: $text_color; - background-color: $base_color; - - &:selected, - &:selected:focus, - &:selected:hover { - @extend %selected_items; - } - &.dim-label { - color: transparentize($text_color, 0.45); - - &:selected, &:selected:focus { - color: transparentize($selected_fg_color, 0.35); - text-shadow: none; - } - } -} - -.rubberband { - border: 1px solid $selected_bg_color; - background-color: transparentize($selected_bg_color,0.8); -} - -GtkLabel { - &.separator { - color: $fg_color; - @extend .dim-label; - } - &:selected, - &:selected:focus, - &:selected:hover { - @extend %selected_items; - } - &:insensitive { - color: $insensitive_fg_color; - } -} - -.dim-label { - opacity: 0.55; -} - -GtkAssistant { - .sidebar { - background-color: $base_color; - border-top: 1px solid $borders_color; - &:dir(ltr) { border-right: 1px solid $borders_color; } - &:dir(rtl) { border-left: 1px solid $borders_color; } - } - &.csd .sidebar { border-top-style: none; } - .sidebar GtkLabel { - padding: 6px 12px; - } - .sidebar GtkLabel.highlight { - background-color: $selected_bg_color; - color: $selected_fg_color; - } -} - -GtkTextView { // This will get overridden by .view, needed by gedit line numbers - background-color: mix($bg_color, $base_color, 50%); -} - -GtkFlowBox .grid-child { - padding: 3px; - border-radius: 3px; - &:selected { - @extend %selected_items; - outline-offset: -2px; - } -} - -%osd, .osd { - color: $osd_fg_color; - border: none; - background-color: $osd_bg_color; - background-clip: padding-box; - outline-color: transparentize($osd_fg_color, 0.7); - box-shadow: none; -} - -// -// Spinner Animations -// -@keyframes spin { - to { -gtk-icon-transform: rotate(1turn); } -} - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; // non spinning spinner makes no sense - -gtk-icon-source: -gtk-icontheme('process-working-symbolic'); - - &:active { - opacity: 1; - animation: spin 1s linear infinite; - - &:insensitive { - opacity: 0.5; - } - } -} - -$vert_padding: 5px; -// -// Text Entries -// -.entry { - border: 1px solid; - padding: $vert_padding 8px; - - border-radius: 3px; - transition: all 200ms $ease-out-quad; - @include entry(normal); - - &.image { // icons inside the entry - &.left { padding-left: 0; } - &.right { padding-right: 0; } - } - - &.flat, &.flat:focus { - padding: 2px; - @include entry(normal); - border: none; - border-radius: 0; - } - - &:focus { - background-clip: border-box; - @include entry(focus); - } - - &:insensitive { @include entry(insensitive); } - - &:selected, - &:selected:focus { - background-color: $selected_bg_color; - color: $selected_fg_color; - } - - &.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: $selected_bg_color; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; - } - - .linked > & { //FIXME: use same buttons linking logic and template - &:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - &:dir(rtl) { border-right-style: none;} - } - &:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; - &:dir(rtl) { border-left-style: solid; } - } - } - - @each $e_type, $e_color, $e_fg_color in (warning, $warning_color, $warning_fg_color), - (error, $error_color, $error_fg_color) { - &.#{$e_type} { - color: $selected_fg_color; - border-color: if($variant=='light', $e_color, $entry_border); - background-image: linear-gradient(to bottom, mix($e_color, $base_color, 60%)); - - &:focus { - color: $e_fg_color; - background-image: linear-gradient(to bottom, $e_color); - box-shadow: none; - } - &:selected, &:selected:focus { - background-color: $e_fg_color; - color: $e_color; - } - } - } - - &.image { // entry icons colors - color: mix($fg_color,$base_color,80%); - } - - .linked.vertical > & { //FIXME comment stuff and make the whole thing smarter. - border-bottom-color: mix($borders_color, $base_color, 30%); - box-shadow: none; - @extend %linked_vertical; - - &:focus { - border-color: $selected_bg_color; - box-shadow: 0 -1px 0 0 $selected_bg_color; - @extend %linked_vertical; - } - - &:insensitive { - border-bottom-color: mix($borders_color, $base_color, 30%); - @extend %linked_vertical; - } - - &:first-child { - border-bottom-color: mix($borders_color, $base_color, 30%); - - &:focus { - border-bottom-color: $selected_bg_color; - box-shadow: none; - } - - &:insensitive { - border-bottom-color: mix($borders_color, $base_color, 30%); - @extend %linked_vertical:first-child; - } - } - - &:last-child { - border-bottom-color: rgba(0,0,0,0.14); - &:focus { - border-bottom-color: $selected_bg_color; - box-shadow: 0 -1px 0 0 $selected_bg_color; - @extend %linked_vertical:last-child; - } - - &:insensitive { - border-bottom-color: rgba(0,0,0,0.14); - @extend %linked_vertical:last-child; - - } - } - } - - .osd & { - @include entry(osd); - &:focus { @include entry(osd-focus); } - &:insensitive { @include entry(osd-insensitive); } - } -} - -GtkSearchEntry.entry { border-radius: 20px; } - -// -// Buttons -// -// stuff for .needs-attention -$_dot_color: $selected_bg_color; - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, - center center, 0, - center center, 0.01, - to($_dot_color), - to(transparent)); - } - to { - background-image: -gtk-gradient(radial, - center center, 0, - center center, 0.5, - to($selected_bg_color), - to(transparent)); - } -} - -.button { - $_button_transition: all 200ms $ease-out-quad; - - transition: $_button_transition; - border: 1px solid; - border-radius: 3px; - padding: $vert_padding 8px; - - @include button(normal); - - &.flat { - @include button(undecorated); - background-color: transparentize($button_bg, 1); - border-color: transparentize($button_border, 1); - // to avoid adiacent buttons borders clashing when transitioning, the transition on the normal state is set - // to none, while it's added back in the hover state, so the button decoration will fade in on hover, but - // it won't fade out when the pointer leave the button allocation area. To make the transition more evident - // in this case the duration is increased. - transition: none; - &:hover { - transition: $_button_transition; - transition-duration: 350ms; - &:active { transition: $_button_transition; } - } - } - &:hover { - @include button(hover); - -gtk-image-effect: highlight; - } - &:active, &:checked { - background-clip: if($variant=='light', border-box, padding-box); - @include button(active); - transition-duration: 50ms; - } - - //Webkitgtk workaround start - &:active { color: $fg_color; } - &:active:hover, &:checked { color: $selected_fg_color; } - //Webkitgtk workaround end - - &.flat:insensitive { - @include button(undecorated); - } - &:insensitive { - @include button(insensitive); - &:active, &:checked { - @include button(insensitive-active); - } - } - // big standalone buttons like in Documents pager - &.osd { - color: $osd_fg_color; - outline-color: transparentize($osd_fg_color, 0.7); - background-color: $osd_bg_color; - border-color: darken($osd_bg_color, 8%); - - &.image-button { padding: 10px; } - - &:hover { color: $selected_bg_color; } - &:active, &:checked { @include button(osd-active); } - &:insensitive { @include button(osd-insensitive); } - } - - //overlay / OSD style - .osd & { - @include button(osd); - // there's a problem with sass which prevents it to extend the linked - // placeholder as expected, it should just be "@extend %linked;", the - // placeholder is basically replicated here - // - // Workaround START - border-radius: 0; - border-left-style: none; - border-right-style: none; - - &:dir(rtl) { - border-radius: 0; - border-right-style: none; - border-left-style: none - } - &:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; - } - &:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; - - &:dir(rtl) { border-left-style: solid; } - } - &:only-child { - border-radius: 3px; - border-style: solid; - } - // Workaround END - &:hover { - @include button(osd-hover); - @extend %linked; - &, &:first-child, &:last-child { box-shadow: none; } - } - &:active, &:checked { - background-clip: padding-box; - @include button(osd-active); - @extend %linked; - } - &:insensitive { - @include button(osd-insensitive); - @extend %linked; - } - - &.flat { - @include button(undecorated); - box-shadow: none; - &:hover { - @include button(osd-hover); - &, &:first-child, &:last-child { box-shadow: none; } - } - &:insensitive { - @include button(osd-insensitive); - background-image: none; - } - &:active, &:checked { - @include button(osd-active); - } - } - } - // Suggested and Destructive Action buttons - @each $b_type, $b_color, $b_fg in (suggested-action, $suggested_color, $suggested_fg_color), - (destructive-action, $destructive_color, $destructive_fg_color) { - &.#{$b_type} { - @include button(suggested_destructive, $b_color, $b_fg); - - &.flat { - @include button(undecorated); - color: $b_color; - outline-color: transparentize($b_color, 0.7); - } - &:hover { - @include button(suggested_destructive, lighten($b_color, 10%), $b_fg); - } - &:active, &:checked { - @include button(suggested_destructive, darken($b_color, 10%), $b_fg); - } - &.flat:insensitive { - @include button(undecorated); - color: $insensitive_fg_color; - } - &:insensitive { @include button(insensitive); } - } - } - - &.image-button { padding: 2px + $vert_padding; } - .header-bar &.image-button { padding: 2px + $vert_padding 10px; } - - &.text-button { - padding-left: 16px; - padding-right: 16px; - } - - &.text-button.image-button { - // those buttons needs uneven horizontal padding, we want the icon side - // to have the image-button padding, while the text side the text-button - // one, so we're adding the missing padding to the label depending on - // its position inside the button - padding: $vert_padding 8px; // same as .button - GtkLabel:first-child { padding-left: 8px; } - GtkLabel:last-child { padding-right: 8px; } - } - - .stack-switcher > & { - // to position the needs attention dot, padding is added to the button - // child, a label needs just lateral padding while an icon needs vertical - // padding added too. - - outline-offset: -3px; // needs to be set or it gets overridden by GtkRadioButton outline-offset - - > GtkLabel { - padding-left: 6px; // label padding - padding-right: 6px; // - } - > GtkImage { - padding-left: 6px; - padding-right: 6px; - padding-top: $vert_padding - 2px; - padding-bottom: $vert_padding - 2px; - } - - &.text-button { padding: $vert_padding 10px; } // needed or it will get overridden - - &.image-button { padding: $vert_padding - 3px 4px; } - - &.needs-attention > GtkLabel, - &.needs-attention > GtkImage { @extend %needs_attention; } - &.needs-attention:active > .label, - &.needs-attention:active > GtkImage, - &.needs-attention:checked > GtkLabel, - &.needs-attention:checked > GtkImage { - animation: none; - background-image: none; - } - } - - %needs_attention { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, - center center, 0, - center center, 0.5, - to($_dot_color), - to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - @if $variant == 'light' { background-position: right 3px, right 4px; } - @else { background-position: right 3px, right 2px; } - &:dir(rtl) { - @if $variant == 'light' { background-position: left 3px, left 4px; } - @else { background-position: left 3px, left 2px; } - } - } - - //inline-toolbar buttons - .inline-toolbar &, .inline-toolbar &:backdrop { - border-radius: 2px; - border-width: 1px; - @extend %linked; - } - - .linked > &, - .linked > &:hover, - .linked > &:active, - .linked > &:checked { @extend %linked; } - - .linked.vertical > &, - .linked.vertical > &:hover, - .linked.vertical > &:active, - .linked.vertical > &:checked { @extend %linked_vertical; } -} - -// all the following is for the +|- buttons on inline toolbars, that way -// should really be deprecated... -.inline-toolbar GtkToolButton > .button { // redefining the button look is - // needed since those are flat... - @include button(normal); - &:hover { @include button(hover); } - &:active, - &:checked{ @include button(active); } - &:insensitive { @include button(insensitive); } - &:insensitive:active, - &:insensitive:checked { @include button(insensitive-active); } -} - -// More inline toolbar buttons -.inline-toolbar.toolbar GtkToolButton { - & > .button.flat { @extend %linked_middle; } - &:dir(rtl) > .button.flat { @extend %linked_middle:dir(rtl); } - &:first-child > .button.flat { @extend %linked:first-child; } - &:last-child > .button.flat { @extend %linked:last-child; } - &:last-child:dir(rtl) > .button.flat { @extend %linked:last-child:dir(rtl); } - &:only-child > .button.flat { @extend %linked:only-child; } -} - -$_linked_separator_color: if($variant=='light', transparentize($button_border, 0.6), transparentize($button_border, 0.5)); - -%linked_middle { - border-radius: 0; - border-left-style: none; - border-right-style: none; - - &:hover { - box-shadow: inset 1px 0 $_linked_separator_color, - inset -1px 0 $_linked_separator_color; - } - &:active, &:checked { box-shadow: none; } - - &:dir(rtl) { - border-radius: 0; // needed when including %linked_middle:dir(rtl) - } -} - -%linked { - @extend %linked_middle; - - &:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; - - &:hover { box-shadow: inset -1px 0 $_linked_separator_color; } - &:active, &:checked { box-shadow: none; } - } - &:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; - - &:hover { box-shadow: inset 1px 0 $_linked_separator_color; } - &:active, &:checked { box-shadow: none; } - - &:dir(rtl) { border-bottom-left-radius: 0; } - - } - &:only-child { - border-radius: 3px; - border-style: solid; - - &:hover { box-shadow: none; } - &:active, &:checked { box-shadow: none; } - } -} - -%linked_vertical_middle { - border-style: solid; - border-bottom-style: none; - border-top-style: none; - border-radius: 0; - - &:hover { - box-shadow: inset 0 -1px $_linked_separator_color, - inset 0 1px $_linked_separator_color; - } - &:active, &:checked { box-shadow: none; } -} - -%linked_vertical{ - @extend %linked_vertical_middle; - - &:first-child { - border-radius: 3px 3px 0 0; - border-top-style: solid; - - &:hover { box-shadow: inset 0 -1px $_linked_separator_color; } - &:active, &:checked { box-shadow: none; } - } - &:last-child { - border-radius: 0 0 3px 3px; - border-bottom-style: solid; - - &:hover { box-shadow: inset 0 1px $_linked_separator_color; } - &:active, &:checked { box-shadow: none; } - } - &:only-child { - border-radius: 3px; - border-style: solid; - - &:hover { box-shadow: none; } - &:active, &:checked { box-shadow: none; } - } -} - -%undecorated_button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; -} - -/* menu buttons */ -.menuitem.button.flat { - transition: none; - @extend %undecorated_button; - outline-offset: -1px; - border-radius: 2px; - - &:hover { background-color: if($variant=='light', mix($fg_color,$bg_color,5%), mix($fg_color,$bg_color,10%)); } - &:active, &:selected { - @extend %selected_items; - } - &:checked { color: $fg_color; } -} - -// -// Links -// -*:link { - color: $link_color; - &:visited { - color: $link_visited_color; - *:selected & { color: mix($selected_fg_color, $selected_bg_color, 60%); } - } - &:hover { - color: lighten($link_color,10%); - *:selected & { color: mix($selected_fg_color, $selected_bg_color, 90%); } - } - &:active { - color: $link_color; - *:selected & { color: mix($selected_fg_color, $selected_bg_color, 80%); } - } - &:selected, *:selected & { - color: mix($selected_fg_color, $selected_bg_color, 80%); - } -} - -.button:link, .button:visited { - @extend %undecorated_button; - @extend *:link; - &:hover, &:active, &:checked { - @extend %undecorated_button; - } -} - -// -// Spinbuttons -// -.spinbutton { - border-radius: 3px; - - .button { - background-image: none; - border: 1px solid transparentize($borders_color,0.4); - border-style: none none none solid; - color: mix($fg_color,$base_color,95%); - border-radius: 0; - box-shadow: none; - - &:dir(rtl) { border-style: none solid none none; } - &:first-child { color: red; } - - &:insensitive { - color: $insensitive_fg_color; - } - &:active { - background-color: $selected_bg_color; - color: $selected_fg_color; - } - } - -// .osd & { -// .button { -// @include button(undecorated); -// color: $osd_fg_color; -// border-style: none none none solid; -// border-color: transparentize($osd_borders_color, 0.3); -// border-radius: 0; -// box-shadow: none; -// &:dir(rtl) { border-style: none solid none none; } -// &:hover { -// @include button(undecorated); -// color: $osd_fg_color; -// border-color: transparentize(opacify($osd_borders_color, 1), 0.5); -// background-color: transparentize($osd_fg_color, 0.9); -// box-shadow: none; -// } -// &:insensitive { -// @include button(undecorated); -// color: $osd_insensitive_fg_color; -// border-color: transparentize(opacify($osd_borders_color, 1), 0.5); -// box-shadow: none; -// } -// &:last-child { border-radius: 0 2px 2px 0; } -// &:dir(rtl):first-child { border-radius: 2px 0 0 2px; } -// } -// } - - &.vertical, &.vertical:dir(rtl) { - .button { - &:first-child { - @extend %top_button; - @include button(normal); - &:active { - @extend %top_button; - @include button(active); - } - &:hover { - @extend %top_button; - @include button(hover); - } - &:insensitive { - @extend %top_button; - @include button(insensitive); - } - } - &:last-child { - @extend %bottom_button; - @include button(normal); - &:active { - @extend %bottom_button; - @include button(active); - } - &:hover { - @extend %bottom_button; - @include button(hover); - } - &:insensitive { - @extend %bottom_button; - @include button(insensitive); - } - } - } - &.entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; - } - %top_button { - border-radius: 2px 2px 0 0; - border-style: solid solid none solid; - } - %bottom_button { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; - } - } - GtkTreeView & { - &.entry, &.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: $selected_bg_color; - border-radius: 0; - box-shadow: none; - } - } -} - -// -// Comboboxes -// -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; - - > .button { // Otherwise combos - padding-top: $vert_padding - 2px; // are bigger than - padding-bottom: $vert_padding - 2px; // buttons - } - - &:insensitive { - color: $insensitive_fg_color; - } - - .separator.vertical { - // always disable separators - -GtkWidget-wide-separators: true; - } - - &.combobox-entry .entry { - @extend %linked; - - &:dir(ltr) { - border-right-style: none; - - @if $variant=='light' { &:focus { box-shadow: 1px 0 $selected_bg_color; } } - } - &:dir(rtl) { - border-left-style: none; - - @if $variant=='light' { &:focus { box-shadow: -1px 0 $selected_bg_color; } } - } - } - - &.combobox-entry .button { - @extend %linked; - - &:dir(ltr) { - box-shadow: inset 1px 0 $button_border; - - &:insensitive { box-shadow: inset 1px 0 transparentize($button_border, 0.45); } - } - &:dir(rtl) { - box-shadow: inset -1px 0 $button_border; - - &:insensitive { box-shadow: inset -1px 0 transparentize($button_border, 0.45); } - } - } -} - -.linked > GtkComboBox > .button { - // the combo is a composite widget so the way we do button linking doesn't - // work, special case needed. See - // https://bugzilla.gnome.org/show_bug.cgi?id=733979 - &:dir(ltr) { @extend %linked_middle; } // specificity bump - &:dir(rtl) { @extend %linked_middle:dir(rtl); } -} -.linked > GtkComboBox:first-child > .button { - @extend %linked:first-child; -} -.linked > GtkComboBox:last-child > .button { - @extend %linked:last-child; -} -.linked > GtkComboBox:only-child > .button { - @extend %linked:only-child; -} -.linked.vertical > GtkComboBoxText > .button, -.linked.vertical > GtkComboBox > .button { @extend %linked_vertical_middle; } -.linked.vertical > GtkComboBoxText:first-child > .button, -.linked.vertical > GtkComboBox:first-child > .button { @extend %linked_vertical:first-child; } -.linked.vertical > GtkComboBoxText:last-child > .button, -.linked.vertical > GtkComboBox:last-child > .button { @extend %linked_vertical:last-child; } -.linked.vertical > GtkComboBoxText:only-child > .button, -.linked.vertical > GtkComboBox:only-child > .button { @extend %linked_vertical:only-child; } - -// -// Toolbars -// -.toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: $bg_color; - .osd &, &.osd { - padding: 7px; - border: 1px solid transparentize(black, 0.5); - border-radius: 3px; - background-color: transparentize($osd_bg_color, 0.1); - } -} - -.primary-toolbar { - color: $header_fg; - background-color: opacify($header_bg, 1); - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, opacify($header_bg, 1), - darken($header_bg, 7%)) 1 0 1 0; //temporary hack for rhythmbox 3.1 - - //&:backdrop { background-color: opacify($header_bg_backdrop, 1); } - - .separator { @extend %header_separator; } - - @extend %header_widgets; -} - -.inline-toolbar { - @extend .toolbar; - background-color: darken($bg_color, 3%); - border-style: solid; - border-color: $borders_color; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; -} - -.search-bar { - background-color: $bg_color; - border-style: solid; - border-color: $borders_color; - border-width: 0 0 1px; - padding: 3px; - //box-shadow: inset 0 1px 2px rgba(0,0,0,0.25); -} - -.action-bar { background-color: darken($bg_color, 3%) } - -// -// Headerbars -// -.header-bar { - padding: 5px 5px 4px 5px; - - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: opacify($header_border, 1); - - color: $header_fg; - background-color: opacify($header_bg, 1); - - .csd & { // Transparent header-bars only in csd windows - background-color: $header_bg; - border-color: $header_border; - } - - &:backdrop { color: transparentize($header_fg, 0.3); } - - .title { - padding-left: 12px; - padding-right: 12px; - } - - .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; - @extend .dim-label; - } - - // Selectionmode - &.selection-mode, - &.titlebar.selection-mode { - color: $selection_mode_fg; - background-color: $selection_mode_bg; - border-color: darken($selection_mode_bg, 4%); - box-shadow: none; - - &:backdrop { - background-color: $selection_mode_bg; - color: transparentize($selection_mode_fg, 0.4); - } - - .subtitle:link { @extend *:link:selected; } - - .button { - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - background-color: transparentize($selected_fg_color, 1); - border-color: transparentize($selected_fg_color, 1); - - &.flat { - @include button(undecorated); - color: $selected_fg_color; - background-color: transparentize($selected_fg_color, 1); - } - &:hover { - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - background-color: transparentize($selected_fg_color, 0.95); - border-color: transparentize($selected_fg_color, 0.5); - } - &:active, &:checked { - color: $selection_mode_bg; - outline-color: transparentize($selection_mode_bg, 0.7); - background-color: $selected_fg_color; - border-color: $selected_fg_color; - } - &:insensitive { - color: transparentize($selected_fg_color, 0.6); - background-color: transparentize($selected_fg_color, 1); - border-color: transparentize($selected_fg_color, 1); - - &:active, &:checked { - color: transparentize($selection_mode_bg, 0.6); - background-color: transparentize($selected_fg_color, 0.85); - border-color: transparentize($selected_fg_color, 0.85); - } - } - } - - .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; - GtkArrow { -GtkArrow-arrow-scaling: 1; } - .arrow { - -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); - } - } - .maximized & { background-color: opacify($selection_mode_bg, 1); } - } - - .tiled &, .tiled &:backdrop, - .maximized &, .maximized &:backdrop { - border-radius: 0; // squared corners when the window is max'd or tiled - } - - .maximized & { - background-color: opacify($header_bg, 1); - border-color: opacify($header_border, 1); - } - - &.default-decoration, - .csd &.default-decoration, // needed under wayland, since all gtk3 windows are csd windows - &.default-decoration:backdrop, - .csd &.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: opacify($header_bg, 1); - border-bottom-width: 0; - - .maximized & { background-color: opacify($header_bg, 1); } - } -} - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: if($darker=='false' and $variant=='light', 4px 4px 0 0, 3px 3px 0 0); - color: $header_fg; - background-color: opacify($header_bg, 1); - box-shadow: inset 0 1px lighten($header_bg, 3%); - - .csd & { background-color: $header_bg; } - - &:backdrop { - color: transparentize($header_fg, 0.3); - background-color: opacify($header_bg_backdrop, 1); - - .csd & { background-color: $header_bg_backdrop; } - } - - .maximized & { - background-color: opacify($header_bg, 1); - - &:backdrop, .csd &:backdrop { background-color: opacify($header_bg_backdrop, 1); } - } -} - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { background-color: transparent; } - -// Only extending .header-bar avoids some problems (Gnome Documents searchbar) -.header-bar { - .header-bar-separator, - & > GtkBox > .separator.vertical { @extend %header_separator; } - - @extend %header_widgets; -} - -%header_separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, - transparentize($header_fg, 1) 25%, - transparentize($header_fg, 0.65) 25%, - transparentize($header_fg, 0.65) 75%, - transparentize($header_fg, 1) 75%) 0 1/0 1px stretch; - - &:backdrop { opacity: 0.6; } -} - -%header_widgets { - // Headerbar Entries - .entry { - @include entry(header-normal); - - &:backdrop { opacity: 0.85; } - - &:focus { - @include entry(header-focus); - background-clip: if($darker=='false' and $variant=='light', border-box, padding-box); - - &.image { color: $selected_fg_color; } - } - &:insensitive { @include entry(header-insensitive); } - - &:selected:focus { - background-color: $selected_fg_color; - color: $selected_bg_color; - } - - &.progressbar { - border-color: $selected_bg_color; - background-image: none; - background-color: transparent; - } - - @each $e_type, $e_color, $e_fg_color in (warning, $warning_color, $warning_fg_color), - (error, $error_color, $error_fg_color) { - &.#{$e_type} { - color: $e_fg_color; - border-color: if($darker=='false' and $variant=='light', $e_color, $header_entry_border); - background-image: linear-gradient(to bottom, mix($e_color, $header_bg, 60%)); - - &:focus { - color: $e_fg_color; - background-image: linear-gradient(to bottom, $e_color); - } - &:selected, &:selected:focus { - background-color: $e_fg_color; - color: $e_color; - } - } - } - } - - // Headerbar Buttons - .button { - - @include button(header-normal); - - &:backdrop { opacity: 0.7; } - - &:hover { @include button(header-hover); } - &:active, &:checked { - @include button(header-active); - background-clip: if($darker=='false' and $variant=='light', border-box, padding-box); - } - &:insensitive { @include button(header-insensitive); } - &:insensitive:active, &:insensitive:checked { @include button(header-insensitive-active); } - } - - .linked > .button { border-radius: 3px; border-style: solid} - - .linked > .button:hover { box-shadow: none; } - - .linked.stack-switcher > .button, - .linked.path-bar > .button { - - $_linked_separator_color: $header_button_border; - - @include button(header-hover); - - &:hover { background-color: lighten($header_button_bg, 15%); } - &:active, &:checked { @include button(header-active); } - &:insensitive { color: transparentize($header_fg, 0.4); } - - @extend %linked; - - &:hover { - box-shadow: inset 1px 0 $_linked_separator_color, - inset -1px 0 $_linked_separator_color; - } - &:active, &:checked { box-shadow: none; } - - &:first-child { - &:hover { box-shadow: inset -1px 0 $_linked_separator_color; } - &:active, &:checked { box-shadow: none; } - } - &:last-child { - &:hover { box-shadow: inset 1px 0 $_linked_separator_color; } - &:active, &:checked { box-shadow: none; } - } - &:only-child { - &:hover { box-shadow: none; } - &:active, &:checked { box-shadow: none; } - } - } - - // Headerbar Suggested and Destructive Action buttons - @each $b_type, $b_color, $b_fg in (suggested-action, $suggested_color, $suggested_fg_color), - (destructive-action, $destructive_color, $destructive_fg_color) { - .button.#{$b_type} { - @include button(suggested_destructive, $b_color, $b_fg); - - &.flat { - @include button(undecorated); - color: $b_color; - outline-color: transparentize($b_color, 0.7); - } - &:hover { - @include button(suggested_destructive, lighten($b_color, 10%), $b_fg); - } - &:active, &:checked { - @include button(suggested_destructive, darken($b_color, 10%), $b_fg); - } - &.flat:insensitive, - &:insensitive { @include button(header-insensitive); } - } - .button.#{$b_type}:backdrop, - .button.#{$b_type}:backdrop { - opacity: 0.8; - } - } - - // Headerbar Spinbuttons - & .spinbutton { - - &:focus .button { - color: $selected_fg_color; - - &:hover { background-color: transparentize($selected_fg_color, 0.9); border-color: transparent; } - &:insensitive { color: transparentize($selected_fg_color, 0.6); } - } - .button { - color: $header_fg; - - &:hover { background-color: transparentize($header_fg, 0.75); border-color: transparent; } - &:insensitive { color: transparentize($header_fg, 0.3); } - &:active { background-color: rgba(0,0,0,0.1); } - } - } - - // Headerbar ComboBoxes - & GtkComboBox{ - &:insensitive { color: transparentize($header_fg, 0.6); } - - &.combobox-entry .button { - @include entry(header-normal); - - &:hover { @include entry(header-focus); box-shadow: none; } - &:insensitive { @include entry(header-insensitive); } - } - &.combobox-entry .entry { - &:dir(ltr) { - &:focus { box-shadow: none; } - } - &:dir(rtl) { - &:focus { box-shadow: none; } - } - } - &.combobox-entry .button { - - &:dir(ltr) { - box-shadow: inset 1px 0 $header_button_border; - - &:insensitive { box-shadow: inset 1px 0 transparentize($header_button_border, 0.45); } - } - &:dir(rtl) { - box-shadow: inset -1px 0 $header_button_border; - - &:insensitive { box-shadow: inset -1px 0 transparentize($header_button_border, 0.45); } - } - } - } - - // Headerbar Switches - GtkSwitch { - &:backdrop { opacity: 0.75; } - } - - GtkProgressBar { - - &.trough { background-color: if($variant=='light' and $darker=='false', opacify($header_button_border, 0.05), $header_button_border); } - - &:backdrop { opacity: 0.75; } - } - - // Headerbar Scale - .scale { - - &:backdrop { opacity: 0.75; } - - &.trough { - $_trough_bg: if($variant=='light' and $darker=='false', opacify($header_button_border, 0.05), $header_button_border); - background-image: linear-gradient(to bottom, $_trough_bg); - - &:insensitive { background-image: linear-gradient(to bottom, if($variant=='light' and $darker=='false', transparentize($_trough_bg, 0.05), transparentize($_trough_bg, 0.1))); } - } - &.slider { - $_slider_border: if($variant=='light' and $darker=='false', opacify($header_button_border, 0.2), opacify($header_button_border, 0.3)); - $_slider_bg: if($variant=='light' and $darker=='false', opacify($header_button_bg,1), lighten(opacify($header_bg,1), 10%)); - - background-image: linear-gradient(to bottom, $_slider_bg); - border-color: $_slider_border; - - &:hover { - background-image: linear-gradient(to bottom, lighten($_slider_bg, 5%)); - border-color: $_slider_border; - } - &:active { - background-image: linear-gradient(to bottom, $selected_bg_color); - border-color: $selected_bg_color; - } - &:insensitive { - background-image: linear-gradient(to bottom, mix($_slider_bg, $header_bg, 70%)); - border-color: $_slider_border; - } - } - } -} - -// -// Pathbars -// -.path-bar .button { - padding: 5px 10px; - - &:first-child { padding-left: 10px; } - &:last-child { padding-right: 10px; } - &:only-child { - padding-left: 14px; - padding-right: 14px; - } - - // the following is for spacing the icon and the label inside the home button - GtkLabel:last-child { padding-left: 4px; } - GtkLabel:first-child { padding-right: 4px; } - GtkLabel:only-child, GtkLabel { padding-right: 0; padding-left: 0; } - GtkImage { padding-top: 2px; padding-bottom: 1px; } -} - -// -// Tree Views -// -GtkTreeView.view { // treeview grid lines and expanders, unfortunatelly - // the tree lines color can't be set - -GtkTreeView-grid-line-width: 1; - -GtkTreeView-grid-line-pattern: ''; - -GtkTreeView-tree-line-width: 1; - -GtkTreeView-tree-line-pattern: ''; - -GtkTreeView-expander-size: 16; - border-color: transparentize($fg_color, 0.8); // this is actually the line color - // :selected is ignored hence no style for it - - &.dnd { - border-style: solid none; - border-width: 1px; - border-color: mix($fg_color, $selected_bg_color, 50%); - } - - &.expander { - -gtk-icon-source: -gtk-icontheme('pan-end-symbolic'); - &:dir(rtl) { -gtk-icon-source: -gtk-icontheme('pan-end-symbolic-rtl'); } - - color: mix($fg_color, $base_color, 50%); - - &:hover { color: $fg_color; } - - &:selected { - color: mix($selected_fg_color, $selected_bg_color, 70%); - &:hover { color: $selected_fg_color; } - } - - &:checked { - -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); - } - } - - &.progressbar, &.progressbar:focus { // progress bar in treeviews - color: $selected_fg_color; - border-radius: 3px; - background-image: linear-gradient(to bottom, $selected_bg_color); - - &:selected, &:selected:focus { - color: $selected_bg_color; - box-shadow: none; - background-image: linear-gradient(to bottom, $selected_fg_color); - } - } - &.trough { // progress bar trough in treeviews - color: $fg_color; - background-image: linear-gradient(to bottom, $button_border); - border-radius: 3px; - border-width: 0; - - &:selected, &:selected:focus { - color: $selected_fg_color; - background-image: linear-gradient(to bottom, transparentize(black, 0.8)); - border-radius: 3px; - border-width: 0; - } - } -} - -column-header { - .button { - @extend %column_header_button; - $_column_header_color: mix($fg_color,$base_color,80%); - color: $_column_header_color; - background-color: $base_color; - &:hover { - @extend %column_header_button; - color: $selected_bg_color; - box-shadow: none; - transition: none; //I shouldn't need this - } - &:active { - @extend %column_header_button; - color: $fg_color; - transition: none; //I shouldn't need this - } - &.dnd { - @extend column-header.button.dnd; - } - } - &:last-child .button, - &:last-child.button { //treeview-like derived widgets in Banshee and Evolution - border-right-style: none; - border-image: none; - } -} - -column-header.button.dnd { // for treeview-like derive widgets - transition: none; - color: $selected_bg_color; - box-shadow: inset 1px 1px 0 1px $selected_bg_color, - inset -1px 0 0 1px $selected_bg_color, - inset 1px 1px $base_color, inset -1px 0 $base_color;; - &:active { @extend column-header.button.dnd; } - &:selected { @extend column-header.button.dnd; } - &:hover { @extend column-header.button.dnd; } -} - -%column_header_button { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, - transparentize(if($variant == 'light', black, white), 1) 20%, - transparentize(if($variant == 'light', black, white), 0.89) 20%, - transparentize(if($variant == 'light', black, white), 0.89) 80%, - transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch; - - &:active, &:hover { background-color: $base_color; } - &:active:hover { color: $fg_color; } - &:insensitive { - border-color: $bg_color; - background-image: none; - } -} - -// -// Menus -// -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: opacify($header_bg, 1); - color: $header_fg; - - &:backdrop { - color: transparentize($header_fg, 0.3); - //background-color: opacify($header_bg_backdrop, 1); - } - - & > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; - - &:hover { //Seems like it :hover even with keyboard focus - background-color: $selected_bg_color; - color: $selected_fg_color; - } - &:insensitive { - color: transparentize($header_fg, 0.6); - border-color: transparent; - } - } -} - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: if($variant=='light', $base_color, $bg_color); - border: 1px solid $borders_color; - - .csd & { - padding: 4px 0px; - border-radius: 2px; - border: none; - } - - .menuitem { - padding: 5px; - &:hover { - color: $selected_fg_color; - background-color: $selected_bg_color; - } - &:insensitive { - color: $insensitive_fg_color; - } - - &.separator { color: transparentize($base_color, 1); } - - //submenu indicators - &.arrow { -gtk-icon-source: -gtk-icontheme('pan-end-symbolic'); } - &.arrow:dir(rtl) {-gtk-icon-source:-gtk-icontheme('pan-end-symbolic-rtl'); } - } - &.button { // overlow buttons - @extend %undecorated_button; - border-style: none; - border-radius: 0; - &.top { border-bottom: 1px solid mix($fg_color, $base_color, 10%); } - &.bottom { border-top: 1px solid mix($fg_color, $base_color, 10%); } - &:hover { background-color: mix($fg_color, $base_color, 10%); } - &:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent ; - } - } -} - -.csd .popup { border-radius: 2px; } - -.menuitem .accelerator { color: gtkalpha(currentColor,0.55); } - -// -// Popovers -// -.popover { - margin: 10px; - padding: 2px; - border: 1px solid darken($borders_color, 5%); - border-radius: 3px; - background-clip: border-box; - background-color: if($variant=='light', $base_color, $bg_color); - - box-shadow: 0 2px 6px 1px if($variant=='light', transparentize(black, 0.93), transparentize(black, 0.65)); - - & .separator { color: transparentize($base_color, 1); } - GtkLabel.separator { @extend GtkLabel.separator; } // Noice - - > .list, - > .view, - > .toolbar, - &.osd > .toolbar { - border-style: none; - background-color: transparent; - } - &.osd { @extend %osd; } -} - -//touch selection handlebars for the Popover.osd above -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; - &.top { -gtk-icon-source: -gtk-icontheme('selection-start-symbolic'); } - &.bottom { -gtk-icon-source: -gtk-icontheme('selection-end-symbolic'); } -} - -// -// Notebooks and Tabs -// -.notebook { - padding: 0; - background-color: $base_color; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -GtkNotebook-has-tab-gap: false; - -GtkWidget-focus-padding: 0; - -GtkWidget-focus-line-width: 0; - transition: all 200ms $ease-out-quad; - - &.frame { - border: 1px solid $borders_color; - - &.top { border-top-width: 0; } - &.bottom { border-bottom-width: 0; } - &.right { border-right-width: 0; } - &.left { border-left-width: 0; } - } - &.header { - background-color: $bg_color; - - // this is the shading of the header behind the tabs - &.frame { - border: 0px solid $borders_color; - &.top { border-bottom-width: 0; } - &.bottom { border-top-width: 0; } - &.right { border-left-width: 0; } - &.left { border-right-width: 0; } - } - - $_header_border: $borders_color; - &.top { box-shadow: inset 0 -1px $_header_border; } - &.bottom { box-shadow: inset 0 1px $_header_border; } - &.right { box-shadow: inset 1px 0 $_header_border; } - &.left { box-shadow: inset -1px 0 $_header_border; } - } - tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - - outline-offset: 0; - - // tab sizing - $vpadding: 4px; - $hpadding: 15px; - - //FIXME: we get double border in some cases, not considering the broken - //notebook content frame... - &.top, &.bottom { padding: $vpadding $hpadding; } - &.left, &.right { padding: $vpadding $hpadding; } - - &.reorderable-page { - &.top, &.bottom { - padding-left: 12px; // for a nicer close button - padding-right: 12px; // placement - } - } - @each $_tab in (top, bottom, right, left) { - &.reorderable-page.#{$_tab}, &.#{$_tab} { - - @if $_tab==top or $_tab==bottom { - padding-#{$_tab}: $vpadding + 2; - } - @else if $_tab==left or $_tab==right { - padding-#{$_tab}: $hpadding + 2; - } - - @if $_tab==top { border-radius: 3.5px 2px 0 0; } - @else if $_tab==bottom { border-radius: 0 0 2px 3.5px; } - @else if $_tab==left { border-radius: 3.5px 0 0 3.5px; } - @else if $_tab==right { border-radius: 0 3.5px 3.5px 0; } - - border-width: 0; - border-#{$_tab}-width: 2px; - border-color: transparent; - background-color: transparentize($base_color, 1); - - &:hover, &.prelight-page { - background-color: transparentize($base_color, 0.5); - box-shadow: inset 0 1px $borders_color, - inset 0 -1px $borders_color, - inset 1px 0 $borders_color, - inset -1px 0 $borders_color; - } - &:active, &.active-page, &.active-page:hover { - background-color: $base_color; - - @if $_tab==top { - box-shadow: inset 0 1px $borders_color, - inset 0 -1px $base_color, - inset 1px 0 $borders_color, - inset -1px 0 $borders_color; - } - @else if $_tab==bottom { - box-shadow: inset 0 -1px $base_color, - inset 0 -1px $borders_color, - inset 1px 0 $borders_color, - inset -1px 0 $borders_color; - } - @else if $_tab==left { - box-shadow: inset 0 1px $borders_color, - inset 0 -1px $borders_color, - inset 1px 0 $borders_color, - inset -1px 0 $base_color; - } - @else if $_tab==right { - box-shadow: inset 0 1px $borders_color, - inset 0 -1px $borders_color, - inset 1px 0 $base_color, - inset -1px 0 $borders_color; - } - } - } - } - GtkLabel { //tab text - padding: 0 2px; // needed for a nicer focus ring - color: $insensitive_fg_color; - } - .prelight-page GtkLabel, GtkLabel.prelight-page { - // prelight tab text - color: mix($fg_color, $insensitive_fg_color, 50%); - } - .active-page GtkLabel, GtkLabel.active-page { - // active tab text - color: $fg_color; - } - .button { //tab close button - padding: 0; - @extend %undecorated_button; - color: mix($bg_color, $fg_color, 35%); - - &:hover { - color: lighten(red, 15%); - } - &:active { - color: $selected_bg_color; - } - & > GtkImage { // this is a hack which makes tabs grow - padding: 2px; - } - } - } - &.arrow { - color: $insensitive_fg_color; - &:hover { color: mix($fg_color, $insensitive_fg_color, 50%); } - &:active { color: $fg_color; } - &:insensitive { - color: transparentize($insensitive_fg_color,0.3); - } - } -} - -// -// Scrollbars -// -$_scrollbar_bg_color: darken($base_color, 1%); - -.scrollbar { - background-clip: padding-box; - background-image: none; - border-style: solid; - -GtkRange-trough-border: 0; - -GtkScrollbar-has-backward-stepper: false; - -GtkScrollbar-has-forward-stepper: false; - -GtkRange-slider-width: 13; - -GtkScrollbar-min-slider-length: 42; // minimum size for the slider. - // sadly can't be in '.slider' - // where it belongs - - -GtkRange-stepper-spacing: 0; - -GtkRange-trough-under-steppers: 1; - .button { - border: none; - } - &.trough { - background-color: $_scrollbar_bg_color; - border-left: 1px solid $borders_color; - - &.horizontal { - border-left: none; - border-top: 1px solid $borders_color; - } - } - &.slider { - border-radius: 21px 20px 20px 21px; - border: 3px solid transparent; //margin :/ - border-left-width: 4px; - background-color: mix($fg_color, $bg_color, 40%); - - &.horizontal { - border-radius: 21px 21px 20px 20px; - border-left-width: 3px; - border-top-width: 4px; - } - &:hover { - background-color: mix($fg_color, $bg_color, 25%); - } - &:prelight:active, - &:active { - background-color: $selected_bg_color; - } - &.fine-tune { - border-width: 4px; - &:prelight:active { - background-color: $selected_bg_color; - } - } - &:insensitive { - background-color: transparent; - } - } -} - -.scrollbars-junction, -.scrollbars-junction.frame { // the small square between two scrollbars - border-color: transparent; - background-color: $_scrollbar_bg_color; -} - - -// -// Switches -// -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 41; - outline-color: transparent; - - &.trough, &.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; - - &:dir(rtl) { background-position: left center; } - } -} - -@each $k,$l in ('',''), - (':active','-active'), - (':insensitive','-insensitive'), - (':active:insensitive','-active-insensitive') { - - // load switch troughs from .png files in assets directory - - GtkSwitch.trough#{$k} { - background-image: -gtk-scaled(url("assets/switch#{$l}#{$asset_suffix}.png"),url("assets/switch#{$l}#{$asset_suffix}@2.png")); - } - - .menu .menuitem:hover GtkSwitch.trough#{$k}, - .list-row:selected GtkSwitch.trough#{$k}, - GtkInfoBar GtkSwitch.trough#{$k} { - background-image: -gtk-scaled(url("assets/switch#{$l}-selected.png"),url("assets/switch#{$l}-selected@2.png")); - } - - .header-bar GtkSwitch.trough#{$k}, - .primary-toolbar GtkSwitch.trough#{$k} { - background-image: -gtk-scaled(url("assets/switch#{$l}-header#{$darker_asset_suffix}.png"),url("assets/switch#{$l}-header#{$darker_asset_suffix}@2.png")); - } -} - -// -// Check and Radio items * -// -@each $w,$a in ('check', 'checkbox'), - ('radio','radio') { - - //standard checks and radios - @each $s,$as in ('','-unchecked'), - (':insensitive','-unchecked-insensitive'), - (':inconsistent', '-mixed'), - (':inconsistent:insensitive', '-mixed-insensitive'), - (':checked', '-checked'), - (':checked:insensitive','-checked-insensitive') { - .#{$w}#{$s} { - -gtk-icon-source: -gtk-scaled(url("assets/#{$a}#{$as}#{$asset_suffix}.png"), - url("assets/#{$a}#{$as}#{$asset_suffix}@2.png")); - } - - %osd_check_radio { - .#{$w}#{$s} { - -gtk-icon-source: -gtk-scaled(url("assets/#{$a}#{$as}-dark.png"), - url("assets/#{$a}#{$as}-dark@2.png")); - } - } - // the borders of checks and radios are - // too similar in luminosity to the selected background color, hence - // we need special casing. - .menu .menuitem.#{$w}#{$s}:hover, - GtkTreeView.view.#{$w}#{$s}:selected, - .list-row:selected .#{$w}#{$s}, - GtkInfoBar .#{$w}#{$s} { - -gtk-icon-source: -gtk-scaled(url("assets/#{$a}#{$as}-selected.png"), - url("assets/#{$a}#{$as}-selected@2.png")); - } - } -} - -// Selectionmode -@each $s,$as in ('','-selectionmode'), - (':checked', '-checked-selectionmode') { - GtkIconView.view.check#{$s}, - GtkFlowBox.view.check#{$s} { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox#{$as}#{$asset_suffix}.png"), - url("assets/checkbox#{$as}#{$asset_suffix}@2.png")); - background-color: transparent; - } -} - -GtkCheckButton.text-button, GtkRadioButton.text-button { - // this is for a nice focus on check and radios text - padding: 1px 2px 4px; - outline-offset: 0; - &:insensitive, - &:insensitive:active, - &:insensitive:inconsistent { - // set insensitive color, which is overriden otherwise - color: $insensitive_fg_color; - } -} - -// -// GtkScale -// -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; - - &.trough { margin: 5px; } - &.fine-tune { - &.trough { border-radius: 5px; margin: 3px; } - } - &.slider { - $_slider_border: if($variant=='light', transparentize(darken($button_border,25%), 0.5), darken($button_border,2%)); - - background-clip: border-box; - background-image: linear-gradient(to bottom, $button_bg); - border: 1px solid $_slider_border; - border-radius: 50%; - box-shadow: none; - - &:hover { - background-image: linear-gradient(to bottom, lighten($button_bg, 5%)); - border-color: $_slider_border; - } - &:insensitive { - background-image: linear-gradient(to bottom, mix($entry_bg, $bg_color, 55%)); - border-color: transparentize($_slider_border, 0.2); - } - &:active { - background-image: linear-gradient(to bottom, $selected_bg_color); - border-color: $selected_bg_color; - } - //OSD sliders - .osd & { - background-image: linear-gradient(to bottom, $osd_bg_color); - border-color: $selected_bg_color; - - &:hover { background-image: linear-gradient(to bottom, $selected_bg_color); } - &:active { - background-image: linear-gradient(to bottom, darken($selected_bg_color, 10%)); - border-color: darken($selected_bg_color, 10%); - } - } - //selected list-row and infobar sliders - .menu .menuitem:hover &, - .list-row:selected &, - GtkInfoBar & { - background-image: linear-gradient(to bottom, $selected_fg_color); - border-color: $selected_fg_color; - - &:hover { - background-image: linear-gradient(to bottom, mix($selected_fg_color, $selected_bg_color, 85%)); - border-color: mix($selected_fg_color, $selected_bg_color, 85%); - } - &:active { - background-image: linear-gradient(to bottom, mix($selected_fg_color, $selected_bg_color, 50%)); - border-color: mix($selected_fg_color, $selected_bg_color, 50%); - } - &:insensitive{ - background-image: linear-gradient(to bottom, mix($selected_fg_color, $selected_bg_color, 55%)); - border-color: mix($selected_fg_color, $selected_bg_color, 55%); - } - } - } - &.trough { - - $_scale_trough_bg: if($variant == 'light', $button_border, darken($bg_color, 5%)); - - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, $_scale_trough_bg); - &.highlight { - background-image: linear-gradient(to bottom, $selected_bg_color); - - &:insensitive { - background-image: linear-gradient(to bottom, transparentize($selected_bg_color, 0.45)); - } - } - &:insensitive { - background-image: linear-gradient(to bottom, transparentize($_scale_trough_bg, 0.45)); - } - - //OSD troughs - .osd & { - background-image: linear-gradient(to bottom, lighten($osd_bg_color, 7%)); - outline-color: transparentize($osd_fg_color, 0.8); - &.highlight { - background-image: none; - background-image: linear-gradient(to bottom, $selected_bg_color); - } - &:insensitive { } - } - // troughs in selected list-rows and infobars - .menu .menuitem:hover &, - .list-row:selected &, - GtkInfoBar & { - background-image: linear-gradient(to bottom, transparentize(black, 0.8)); - - &.highlight { - background-image: linear-gradient(to bottom, $selected_fg_color); - - &:insensitive { background-image: linear-gradient(to bottom, mix($selected_fg_color, $selected_bg_color, 55%)); } - } - &:insensitive { background-image: linear-gradient(to bottom, transparentize(black, 0.9)); } - } - } -} - -// -// Progress bars -// -GtkProgressBar { - padding: 0; - font-size: smaller; - color: transparentize($fg_color, 0.3); - - &.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; - } -} - -// moving bit -.progressbar { - background-color: $selected_bg_color; - border: none; - border-radius: 3px; - box-shadow: none; //needed for clipping - &.left.right { - - } - &.osd { - background-color: $selected_bg_color; - } - .list-row:selected &, - GtkInfoBar & { background-color: $selected_fg_color; } -} - -.osd .scale.progressbar { - background-color: $selected_bg_color; -} - -// background -GtkProgressBar.trough { - border: none; - border-radius: 3px; - background-color: if($variant == 'light', $button_border, darken($bg_color, 5%)); - - &.osd { - border-style: none; - background-color: transparent; - box-shadow: none; - } - .list-row:selected &, - GtkInfoBar & { background-color: transparentize(black, 0.8); } -} - -// -// Level Bar -// -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; - - &.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; - } -} - -.level-bar { - &.trough { - @extend GtkProgressBar.trough; - padding: 3px; - border-radius: 4px; - } - &.fill-block { - // FIXME: it would be nice to set make fill blocks bigger, but we'd need - // :nth-child working on discrete indicators - border: 1px solid $selected_bg_color; - background-color: $selected_bg_color; - border-radius: 2px; - - &.indicator-discrete { - &.horizontal { margin: 0 1px; } - &.vertical { margin: 1px 0; } - } - &.level-high { - border-color: $success_color; - background-color: $success_color; - } - &.level-low { - border-color: $warning_color; - background-color: $warning_color; - } - &.empty-fill-block { - background-color: if($variant=='light', transparentize($fg_color,0.8), $base_color); - border-color: if($variant=='light', transparentize($fg_color,0.8), $base_color); - } - } -} - - -// -// Frames -// -.frame { - border: 1px solid $borders_color; - &.flat { border-style: none; } - padding: 0; - &.action-bar { - padding: 6px; - border-width: 1px 0 0; - } -} - -GtkScrolledWindow { - GtkViewport.frame { // avoid double borders when viewport inside - // scrolled window - border-style: none; - } -} - -//vbox and hbox separators -.separator { - // always disable separators - // -GtkWidget-wide-separators: true; - color: transparentize(black, 0.9); - - // Font and File button separators - GtkFileChooserButton &, - GtkFontButton &, - GtkFileChooserButton &.vertical, - GtkFontButton &.vertical { - // always disable separators - -GtkWidget-wide-separators: true; - } -} - -// -// Lists -// -.list, .list-row { - background-color: $base_color; - border-color: $borders_color; -} - -.list-row, -.grid-child { - padding: 2px; -} - -.list-row.button { - @extend %undecorated_button; - background-color: transparentize(black, 1); // for the transition - border-style: none; // I need no borders here - border-radius: 0; // and no rounded corners - box-shadow: none; // and no box-shadow - &:hover { - background-color: if($variant == 'light', transparentize(black, 0.95), transparentize(white, 0.97)); - } - &:active { - color: $fg_color; - } - &:selected { - &:active { color: $selected_fg_color; } - &:hover { background-color: mix(black, $selected_bg_color, 10%); } - &:insensitive { - color: transparentize($selected_fg_color, 0.3); - background-color: transparentize($selected_bg_color, 0.3); - GtkLabel { color: inherit; } - } - } -} - -.list-row:selected { - @extend %selected_items; - .button { @extend %selected-button } -} - -// transition -.list-row, list-row.button { - transition: all 300ms $ease-out-quad; - &:hover { transition: none; } -} - -// -// App Notifications -// -.app-notification, -.app-notification.frame { - padding: 10px; - color: $dark_sidebar_fg; - background-color: $dark_sidebar_bg; - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: darken($dark_sidebar_bg, 10%); - - .button { - @include button(osd); - &.flat { - @extend %undecorated_button; - border-color: transparentize($selected_bg_color, 1); - &:insensitive { @extend %undecorated_button; } - } - &:hover { @include button(osd-hover); } - &:active, &:checked { @include button(osd-active); background-clip: padding-box; } - &:insensitive { @include button(osd-insensitive); - } - } -} - -// -// Expanders -// -.expander { - -gtk-icon-source: -gtk-icontheme('pan-end-symbolic'); - &:dir(rtl) { -gtk-icon-source: -gtk-icontheme('pan-end-symbolic-rtl'); } - &:hover { color: lighten($fg_color,30%); } //only lightens the arrow - &:checked { -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); } -} - -// -// Calendar -// -GtkCalendar { - color: $fg_color; - border: 1px solid $borders_color; - border-radius: 3px; - padding: 2px; - - &:selected { - background-color: $selected_bg_color; - color: $selected_fg_color; - border-radius: 1.5px; - } - &.header { - color: $fg_color; - border: none; - border-radius: 0; - } - &.button, &.button:focus { - color: transparentize($fg_color,0.55); - @include button(undecorated); - - &:hover { - color: $fg_color; - } - &:insensitive { - color: $insensitive_fg_color; - background-color: transparent; - background-image: none; - } - } - &.highlight { color: gtkalpha(currentColor,0.55); } -} - -// -// Dialogs -// -.message-dialog .dialog-action-area .button { - padding: 8px; -} - -.message-dialog { // Message Dialog styling - -GtkDialog-button-spacing: 0; - - .titlebar { background-color: $header_bg; border-bottom: 1px solid darken($header_bg, 7%) } - - &.csd { // rounded bottom border styling for csd version - &.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; - } - .dialog-action-area .button { - padding: 8px; - border-radius: 0; - - @extend %middle_button; - - &:hover, &:active, &:insensitive { - @extend %middle_button; - } - - &:first-child{ @extend %first_button; } - &:last-child { @extend %last_button; } - } - %middle_button { - border-right-style: none; - border-bottom-style: none; - } - %last_button { - border-bottom-right-radius: 3px; - } - %first_button { - border-left-style: none; - border-bottom-left-radius: 3px; - } - } -} - -GtkFileChooserDialog { - .search-bar { - background-color: $bg_color; - border-color: $borders_color; - box-shadow: none; - } - .dialog-action-box { - border-top: 1px solid $borders_color; - } -} - -// -// Sidebar -// -.sidebar { - border: none; - background-color: lighten($bg_color, 2%); - - .scrollbar { - &.trough { - background-color: transparent; - border-width: 2px; - border-color: transparent; - } - } - &:selected { - background-color: $selected_bg_color; - } -} - -// Places sidebar is a special case, since the view here have to look like chrome not content, so we override text color -GtkPlacesSidebar.sidebar .view { - - color: $fg_color; - background-color: transparent; - - &:selected { - color: $selected_fg_color; - background-color: $selected_bg_color; - } - - &.separator { @extend .separator; } -} - -.sidebar-item { - padding: 10px 4px; - > GtkLabel { - padding-left: 6px; - padding-right: 6px; - } - &.needs-attention > GtkLabel { - @extend %needs_attention; - background-size: 6px 6px, 0 0; - } -} - -// -// Paned -// -GtkPaned { - // This is actually the invisible area of the paned separator, not a margin... - margin: 0 8px 8px 0; //drag area of the separator - &:dir(rtl) { - margin-right: 0; - margin-left: 8px; - } -} - -.pane-separator { - //FIXME abusing a background-image to get rid of the handle decoration - //I'd like something better... - background-image: linear-gradient(to bottom, $borders_color); -} - -// -// GtkInfoBar -// -GtkInfoBar { - border-style: none; - - .button { @extend %selected-button } -} - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: $selected_bg_color; - color: $selected_fg_color; -} - - -// -// Buttons on selected backgrounds -// -%selected-button { - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - background-color: transparentize($selected_fg_color, 1); - border-color: transparentize($selected_fg_color, 0.5); - - &.flat { - @include button(undecorated); - color: $selected_fg_color; - background-color: transparentize($selected_fg_color, 1); - } - &:hover { - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - background-color: transparentize($selected_fg_color, 0.8); - border-color: transparentize($selected_fg_color, 0.2); - } - &:active, &:active:hover, &:checked { - color: $selected_bg_color; - outline-color: transparentize($selected_bg_color, 0.7); - background-color: $selected_fg_color; - border-color: $selected_fg_color; - } - &:insensitive { - color: transparentize($selected_fg_color, 0.6); - background-color: transparentize($selected_fg_color, 1); - border-color: transparentize($selected_fg_color, 0.8); - - &:active, &:checked { - color: transparentize($selected_bg_color, 0.6); - background-color: transparentize($selected_fg_color, 0.8); - border-color: transparentize($selected_fg_color, 0.8); - } - } -} - -// -// Tooltips -// -.tooltip { - &.background { - // background-color needs to be set this way otherwise it gets drawn twice - // see https://bugzilla.gnome.org/show_bug.cgi?id=736155 for details. - background-color: lighten($osd_bg_color, 10%); - background-clip: padding-box; - } - - color: $osd_fg_color; - border-radius: 2px; - - &.window-frame.csd { - background-color: transparent; - } -} - -.tooltip * { //Yeah this is ugly - padding: 4px; - background-color: transparent; - color: inherit; // just to be sure -} - -// -// Color Chooser -// - -GtkColorSwatch { - border: none; - box-shadow: inset 0 1px 1px transparentize(black, 0.6); - - &.color-light { - &:hover { - background-image: linear-gradient(to bottom, - transparentize(white, 0.6)); - } - } - &.color-dark { - &:hover { - background-image: linear-gradient(to bottom, - transparentize(white, 0.8)); - } - } - - &:hover { - border-color: transparentize(black, 0.5); - } - - &.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - } - &.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - } - &.left, &:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - } - &.right, &:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - } - &:only-child { - border-radius: 3px; - } - &.color-active-badge { - border-width: 2px; - &:hover { background-image: none; } - &.color-light, &.color-light:hover { - color: transparentize(black,0.7); - border-color: transparentize(black,0.7); - } - &.color-dark, &.color-dark:hover { - color: transparentize(white,0.5); - border-color: transparentize(white,0.5); - } - } -} -GtkColorChooserWidget #add-color-button { - border-color: mix($borders_color,$bg_color,50%); - background-color: mix($borders_color,$bg_color,50%); - color: $bg_color; - box-shadow: none; - &:hover { - border-color: $borders_color; - background-color: $borders_color; - } -} - -GtkColorButton.button { - padding: 5px; // Uniform padding on the GtkColorButton - - GtkColorSwatch { border-radius: 0; } -} - -// -// Misc -// -.scale-popup .button { // +/- buttons on GtkVolumeButton popup - padding: 6px; - &:hover { - @include button(hover); - } -} - -GtkVolumeButton.button { padding: 8px; } - -// Decouple the font of context menus from their entry/textview -.touch-selection, -.context-menu { font: initial;} - -.monospace { font: Monospace; } - -// -// Overshoot -// -// This is used by GtkScrolledWindow, when content is touch-dragged past boundaries. -// This draws a box on top of the content, the size changes programmatically. -.overshoot { - &.top { @include overshoot(top); } - &.bottom { @include overshoot(bottom); } - &.left { @include overshoot(left); } - &.right { @include overshoot(right); } -} - -// -// Undershoot -// -// Overflow indication, works similarly to the overshoot, the size if fixed tho. -.undershoot { - &.top { @include undershoot(top); } - &.bottom { @include undershoot(bottom); } - &.left { @include undershoot(left); } - &.right { @include undershoot(right); } -} - -// -// Window Decorations -// - -.window-frame { - border-radius: if($darker=='false' and $variant=='light', 4px 4px 0 0, 3px 3px 0 0); - border-width: 0px; - - $_wm_border: if($variant=='light', transparentize(black, 0.9), transparentize(black, 0.45)); - - box-shadow: 0 0 0 1px if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), $_wm_border), - 0 8px 8px 0 if($variant == 'light', opacify($_wm_border, 0.1), transparentize($_wm_border, 0.2)); - - // this is used for the resize cursor area - margin: 10px; - - &:backdrop { - box-shadow: 0 0 0 1px if($darker=='true' or $variant == 'dark', transparentize(darken($header_bg, 7%), 0.1), $_wm_border), - 0 5px 5px 0 if($variant == 'light', opacify($_wm_border, 0.1), transparentize($_wm_border, 0.2)); - } - &.tiled { - border-radius: 0; - } - &.popup { - box-shadow: none; - border-radius: 0; - } - &.csd { - &.popup, &.menu { - border-radius: 2px; - box-shadow: 0 3px 6px if($variant == 'light', $_wm_border, transparentize($_wm_border, 0.1)), - 0 0 0 1px if($variant == 'light', $_wm_border, darken($bg_color, 10%)); - } - &.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px if($variant == 'light', $_wm_border, transparentize($_wm_border, 0.3)); - } - &.message-dialog { border-radius: 3px; } - } -} - -// -// Titlebuttons -// - -.header-bar, .titlebar, -.header-bar.selection-mode, .titlebar.selection-mode { - - &.default-decoration .button.titlebutton { // no vertical padding for ssd buttons - padding-top: 0px; // already handled by the titlebar-padding - padding-bottom: 0px; - } - - .button.titlebutton { - @extend .image-button; - padding: 8px 4px; - - @include button(undecorated); - background-color: transparentize($header_bg, 1); - border-color: transparentize($header_bg, 1); - - color: transparent; - background-position: center; - background-repeat: no-repeat; - - &:backdrop { opacity: 1; } - } - - // Minimize - - .right .button.titlebutton:nth-last-child(3), - .right:dir(rtl) .button.titlebutton:nth-child(3), - .left .button.titlebutton:nth-child(3), - .left:dir(rtl) .button.titlebutton:nth-last-child(3) { - background-image: -gtk-scaled(url('assets/titlebutton-minimize#{$darker_asset_suffix}.png'),url('assets/titlebutton-minimize#{$darker_asset_suffix}@2.png')); - - &:hover, &:backdrop:hover { background-image: -gtk-scaled(url('assets/titlebutton-minimize-hover#{$darker_asset_suffix}.png'),url('assets/titlebutton-minimize-hover#{$darker_asset_suffix}@2.png')); } - &:active:hover { background-image: -gtk-scaled(url('assets/titlebutton-minimize-active#{$darker_asset_suffix}.png'),url('assets/titlebutton-minimize-active#{$darker_asset_suffix}@2.png')); } - &:backdrop { background-image: -gtk-scaled(url('assets/titlebutton-minimize-backdrop#{$darker_asset_suffix}.png'),url('assets/titlebutton-minimize-backdrop#{$darker_asset_suffix}@2.png')); } -} - - // Maximize - - .right .button.titlebutton:nth-last-child(2), - .right:dir(rtl) .button.titlebutton:nth-child(2), - .left .button.titlebutton:nth-child(2), - .left:dir(rtl) .button.titlebutton:nth-last-child(2) { - background-image: -gtk-scaled(url('assets/titlebutton-maximize#{$darker_asset_suffix}.png'),url('assets/titlebutton-maximize#{$darker_asset_suffix}@2.png')); - - &:hover, &:backdrop:hover { background-image: -gtk-scaled(url('assets/titlebutton-maximize-hover#{$darker_asset_suffix}.png'),url('assets/titlebutton-maximize-hover#{$darker_asset_suffix}@2.png')); } - &:active:hover { background-image: -gtk-scaled(url('assets/titlebutton-maximize-active#{$darker_asset_suffix}.png'),url('assets/titlebutton-maximize-active#{$darker_asset_suffix}@2.png')); } - &:backdrop { background-image: -gtk-scaled(url('assets/titlebutton-maximize-backdrop#{$darker_asset_suffix}.png'),url('assets/titlebutton-maximize-backdrop#{$darker_asset_suffix}@2.png')); } -} - - // Close - - .right .button.titlebutton:last-child, - .right:dir(rtl) .button.titlebutton:first-child, - .left .button.titlebutton:first-child, - .left:dir(rtl) .button.titlebutton:last-child { - background-image: -gtk-scaled(url('assets/titlebutton-close#{$darker_asset_suffix}.png'),url('assets/titlebutton-close#{$darker_asset_suffix}@2.png')); - - &:hover, &:backdrop:hover { background-image: -gtk-scaled(url('assets/titlebutton-close-hover#{$darker_asset_suffix}.png'),url('assets/titlebutton-close-hover#{$darker_asset_suffix}@2.png')); } - &:active:hover { background-image: -gtk-scaled(url('assets/titlebutton-close-active#{$darker_asset_suffix}.png'),url('assets/titlebutton-close-active#{$darker_asset_suffix}@2.png')); } - &:backdrop { background-image: -gtk-scaled(url('assets/titlebutton-close-backdrop#{$darker_asset_suffix}.png'),url('assets/titlebutton-close-backdrop#{$darker_asset_suffix}@2.png')); } - } -} - -// Fallback menubutton -.header-bar, .titlebar { - .left GtkMenuButton.button.titlebutton:first-child, - .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child, - &.selection-mode .left GtkMenuButton.button.titlebutton:first-child, - &.selection-mode .left:dir(rtl) GtkMenuButton.button.titlebutton:last-child { - - padding: 4px 6px 4px 6px; - color: $header_fg; - - &, &:hover, &:active:hover, - &:backdrop, &:backdrop:hover { - background-image: none; - background-color: transparentize($header_bg, 1); - border-color: transparentize($header_bg, 1); - } - - &:hover, &:backdrop:hover { @include button(header-hover); } - &:active:hover, &:checked { @include button(header-active); } - } -} - -// catch all extend -%selected_items { - background-image: none; - background-color: $selected_bg_color; - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); -} diff --git a/common/gtk-3.0/3.14/sass/_drawing.scss b/common/gtk-3.0/3.14/sass/_drawing.scss deleted file mode 100644 index 36a5f36..0000000 --- a/common/gtk-3.0/3.14/sass/_drawing.scss +++ /dev/null @@ -1,366 +0,0 @@ -// Drawing mixins - -// Entries - -@mixin entry($t) { -// -// Entries drawing function -// -// $t: entry type -// - - @if $t==normal { - // - // normal entry - // - color: $text_color; - border-color: $entry_border; - background-color: $entry_bg; - background-image: linear-gradient(to bottom, $entry_bg); - } - - @if $t==focus { - // - // focused entry - // - color: $text_color; - border-color: if($variant=='light', $selected_bg_color, $button_border); - background-color: $entry_bg; - background-image: linear-gradient(to bottom, $entry_bg); - - @if $variant == 'dark' { - box-shadow: inset 1px 0 $selected_bg_color, - inset -1px 0 $selected_bg_color, - inset 0 1px $selected_bg_color, - inset 0 -1px $selected_bg_color; - } - } - - @if $t==insensitive { - // - // insensitive entry - // - color: $insensitive_fg_color; - border-color: transparentize($entry_border, 0.45); - background-color: transparentize($entry_bg, 0.45); - background-image: linear-gradient(to bottom, transparentize($entry_bg, 0.45)); - } - - @if $t==header-normal { - // - // normal header-bar entry - // - - color: $header_fg; - border-color: $header_entry_border; - background-image: linear-gradient(to bottom, $header_entry_bg); - background-color: transparent; - - &.image, &.image:hover { color: inherit; } - } - - @if $t==header-focus { - // - // focused header-bar entry - // - color: $selected_fg_color; - border-color: if($darker=='false' and $variant=='light', $selected_bg_color, transparent); - background-image: linear-gradient(to bottom, $selected_bg_color); - } - - @if $t==header-insensitive { - // - // insensitive header-bar entry - // - color: transparentize($header_fg, 0.45); - background-image: linear-gradient(to bottom, transparentize($header_entry_bg, 0.15)); - } - - @else if $t==osd { - // - // normal osd entry - // - color: $osd_fg_color; - border-color: $osd_entry_border; - background-image: linear-gradient(to bottom, $osd_entry_bg); - background-color: transparent; - - &.image, &.image:hover { color: inherit; } - } - - @else if $t==osd-focus { - // - // active osd entry - // - color: $selected_fg_color; - border-color: $osd_entry_border; - background-image: linear-gradient(to bottom, $selected_bg_color); - } - - @else if $t==osd-insensitive { - // - // insensitive osd entry - // - color: transparentize($osd_fg_color, 0.45); - background-image: linear-gradient(to bottom, transparentize($osd_entry_bg, 0.15)); - } -} - -// Buttons - -@mixin button($t, $actionb_bg:red, $actionb_fg: green) { -// -// Button drawing function -// -// $t: button type, -// $actionb_bg, $actionb_fg: used for destructive and suggested action buttons - - @if $t==normal { - // - // normal button - // - color: $fg_color; - outline-color: transparentize($fg_color, 0.7); - border-color: $button_border; - background-color: $button_bg; - } - - @else if $t==hover { - // - // hovered button - // - color: $fg_color; - outline-color: transparentize($fg_color, 0.7); - border-color: $button_border; - background-color: lighten($button_bg, 5%); - } - - @else if $t==active { - // - // pushed button - // - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - - border-color: if($variant=='light', $selected_bg_color, $button_border); - background-color: $selected_bg_color; - } - - @else if $t==insensitive { - // - // insensitive button - // - color: $insensitive_fg_color; - border-color: transparentize($button_border, 0.45); - background-color: transparentize($button_bg, 0.45); - - > GtkLabel { color: inherit; } - } - - @else if $t==insensitive-active { - // - // insensitive pushed button - // - color: transparentize($selected_fg_color, 0.2); - border-color: transparentize($selected_bg_color, 0.25); - background-color: transparentize($selected_bg_color, 0.25); - - opacity: 0.6; - - > GtkLabel { color: inherit; } - } - - @if $t==header-normal { - // - // normal header-bar button - // - color: $header_fg; - outline-color: transparentize($header_fg, 0.7); - outline-offset: -3px; - background-color: transparentize($header_bg, 1); - border-color: transparentize($header_bg, 1); - } - - @else if $t==header-hover { - // - // hovered header-bar button - // - color: $header_fg; - outline-color: transparentize($header_fg, 0.7); - border-color: $header_button_border; - background-color: $header_button_bg; - } - - @else if $t==header-active { - // - // pushed header-bar button - // - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - border-color: if($darker=='false' and $variant=='light', $selected_bg_color, transparent); - background-color: $selected_bg_color; - } - - @else if $t==header-insensitive { - // - // insensitive header-bar button - // - color: transparentize($header_fg, 0.45); - background-color: transparentize($header_bg, 1); - border-color: transparentize($header_bg, 1); - - > GtkLabel { color: inherit; } - } - - @else if $t==header-insensitive-active { - // - // header-bar insensitive pushed button - // - color: transparentize($selected_fg_color, 0.25); - border-color: transparentize($selected_bg_color, 0.35); - background-color: transparentize($selected_bg_color, 0.35); - } - - @else if $t==osd { - // - // normal osd button - // - color: $osd_fg_color; - outline-color: transparentize($osd_fg_color, 0.7); - border-color: $osd_button_border; - background-color: $osd_button_bg; - } - - @else if $t==osd-hover { - // - // active osd button - // - color: $osd_fg_color; - outline-color: transparentize($osd_fg_color, 0.7); - border-color: $osd_button_border; - background-color: opacify(lighten($osd_button_bg, 7%), 0.1); - } - - @else if $t==osd-active { - // - // active osd button - // - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - border-color: $osd_button_border; - background-color: $selected_bg_color; - } - - @else if $t==osd-insensitive { - // - // insensitive osd button - // - color: $osd_insensitive_fg_color; - border-color: $osd_button_border; - background-color: transparentize($osd_button_bg, 0.15); - } - - @else if $t==suggested_destructive { - // - // suggested or destructive action buttons - // - background-clip: border-box; - - color: $actionb_fg; - outline-color: transparentize($actionb_fg, 0.7); - background-color: $actionb_bg; - border-color: $actionb_bg; - } - - @else if $t==undecorated { - // - // reset - // - border-color: transparent; - background-color: transparent; - background-image: none; - } -} - -// -// Overshoot -// -@mixin overshoot($p, $c:$selected_bg_color) { -// $p: position -// $c: base color -// -// possible $p values: -// top, bottom, right, left -// - - $_big_gradient_length: 60%; - - $_position: center top; - $_big_gradient_size: 100% $_big_gradient_length; - - @if $p==bottom { - $_position: center bottom; - } - - @else if $p==right { - $_position: right center; - $_big_gradient_size: $_big_gradient_length 100%; - } - - @else if $p==left { - $_position: left center; - $_big_gradient_size: $_big_gradient_length 100%; - } - - background-image: -gtk-gradient(radial, - $_position, 0, - $_position, 0.6, - from(transparentize($c, 0.8)), - to(transparentize($c, 1))); - - background-size: $_big_gradient_size; - background-repeat: no-repeat; - background-position: $_position; - - background-color: transparent; // reset some properties to be sure to not inherit them somehow - border: none; // - box-shadow: none; // -} - -// -// Undershoot -// -@mixin undershoot($p) { -// $p: position -// -// possible $p values: -// top, bottom, right, left -// - - $_undershoot_color_dark: transparentize(black, 0.8); - $_undershoot_color_light: transparentize(white, 0.8); - - $_gradient_dir: left; - $_dash_bg_size: 10px 1px; - $_gradient_repeat: repeat-x; - $_bg_pos: center $p; - - background-color: transparent; // shouldn't be needed, but better to be sure; - - @if ($p == left) or ($p == right) { - $_gradient_dir: top; - $_dash_bg_size: 1px 10px; - $_gradient_repeat: repeat-y; - $_bg_pos: $p center; - } - - background-image: linear-gradient(to $_gradient_dir, // this is the dashed line - $_undershoot_color_light 50%, - $_undershoot_color_dark 50%); - - padding-#{$p}: 1px; - background-size: $_dash_bg_size; - background-repeat: $_gradient_repeat; - background-origin: content-box; - background-position: $_bg_pos; -} diff --git a/common/gtk-3.0/3.14/sass/_granite.scss b/common/gtk-3.0/3.14/sass/_granite.scss deleted file mode 100644 index 8e3b35d..0000000 --- a/common/gtk-3.0/3.14/sass/_granite.scss +++ /dev/null @@ -1,218 +0,0 @@ -// Granite Widgets - -// -// Overlay Bar -// -.overlay-bar { - background-color: $selected_bg_color; - border-color: $selected_bg_color; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; - - GtkLabel { color: $selected_fg_color; } -} - -// -// Thin Pane Separator -// -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid $borders_color; - border-right: 1px solid $borders_color; - -} - -// avoid borders when a viewport is -// packed into a Static Notebook, or Popover -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; -} - -// -// Help Button -// -.help_button { - border-radius: 100px; - padding: 3px 9px; -} - -// -// Secondary Toolbars -// -.secondary-toolbar.toolbar { - padding: 3px; - border-bottom: 1px solid $borders_color; - - .button { padding: 0 3px 0 3px; } -} - -// -// Bottom Toolbars -// -.bottom-toolbar.toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: $borders_color; - background-color: $bg_color; - - .button { padding: 2px 3px 2px 3px; } -} - -// -// Sidebar & Source List -// -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; -} - -.source-list, -.source-list.view { - background-color: $bg_color; - color: $fg_color; - -gtk-icon-style: regular; -} - -.source-list.category-expander { - color: transparent; -} - -.source-list.view:prelight { - background-color: lighten($bg_color, 5%); -} - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: $selected_fg_color; - background-color: $selected_bg_color; -} - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: $bg_color; - background-image: none; -} - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: $selected_bg_color; - color: $selected_fg_color; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; -} - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: $selected_fg_color; - color: $selected_bg_color; -} - -// -// Expander -// -.source-list.category-expander { - color: $fg_color; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; -} - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; -} - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); -} - -// -// Welcome -// -GraniteWidgetsWelcome { - background-color: $base_color; -} - -GraniteWidgetsWelcome GtkLabel { - color: mix($fg_color, $bg_color, 50%); - font: open sans 11; - text-shadow: none; -} - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: transparentize($fg_color, 0.2); -} - -// -// Help Button -// -.help_button { - border-radius: 0; -} - -// -// Popover -// -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - - border: 1px solid transparentize(black, 0.7); - margin: 0; -} - -.popover_bg { - background-image: linear-gradient(to bottom, $base_color); - border: 1px solid transparentize(black, 0.7); -} - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; -} - -// -// Xs Entry -// -GraniteWidgetsXsEntry.entry { padding: 4px; } - -// -// Text Styles -// -.h1 { font: open sans 24px; } -.h2 { font: open sans light 18px; } -.h3 { font: open sans 11px; } -.h4, -.category-label { - color: mix($bg_color, $text_color, 30%); - font-weight: 600; -} - -.h4 { - padding-bottom: 6px; - padding-top: 6px; -} - -GtkListBox .h4{ - padding-left: 6px; -} diff --git a/common/gtk-3.0/3.14/sass/_lightdm.scss b/common/gtk-3.0/3.14/sass/_lightdm.scss deleted file mode 100644 index bb7214a..0000000 --- a/common/gtk-3.0/3.14/sass/_lightdm.scss +++ /dev/null @@ -1,113 +0,0 @@ -// the panel widget at the top -#panel_window { - background-color: $panel_bg; - color: $panel_fg; - font: bold; - box-shadow: inset 0 -1px darken($panel_bg, 7%); - - // the menubars/menus of the panel, i.e. indicators - .menubar { - padding-left: 5px; - - &, > .menuitem { - background-color: transparent; - color: $panel_fg; - font: bold; - } - } - - .menubar .menuitem:insensitive { - color: transparentize($panel_fg, 0.5); - - GtkLabel { color: inherit; } - } - .menubar .menu .menuitem { font: normal; } -} - -// the login window -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: $fg_color; -} - -// the top half of the login-window, in GtkDialog terms, the content -#content_frame { - padding-bottom: 14px; - background-color: $bg_color; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid transparentize(black, 0.9); - border-width: 1px 1px 0 1px; -} - -#content_frame .button { - @include button(normal); - - &:hover { @include button(hover); } - &:active, &:checked { @include button(active); } - &:insensitive { @include button(insensitive); } -} - -// the lower half of the login-window, in GtkDialog terms the buttonbox or action area -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: if($variant=='light', $osd_bg_color, $header_bg); - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid transparentize(black, 0.9); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px if($variant=="light", $dark_sidebar_border, $header_border); -} - -#buttonbox_frame .button{ - @include button(osd); - - &:hover { @include button(osd-hover); } - &:active, &:checked { @include button(osd-active); } - &:insensitive { @include button(osd-insensitive); } -} - -#login_window #user_combobox { - color: $fg_color; - font: 13px; - - .menu { font: normal; } - .arrow {} -} - -// the user's avatar box -#user_image { - padding: 3px; - border-radius: 2px; -} - -// the border around the user's avatar box -#user_image_border {} - -// the shutdown button -#shutdown_button.button { - @include button(suggested_destructive, $destructive_color); - - &:hover { @include button(suggested_destructive, lighten($destructive_color, 10%)); } - &:active, &:checked { @include button(suggested_destructive, darken($destructive_color, 10%)); } -} - -// the restart button -#restart_button.button { - @include button(suggested_destructive, $suggested_color); - - &:hover { @include button(suggested_destructive, lighten($suggested_color, 10%)); } - &:active, &:checked { @include button(suggested_destructive, darken($suggested_color, 10%)); } -} - -// the warning, in case a wrong password is entered or something else goes wrong according to PAM -#greeter_infobar { - border-bottom-width: 0; - font: bold; -} diff --git a/common/gtk-3.0/3.14/sass/_transparent_widgets.scss b/common/gtk-3.0/3.14/sass/_transparent_widgets.scss deleted file mode 100644 index 90b4a2e..0000000 --- a/common/gtk-3.0/3.14/sass/_transparent_widgets.scss +++ /dev/null @@ -1,249 +0,0 @@ -.titlebar .separator { - color: $header_border; //fixes separator in gnome-tweak-tool -} - -NemoWindow GtkEventBox { background-color: $bg_color; } // fixes nemo statusbar - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; -} - -@if $variant==dark { - GtkFileChooserDialog, - NautilusWindow , - NemoWindow { - .sidebar { border-right: 1px solid $dark_sidebar_border; } - - .sidebar:dir(rtl) { border-left: 1px solid $dark_sidebar_border; } - } -} - -// Dark transparent sidebars -NautilusWindow GtkBox.sidebar { background-color: transparent; } - -GtkFileChooserDialog, -NautilusWindow, -NemoWindow, -MarlinViewWindow { - - &.csd.background, - .source-list, .source-list.view, .source-list.view:prelight { background-color: transparent; } - - .sidebar, MarlinPlacesSidebar { - background-color: $dark_sidebar_bg; - - .view, .source-list.sidebar row { - background-color: transparent; - color: $dark_sidebar_fg; - - &.image { color: transparentize($dark_sidebar_fg, 0.3); } - - &.cell:selected { - background-color: $selected_bg_color; - color: $selected_fg_color; - } - } - - &.frame { color: $dark_sidebar_fg; } - - .separator { color: transparent; } - - .scrollbar { @extend %dark_sidebar_scrollbar } - } - &.maximized .sidebar { background-color: opacify($dark_sidebar_bg, 1); } -} - -GtkFileChooserDialog .pane-separator, -NautilusWindow .pane-separator, -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator {background-color: $dark_sidebar_border} - -// Fix Nautilus transparency issues -NautilusWindow NautilusWindowSlot { background-color: $base_color; } -NautilusDesktopWindow NautilusWindowSlot { background-color: transparent; } - -GtkFileChooserDialog { - - &.background.csd, &.background { background-color: $dark_sidebar_bg } - .sidebar { background-color: transparent } - - // Yeah, this is ugly, but prevents a transparent background in the image preview box - GtkPaned > .vertical > .horizontal { background-color: $bg_color; } - - // fix for non gnome environments - .dialog-action-box { background-color: $bg_color } - - .dialog-vbox > .frame { - color: $dark_sidebar_fg; - border-color: transparent; - } - .action-bar.frame { - background-color: transparent; - border-color: if($variant =='light', darken($dark_sidebar_bg, 5%), darken($dark_sidebar_bg, 10%)); - } - - .action-bar.frame, - .dialog-vbox > .frame { - - .button { @extend %dark_sidebar_button; } - .entry { @extend %dark_sidebar_entry; } - - @extend %osd_check_radio; - - GtkLabel, GtkComboBox { color: $dark_sidebar_fg; } - } -} - -// -// Paned Headerbars -// -FeedReaderreaderUI.background.csd, -GeditWindow.background.csd { - - > .titlebar .pane-separator, - &.maximized > .titlebar .pane-separator, - > .titlebar .pane-separator:backdrop, - &.maximized > .titlebar .pane-separator:backdrop { background-color: $header_border; } - - > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: $header_bg; - - &:backdrop { background-color: $header_bg_backdrop; } - } - - &.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: opacify($header_bg, 1); - - &:backdrop { background-color: opacify($header_bg_backdrop, 1); } - } -} - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; -} - -// Gedit -GeditWindow.background { - &.csd { background-color: transparent; } - - .gedit-side-panel-paned .pane-separator { background-color: $dark_sidebar_border; } - .gedit-bottom-panel-paned .pane-separator { background-color: $borders_color; } - - > .titlebar.default-decoration, - > .titlebar.default-decoration:backdrop { background-color: opacify($header_bg, 1); } // fix for elementary OS -} - -.gedit-bottom-panel-paned { background-color: $base_color; } - -.gedit-document-panel { - background-color: $dark_sidebar_bg; - - .maximized & { background-color: opacify($dark_sidebar_bg, 1); } - - .list-row { color: $dark_sidebar_fg; } - - .list-row { - background-color: transparentize($dark_sidebar_fg, 1); - border: solid transparentize($dark_sidebar_fg, 1); - border-width: 3px 2px 3px 2px; - } - .list-row:hover { - border: solid transparentize($dark_sidebar_fg, 0.85); - border-width: 3px 2px 3px 2px; - background-color: transparentize($dark_sidebar_fg, 0.85); - } - .list-row:active { - color: $selected_fg_color; - background-color: $selected_bg_color; - border: solid $selected_bg_color; - border-width: 3px 2px 3px 2px; - - .button { color: $selected_fg_color; } - } - .list-row:selected, .list-row:selected:hover { - color: $selected_fg_color; - background-color: $selected_bg_color; - border: solid $selected_bg_color; - border-width: 3px 2px 3px 2px; - } - .prelight-row .button:active { - color: $dark_sidebar_fg; - } -} - -GeditFileBrowserWidget { - background-color: $dark_sidebar_bg; - - .maximized & { background-color: opacify($dark_sidebar_bg, 1); } - - .scrollbar { @extend %dark_sidebar_scrollbar } - - .scrollbars-junction, - .scrollbars-junction.frame { - border-color: transparent; - background-color: transparent; - } - - .horizontal { - background-color: transparent; - border-color: darken($dark_sidebar_bg, 7%); - - .button { @extend %dark_sidebar_button; } - GtkComboBox { color: $dark_sidebar_fg; } - } -} - -GeditWindow.background.csd GeditFileBrowserView.view { - - background-color: transparent; - color: $dark_sidebar_fg; - - &.expander { - color: $dark_sidebar_fg; - &:hover { color: $selected_bg_color; } - } -} - -%dark_sidebar_button { - @include button(osd); - - &:hover { @include button(osd-hover); } - &:active, &:checked { @include button(osd-active); } - &:insensitive { @include button(osd-insensitive); } -} - -%dark_sidebar_entry { - @include entry(osd); - - &:focus { @include entry(osd-focus); } - &:insensitive { @include entry(osd-insensitive); } -} - -%dark_sidebar_scrollbar { - - &.trough { background-color: transparent; border-color: transparent; } - - &.slider { - border-radius: 20px; - border: 3px solid transparent; - background-color: transparentize(lighten($dark_sidebar_fg, 15%), 0.3); - &:hover { - background-color: lighten($dark_sidebar_fg, 20%); - } - &:prelight:active { - background-color: $selected_bg_color; - } - &.fine-tune { - border-width: 4px; - &:prelight:active { - background-color: $selected_bg_color; - } - } - &:insensitive { - background-color: transparent; - } - } -} diff --git a/common/gtk-3.0/3.14/sass/_unity.scss b/common/gtk-3.0/3.14/sass/_unity.scss deleted file mode 100644 index 501d480..0000000 --- a/common/gtk-3.0/3.14/sass/_unity.scss +++ /dev/null @@ -1,159 +0,0 @@ -// Decorations -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: $selected_bg_color; - - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; - - &.top { - border: 1px solid if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), transparentize(black, 0.9)); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - - background-image: linear-gradient(to bottom, opacify($header_bg, 1)); - color: $header_fg; // The foreground color will be used to paint the text - - box-shadow: inset 0 1px lighten($header_bg, 3%); - - &:backdrop { - border-bottom-width: 0; - //background-image: linear-gradient(to bottom, opacify($header_bg_backdrop, 1)); - color: transparentize($header_fg, 0.3); - } - } - &.left, &.right, &.bottom, - &.left:backdrop, &.right:backdrop, &.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), transparentize(black, 0.9))); - } -} - -// Panel Style -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: lighten($panel_fg, 20%); - box-shadow: none; - - &:backdrop { color: lighten($panel_fg, 1%); } -} - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: $selected_fg_color; - background-image: linear-gradient(to bottom, $selected_bg_color); - border-bottom: none; -} - -// Unity Greeter -.lightdm.menu { - background-image: none; - background-color: transparentize(black, 0.6); - border-color: transparentize(white, 0.2); - border-radius: 4px; - padding: 1px; - color: white; -} - -.lightdm-combo .menu { - background-color: lighten($header_bg, 8); - border-radius: 0px; - padding: 0px; - color: white; -} - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; -} - -.lightdm.menubar { - color: transparentize(white, 0.2); - background-image: none; - background-color: transparentize(black, 0.5); - - & > .menuitem { - padding: 2px 6px; - } -} - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: transparentize(black, 0.7); - border-color: transparentize(white, 0.6); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; -} - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; -} - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: transparentize(white, 0.9); - border-width: 1px; - border-style: solid; - color: white; -} - -.lightdm.entry:selected { - background-color: transparentize(white, 0.2); -} - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; -} - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; -} - -.lightdm.toggle-button { - background: none; - border-width: 0; - - &.selected { - background-color: transparentize(black, 0.3); - border-width: 1px; - } -} - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); - } -} diff --git a/common/gtk-3.0/3.14/sass/gtk-dark.scss b/common/gtk-3.0/3.14/sass/gtk-dark.scss deleted file mode 100644 index 529ee3d..0000000 --- a/common/gtk-3.0/3.14/sass/gtk-dark.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'dark'; -$darker: 'false'; -$transparency: 'true'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.14/sass/gtk-darker.scss b/common/gtk-3.0/3.14/sass/gtk-darker.scss deleted file mode 100644 index 34b8f81..0000000 --- a/common/gtk-3.0/3.14/sass/gtk-darker.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'light'; -$darker: 'true'; -$transparency: 'true'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.14/sass/gtk-solid-dark.scss b/common/gtk-3.0/3.14/sass/gtk-solid-dark.scss deleted file mode 100644 index 959d8b1..0000000 --- a/common/gtk-3.0/3.14/sass/gtk-solid-dark.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'dark'; -$darker: 'false'; -$transparency: 'false'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.14/sass/gtk-solid-darker.scss b/common/gtk-3.0/3.14/sass/gtk-solid-darker.scss deleted file mode 100644 index 45b7dbe..0000000 --- a/common/gtk-3.0/3.14/sass/gtk-solid-darker.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'light'; -$darker: 'true'; -$transparency: 'false'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.14/sass/gtk-solid.scss b/common/gtk-3.0/3.14/sass/gtk-solid.scss deleted file mode 100644 index 28ff2b6..0000000 --- a/common/gtk-3.0/3.14/sass/gtk-solid.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'light'; -$darker: 'false'; -$transparency: 'false'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.14/sass/gtk.scss b/common/gtk-3.0/3.14/sass/gtk.scss deleted file mode 100644 index 9bb0348..0000000 --- a/common/gtk-3.0/3.14/sass/gtk.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'light'; -$darker: 'false'; -$transparency: 'true'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.16/assets.svg b/common/gtk-3.0/3.16/assets.svg deleted file mode 100644 index 7c8db61..0000000 --- a/common/gtk-3.0/3.16/assets.svg +++ /dev/null @@ -1,5965 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gtk-3.0/3.16/assets.txt b/common/gtk-3.0/3.16/assets.txt deleted file mode 100644 index a11af04..0000000 --- a/common/gtk-3.0/3.16/assets.txt +++ /dev/null @@ -1,84 +0,0 @@ -checkbox-checked -checkbox-checked-insensitive -checkbox-unchecked -checkbox-unchecked-insensitive -checkbox-mixed -checkbox-mixed-insensitive -radio-checked -radio-checked-insensitive -radio-unchecked -radio-unchecked-insensitive -radio-mixed -radio-mixed-insensitive -checkbox-checked-selected -checkbox-checked-insensitive-selected -checkbox-unchecked-selected -checkbox-unchecked-insensitive-selected -checkbox-mixed-selected -checkbox-mixed-insensitive-selected -checkbox-checked-selectionmode -checkbox-selectionmode -radio-checked-selected -radio-checked-insensitive-selected -radio-unchecked-selected -radio-unchecked-insensitive-selected -radio-mixed-selected -radio-mixed-insensitive-selected -switch -switch-active -switch-insensitive -switch-active-insensitive -switch-header -switch-active-header -switch-insensitive-header -switch-active-insensitive-header -switch-selected -switch-active-selected -switch-insensitive-selected -switch-active-insensitive-selected -titlebutton-close -titlebutton-close-backdrop -titlebutton-close-hover -titlebutton-close-active -titlebutton-maximize -titlebutton-maximize-backdrop -titlebutton-maximize-hover -titlebutton-maximize-active -titlebutton-minimize -titlebutton-minimize-backdrop -titlebutton-minimize-hover -titlebutton-minimize-active -checkbox-checked-dark -checkbox-checked-insensitive-dark -checkbox-unchecked-dark -checkbox-unchecked-insensitive-dark -checkbox-mixed-dark -checkbox-mixed-insensitive-dark -checkbox-checked-selectionmode-dark -checkbox-selectionmode-dark -radio-checked-dark -radio-checked-insensitive-dark -radio-unchecked-dark -radio-unchecked-insensitive-dark -radio-mixed-dark -radio-mixed-insensitive-dark -switch-dark -switch-active-dark -switch-insensitive-dark -switch-active-insensitive-dark -switch-header-dark -switch-active-header-dark -switch-insensitive-header-dark -switch-active-insensitive-header-dark -titlebutton-close-dark -titlebutton-close-backdrop-dark -titlebutton-close-hover-dark -titlebutton-close-active-dark -titlebutton-maximize-dark -titlebutton-maximize-backdrop-dark -titlebutton-maximize-hover-dark -titlebutton-maximize-active-dark -titlebutton-minimize-dark -titlebutton-minimize-backdrop-dark -titlebutton-minimize-hover-dark -titlebutton-minimize-active-dark diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-dark.png b/common/gtk-3.0/3.16/assets/checkbox-checked-dark.png deleted file mode 100644 index a2fd5a91697a611ad6ad03e9a8a1600527a87038..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 360 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(T7XZ8 zE09*}xun*0Nwxd3TK6R=YB{dfdP1%3lv?{4wa#-uLG_&Z>P0KmE4QduZBwt^tzNfB zz44HG#~Cd{8!bayEh}#=D<3V}04>`kACCBE&ER_dRAYQ$`F%1g7)Et^_rs#ov))!4Ko mclAWB^Y>rs7}#{quV<_g=89tV-`EGVjKR~@&t;ucLK6VHk8`&G diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-checked-dark@2.png deleted file mode 100644 index 949c3696e63efaa6c6272bba30f74e7834a2f84c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 487 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ET>(BJ zu0Wb$)hdUE{c3#|R5~wew4Yb&zogoINxkc`diQ0uo{MVTm%!+yZu~BeoN0Rzp?sNv18lxoQpYsj~?99f7s^s1(`hzn{s!|Kh(>=0 zWfw$T&Yx$~6?%XAk>84TBAb`Zd=WP1+S+$PIj7yq_vn3jljb9l&o7wXW|zPDo5kY2 TrE}*4J;31U>gTe~DWM4fh1tK6 diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark.png b/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark.png deleted file mode 100644 index 423046a6a0639ace67bf9c4d0ac1abfc9cf371fb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 369 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(RDe&2 zE09*}xun{8R<-}Kde0^G?n`Rf^VEu0s8wuHtJRhIVEXmh1$YE>{xd7tElc zsaaFog9E&)Hqr;GjQ4bL43P-W?f2wsP~c(EZc@_92)y&*|NSoxiUM?83(oF@gQ^^n-V{bvv%_IQ_WXHSyNDnKmqM{}i$=pLntI(~gjRWg6$TI#WIV h*v?IDHUIkD{{L-WjW0QF^+2l_JYD@<);T3K0RZb6gDU_4 diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-dark@2.png deleted file mode 100644 index 2a982990ce17180cbdd274d916ebfea9e65b9502..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 502 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Ebpbvh zu0Wch0SNvpb(~S^xU1c8Or!0jTF(`=&I@XNS5><&s)5jDwXQ2_xeL^aSE$wPQLEdl z*05i#^@Ljc8MUs98u9HKNs~0vrfOu(*2tc#k-to%bhVbDjh2sWZ3741*}IzX!=$S;_IiHV-DpW0v#Bi&o}Wc0|#I~!Wh>dZS@dHa>%QOD~q5^Y)vFZ6SYe-q$5cc+q3d5VqNucs?`f$nGUboFyt I=akR{0P+#RTL1t6 diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-selected.png b/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-selected.png deleted file mode 100644 index 36f2199386b77b3af29730bd2b2a5d6a3591f59c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 386 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(T7XZ8 zE0F&G>DkZE5B~pr_V@dvzh55#Nwuzv8a)@adM@kqT(p^b*=G7>yXlvmXI^%lec5l` z)qn+8BbQx`UUoHh#q}*0?;N~&@8Y8emml4``sBf#XAkZ@fAsA2qxbJ0efsd|%ZEol zK0W#S?TOg=%;i9vluCm9f*CY4HEU{XdvJqG=ezxYsuMh29780+bI(WeH7M|~1h{N? z_q(rQ?|)TQMoyRK`Ei%Fs6Lr&;wQp8nHueV+8O2cOHWcw1EOKbN0yKy(vp*A!i#T@0SCelF{r5}E)( C0Io;? diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-selected@2.png b/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive-selected@2.png deleted file mode 100644 index 55cc55f4cd47d14b2a6b69df0b16087ab41db77f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 490 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)E)d4;s zu0Z-f5WKq!#Q#5D{r~Cu|6h-OeS7@>*JB|0_d5uwbzRixxv151S*P!!{)CH$lP=p# zz3epeviIDpAq%dCEV`Pw^6I36w-=naz3kMT^%w4Jyl`jR#XEbh-Z^;l-tpV_?mT;N z@7aS#&mTQ{`RM)oNAEv8`tsq?-)~Q5UW;o0TCZ6WUoih&CeAsLgiB}kF8vHUPWq|#SzOtovUAqT(2xUw)0f$2|bDHUPnKfJqUlS z@gQxphEM9^hVNNhB{Uv1U&zyb@Z9hBt)Pl6_jI@FUCXo9-MGvytjoXR{8ahn^Oo%W z|JYHny6vQKm&!qlSM0Wa?%&<+`yaXEe?;TsbKX_K35=oYp^QLxGkCiCxvXPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE09*}xun{8R<-}Kde0^G?n`Q27j^nB>QA_AIO($Kq{}u_FT2jZ>^}FZ@4Tx43$7-u zyq>%M=JDJ2PTaY7@zI0Jj~?86{^;4uN6%hA`tjw-uWyfjeS7lv+mk&qy>oy@%a#QB z1v6-9YSz^DUIt@7wZEU{1Fd54boFyt=akR{0H<`8D*ylh diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive@2.png b/common/gtk-3.0/3.16/assets/checkbox-checked-insensitive@2.png deleted file mode 100644 index 89045dee464b3a946cf4f3e7178e4f8c02e6778e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 502 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EjR8I( zu0Wch0SNvpb(~S^xU1c8Or!0jTF(`=&I@XNS5><&s)5jDwXQ2_T^IEyTsEC_*=hP^ zrsXJ3t7b~S0`^^DawbJyQ2-gvWg^UazqH=B3ep0NM+;hXm^+`D(-!GoJm9z1&f z=-KN>&tE_K@Zr&?50Acldi3MdlV9H+{r>jk@3$w}2U-<@ZqP0X@(X5QV&dl)5;iq6 zGjC{U?7;`PI*+#kwQcZpaSYKozxMJ?p(X_pwge7eUB#*2Y;V8W^Pib*7H@}p+N^)K z^V^>4wEQsUI_Af8>s3qlybn(nGkLC=TGSIG_Z#H1Jk9>QJNtg)5w`2PTy;gbXK~tv$6NR>uZR^sbw@R6%8$=%0#o%uH!3_g P2Zg(*tDnm{r-UW|q9^Cz diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-selected.png b/common/gtk-3.0/3.16/assets/checkbox-checked-selected.png deleted file mode 100644 index 82e8ca00f493b364db3c63cae0b327f18b562911..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 363 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(W`IwK zE0F&4^)VPd`TOlL1gUjj(&)LQ*>hRD_mb_jE4I_G*iFCUJoAd{tSkQWuLdr-8nyIV z^s;NQ%dc;}bobzmdzT(Qxcu<`wZ{+cJbQ5O`NL7XgpFTYL^6}A+&md## zGxLFVF|d~e`2{n0dU-#3{3P0Z%?hAUqNj^vh(vg9|4F_E1s<2xO*`IOYu)(&--BOa z;lc9R(|wk)a(D!le2`$Us4`%1Xwv`U)GGJ+r|>JsE0b3&6%D_6-%NU8)J0yk+ox`F t1bWt|YHyl*PEI@M;SX!uZ#>Zuoc5!lIL8@MUQTpt6Hc~)Ey#YQU zu0Z-f1bln^|J#%Q-|zqb@$k?0M_}~$&)3I)zd?~&_a*i2OBy|wG(Afac;W80OLzBN zyL<4)y<@lT-+lJr-m?dfUOasC^5OgUkKTWH^yT9tphe}jg-?JE;wuUA3ua(uk(Nj%TBQrACso-%0re!S{+J)}BfTd39k z;Q6!kitH}d&(nK&(yEr+qAXP8FD1G)j8!4co>Hwb* zS0Js{b4ji1l4|#5weCw$RJ%v5VZU0(IknESYF!u9x-J66)$^CAm#$N<+OA%^OTBKN zdc#5W#slgdXVg2+YJ^s5WX#aWTd3)oqUoKX8CpG2FlSpgK<;_2cTVsZNJm779M z3L%r3aaa1>-Om2B^+(L+ xrp$N8BiEmlkiTw!;rC>&wMMgep8l?5?)+(cy5U#&QlR@8JYD@<);T3K0RVLgx?TVP diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-selectionmode-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-checked-selectionmode-dark@2.png deleted file mode 100644 index f1a962347af325beb7948daf93369417bd9963d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 680 zcmeAS@N?(olHy`uVBq!ia0vp^-XP4u3?%s{blm__%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Es{?#O zT!FMo+d1X#i>f`BRk|*#bzf5Jxun{C3CL9kvb%vI7u7)|gndb^dWTxWezm5qG}<&muAm8xxEt!?h6 zZRw?L7ua=Y$~T~M1xkYaf*C}`T-{RB(lg5I8(KPEzuD^G=fJ?g80_id7!q;#?Ty^v zLk2wTAAFy?9MII#=vv?t_>uGIs{8*Zzszfo4W2z^%k!T~|G)o^-IW(PU1g$2%*~9q z1(&>XwQfs)3Q7qJjd>;AJT;g9=gG#ad>d{Zc*PPSyYa}c`Cj zU|ndSKys8RtHC_e2#wTaoz?$W)D_95#p;=qT61lR5y_k?>>+EL`RZ{^Z>`Ss`Rof; ziMxkR3DuiwWY}_OZI_W@kJH*&SxLb?ht`NLHJo#3jdtzBzlt#nb~Z1$I{UTv>Ql?s zXN3OvYh*a-(D%Zc>k(=j9X|cc3Udo}wfnw5QLn2;KKG30#agDMyi<#x&yaBX`DOjH zJgc$``^8_K%5yt-|E*|S@I2dH$I^ZWo)Z=|v+gZ1dwKT0=BfYICU%pH7e*xg-6;CG z-a3VE1M72P*F8U7CKYZ>x-55SNo9HY-;&QEZizza`xs_CZ(yEr+qAXP8FD1G)j8!4comH?j+ zS0Js{b4ji1l4|#5weCxBq~3i=qvw)N-zDAtOM3m6^(S1mpMJ$*#udkzSDa^FahrYB zW6o8dxmTl>UQ1tnJ!jpGiY+%Pw%%BJ>dw;BcUGLav--^4z1QyTyMFJ`&3lJ$-am5l z-qBn49=&+@_~pabZy)~n{P^dW$G^Tj`u+9s-*1m?Zrt_-x`VwW$S;_|)64tO<0sMP zYgPb-c6z!vhFF}wd*!B3lY$6af-$eAZtmr8M@>HO`TzUs!GoR(3Cpx?!_Ry;Tc09$ z{H15Fx=ZlB+fMT{PG>6`USUYsvZXmNZe4D|4CaEB%`fbV@|qsX%F3*i%1eHicjhf~ z>FX_8LS{4K_I*~F5ys%t<=4=ye$Fn*Xm{DKQ=O5$pO3!Md2;gpj^t0O&osmCrgT-V zs(rHQb%^x65_^_sx0`3GXBD5_6jfw@uFARnNAX|gwep(b+Is`z=e;+d_Er1Cd+D@R QpeGnSUHx3vIVCg!0CD}``v3p{ diff --git a/common/gtk-3.0/3.16/assets/checkbox-checked-selectionmode@2.png b/common/gtk-3.0/3.16/assets/checkbox-checked-selectionmode@2.png deleted file mode 100644 index 42f89c171574822708d8c79751dfb2b2895e8c27..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 685 zcmV;e0#f~nP)002t}0{{R350Hx300003b3#c}2nYz< z;ZNWI000SaNLh0L02{9W02{9XUK)`c0000PbVXQnQ*UN;cVTj60C#tHE@^ISb7Ns} zWiD@WXPfRk8UO$Qu24)=MF0Q*B!9aSIF!^ml+-$v(>#{c zK$z4+nbb#|)k>YzOP$qBoz+dA)vL|juFl-T+1|w2-p=3O&)?tB;Na2V;L_pW(&6CL z;^5ch;M?Wk-R9uo=;7n(;pgk&>Fwg`?cwX~;q30={r2P4gq}tK000nlQchC<6&6KC zWoBn+cYlC{i0kaNKu$ma00C7=L_t(o!|mAHQo=A02H;j}MZk&{5f31ELc}8~nD>7% z?Q|f`#_X0&#_?kR`+l?OwrRRiB$2qX)!5^t5!+O9(BUOZtg5)w4+bmS?eLQVtLb4i zfz|S`T4IUyKdt^@FzfW??kJGedr}HuT&tiU#-4d(jNqO$HiS`~i3OpK)PJ`Ue2%bem1B%iNpWmHw3pbyL5-yf)+e4T*ZSQZMb{fklOybNpq#Po7 TLvG}T00000NkvXXu0mjf)PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(a)3{W zE09*}xun*0Nwxd3TK6S5((b#YKjE_B#LFg=E}KreY&-3W>#Qs8bFTW%zZ$sUYSPN< zdFyW+yLIpQ?fWP1+`shj!Iei3?md5a|HZ?nuO2>o{qV<^$G^Tl`t|kk-*1o48a4R> ztzj<-@(X70^zwf6_(`<+niW8yL{AsT5Q*^I^O1ZF3OpjT zU+H;y+64bkPD=`2HF66)b6nss!IsT3_AvLVFSRA@eF3+ZcG))Ex?|NY=RWJMZuoc5!lIL8@MUQTpt6Hc~)ET>(BJ zu0Wb$)hdUE{c3#|R5~wew4Yb&zogoINxkc`diQ0uo{MVTm%!*Ukkp@W*<|8nlS!8y zXIycddBt`1Rkzt!W0ze^T6sNv^^M&1H;OjiDA{zQX6w!7owp_&xP9ox{qy(lUwH7~ z=932xUp##F`r-4}4?li*^y%ZHFP|R$`26_S*GIp23;GAHI?2J$lF3=Zi+)>cH=sWv?B-H<|I=N%NI3pWb1- a+Ft)~yT1FQri*EyaQ1Zdb6Mw<&;$S~MB%mo diff --git a/common/gtk-3.0/3.16/assets/checkbox-mixed-dark.png b/common/gtk-3.0/3.16/assets/checkbox-mixed-dark.png deleted file mode 100644 index 8759a900058d7cfab50ecd5cb3ef68b2d9b245a1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF%Ig>+6LAMTGmZKY4(yJzhDMWFYiZ>pG2FlSpgK%_jGX#;fPL7 zXkdKyrAR>|G$BEkotd4jjAJo_{bFX00LhlpgKHDG*e|Lw6@)V|^y}*!WsTXR0MyFh M>FVdQ&MBb@05EAp0{{R3 diff --git a/common/gtk-3.0/3.16/assets/checkbox-mixed-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-mixed-dark@2.png deleted file mode 100644 index 795faee14060c26a064d217756abc82e699a59eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Wb$)hdUE{c3#|R5~wew4Yb&zogoINxkc`diQ0uo{MVTm%!*Ukkm+?pc&h)ZD6f! z?dNT-R|3?_R}$nG%)rbdEu)~6n3SCI^405AlQw?`%A|X`IEHAPzdPAls6l~;HJ*n< z!+!7oMBOP&ip|?{b{lIN{cbSqj*=D;-Q9XaamR5tMs5ZXmA9M>?t*L!QrD_qc)7+y ze{O%*AAkNn{~uQzeTurQ85<^V+3CD}-|UT=#)^6FN4_N1ivLklXMc1r#~0)iPgg&e IbxsLQ0J14>S^xk5 diff --git a/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark.png b/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark.png deleted file mode 100644 index a8e008bc6d521e5077b93dd5677054e2884502a3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF}RWL_sGpd3d@kY6x^hNfmsZBNfi`vbdxVtSq~ zjv*Y;$q5aN&o-DSc!VY-_%buIvzc)yGukhf;RujyDLuG0fhl^H5<@vF!$nKAnS4qa Rhk!a6JYD@<);T3K0RWuxK&Joz diff --git a/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-dark@2.png deleted file mode 100644 index c220ca88e4e396793d60316db94d08ea7ac97c1b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Wch0SNvpb(~S^xU1c8Or!0jTF(`=&I@XNS5><&s)5jDwXQ2_T^BWyCTPXB>*!nQ zSoyinY}*agD_j!f7tFxK#Lq7zY-(m^-q6t40|H0Rx>f?E(>+}rLp09coop@Cpuoc# z&%>c%zxRKl?i41)=50BTUlMD@|EQ_6Kf0IW3-XSq LtDnm{r-UW|e1mXd diff --git a/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-selected.png b/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive-selected.png deleted file mode 100644 index 793f169fbfec7e071901ed8c8bf8eae3eb4d8a40..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFZuoc5!lIL8@MUQTpt6Hc~)E#sNMd zu0Z-f5WKq!#Q#5D{r~Cu|6h-OeS7@>*JB|0_d5uwbzO9retFWt+w+d!{`>98Uao=_ zKy890L4LsuO#J*p!lq_s<_(QKARzSnSRha`#nZ(xMC1J3$=-Yo3Op{$Ss5K0f6u?x zI-h0X%Dl?k)6XrM$yjniN470*_cAMm*3)5({0vi6WH}ka1=$i(bJZ`T=4 z;uyjaot)6X_-uoTf=6gVf-f^OJDVAYGNb)s8IAzSmePZ36PTiBDKV6@GF-G&o5`n? RaR{iB!PC{xWt~$(69DH{L?!?L diff --git a/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive@2.png b/common/gtk-3.0/3.16/assets/checkbox-mixed-insensitive@2.png deleted file mode 100644 index 44d6c7e1f503d4ccae37b03b887eca6669cd1863..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Wch0SNvpb(~S^xU1c8Or!0jTF(`=&I@XNS5><&s)5jDwXQ2_T^E~o-JZ1n_LG;7 z{(gJ%j?dN-s8_fo$S;_IiHVoOP`PN~e3eIEHAPzdPAls6l~; zHJ*n?t*L!QrD_q zc)7wufA0CNKmPoE{y(lb`V@6pGd4`#veS9{zS$c!jTQ6Uk9Bm!WkHTxEWsjB(2Q~)XL!L L>gTe~DWM4fwZTuW diff --git a/common/gtk-3.0/3.16/assets/checkbox-mixed-selected@2.png b/common/gtk-3.0/3.16/assets/checkbox-mixed-selected@2.png deleted file mode 100644 index 37cf7f00ead03d5f5766fdcd638953de1ec62034..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Z-f1bln^|J#%Q-|zqb@$k?0M_}~$&)3I)zd?~&_a%oJS0*03HUIc+px~#j@~=S6 zd?i7C!3@kS(lQE4iAl*RFJHZ0HEHvApiH`_i(`n!`MZ-1g&GuiSoGOgL_~i4Pu88n zq}aSIXScDYQT2ftu4{R_y6!r?6S$MSxq+2|YtlEChRqzz7dBlJeo+#(WO|>w>!0Q9 z$JJ|IDX3WU64g0v4Z_{7i6KZ-JXeEQEtDnm{r-UW| DpEQj$ diff --git a/common/gtk-3.0/3.16/assets/checkbox-mixed.png b/common/gtk-3.0/3.16/assets/checkbox-mixed.png deleted file mode 100644 index feb67c4361557a4169b675777dc2e8cc4855ae12..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF%Ig>f4@Ec(-xrzlx8mp@(X70^zwf6_(`<+niW7HeNPw15RT~N zga*cEUy2koLK6~n*_qkd$~YD?*e_=02#{zopr08i#e1ONa4 diff --git a/common/gtk-3.0/3.16/assets/checkbox-mixed@2.png b/common/gtk-3.0/3.16/assets/checkbox-mixed@2.png deleted file mode 100644 index f2557d08c2bb28f3597d6c5b69f91d0884eb862a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Wb$)hdUE{c3#|R5~wew4Yb&zogoINxkc`diQ0uo{MVTm%!*UkZjp?Ytn(+k6%9g z`|YtE1MfkgUcQnbzhDMt7HJs;rNpG+xN}hsA;U2=YHf%Vy*ZeHFfq4pEo&zeB$Zq K=d#Wzp$P!C^mXw7 diff --git a/common/gtk-3.0/3.16/assets/checkbox-selectionmode-dark.png b/common/gtk-3.0/3.16/assets/checkbox-selectionmode-dark.png deleted file mode 100644 index ea0568fae1ead991fa4c4bf1c654cfda23f92ecd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 493 zcmeAS@N?(olHy`uVBq!ia0vp^8X(NU3?z3ec*FxK=3*z$5DpHG+YkL80J)q69+AZi z417mGm~pB$pEOWVvcxr_Bsf2(yEr+qAXP8FD1G)j8!4comH?j+ zS0J5S-I7t!5MNdwS6UZWRv%wlXA~5jQrT<}7;O*~!=P=(sAJ9qLKaNA7RdhTHc9^uAbk;Yz8CP3sJm0I2Gt|BA=bO(1ykY6x^yu$GlCr|zP^Y`!B_ixyN z!bdz^978NlU%hf$s7XP9Ex}h;=*p?SsK}YBzy7@scM-hgbf#o-^=Wha=cRMzT~TmY zyKTaIE(;m;h-l9j+#Ni8k2!@l96grxU;G%iwZ!!4Q+a#5yyjoxn7RA(OY;-5cZDVL zF0H$rb#2Dgt8;cQp7Nb@^Q=qlA#=FW!_BJv3QHzEXBGO~)*F7>*_=N@d3wmn=CZ%j zg5)at^luhEXe{2jxx&^*?8vj3PkUdLlZuoc5!lIL8@MUQTpt6Hc~)Ey8?Vd zT!D0M?xeKJwv?LY^vbrh>Za71=CtaT)T-u`s^&Bh8zcghO$9Q5B0#bl$Zn1)sbSDI zW708a*0EsLwO|1uOBOu~Ry|8rJu7y7AhPDrx8XDZB3n*FTP|ZDvQx14RkZh2a|%>* z4p8$9*6Z3DR^4)&e5eU~RV$9S{oD10we@eUC7G&u{||Ac`;uj5Y+KpcoUc zD4+vcCtAD*x?ZFt$S;_IT|-kVCpWLWzM-|Fr?;>F&)G{ygGk%L_-?}ez#QHvQ< zd3o0?+&m}s{H&wb)^vYgeq++q97Pp_+SLm@d~R!LGF{%P#dX|d?M>-F=bLAi?pwQZ z{?ds@mx-+Tv8iyK!K>fPj@lhteLj2Ds_?YXBJDUwkE9r{G*OYxkD8sKK^D_;c1*dk zYK4?=VAAW2bsrvg#VPD-=DJoBZXXpgZ4bw)Nq^&1)E1`v-tptmw4H*w0S{{)PVHPB zWbs|6$5(Stzi*H8$}gN!j|07I+mGy+67~O3`Q)9=xmAg=k=soE-Ct)Qxb)6qZ=Ky+ zi{@)=(AipIKJ$HDaQ62(uCLy;o-3Nxl=^wMnL~B<{o8EC4V(3BLpTI)WS>#zW9Xe- xJh}7Pos>6*%M4=cOD>ry?|;sgsQ2d&qmXN7>zgGx9l%Ip@O1TaS?83{1OVA*C8YoW diff --git a/common/gtk-3.0/3.16/assets/checkbox-selectionmode.png b/common/gtk-3.0/3.16/assets/checkbox-selectionmode.png deleted file mode 100644 index 8cc926316963a71f9858967342a2bebb95ab11eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 522 zcmeAS@N?(olHy`uVBq!ia0vp^8X(NU3?z3ec*FxK=3*z$5DpHG+YkL80J)q69+AZi z417mGm~pB$pEOWVvcxr_Bsf2(yEr+qAXP8FD1G)j8!4co$pJng zu0T4ux+SBcA-}l`i1L7_r7ORwE4`*Ay{2{Zt}Q^cb@$fP>gEGS_Z&R7_Yer}J9=XO ziPHy9oIZ5%(y@z|j$gcd{1OPAxOC;j_3Njv-#Byg=Gmu@uRMEv<>j;Muby9j|N7Ra zcXvL&zx(Cgy)WxX;aKHU5H>EX}M4}X6FqDQ~KKKk?Z(cf>6KTlii~^?UVuwy$xHquBQoT$Q(02u%LbF)4%#I z>9!qDXIQUh} z<|EJNzKMT-ns4vS_yuL&FL$p}GuZuoc5!lIL8@MUQTpt6Hc~)Ey8?Vd zT!D0M?xeKJwv?LY^vbrh>Za71=CtaT)T-u`s^&Bh8zcghO$9Q5B0#bl$Zjrd?I~*O z0Wvo4+PVdZc5gj!bkC9F`;VU3f9&Le6Q>WJIDP2knM0?}9y)#Y@R@T!bmYwWBWKSa zJqJV=j$XWU?BeC)*RP+xasBkWSGV53zV+$toloz8=ay2h(_jWzkjN1R#Um5TSJ8hdh z;q;&HHN{R31pHQ~CLi{_ZXJF;a=M~rT|aT>!}!mdtd)Fqbxj@f>U`bonVToYCx;b%|C4^g%I=6^>eLco2XR63Cmnk=@j*8!tTfv$)_1E>fM*Xwe-t$>PPreiH^whX%_byNC zbWFDxN5#HXQ#)5P*?iaO@nyW{F7-HIf?eS83Xv7hCrC_h`nvvAo>6(gQt?NpeuOsu z&g$&cDCpPQ@Uwm5XP3US_Pld_zj1Re{Um#<_GaE6%#Ei`b_8x+$_|Vp22WQ% Jmvv4FO#oyvX*d7? diff --git a/common/gtk-3.0/3.16/assets/checkbox-unchecked-dark.png b/common/gtk-3.0/3.16/assets/checkbox-unchecked-dark.png deleted file mode 100644 index fca122668c47bfbcb14d76825d404da4c777f8a5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF3MnTajmCXi$(FQ>=4BBQ)x)#j3mZ{av-_PiL0&3tc z3GxeOkXJZ<;^e76fBybG`~D3(P}s`T#W92Zuoc5!lIL8@MUQTpt6Hc~)Eu>n3I zu0T31ZDwdgLvHS*q_WQ3hK7`ehQ#WYjEaV&iiWhR=G5vIFltJzZc3>Fl0cE>__8_% zZ8J7~Yc>Nbx1?;hq#U>8Y_HTjpY#IXjKa9GI-mlevb}u~p+F0SOM?7@8CcoadHG~y z6_ln-oqqGy?Jr;d9kBfT9w^=H>EaloasKUOYoR6s23C1RrehsHHD}Ez|DPOmAYg(; zkagbfw|WH)+w9-Jxa~V{OKRiQqOIopE@!)+kr7}2bI0!{gO5xMhju;CZpo2ike$4K z(hWuliPu&|KVILz9AET9VzTksNsmH4KJ;W|n4lahSafR7x`p1Ur+9lN-Bw>T$3tdj aKHCyri_cTvs^14Xhr!d;&t;ucLK6UyfR)?; diff --git a/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark.png b/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark.png deleted file mode 100644 index 75dc9bc30c0cce890592332ee758ac0ea9fdeda4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF3=bSnfu=Bcy85}Sb4q9e E03wG|5dZ)H diff --git a/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-dark@2.png deleted file mode 100644 index 15efb6c8fb887bfd1c5b8d68ff695aa25d34095a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 394 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EApt%i zu0T38bd^H`2qb{X%!-Q4iuUZvwzP(ZlXx*c=G5w@R1n#cP~O0xZOX21#cp8b zmXz(5l;fF}=bK*On_d`ORv%whpH|&s_FlmnXs%32kY6wZGYbm`hoGRaNMv+V^Q6f$ zW+K4pRowDGbq$^_jv*T7-%hp`YF1!io$qzU;fEXZ!@K|IX%^_Ps9&3zv-_=HL1W@B z`5A4o_ok$_h9+&E_5O>MfN|-^uG5#pTc!#zRK0G>7ufWYp~q*R=Od1Uw4B!`ey*?g zuRr diff --git a/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-selected.png b/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive-selected.png deleted file mode 100644 index 7cdc8ee502e3ab61d45722b15b784cb65891bbb9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFZuoc5!lIL8@MUQTpt6Hc~)EP60k4 zu0Z<#|Azk{u>b%6`~Uwx{{R2#|DO;3|9tlI^TYpNpZ)s!=-0Q$K=dDoem(yE{o(KL zPyT;@0wjNbdHDawvx)j2b%3Ubl?3?(GcYl+aB%WyYHAsqn3G$jVm(?xj9QmSqboU|k qCwE$GaupA^UCIk++G}=^(ckNdD1Yxpmf1kt89ZJ6T-G@yGywo!6r8{S diff --git a/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive.png b/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive.png deleted file mode 100644 index 36ee76b78351fe78e57d112112671b0a646330f4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF2=NNb*-CsZ{4zc%eLLyQfiuieR}lw+mlY$uhW4V z_)CKPf*Ayba`W=?ySlo%yL)=2-I;J~);vI2LC z5+3YePui24@Su{Nja?)40B=exchVh`goG~)k+*ah%2^qBCk0tB*xWq;G=;&_)z4*} HQ$iB}r!Zc) diff --git a/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive@2.png b/common/gtk-3.0/3.16/assets/checkbox-unchecked-insensitive@2.png deleted file mode 100644 index 142d61872336fb6e643ca7783b224ccb6f8937cc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 406 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Eu>n3I zu0T38bXDl8RSgXdxw(@P8XD3%I)G$yVMAPHWomUxN=-A6Os#27t8PjIGg7LX@|wDU z;<=5Txy_xO(`R6hv4>CB;)jD%L3<{@edD zitUqbudemmE!G@)0;)F~Rc<|X&#K5cX&${O?>BR9YtmPt!}lw1F#gP$X?9KUhF9z4 zzKa%<*gh@^F4^*K!oFXXzm(c9&p0D=d5+Sn@eoM<`SRq?mxuqqKm7CM(ciB?^!V79-G_l1 z_)CKPf*JS)1cZcKTwUYh;}dEdPIPTG1xi_Yx;Tb#L?rZ9NA`njxg HN@xNAxVUNZ diff --git a/common/gtk-3.0/3.16/assets/checkbox-unchecked-selected@2.png b/common/gtk-3.0/3.16/assets/checkbox-unchecked-selected@2.png deleted file mode 100644 index b01c60a92fa85ad359257f5e4f9f7fc9b944eec9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 395 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)E;Q>A& zu0Z<#|5g7%VE_OBxBvft`~ThD|NnvL{{R0E|Nnpf`SYFsKOX=2`sB~ohkw35`TzaN zpYIR*GJ)f#M+Y@3+T)f#mlmAoTUo->;8z=dF1OG+MSK$S;_InVE&1kDp&a zP*lvz+b1?QE-57?H8r=QvZ}ga;fmERK!vrQE{-7@=ig4=E!3{a* b%y+iueG2KnU03u29m3%0>gTe~DWM4f8Q#9i diff --git a/common/gtk-3.0/3.16/assets/checkbox-unchecked.png b/common/gtk-3.0/3.16/assets/checkbox-unchecked.png deleted file mode 100644 index 43ca15f878639e5a6dad3702c08747f560cc692f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkaez;V zE09jEZpo-<$ZzffqC6mK>B?{FO0Q{2uW8-9YYPx<-Muxny7}j)hd)0*{QK>()r}v2 zf!cUWg8YIRK+4A3f$%eh_zieh$^ljc|B^9|ViCmvP T`9*&P8pq)2>gTe~DWM4firj4o diff --git a/common/gtk-3.0/3.16/assets/checkbox-unchecked@2.png b/common/gtk-3.0/3.16/assets/checkbox-unchecked@2.png deleted file mode 100644 index e7a1da3702ba588b688a0c35521c59da22984778..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 408 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EX#qYV zt{^&XW@tl0ZtkR{vd-LwhLnbe#OjueiiV_$hP0~Y)an*6YD%ktuz_TAZgXc|a~Fuw z)RET&WOsJXnAtURR`;ygy>sSHTCia9f(26+F8K2P-q-i{{(gJ>#Y|8iXp=}ukY6wZ zD;qm6pNy=6(v+#wZ{E87}m%28Zi8DJOK#d%w74v9r;* h>aWYm&MWhN-aG6Ppnh-%Zz0e<44$rjF6*2UngBb`rMLh9 diff --git a/common/gtk-3.0/3.16/assets/radio-checked-dark.png b/common/gtk-3.0/3.16/assets/radio-checked-dark.png deleted file mode 100644 index b9fd269e7740506f0090e992be057056f056e00f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 373 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE09)cJEz=zQE|d$^`49BU6<6mFROK3R_(q7XRCEzQtQ45CV>oeq+Ym8y>Pik!BQE!kd~~TF;%oaPi}(&tLw%bb2ubs370d z#W6%elJ%e`-ys7527`39+zAc;|8Ev*Hag+q&ZcjE26gMP!7 zT~Omxp~|pzrB;e&@?tK|iG>Fg85&f5B(nKutg1^YU%>sHVZr@NacddAZB^NPo#C&P iNXNA0>34tu^Kb5I4TJW&i7$XwGkCiCxvXZuoc5!lIL8@MUQTpt6Hc~)E>jHd2 zT!A#h|NjgP{~1=TGM;%xyWy&K-&Kva>uNn`RNBsI^j=W!yr|Z5Nu%e2dKZYH)^$m> z`?6}+W%aI0>fM*sx-Y7BUsCJ2tOk|^OI=h4igaC41Cc;+FuMmV2o!-!0gdWL5(J4~ z02$JKNh58VMmi8p*T|Tz>7AkJlcD94spXTUZD9R*jlwISgY`;+{DK)6nV4DGgoH&z z)zmfIJv_aSs>y)It@~8L`@LI5M6Xy#?EBxXdDKng>7nB9-)rJCE;*dAj|iK1akus}#)_Pq z7mI^l-)@+*EOq4zIiojcw&YqU9DHS;eQUzw0MTt**jc0Bu0FmX<;U9-f!Wi(TyJK& z6|>$jKF_gWe?m;b*$cnc^V?OOdR{8_@!umGmv4`DM@Q&*lytCveBl%6UXgI*Xza=# z!71UvF}f$>dUfi1Z4bSuJZkZHSFp*nG^3DZ+safWe|fBBf8zu6{1- HoD!MPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(NPtg> zE0ET1*sneHs(R-U_3q1R9p}_~uc&riRq45+-gQyE@2XnQCAF?gYTXyqx-Y5qTmY%* zx~SH5S*`mbh+Vi$t#AcUL?eHhmX)`bm9LJz)sb?M`9O1JN`m}?8F+Yj_4M@(+&w%z z3yX@1TUuM&x_cnNY`Xkypt=H27sn6@N!Ejoe9a013<%gSAFgAVGrho}Gp2xpQ*f!1D8m6EwVu84GY&P( z*nB`BihY4;=6Yj>&%0HMQ<}cjY6^tU`*qulf#DBhUbUuNP7hBv&~64#S3j3^P6Zuoc5!lIL8@MUQTpt6Hc~)E^8#9ocRgIoY>Ye9QdM~Q>TvqM6sL^{xz2~BO*Cn;CORC+MfP(71 zmw{}x?u%;OK*mKipfaGDJwTBQY9Iwbl^1~G8fjBCGJt5hmUo7hFA!zv=v#Sp=YIvd z(6l7TFPMRmiJ6&;iEaloaenIL>tam?JPzGPBBI~f+%>g4rab&#KRZYzAya-&{=<38Jf%2( zvY!r;tbMeRLm}y1M80S4Gv=b(B`r(Re>_Yvd#k{}n0EczmxV`{wtt`Jcqs7qD^ZWg z8f&g6v!?#_b!MTnvu;zL#shzF*MMz`)(DCpQH>|FKYF z?#gR!6Kz6N`At1DZ{}wnSu5@RN#;CL&Q7`2$BcB^Pd&NzewuUqsjqvgE=)cnw~Aer zE%)|9;e%y|}gBB!JK&W;DWu61<0d-F1VpW@x#UH|{P1l^mU8UO9f{*~RJ OSoL)Eb6Mw<&;$Tr$^3@^ diff --git a/common/gtk-3.0/3.16/assets/radio-checked-insensitive-selected.png b/common/gtk-3.0/3.16/assets/radio-checked-insensitive-selected.png deleted file mode 100644 index 2ccd53f23dfd646cd8beb182f61e6d2a7190e22e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 383 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE0F&G>gxahul~Qj@&C)?Utga5|Mle8m;3*JJp29SF_8T8_3__tkHF{&i2VBG?^hW4 zgySZ{Y6X;aONz zRNT_q+Sc6z1?tv&jsg`Hdb&7bP0l+XkK DKYX%2 diff --git a/common/gtk-3.0/3.16/assets/radio-checked-insensitive-selected@2.png b/common/gtk-3.0/3.16/assets/radio-checked-insensitive-selected@2.png deleted file mode 100644 index decbba7801478f48bf6621d1031614ccae98cda8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 602 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EivoN? zT!Hj|C|CuepFIQO|1Vzre|7c$=jZ?bKmY&v#g9)`ts!e zF9>@2|Le0~UmyMY_5>*P=iB4|KOg`3_TKmPj#NIv=d6-<7A z^!w|hzuz7Mky_Wql$F=hR$tEmp_?nt+*t`k=kEOe_T=xkCv$JFpA2-RSxJyzFaskK zGcy+#H;<^On7W3Brlyv@zJZ~!iA7Lwa7buqT6#uiMP+4GRdr2AXAd0M{gXTbG~tD( zi(`n!`KgnSi!~VtxH@Wf?fu@QxS}KE`Tu%fVU-pYor>KjZJ(#ETDEm!uDM`x)geZQ zhJIn^reAlMmp$L6JmcO1wd;>w9$-{!od4H zQYOoOoO$FwOXX#ID|?sW;`bkxcNDsOuA7=D74$S!X2PA^v}qz1Y5Yq{!;H;3D-~v> zn-=SB?YOXH-mJ1UT&Evftme8MXp@xw(on58yp<@vX3 zl-F{<`g}SqmNh*%Cgol8akuH`6KWiu@LZ_7l3VZMRm*sLdd|tK)3;9t`kBGg)z4*} HQ$iB}$FM%4 diff --git a/common/gtk-3.0/3.16/assets/radio-checked-insensitive.png b/common/gtk-3.0/3.16/assets/radio-checked-insensitive.png deleted file mode 100644 index f1f7c1e3c5773c3504b7da6ff08503ce608bd806..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 378 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(NPtg> zE0ET1*sneHs(R-U_3q1R9p}_~uc&riRq45+-gQyE@2XnQCAF?gYTXyqx-Y5qTmY%* zx~SH5S*`mbgq^hVddkY{PhLKH21KtP{r&dj*xQNp{mpCPe{;1B;}^g}?s)Z*uc6&xHt9h6Rpx zpC8`4?sm9BHR8Yd$sa5N$H4hL z%J1_qis6j6m8sN&8t+Z%{095G*$h9O-@6VNkoF?>+8T0a6xx7xGkCiCxvXZuoc5!lIL8@MUQTpt6Hc~)EivoN? zT!A#h|NjgP4WX-6g|7N<+;GOY;hA3dMeT#9ocRgIoY>Ye9QdM~Q>TvqM6sL^{xz2~BO*Cn;CORC+MfP(71 zmw{}x?u%;OK*mKipfaGDJwTBQY9Iwbl@~R7E>>*0S+(V6&6b;cuHM;m_1<0}x_C7tFxO#LUda#myrsDyFWXp{c2*uWw*zY+?}<92^pwmY$JWQCV44 zRbA83(b)qB7Rx-1fhN52ba4!kkeqt(ZB&y11M7p$EMZ|$-{#&=4!JOs>Db@D5B-Gfrl8_tsxf+MaWh#iCGpqjUd74ySoPceSZ*d$Uo@ zqAGQL`jtH$d$+WoQfBuFh`eN&Ic;g%IT=yk(|<&lHZNQnAhdtWrA6D8Pvu~kPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE0F&G`T76PFaCeI_vhOa7<%;g>k}Ay^!M9i1p11^{`Od{`;zUnD|XYb*iXN*@A|#{ z*Y6#;aSy0i>ie~1pwXfwL4LsuqGIA9p<&@o%`L6x&R@9r@zduo|6V%1m;zK#=;`7Z zA`zb3|5~g;K%gbCBy`P^?(g;I)~xV5{yqKd99cF+)m4c`Zr?($@&4!#^VGN7_+bbC zKgZ1pJpY`Zuoc5!lIL8@MUQTpt6Hc~)E8v}eo zT!Hj|1UU2m|JDB=AOHXK=y|e1f-QPf~!P-0QPs9QptydD{7tFxO#LUVjBrGDTrmo@c z;pye=6B-r~6&sf}ZTgIvvu5wwv+uy|J9qEhfAH}8kDp&!rp*EBeDCSv7$PA#_2Ap6 zCIbf62gbq?k(oEkqw0Dh6PHNrI`=m|qCvV};m?QKLLtqIhjv$9_AXj^oSDBgNn+EN zuQhF4mgz@z4m6%-%`V|zs_sj_8!z~(=SoWZu;|2pJmIwH3U}mU zy#j?9o01+acH$BBp6}088dtwW$tY<3_1G;FgqHtcXS`o#VQQ^e2lP6Fr>mdKI;Vst E0IrBhu>b%7 diff --git a/common/gtk-3.0/3.16/assets/radio-checked.png b/common/gtk-3.0/3.16/assets/radio-checked.png deleted file mode 100644 index 6b3b2e13aaa07d05fbb04c6680255876fdf8d11a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 373 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE09)cJEz=zQE|d$^`49BU6<6mFROK3R_(q7XRCEzQtQ45CV>oel)UnK%Bt(BtFAwJ z_3-JdhtFO={QK?ktSS7yK%+%Vg8YIRM8(8ILc_wFnp;}WoxgDLZuoc5!lIL8@MUQTpt6Hc~)E8v}eo zT!A#h|NjgP{~1=TGM;%xyWy&K-&Kva>uNn`RNBsI^j=W!yr|Z5Nu%e2dKZYH)^$m> z`?6}+W%aI0>fM*sx-Y7BUsCJ2tOk|^OI=h4igaC41Cc;+FuMmV2o!-!0gdWL5(G;D zHEQ%+s@!^`YRk>)tv747-rRll-kxiB_guTT_u9RE*YExP_P8*7dJ)jgdL==A!3>N{ z%&cre!Xlz->Kg7Io?hNQp1QE5}Uq!t!d-3Oh2k~pz$KmrRK&$D7Nc3yZZ4g9gTe~DWM4fFc%I{ diff --git a/common/gtk-3.0/3.16/assets/radio-mixed-dark.png b/common/gtk-3.0/3.16/assets/radio-mixed-dark.png deleted file mode 100644 index 08a8f5c771e22b06a1e84013d7ebddfe3aca69b0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 342 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE09)cJEz=zQE|d$^`49BU6<6mFROK3R_(q7XRCEzQtQ45CV>oeq-|h*vLUDhXpm@0 zkY6x^sF-+2Xjphtb4%;F^A|3D{Pg+Dzn4xgrT`TrdAc};NJ!=$jOJ@m5O6)X_(zyq z#?E*3E0aBre@GOaf9T)tbvsz^Zuoc5!lIL8@MUQTpt6Hc~)EGXs1= zT!A#h|NjgP{~1=TGM;%xyWy&K-&Kva>uNn`RNBsI^j=W!yr|Z5Nu%e2dKZYH)^$m> z`?6}+W%aI0>fM*sx-Y7BUsCJ2tOk|^OI=h4igaC41Cc;+FuMmV2o!-!0gdWL5(G~NiX_+<$sPnR?i(`m{W$rTY5Nq1ak z5*qE#{r`XAGp5zuQ=T;LEfh?iut0uajPJEPyNfS^FE`D-|6QBqOj~1VpYV3o>N^~B z_dJ;SK3j&@tS3TKW{=S;$?9DxQ!Wei`$#zJ%rIy!@Y(R;iu~R*@r)N&xf&K`Y;T;V z#6BT-%WVhmiHrfFV2Mz!dC5(!GmIZHCmm|B=6EX+%CqtNp%v;fJlA?6v}97JrF%7> zTanPe_h4tu(E~=#4!*k9_W4}3RW_SNBX6GnttixUQ1u^UhF6kc(iBI3P^@{n`njxg HN@xNAiVx%6 diff --git a/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark.png b/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark.png deleted file mode 100644 index fed746c85272f8f6f4661ac008df90803f15d817..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 344 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE0ET1*sneHs(R-U_3q1R9p}_~uc&riRq45+-gQyE@2XnQCAF?gYTXyqx-Y5qTmY%* zx~SH5S*`mbgsr1*HSLv?HqapPk|4ie1|A+>J$-!xcMlKG!lI($me$s`?w+1GaRIDA zB}twxjv*3~xd)^9S`-9a4=(-@=9aPZUH!^rkK-Q_Mdu&-w|m_V);l??KDn5R?=A2q+^kn}UIyC6;OXk;vd$@?2>{fRdtCqk diff --git a/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-dark@2.png deleted file mode 100644 index 2658ab5f7b7afac319ff5c6a026cb6067ab672d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 558 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ElLLH0 zT!A#h|NjgP4WX-6g|7N<+;GOY;hA3dMeT#9ocRgIoY>Ye9QdM~Q>TvqM6sL^{xz2~BO*Cn;CORC+MfP(71 zmw{}x?u%;OK*mKipfaGDJwTBQY9Iwbl@~RVCTPXB>*!nQSozg2UT6q(m0?McUoZnB z6Eiax7dMZnsF=EjhNh;LzP^E>v57@caBxUyT6#uiMP+4GRdr2AM`sTR^n2@00cyVB z>Eak7AvyKn&9FlTBCHpRRdWSI1=43;4#~0A{qz6&Oor9nQ=T;LEfiimaltb0=*e4S zeMEkxgl+izyRyCEp3#Prg%1~|^vf=sEWYQH@sXK1k{iY5>@j{N>b@#vO6Z4qGY#6d zryP=*m)g{*TwgNFdBMV9ZU*1=ciE$=EF0#;?dIR|#fTy3VkTc>o1bcdjxf(2R^fdQ zd}n;%@Q-v8WtQ1%_=;71Q{oY?f@zX*nxUd_WeQ?jf~zRAvX-t4Y5 hXTD!%;EZ}K_P@9_cH^#B9IHX`<>~6@vd$@?2>_ca+GYR% diff --git a/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-selected.png b/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-selected.png deleted file mode 100644 index 8714335ace22f7c45427d8a1ad7ccd626714c911..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 344 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE0F&G>gxahul~Qj@&C)?Utga5|Mle8m;3*JJp29SF_8T8_3__tkHF{&i2VBG?^hW4 zbZEDL|v z7~3mqakZntbNgf-gO_DNOn#n diff --git a/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-selected@2.png b/common/gtk-3.0/3.16/assets/radio-mixed-insensitive-selected@2.png deleted file mode 100644 index 67afea7fd6292f75c7f42889ae04fc11ddc0eaf6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 558 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ElLLH0 zT!Hj|C|CuepFIQO|1Vzre|7c$=jZ?bKmY&v#g9)`ts!e zF9>@2|Le0~UmyMY_5>*P=iB4|KOg`3_TKmPj#NIv=d6-<7A z^!w|hzuz7Mky_V9hv}Cm9lSm7`0c;np5$+LNCi5}uq4PYn1PXrnVE}=n@3bsOkG1m zQ&US{-@wq=#3Cp-I3zSQEj=T%qO!88s=B75vj+q!U(S30)O^9y#W6%ea_YgGVTTMv zST7W-=8A|4q&rGp66v`x@Be=*;e^tOlWaDauUlklbmhryt4lY3MlAGSCThK3-n`?5 zsq$)}^mp0cZYWx%9_5}LJ?F$MPVa*kr67-)o{1F;uf5>W{x-vUj^^|p9WIxYtQ$A?asRrKktXx<%=O0%l2MPP{%>zdezt6i Rmk!Wx44$rjF6*2UngEhr9@_u_ diff --git a/common/gtk-3.0/3.16/assets/radio-mixed-insensitive.png b/common/gtk-3.0/3.16/assets/radio-mixed-insensitive.png deleted file mode 100644 index 06d4d8da9890ec27a7f4e0416ed01021920ea8be..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 344 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE0ET1*sneHs(R-U_3q1R9p}_~uc&riRq45+-gQyE@2XnQCAF?gYTXyqx-Y5qTmY%* zx~SH5S*`mbg#Gv16K#VzD}e@ymjw9*Gw|^6>gnqnxO;eb78Vs1x3splb@%kli3?x_ zDoOHmaSV}=%sm***PZuoc5!lIL8@MUQTpt6Hc~)ElLLH0 zT!A#h|NjgP4WX-6g|7N<+;GOY;hA3dMeT#9ocRgIoY>Ye9QdM~Q>TvqM6sL^{xz2~BO*Cn;CORC+MfP(71 zmw{}x?u%;OK*mKipfaGDJwTBQY9Iwbl^2_L-JZ1n_LG;7{(gIM%|vQ5&{c*dL4Lsu zj7-eTTwL5dqM~Bz8XB6KTKf71hQ=lqLBYWxp=s$EnH80lRaMnB9UYxLAkgovI|Zou zf~SjPh=koXZvcTaiJxVKPv?ZgGkyrU;? zjr9@vl@hk$^Y6;`hI>XEP8L2~n9?u1aI*NGPsT@P=16W7o3qFGm8kowlqsPf=FK!{ z+n#brW?pJjqjG)8tl9+&gSi=e*W0p0RarL7iL2(=^2LZD=wjx##x_6I0v%zVJ*>j} z9{A4qz~LY1Cdw?c*YFjq`liGqUIo)6<1|gJ7B|^GlN0}B%DkF~ai(NhnS7I->Acxp iYtDSX%)lA-SnPjsYwX605qm(9%i!ti=d#Wzp$Py2ci@Bo diff --git a/common/gtk-3.0/3.16/assets/radio-mixed-selected.png b/common/gtk-3.0/3.16/assets/radio-mixed-selected.png deleted file mode 100644 index 83243896bdad9bcd894e88b9db5eccc60761dcf6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 342 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE0F&G`T76PFaCeI_vhOa7<%;g>k}Ay^!M9i1p11^{`Od{`w~!U)kT2_ph2P~L4Lsu zqGIA9p<&@o%`L6x&R@9r@zduo|6V%1m;zLg}vle6lRi>dfdqfZ>m!rwK<_KI3u?P&1aKAFehWmyoDpQ+M@ zl^YopUr)7?3!bRWe04_XQpW4++iz|xsrkvguZU-!xcT1=K-(BRUHx3vIVCg!0RBmy ATmS$7 diff --git a/common/gtk-3.0/3.16/assets/radio-mixed-selected@2.png b/common/gtk-3.0/3.16/assets/radio-mixed-selected@2.png deleted file mode 100644 index 0088a2bd7fc3cc9f248dedcb0d8118e3dd53d5df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 564 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EGXs1= zT!Hj|1UU2m|JDB=AOHXK6HZe1v4-*F|)D>35$rTscX1^pG#&fR))&FMGN;hDbVIkTZvGfjo%NgP?zDk))S#6lR7QktNGlDg#Nt; zJ8O;}FmiVA)wQPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE09)cJEz=zQE|d$^`49BU6<6mFROK3R_(q7XRCEzQtQ45CV>oe^!MB2P#wb?K!Zd} zg8YIRM8(8ILc_wFnp;}WoxgDL1%d#LQ zKU1X*D>pJIzMg6&7d%m$`Ra_&rHt3tx8K}YQuC9!e-n?J^-9jmK-(BRUHx3vIVCg! E09O5i#Q*>R diff --git a/common/gtk-3.0/3.16/assets/radio-mixed@2.png b/common/gtk-3.0/3.16/assets/radio-mixed@2.png deleted file mode 100644 index 62350cc5b7258aabbac222059f1d69c96642cc24..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 564 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EGXs1= zT!A#h|NjgP{~1=TGM;%xyWy&K-&Kva>uNn`RNBsI^j=W!yr|Z5Nu%e2dKZYH)^$m> z`?6}+W%aI0>fM*sx-Y7BUsCJ2tOk|^OI=h4igaC41Cc;+FuMmV2o!-!0gdWL5(G=N z?7B7S!0pE`AO8LJxLiXAC~usm z#6BT-%WenniHrfFV2Mz!dC5(!GmIZHCmm|B=6EX+%CqtNp%v;fJlA?6v}97JrF%7> zTanPe_h4tu(E~=#4!*k9_W4}3RW_SNBX6GnttixUQ1u^UhF6l{`o*eqL9yoP>gTe~ HDWM4f`@iaU diff --git a/common/gtk-3.0/3.16/assets/radio-unchecked-dark.png b/common/gtk-3.0/3.16/assets/radio-unchecked-dark.png deleted file mode 100644 index ec5fac5e771d552604d45502e30b21b0808d256e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 445 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(OMp*^ zE09jCZb>U|$f#&YscBBCXh;T<)lJFOO-WUaKr*4cF215Zp{zckydklyA-=ROuBo*Wg*~NDNsJPD4#W6%eGWVdTP?Ld(!$I~%Mp}y;+1hK8T^|1XK6z14 zr SVTBmTB@CXfelF{r5}E*{M5ado diff --git a/common/gtk-3.0/3.16/assets/radio-unchecked-dark@2.png b/common/gtk-3.0/3.16/assets/radio-unchecked-dark@2.png deleted file mode 100644 index b9b8a2f07b7b0ff37db2c489b1f71d9c29922044..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 933 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc|`>jI{wi zA+A8h3=IDp8X7`FSEZ%R%*~yY(9n?9(2&*8kW|*0S<#-{(2!W!mR8l8QQeZ#(2!Bl zkW$l}T+xtT)0_$vuWSQyQ!1O%t6Neln}F=ps-_em8%(A_7%;&!5Th9=2vm>;WB|F< z%^)q+Ao0}dCLozo-INC8LP;Q_B^9g-q!J_!l1c$9gD8e*1d4#PLlr=jH78d#C0Bt2 z8MMt9w9OfH%$am7m~<_e^(4DMoTMGRWE{O^oqS}SedL^c<(z%> z1EP#WVoiW3G|n|h=8sFIqdL@t-pc6?^6=w7tFxO z#LUXh!NtQXC?qN=Eu)~QqN=8$X=`Wi5EdR08K01tR8Ux6QB}Qo$$Y-;I{PWeJ>K!%VuR5djj*>oG2xE-p2w>zULIN#wj#I8MrOkNH+K);i@Wek zHKw9N;r8G)E_;Q6yZfsxvjwu_IOFUiuT-G@yGywqCLx_n0 diff --git a/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark.png b/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark.png deleted file mode 100644 index a37d47225cb040b0106a2efe536f45ca94edc210..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 423 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(et=Ji zE0E5tXiqL|$gXTlYiLNWZb_+WNUCZ~D6dT@Z-_6ei?3)*EN_S_sfz=$%j*+>WNCeL zQB`6^ePTsJLS;j8Rg-CGyjf^`a%H1QNUTXnd`eXlgSIKNt|ha+C9kPHuc@PurL&Nw zi;$H|-{*f}^xL_|l&baZrfbx)c+dCJsj)22$jGbR z18S)Bba4!kkjy=JTc}Av#Np!FO8w0SS9+Qw{`@z8X29dW?&!)#-%Oqr>UL!9{kP`t zx?O53rc6Gtvdh`ds`Jha=C?X0?=Y3?cfM~t>9xuCz!uM>`ws6_KiXcVzZbRtRo99aY{_l!4$ZVbn<>!!>fwe*Ku0imy85}Sb4q9e0G(u? AqW}N^ diff --git a/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-dark@2.png deleted file mode 100644 index 704bd30e78e2b20637f3fb51a53e0dad3bc11404..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 915 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc|`>i~#{Y zA+A8h3=IE)prN55G;|e^OiN1(ZD`1yG${edZfJ-tDM>2pOe^mwXlTf+sK~Bt0}D1} zG&H1CwPuxerB$^ils2c=G^bWJq&BoARW~G6x1?4yrPj8m*EXeAH>6g#Bv&>iSGA@B z)l{{DR93a7R07GSl$z!=APHnw168&FxhYl6DK(90RbY|YmK2~-Rn2KYEg%I=Kz2%H zQwoFuA{(K)z_Q6eE?6;xwkdrS{DK)68JU<_SlQS)xVU-w1q6jf z#KgoUBvn<_)J#lFO)aggtesulJv_aVl2bCXva;(Nnwp#2JG#1i`}+GQOq?`z+Vtr& zX3UsLEO?bzlm?7fOHUWa5RLOwFNX&o3J_s=pyBIqv~6!Qt9C-O$3~ZRjIII#qOQGN zZq2{{-&bK&Q87QfWBq-fXMSb;hyN(2O+TIEaIST20Fy_{Hu1SuTh<<7@LUt(!r8I@ z)~&01nb%G6o)k6d`gfVKyIFHP9{ue4qx!e$MT$3jDChThDNRxOVkin6b-rp5wPf=ef-c_|y^EdVRw3Lb=ym?>)s$_Wijxee3TCl`A## zW@X*!=C|6vc)fACtYl4$jbUk>)MMwyW2`?!<{c95Jv}3EhkDG}SEkXt*Xy+&A6&g} zl6i$xZ{(jHSBnJyr7b+ekjgi4;kB4!e2Oc)e7QS%Rv$N$Y56k2|Kzk&Q!QBBZ!OP? zoz(s(RK6(Z=Bnsj$$5_-_}Dd{t!%$2_*Gg?&~*RdlS^9OrSoxv@`R_WpUXO@geCwr CBX*ns diff --git a/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-selected.png b/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive-selected.png deleted file mode 100644 index 077be10014c8136b93f8bdd71b4e82a0c59af0ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 395 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(Y=BRQ zE0F&G|Negvc>MqWvllNeg1PTMe0caDi2gtM^y%jRPtU%6d-5NM-ah^R?dks?uYY`c z`v22?p!olv&whS>@cY}t-`}48{{Ha)_h-MqKl%Ut$?q=@|9^QX?as`??nPKV9pt~?`Jd-J=Q+>W&S@?#$_wE} zaWM=FQRd4_(7ew#I4tDB_Og3uVl~Q?Y7U3p}Nza8HHg1yyD|(92J94O620^B4xDA+_0n@)6`^td9(GCmH zOJ17rIYXfS2rpyxZkW9r=tjh{Kkza(U~GN|_mbC10K!dpomQ{g3T~=anL3G{L!&P# zQegpsfvjz8_VyhdPEZh+%L@(-3)_Vh8Oi7KqmTrG=;)Xjp(rlyP(p%4au_KwF)1lo zDosgAO-nzTk&&5sEGru+Cnq;oCX?ehu23kl$YT-c?cV{C)N)RaC&*VYp3&Cr|`IatLn2u&bj)wzN1>2 zp2`?)sy>pftP%=GKe!p@ZI ry!QB%tg(gU^S?yZd%u1&#-62FRC-QPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(X@F0N zE09iTXeelCNG@zhZfJ8AJXv=Tv$ZKxTYwpZ# z>Bwp9tmy0q%4XEJtlqkQ?Y52SbMxH6AxG7&`zb9iUJ$JkY4spSbtAJurDvV6L9OaXVS_c3)-Yc< zH|dP-giQ5|(dju}PgM$5sjT>VwkrSqE;X%R7iVm=-|(EjQCN8E^)8{gKvyt$y85}S Ib4q9e0Ku@gy#N3J diff --git a/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive@2.png b/common/gtk-3.0/3.16/assets/radio-unchecked-insensitive@2.png deleted file mode 100644 index 95d1ff7f9d0695f73e20c4a2959b166204b3f47d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 904 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc|`>j9vjg zA+A8h3=IE)prN55G;|e^Oq)3~7X&617WSn91+yBWfr8~7X&oKOg$>C-c5wqxJh8GZ zqog~fsx_siIkTcYt+Y9Hm={XdE1_C7cL&Z2t=2UU%q_e z*^|r9pIm+Z?COsX4}N@l@axl~-`{}f$=`2J`YtR{1%_o_NswPK10y37GYcy_J0}+p zA3wj4kcfz=n7E>nva-H`p^2%fnXR3ple0@?RCGdOVp2(Ic|}D{ZC!nRV^ec;OKWRq zS64R>^biSb7#Dv7#;2L5i(`n!`Kg!FgAX}KusjInVA3*MbK^i4>jowvm!mooti4D2 zA~Lw{{r{iEyOHYpYC z$jJ`{xkee@Om8f3s49uIE-)pT0H~mA^WLdy&KKPfZHn zPurdNTDI==2h%HZzTqnrr(RwWo67%AQ<;B8*v)>W?(Pq(_bAtG`0=^syZdh8$Wv#Y zZghPZ7qjuFRPEfIr@uUQpLTA)TiAzVkIL7qvT3#cwz(qYUFVWhZo12rd)-yzp7cz8 z^57~LuLQTQ!U9n*Hi_a6Ueo7BWekzwS*~t5G4|UY3Y?SMs%gi`(YwWOYV?Dtit!#n zZjwg(PfYw~k#_By-xT8;@$*Y($Oi6zDQNhaS5WMd;sep8ZJ>FVdQ&MBb@05Z#% A4gdfE diff --git a/common/gtk-3.0/3.16/assets/radio-unchecked-selected.png b/common/gtk-3.0/3.16/assets/radio-unchecked-selected.png deleted file mode 100644 index d66b77bb282b32ee00b1979a0c43efc74d22f17a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 428 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(QGic~ zE0F&G?(YBpK=kha|NH+xJpBLv;ipg6|NnpT>C?^c-|zna{_Okrd;fvx$D{KBc`M*XN@>FX{Ee@+eD<0VZv5)h;&#)=<5#1BIA)l7zJr>wZarpqme|N z8btz8<0~ozHR@n)6SFK!oG~CF3xhIB@4Zls0|ajGwYROuUkN?=&Ue0Z@}2X?@7JQr z&k=@-LNN>zDtBdTP)+cqAP8~TOvyP^f`}}oP9P9i?FAF44XNK%OkmjR2fhp_5uIOy zhVf=aky*R1(rhU+=`oANl3ZO^LsXR2>y!7Hsyb#eL>Ly3tIE?UkQtVu6X3aDqiO|; z0-)f{8+i9GOj`k_0sfnvwE@`Ry&b?lH}?-R%+C+QJPm*_1q)W-rZ{dKd_ckmJ~#jz z;BvSYNN|xZhH^3EE*Hf!<2*wHPxFjzNjN8fp9Ge6BXD+f0m03YZpQ9$Qt$yCAw4Vw zEahjrhowCWK1N#}771h^ft_4r5;)q!**!j9)K1F#f##iduaoqFrTn11ENXr1W{_CY zUUt%Npu8OAWoR$A2(*g?x`u{+e%aV3M6X$A*5qrkfWV;O;AP8KgoJ!13=dx!5fK>~ z6%`#F9TS@%7K_)R*qoHKB{^9plcl7jq^72SnUS$=d$v+ppwVcxIvtMV-xd}X6&LR< z`M$JNUs?4-jiI)#-e@!t1YtJsKVUi7&~WJR;ije|N19{fwzs1Hlq<7$=%fRehTh5p z)p5(-SL4@fVnSQ~->vCM8nGN#uRqbgX)62*Kv#RNmY|G%AN$4}R~JlUUzZzy+p_jW z?9&&QkD5N3{?cc<8$(p48*O+qC;YLC7iV&gj9XCyhGXR5gJEO*@J(8hSa?p-J}N8g zko?Njw(kB@`19=uNo`A_zMBXOwDteqT(oEH1<{6+!T8_T=VI~&i8*b9=|?wyE-Npf zPLmaL6FEJdoA|u820pFum(`r1Z|8u`pm}8Izgsz7&GgjYed%a5iN}XBqIKFiz?Ao&?ynkZ)(8$Q!Q;qV3$S-X82Ccle>6I9L OAf{C0XW!2%J@yG+%@id7 diff --git a/common/gtk-3.0/3.16/assets/radio-unchecked.png b/common/gtk-3.0/3.16/assets/radio-unchecked.png deleted file mode 100644 index 0e1275cb07590f330b41cf773d5850b248a15d32..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 463 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBJPgaDrq zS0J5O-I7+`kWtZ)Qq!DN(U4KsmR{SE)zFez*9;_c8rpIi+JPv$5yZ%E>db5E$ZH0o z_MFC!^3J|&kSs_F$jEMN&!}t3sB6urZC$-}{hDnXGHP4aZr!+U>xOmPHm=*g>B0Sr z4<7*0rAH4hJ%4ib#nWpqpI!g{@&1pG4}N@l@b}x}?up_5fNoMP3GxeOkd;$VR7%gt z%FdZIdHRf*j~+jH_WaA&uV24?`}y-+pHZuoc5!lIL8@MUQTpt6Hc|`>jI{wi zA+A8h3=IDp8X7`FSEZ%R%*~yY(9n?9(2&*8kW|*0S<#-{(2!W!mR8l8QQeZ#(2!Bl zkW$l}T+xtT)0_$vuWSQyQ!1O%t6Neln}F=ps-_em8%(A_7%;&!5Th9=2vm>;WB|F< z%^)q+Ao0}dCLozo-INC8LP;Q_B^9g-q!J_!(giXWi3FR|0x=C_6cS3WZOy1{gX*ej zNe80Zmdx7L%sL=y%c^TD@9Zn@>aPHz?*7W|{;Hk{?bBy=OrO~`b5{S{c@yW&pR{1X zw##;rfqw+UAT1Y;-%vkFCV{j z`S|54C$3yM`SkIX=TEM_czW%}#|J+?J^1cvZzE?d80eHhzuLVlvpu oXD99Zx9yb3ib&%*VSf&*-_rfyykAk#43twmUHx3vIVCg!0K4Aa}aaaFVDnrhcomEH>~T^Ch*E~|81*66vQ)^$m>`?6}+W%b^R zs$Cb=doBXGKvJ#el3F(q0aadtu^}Q*QoS3f5ksmADyvYlN1@(X5Ql$Mc` zH!w7Eb#wRf_VEi2$;&UCHD~Vp1zWdmKXmli|G&`l zvPs;!@5$eL>!0(UU8||HaLu{4Jq4f6q(m$W)P7oY>uB8--rG0WPH)jl(ai5XBy?uO z8RvO9KM!-3@GOm3HdVdd=@$EB?Q=n)uYx*vGxU6zf4*GI)Z@Yz=8jEk*UsOw>A@V9 zuLcdG|E^wJnXzGk3sWwq!z5q%<>q%ld=J&eSu7h4FMF;N`!d92N4r(yEr+qAXP8FD1G)j8z}|`rm_H^ z5LcjLhX4N=8vZk^TIJBN-+1O3?S`u=lWyyEU(}v@RlV~Dkge2lMxp<_Zu=$ezN^|@ zS2g>usdt`J>${-Rc~QCdvReNo<-V($UFS7=FR1lgQt7&=(Q`?y=ZaeA1@*2gYCRWJ zx-MySUsmtDqTYQ`ts5wHNww#)YS%^eo{Q>Tm(;s2t94yg>%OQ8k^-_X0%g^^E~<51 z0xDJoN`XwfqzY69RMP`g4-!`calve$vL3LpATCG{s1jrpOc@dzVhC6YXlD0Cm{Cy0 zXk3^HAXx@&GX`yQ1|1->U<4vvD<%V5CIfpWLm+Zs1|lOzW+P{2V<#3!=}FgydfPF?~gyrhyKzhDMNCT12^Hg;|vUOs*SK_LlADQOv5 zB^6aQ4I^VyGiw`r2S+EDfS}-z(6I1`sMxrS% z2Xj|9C(TDaN?v-^>G`dvJYKeymrHtTC@O2GyjRv%o+-&0?soI)%XeSpf8JYJTv~qr zy{(;nwcShmLdJ)yPG~SrTvf-oM5pA?ovBqEmzSTByx*QuBDJ-|*5#(1-TEEhSG*Fx zrr-Hh{k+u?HODDW|2@npGkCM>6Q6d{iOKgqE3R5;(jF_i@4%seBI6WZ7u&nX-p>6o z)2ioI=VgZpZ)Y{$eOs|UFjzWEmL<}Eqx9| z-JEf$H_Eqh#jf5rcO!iki9L+!usUYcbM@B0FX1*WS0y6P1^Otr&wKgdNYOLtDKQC= z$9`>*OEG7g_s8x4YrNw5X{SHEQ|Nn>cBpyT-ZL>5I3lmES-@d@LQn9W&hN+~)=#G* z4yLJ0IO5N|{Mm8)g!G%oC#?=B=$u+}_JxOwV?oxf!#_(Ibbdz^iF$cObV@e5i0~|r zJ~QXL!CuI?uV)&VD+KdOy-fNyz zySYzNc{IO0@=X9&{FIGNz8(s@XBGs`J2^@EgQuyshLg?B-nP}J&(v`2+nASHxqYG9 z?gb?~j8f%V*6VH3N&b7wp=d^*ncac(t!~qbS%P1#uaoMqI%m|AZ(6(ZXiCSgO%wN8 zw|8DyR0e-;l_U4^GZzdm--ndt%Ro!p)OQ1(tcwGc}trrIat&)rGSoptW?_|CYau XU0JD%3U79mgNk8KS3j3^P6n$ diff --git a/common/gtk-3.0/3.16/assets/switch-active-header-dark.png b/common/gtk-3.0/3.16/assets/switch-active-header-dark.png deleted file mode 100644 index 5f33bac36986d12daba88036d6067ff021de6bfb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 807 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42=2# zJ|V6^#SH)dtMy$_>Aa}aaaFVDnrhcomEH>~T^Ch*E~|81*66vQ)^$m>`?6}+W%b^R zs$Cb=doBXGKvJ#el3F(q0aadtu^}Q*QoS3f5ksmADyvwxSFvsn*aUdUi7>c5@dFa~Do44^AsjPHQhtTVF0~A1)goF8d%ZhhQG3FdpX!9_L6N zmqEEnm7F4SAPg82Z)|DQGKfpb}S^&1RsNBw%K&8_DV zz|9o#FkW}ANi%DukjQj~BR9VkmK_H1U9~u`STx9**)D(SrGEB-oEB%_c1E4g+jpBx zOeQ`~$rY&fS?S})|= z`9$H?AI)i%XC~^F8}N1K&rOXxcQWYamxIrE-fr?)92RiZDOca3!EfD451&L%Rk4{R c5BJwHZckCqOKiCN9+Xf$UHx3vIVCg!0O8_EDF6Tf diff --git a/common/gtk-3.0/3.16/assets/switch-active-header-dark@2.png b/common/gtk-3.0/3.16/assets/switch-active-header-dark@2.png deleted file mode 100644 index 7690f3fa6adfaa3fd61a1fe5d404232697d00542..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1529 zcmeAS@N?(olHy`uVBq!ia0vp^NkFX2!3<)R`n3Wn=3*z$5DpHG+YkL80J)q69+AZi z4ASdCm@!Ujq6|<_vcxr_Bsf2(yEr+qAXP8FD1G)j8z}|`rrZFZ z5LcjLhX4N=8vZk^TIJBN-+1O3?S`u=lWyyEU(}v@RlV~Dkge2lMxp<_Zu=$ezN^|@ zS2g>usdt`J>${-Rc~QCdvReNo<-V($UFS7=FR1lgQt7&=(Q`?y=ZaeA1@*2gYCRWJ zx-MySUsmtDqTYQ`ts5wHNww#)YS%^eo{Q>Tm(;s2t94yg>%OQ8k^-_X0%g^^E~<51 z0xDJoN`XwfqzY69RMP`g4-!`calve$vL3LpATCG{s1jrpOc@dzVhC6YXlD0Cm{Cy0 zXk3^HAX#=ZCw4Puc5`QT3pWmP7fvfrPHQht8*ffqUrt*;E^8ky8y_zFATEbsZif(V z#}IC(P;RGi9;Yx~*Jxh1SU#_0KJQdM?=*f8O6T`U=l9Lx_sbRt$P)yjzPj{ zq2OYnkW!&gASxFM1ELDy@G9Ym8sW%Vk*GS6sCtp829cO%(dY)z*k;k#7SXsCvDg-| zxK^>aHnI42vBWO1#BT9~F7d=3@uXgfl!+3l6C^XHOJ&cJ%9$^nGfz5qzI5&a>D-0V zc?+fU7s=!=mMH+DrLx5LB4#WeB~DTs;vr@n-!|ID^zb&sM(=V zvs1BlmtyU1#X2C`qg20Nso{W9;{oNygUXGEl$(I)uyXSe<+c+lEyq<_PpY(?QfWV} z(tbv@#!jw&#{C6xsE1v4-*F|)9;v2*kA^6?7@3Q0&xNz2G8si>-H z7#W+IS=-n(0IV4<5dJ_2$dhZ{L6Z`u*qcKOTwFqrhZ7!PCVtL_+fI!SC^B3T43H5V`?BJxPg{4r`q=&JzDK<9 zOXqc8J9^qRK2H|DnWHSb=NqH6(ut{#rxjOyeJ58o6e%OO21_B zN-2ulaoTJl>)ZbWrCsN`EOnglRA={;uV%SQmKRim^U=SV!J;c9|T?6O&_u|2C|6#ic!I z*0x_0&(@TDVwL-?vvE@J4DYv2TLeN6aV`0NOYusgnakf3z@SM|`+M11Zjsi_wKl;{ z@|&dR@dSq7=)KFUseHn*g|A8H`HiJ-qVBT1Qt<+YezcJFY13tHLE?+eoI}3ay>qfk z_LB1UW7BKa_`G-Sn-v?xw3$v${qR-bYFOl+_S_}TY|7Vq)y->^!d?R-f9;rrPLHcgzt3k;{466{lb_1)eL8EP|@q@>gTe~ HDWM4f3XG7= diff --git a/common/gtk-3.0/3.16/assets/switch-active-header.png b/common/gtk-3.0/3.16/assets/switch-active-header.png deleted file mode 100644 index f8e9eb1dc66ac434bfc3fbef9eaf747c1e51a831..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 807 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42=2# zJ|V6^#SH)dtMy$_>Aa}aaaFVDnrhcomEH>~T^Ch*E~|81*66vQ)^$m>`?6}+W%b^R zs$Cb=doBXGKvJ#el3F(q0aadtu^}Q*QoS3f5ksmAD(gP`s{5QPU=t9!+-5^XVpm*` zUvVRP$+hUE*MMsDCtS9he#L(J6{ne3oM&Efopr@^_EoppS3?(Fi(GmwYAHxr?DFez z%YnMCC#<-Zv+hRco?DX++@5sk_KYL9mz}<|{LGydXYQ;#duP>|yT@+bJAUi_@!R)L z+_``2$%ETZAKZER;NG(bk6%7~`s(4EcMspafAs$SqmLgRfByLB%g0AQzdZi+<O$_n*IiwHaDEak7A-VTpW;A1>2-|~nry#HH31Ygp zjF&vkn7PGswaGQ1-Z}sOOHW#sxhLlR@psby&pn+V9qj28JNN7Egy(ZSC;6Dg=bCAs z|EPthITnu{1D7TT{& z7D|nr@R5OIqUzH9b0!5|tz0ygR+M8Bxc-eYX@Q&(C wpLIDBPw&JfFqEBJSrDSiX(~0ZN_odZg!p00i_>zopr0J?vUmH+?% diff --git a/common/gtk-3.0/3.16/assets/switch-active-header@2.png b/common/gtk-3.0/3.16/assets/switch-active-header@2.png deleted file mode 100644 index c6e287a3f3653fb5be6acc1b77d65805570f987c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1552 zcmZ9M2~bm46o#V#0V^29Dj;qUUXmfALe*AL1QRu2Sp*`Yf*=7=3bHFzi%Shz1PQwm z1QbPN2`W`w1`Ue{VM+2{60(s5i$DRPY|0{ip>^8n%(?ge=ltLNGk50BrFppRGhA%G z7=b_-lJ*l0!ez72Fz}*?%|&fml_kT?_op(=6bj zSuD{v)+;h3HX$&Yf=Eb6unmhi9djb^48=AwI`r0%gE<1R@Uq7NZz2pM=H?JdbBNN? z-AT3fxjdUB2+fk&GWa%`5QZj!wPiAIU26LVs=y`%vY|t`R1t>O2BdVLX?&~eLLgOO zl>*`D?bz!b08@ab^RY|;zytwW2Zjy;%nmeNfMp0VG!Vn!0}R*_STlvzbUud3$It~B zh7h0&0S4b%Yr&ciyBInjpbKEw8n(1)0&5t9879nY=YY1I*D%JMkJYx?AxvtczGDB; ze}~Lla3+KQHR>Puf9=?!QDBab1t|i7u=Tz?azZqY|w=by0W1IZ0N^)$o)3taa-hB0C^Qc zK1HHKcSOE-MThT-j@%Okl!yaM#6b_l!KLD`GV$qhad?H~r%FjAM;ytKL~$h1Rg#!T zlC#y4i%&bLFFKQ7cBa%yQ{j3oO?x9{y_RKiWjS@SoO)Sqz3e7j4YIsOc|nt`ut{F@ zPJXvpUfd$T&y$z(6lJZ7@-}&8yP~Q?@tCiu7AT&9${JAl98$g%DQhK4uB59`s(dT$ zdMoQ{l6N&Lx}a{A19SzbrA0Yk=QAi$rkpHZ>c3Ga0~( zvd|lT>SAU<{pMsnNhML&el9@CWovy%k>OSb)~e}hN5j;qUFj=yT%LpY zvy8|KO18_t;QuyW^t5=IgT3j{_dT*mP;oIZw8tt3%9W4#8+pEUta?Z{w3%Wtd<}KV zYa%EKYbQ>D;8j08r)zoxp0n!}>!OQXE|8q^pOHSn3;cKK3WBV)!gH@coP*eB#!E`lkM7aW6)9?tNOB!qn!8&XvM~#!4 zT+1ovR-#;s-E=v03@~g{#I_|$qE_wzAO#7 zSlhx|W|HAEkEPWvGSa=yn_*i6p9+|n;VvUqB!@3M6ixAmRE!|9N9yNbdjq$&nc#Pn zPw4D#y)9G1uf0Buvv;IMF1dYJd9LIgfHrH3m`Pj^kog$z+S7de(XAvPo*VjN1O5Z9 zk-yg1JUOx64nMu+Sa0QKRCW2KS1+!3j=4W0NJ``pJo0jNVHluw)g`Bt|fC%2+% zRPeL*HPC9%r~m-X_5EU6n}<$C9}H?DR#H%L16D6MyLi5QsysHw$g|P4dZ4U-Q^>V6 z405G2_?(LgkhD!TW?a#oeaA@Z{UI^gF1&psc6-#i)l;3wS<+s~FwS7RzR>!>niVe1 l3+sH+W_1XqT;zjXPM2{xRi1M^EMEH~lZbAF3g_dO{{nU`AAkS= diff --git a/common/gtk-3.0/3.16/assets/switch-active-insensitive-dark.png b/common/gtk-3.0/3.16/assets/switch-active-insensitive-dark.png deleted file mode 100644 index 85ecc9eed73c04daa9db6c198a7057007cc44e6a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 802 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42*mM zJ|V6^#SH)dD|MVv>bR@We_yx#l6vP2wZ02#eK(bQFDUh1SMR*2+Id#B|FTNYRjs}Y z>fLA6yDzKtTvhA3sM>Q$z3Y;CH&F1hTJL4G?u#Hs*G09SD{5Vr)VeRJc3n{Ix~$QA zSsf?^6afidRO`O1+I>mBb~jXU_eG_;J!;(-fTqb5u8=8QrP_U2wqy;1jyaQ#1(UuF zlc56(2syDBJF%F$vzU9bTKKYB__12~aXQ6vIs;KWe?T#RKq-GvsX%yxP-L@EbhB7| zmsIvV>B1G#g)60tSIQQzmMvW?Te@DhY@=e$9>qE!+N;>GSGi%oa^pdj_ERdIXMir( zZwtB$43MajAirP+Mt*()K`CizH8pijO)YIbJsVrQ(6F%Zh~$)%?3~<^lG3t@%F3qZ zme#h8j?S*GuI?V?detr^|sdL)%@KjP$Nt=;L-&@$a$*jQq%Wf@sqQ;o>n`dr$NyznydpQ@JIP<5pGTUrT$&xMxt}|!W zi|#U;l~@wRu;J*LGv7sxqz*sNW$-8!&tH*b)YcurWN%WdD7 z$LJ8U?&9&t4Q`L?wcZq;O+Quqch>Qz7hmwW9X@${ZzI=IKG$nyxl41tTUd(CxqH;d jPwsn6nxf68{TK9?-Q!HUcu03WD2;l$`njxgN@xNAsRT!i diff --git a/common/gtk-3.0/3.16/assets/switch-active-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/switch-active-insensitive-dark@2.png deleted file mode 100644 index 135cf60cbe0e26a5f1d4a7185831209b84f37a4c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1488 zcmcK4iBnTY7y$4`I6}}sj4_392{|InS^zWsLh+waZ1*?IEV=nZ%~ ziX8+&c#%*L55_dmy=*PbQGRqa7%X#nq6Ax8+ll8flVFNFAWY7MAZLxaTkN1TxPV2c zyzr#FO*t8Pg{g;jLxqKfY{~xY-1O7~yV*I1_MCVZOo1Q_AvQ8093(>v3y>7Fh0Sek zo7)ybrTv~#Bdopxt0&y0&s^&6aqFfy(h-LI5m;GKJF=qosk`a{Q+A)O7=hJeR8&W= zdko8URHXszGF1;5s18O9)EXnT&bR_GtweRqIz0m&WuOLn?HFA-PD6~a(#TZk8S*h0 z)iY}!Fc4szf$HfBJsmaB6b1&WHRmH*I;fA1(-h+jxt^gk&=p!5s%Ib|7^kCp7}3!c zIy$1KA>fFCfq)n3!PI=pyk(%FI)=F>C<5aD0`pW$Q|M_R-%JOd5X&E81z-SnAjUfw z;~k3e3AHlgS^4m-I6N!g4OadlYqO2k0YDTsI2Ie6fa4|OcquqOuoD-ax+pviFB0QL znfQ%B7Jg$kJ_^|95DnxwL?3jB&2@;+cZe?_BmhN(M4*(grJQIcB_>x8w^b2Ss!1s| zv%}jvI1rYSmXV!ZT;1F~s4z@pd9m5v-m85$Yq^0z zK{2s$@rj9Bl9H0QZBI!}6YrK}W#{D=6c!bilpHRVN-JeGwQ>YOQN{n%5*9ZlfO}ma z5`-lUu5h0$<2oUqgCU z^aU;3(|+vz%`@MItUDYcsrY#S_v$W;lfRl9fXP42zb+0s|9D3Ac5Ao|Ir%c;K0W{E zyT6}WPBDiglW zq`l3M#7^9oH0X6Tt%=L3u3u}sdp)9`yq~r%!&7`?(tY^1Ev5$58;tnI)Y+3uKmD3% zDj%YFJ)bOCs#3^VclCLMb^=$gDCNHb7`dOlsOt7HHFu;rGI^m(5U3YiF(= zIh9Um*_EEtu-?r{+hkhZor{s#B%igfxlhH;wDz`3s=K1eOunDw_OiLi+0U|?t#^+5 z+4gh}{XkqVi2D%t{*aLg^~!wr5hUUz{*eL_{)~ObrO&wDj4_kjZO7t-NnIGn-A<2$f{A)27?P#;S#oWivem-!(T{M>IsaIejn;xM`NC z!^kcCz~a4C{YOW(tF)0Rd(v}ud8nA4pZn(Ac*YT#%ekXbYo`gX=4AECfJZ}RF7BEl z>&tFk7K8P~7|v{%Nkg=M$DP%-)B5U-17Y03nIq~46i=~lF5#i9Bl~^~f>&QW-FfM9 z`2_j+o#s%Jrz!4bV*JWq{z2=FhZ`+@qey$t7bm(^v3k!{elgBY2^PN*g)B;LOu@f= zn?LyS-my`VKrk!`5=VV`{nyt=oYnU8tuGF&A#`&%8iL+#W=)}>F-d%q>m%YdbJ=RL aa2{(B=26PBdcrsVQAOd=f=j$zmHz^b=XRq2 diff --git a/common/gtk-3.0/3.16/assets/switch-active-insensitive-header-dark.png b/common/gtk-3.0/3.16/assets/switch-active-insensitive-header-dark.png deleted file mode 100644 index 1b3ab46fc5e28e36ee8f0f2854b465d27a7ac955..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 788 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42-M+ zJ|V6^#SH)dD|MVv>bR@We_yx#l6vP2wZ02#eK(bQFDUh1SMR*2+Id#B|FTNYRjs}Y z>fLA6yDzKtTvhA3sM>Q$z3Y;CH&F1hTJL4G?u#Hs*G09SD{5Vr)VeRJc3n{Ix~$QA zSsf?^6afidRO`O1+I>l}elJvU_eG_KJ!;(-fTqcntWoX0EMK}ozI+3_xf8p&GpCg& zrUqDbwT3Ss_T~kv_TTjo%)-E(GEIcAPB_%s2x1^-BtfI2Askx=Kt)ru} ztE;=ahX~Mhq00~$=5n4cjv*GO_g=XfcE~`0?LnA>K!J0acz|PBz_O{UrZAN{yPCcI zZO_FSaI0mGWsKqW$?un>8`Z03UVqvhcPCV5iPq20EBY1hU9n|b zw$nIvMSigp6_7gkJeAW+XLkOAj-CVo!=|Ry?~VuTDYN;tNO`*c$K!7|9^0{~U;F1r z(^*+>q~7Ll-C(b`)OOB|Y`J5L4b5^c>$c5xs1z!-X<4?9BeACc?7K*-_T#qG`zp%+ biO*u*n94LiaLTb?pj7GU>gTe~DWM4fP-aGU diff --git a/common/gtk-3.0/3.16/assets/switch-active-insensitive-header-dark@2.png b/common/gtk-3.0/3.16/assets/switch-active-insensitive-header-dark@2.png deleted file mode 100644 index 506f801e90ac924e51f7efea43fd4b21d6a5a46a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1471 zcmcJPi&xTD9KZ=PK{Fg9W+KVs$D?Ih(^Aw@Nm9dCh$xz=gicYXhKQLJKEdA)%-J|@ zxn zzd|)ey3Pz%*(ZKxAw~!`)72Jwt%U|pZ$gahS`!NyVhVrZvWH71tM%+yXY5EBaq#uO7VL9mgj zH8Non0|q5#77R8r0oPh(T{1HeBg@(oGy(Pp!|F~lv?d0~w_*g+&WCH~v)j&>hxH4` z`th-Tk=Ot}HUP*dY>)sOBy<390U`%(ydziS$V+nMCFA%K9AAp#XW;mmxJZBu7nSW4 zlj{_d=Oie=3*~sB0xtp-;YG#x_!4}4DPDYxU`0hpt{^6CQeHDDuZ1jcCCe|87477rPPd{ix8feRk{)XD6>7;< zYAK+XT6&#&4A4hc_0!7$x9DX9^ol{cdKjv>162(}>QP8-fNI9UElIt0D8V!6C=^7+ zqE?~NHa4r**x6yQSbN8HIGoeRg!M#{D|sV@N{1kZ`xXxmPtUE}yu3Mn{{GQ1`vf9U zd_saaX@7E>M4Fx@%Pv$DDT@!6lpHBlsmiO>ni?2J5bggkj%x(q)uR>RA;CiD4bN^Z z2bv39?Oytrx~3krD%iZ1x5WErx$0?U;~SsmibD58Aq^eI^8;|mc4^z#V$;%(X}a9G ziH%K7JDYlfX6GYfMOQ1`V}~So{>;(WePq+p`p}|FG%{isjH}zR>%qSdHZCJ=^L-HP zLG4`I{mv~(#tFNz@UBdLji7twD_uTdDe%1$|82xM49O#Sx`7lhcWzGKn0dO?w!1`F zTex^Z(!w$97=HSwRaTvov`IUH7Ef@h6DRZvf}|HEe!*#(xe2FxX9r3nh4P%}u7(V0 zBDMWHMeD${#rqPfdr#c78LlAo+%C_27tN%a2CoY{(>b;|q295P_nuS*kr$63rS|L) z!p*madrvAZrx7!U((KthXvJpQ_iX10TUiYERERA#_IV)YrGLUgWsnb2tY1yr8?1S; z(I*1+Ar@wb6sJ;Xbnfg{`Fqd5$sGm3tvcSGRH&Iyxwg%)Kk#v?&Ot(UpD!!Z;MZ67 z#%0_bb@^m|a*TFzFFI@QtCarH;2WAyH;1V+m1z5qT2j&@J?B3&pvTx}RJoWp<=-SZ zU0CdRK{gQTB*DE6Pj~;+jwmk9-d$twSIHT2`eB>?ubz2S|&lAN%}|>Pee!j~=Z1{dn@7ho`FZY5L|7j)OS%eXhdw`&q@|{0y(by04D> zwk~U-;(2sa|8i=e{$!Y+KuOfkP{u?DdIrKIBY(DZbR@We_yx#l6vP2wZ02#eK(bQFDUh1SMR*2+Id#B|FTNYRjs}Y z>fLA6yDzKtTvhA3sM>Q$z3Y;CH&F1hTJL4G?u#Hs*G09SD{5Vr)VeRJc3n{Ix~$QA zSsf?^6afidRO`O1+I`7w&J~Y2SD@-af)`xpTmc%W+I=~0#kGVLH=-6_jamw_MSsF& zyXlu5reAiNdD(g9W!Kq2bTw?z)yQR6qnBNcU2#2r#r4D$SF_jO?A&vE(*E0%4&R=B z^!Bn-cUGLavl58T-8p{y-ibT+Za;Z&``Lp#&mP=+_Tb6ON6%h9di(y-`}dDNe0cKd z!=o=B9{u_PL{I*Hd-6%ZQ5zU6F(pBM!3>Q2`~ref($Z>b>YAEb+Io66wsxUmVc`+U zDJj`Gxg{l~Wfhf`P0h_Mt!*70on2jB-Q7LJ0qLusxPkGY=;`7ZVsU!!m78IQ3lH7J6$y=d{#RQ})b%ZP+xu|;+&Xp3nKQF)ZF$U{o7&Cd zX}DSPlVwNwV;1HoEAPE3oBb^EjIrVA-x@pfHza1{Wu`R!Fnr1zZJo8Xq$Q&hNw_{J)e#Xg3XPCP<+v@I|dg1Gq#&Tg^!j0#1d!mf8mNAG{ zynMBHnc0zP6Jr^sJYU)_R~;y2{_7O;t-mWnt9&x=T;DvYVNvrVhXV6Thp{mA>$F=11{ zycdS2crI_sJ#Eu_#-hC3cHXh;wzBb`{r>8I;caSsDA(SyYa1xBdb;|#taD0e0sv@k BiJ1TZ diff --git a/common/gtk-3.0/3.16/assets/switch-active-insensitive-header@2.png b/common/gtk-3.0/3.16/assets/switch-active-insensitive-header@2.png deleted file mode 100644 index e9f7b102c1bc6dd8f83c03c06a95c3fa674a22c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1558 zcmchX|3A}t9KaVB;~qM?x-ye*`=S++dK9`lG_lCHQQOgVQ%7*VT#aJY0n(RqS zrp84kr!o>FP^qb@_E8sNl1?+?Bkbc6&t89h2!lfDxCHnHdm_cC^>tJ>a@Irm{1E=S zTXy%ZYzW8gz;Tt9*;ClUKIg)xPT682YaEGKGsV`-Nz1Dvws`{tju^)swgDuBLIsW` zu_*wNtnF1f5s={6piMqxQwUkJ$94h|+d?T37$O27fjLYlkm1=7t^l&-NQtar93Zu2 zju6=hG9n-)aHIqP#B)F*FsiL*j}nmifDF%(5m{1V0Z8DC;sGgFF?b4<|JRl)zXCgxo`;(z{NAVmf9;w$N`Lsx4%aM>cpnZ|Vz6f+E z0v)*$CoZ_33mzy1UCO{iW#BjEpj$cUQ2`#V0KIq+g$Gi2kPi>^;X%g`svy5AC;*`v z3a*BZ*FYx_Y9V?p6nYanRVQcE$;0dAXX@qAx8*U7@|Y&Y`6fkNi#)DHk+hSY3+3Ze>xol8exzEE6cp5roPLq4K&=$?J!!MapUsTqA;O2jQE8aGe;g z7sI!Q;l^ROX%uc5h3`nR9%p&TcHvtRQ*bo2v!ZkDo8V}&`hhIPpf9t z)3a*ztXlI@{rshRZb7}Us9r=^QZH%IyjfDed!v5;R{efiy{1L;@3LkkCz6d^o`=an zepJ*39UWcW&-C>5(FO*FMw`C)!uZQATfZ{Hn(wf*vcci-yY1}l9US&JI_-0Iadq_% z2n;%Y`~;0g4-GrX2tN}M6&;hDaxwK%T6%g$W_ET?UOtn>W&;4{e>n+Tv-*+uaD_s4 z58iIN(6e$%oPgC|O2ykGM8)@+{Qg9>Gcc?5ugk9*5Oy zAEz=G`AL)SvKIeZ?VK&?W13l<-X}ENV|t^%}1A+*6nHa23DHT01rL#z@N&samwmMvfh35z&1f7lWXy|)pZRYTYz&&T6UK~7W4J( z2Qzl0d6!zgYUx$o^Y@9w2xD`rKgj2)>l^1h5>L0e$()vNG|fNSooJxc4NM(xiu0tG zoO>M2Y&B}W?9j~36KdRKu4C1~8sA%16yubm3_FYFYn3-?)4+$;E$LOQ1Yu-_?sPEExQ#K+jvS*}Z!9L6uTNsn+{#Cj&F5ZtVVrS- zp~mh8zLy(`=B3XSF-+k7j!CXMCF>>alerbxUc2}e@+#AgihAT zPt_kz%u}aUD>v?A({t*)3^V3P<(ox<`3J@+&s;MCR9hlO@D9`i?xkTfT1<$RS^PxaE(( k1ssr{EJo_^#%JbuXe4>^V!vj6}9 diff --git a/common/gtk-3.0/3.16/assets/switch-active-insensitive-selected.png b/common/gtk-3.0/3.16/assets/switch-active-insensitive-selected.png deleted file mode 100644 index f128fe1b2f65a32f348d2d25d68712371936a23f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 826 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42%i^ zJ|V6^#s7ie-CZF5|Ns5}4-fx;ef|I2K0W>U`N996&whS>2tr>T z{|BP)&whV@1Vn$nJ^b_e;s0+>{(pP==i8(I-yi?^4wQZT>+7Sx-yVa}qrX3%LfPLR z|NZjh@AoIafwJG9+EMU9@z zT0NKbCtNn1bkTIuW%DVQ?WSLLn10!H_Eq<}S3T!m_MCe)dfC-jAX))L*DJQ%tlDz3 zX3NdGZ8y92-kh-i_N0TiXCJ-2?ed+&H}4${IISDF5MdvkR|(%px=y03WhSG~xRyAY9I z^?i-;A4k{zM<;qy-zII}bv-2f$a&R;OkH;8Qj(vx|F2K%U-tXD&7Rg(;omc_7$rUu z>v+3x&D$G2H_thibex!3+-dUf&gIU?$vnH{clk;!{vIdP4vZHDPgg&ebxsLQ0DY{` Ap#T5? diff --git a/common/gtk-3.0/3.16/assets/switch-active-insensitive-selected@2.png b/common/gtk-3.0/3.16/assets/switch-active-insensitive-selected@2.png deleted file mode 100644 index 14044f651243a2e8cafb6a285f0141f35d1529b7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1586 zcmciB`BPIz902erA|O|lqk@P*@MuB6qNRwaKu`|LJ&=evAPI_TK_CzX4@8b|s9X+3 zhtjbHIlRK9P?14o)JO$<2KxF!2rnU&JB1t&lG$z?r+-3sKD*!Ve&@UU!<)AS!GXsN zH&|{U5D12TzNAnXPs6!KS4)$n1?Iw_mFndeuB)qyjRy(fR`0woC6z$f@>nz1oU$yn zf<+6451A2`6whGBrqBpXCetw?k)9eCd!FW)lyc_o{6R|sVQoPq7;S zE&$l4d<+PM00@Ct48RPSgT*;8KMKG+SQrC~BVZBM#b9X?Ed34Svp_Ba@(G|A1&T?a z5C91dmht6fA^2ov315*4As`hhr6QmdDWzj@1{J zswG$vsg`h+9QI5=DtL)PLnR$oNpThIgtK)T}am^}ilXGXA-LS-7)sXlL=z?&6`ZixG#LLrx{g-m)Q=GGu=l;#z@xSAiU= zM2=JMI- zveC2_G#zS1FSMeUTG1=*XjVIV?HPKl6TRMvBL0M)=TkpL45cw&KI62~WT(G)I*X7EX94xgIC=N9kBV*$)OiWG9 z%(qx=wI3}n^Y&*pYqUZAGv^9(~2Xp`;M2HS>#Z&=L}Y-Z(?oD84MHq!=8&TSUE zN&*g&x?I?I!pNQ;N6&Z_sBzb`9h}DF?ZqLYea8N?w38~c=}vv}X!NVnu(hU)+s>)U zI^k{Xyp#vq@7o!~AMR2LGF|udk?odQ4=P(%l_QZ*e$4Q>&>F;Ucm&UaYEk~lv=F8(}f7=vDO}aT;T3Dh@4{ato*wbXHm=EG@bv5QYV(uL3ugTM0)#+)* VeS4_GCh&m~{ComQkGx{C{{>Kpnj8QC diff --git a/common/gtk-3.0/3.16/assets/switch-active-insensitive.png b/common/gtk-3.0/3.16/assets/switch-active-insensitive.png deleted file mode 100644 index 59cf2607347acd7edca601cfefca1a6e53b283ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 811 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42&WH zJ|V6^#SH)dD|MVv>bR@We_yx#l6vP2wZ02#eK(bQFDUh1SMR*2+Id#B|FTNYRjs}Y z>fLA6yDzKtTvhA3sM>Q$z3Y;CH&F1hTJL4G?u#Hs*G09SD{5Vr)VeRJc3n{Ix~$QA zSsf?^6afidRO`O1+I`7w&J~Y2SD@-af)`xpTmc%W+I=~0#kGVLH=-6_jamw_MSsF& zyXlu5reAiNdD(g9W!Kq2bTw?z)yQR6qnBNcU2#2r#r4D$SF_jO?A&vE(*E0%4&R=B z^!Bn-cUGLavl58T-8p{y-ibT+Za;Z&``Lp#&mP=+_Tb6ON6%h9di(y-`}dDNe0cKd z!=o=B9{u_PL{I*Hd-6%ZQ5zU6F(pBM!3>Q2`~ref($Z>b>YAEb+Io66wsxUmVc`+U zDJj`Gxg{l~Wfhf`P0h_Mt!*70on2jB-Q7LJ0qLusxPkGY=;`7ZVsU!!m78IQ3lH7J6$y=d{#RQ})b%ZP+xu|;+&Xp3nKQF)ZF$U{o7&Cd zX}DSPlVwNwV;1HoEAPE3oBb^EjIrVA-x@pfHza1{Wu`R!Fnr1zZJo8Xq$Q&hNw_{J)e#Xg3XPCP<+v@I|dg1Gq#&Tg^!j0#1d!mf8mNAG{ zynMBHnc0zP6Jr^sJYU)_R~;y2{_7O;t-mWnt9&x=T;DvYVNvrVhXV6Thp{mA>$F=11{ zycdS2crI_sJ#Eu_#-hC3cHXh;wzBb`{r>8I;caSsDA(SyYa1xBdb;|#taD0e0sv@k BiJ1TZ diff --git a/common/gtk-3.0/3.16/assets/switch-active-insensitive@2.png b/common/gtk-3.0/3.16/assets/switch-active-insensitive@2.png deleted file mode 100644 index e9f7b102c1bc6dd8f83c03c06a95c3fa674a22c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1558 zcmchX|3A}t9KaVB;~qM?x-ye*`=S++dK9`lG_lCHQQOgVQ%7*VT#aJY0n(RqS zrp84kr!o>FP^qb@_E8sNl1?+?Bkbc6&t89h2!lfDxCHnHdm_cC^>tJ>a@Irm{1E=S zTXy%ZYzW8gz;Tt9*;ClUKIg)xPT682YaEGKGsV`-Nz1Dvws`{tju^)swgDuBLIsW` zu_*wNtnF1f5s={6piMqxQwUkJ$94h|+d?T37$O27fjLYlkm1=7t^l&-NQtar93Zu2 zju6=hG9n-)aHIqP#B)F*FsiL*j}nmifDF%(5m{1V0Z8DC;sGgFF?b4<|JRl)zXCgxo`;(z{NAVmf9;w$N`Lsx4%aM>cpnZ|Vz6f+E z0v)*$CoZ_33mzy1UCO{iW#BjEpj$cUQ2`#V0KIq+g$Gi2kPi>^;X%g`svy5AC;*`v z3a*BZ*FYx_Y9V?p6nYanRVQcE$;0dAXX@qAx8*U7@|Y&Y`6fkNi#)DHk+hSY3+3Ze>xol8exzEE6cp5roPLq4K&=$?J!!MapUsTqA;O2jQE8aGe;g z7sI!Q;l^ROX%uc5h3`nR9%p&TcHvtRQ*bo2v!ZkDo8V}&`hhIPpf9t z)3a*ztXlI@{rshRZb7}Us9r=^QZH%IyjfDed!v5;R{efiy{1L;@3LkkCz6d^o`=an zepJ*39UWcW&-C>5(FO*FMw`C)!uZQATfZ{Hn(wf*vcci-yY1}l9US&JI_-0Iadq_% z2n;%Y`~;0g4-GrX2tN}M6&;hDaxwK%T6%g$W_ET?UOtn>W&;4{e>n+Tv-*+uaD_s4 z58iIN(6e$%oPgC|O2ykGM8)@+{Qg9>Gcc?5ugk9*5Oy zAEz=G`AL)SvKIeZ?VK&?W13l<-X}ENV|t^%}1A+*6nHa23DHT01rL#z@N&samwmMvfh35z&1f7lWXy|)pZRYTYz&&T6UK~7W4J( z2Qzl0d6!zgYUx$o^Y@9w2xD`rKgj2)>l^1h5>L0e$()vNG|fNSooJxc4NM(xiu0tG zoO>M2Y&B}W?9j~36KdRKu4C1~8sA%16yubm3_FYFYn3-?)4+$;E$LOQ1Yu-_?sPEExQ#K+jvS*}Z!9L6uTNsn+{#Cj&F5ZtVVrS- zp~mh8zLy(`=B3XSF-+k7j!CXMCF>>alerbxUc2}e@+#AgihAT zPt_kz%u}aUD>v?A({t*)3^V3P<(ox<`3J@+&s;MCR9hlO@D9`i?xkTfT1<$RS^PxaE(( k1ssr{EJo_^#%JbuXe4>^V!vj6}9 diff --git a/common/gtk-3.0/3.16/assets/switch-active-selected.png b/common/gtk-3.0/3.16/assets/switch-active-selected.png deleted file mode 100644 index ee2bfb61596e7f04dfc28268e6492e2d697c2a92..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 814 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42-4$ zJ|V6^#s7ie+vES=p8Ws*41~Ts`TzCl|F6$}|9JTO$D`k09{u_H_|MlTVD#wEx5t0J zJ^B0XF&I7h`~C6XuMqU)@7G8FzCVT_uri>^#~=j|HBc=OjUe*Qvj=ycK0uSb`|Kf5 z>gcU|K=Sa-`zP<*J9YQITK6T5p39m*)O%Tf!exUAmyIS~GMRMQbkb$>$ye;AUvZdm z#dY>o_c>QR=3MohdnJ15wdiHnVt{D*wb&=?2H*2@u?Am*C!hu^8 z58j$}^!E14cY(GXxp@z0C;K6`Kvh@L-u@Z#aa7Z0DjdieC! z!!I8n0Ufq#dD1Lkz?qi>`2{mDO3TQ}8yFh7y19FK`}hTi2Q#gi5=Gb^s84lC z@l^Gm_9lvhz4zFKMQ)qaqK_Fp|No!G(`|3*UisbmU*=pk-z=2edE?WT^PORRD^*U1 zc+Cvas@^HR<*?DFV@6wTOhwJwE2uqi;?AK(yQg~b#^E?-sDf{{6E7gla1R*<%AwXN73EuH+5$N`Q0Ky z8i5SaG2g3Pt^>K{0UiZ=I1?t;-;oyp@=i@qFy~h|z-wNTQ6R1=6ywVz@g%-n|IS%v zPPw}bIh%Es2G2e;hqrW{#p#+k0o-!jYJkYUTRur}n80-w5u6{1-oD!M<>oLe9 diff --git a/common/gtk-3.0/3.16/assets/switch-active-selected@2.png b/common/gtk-3.0/3.16/assets/switch-active-selected@2.png deleted file mode 100644 index 07387dda8f0e8154a79f3aa56e8e43eb0dc682f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1552 zcmaizX;4#F6o4bBAOQuf%H{$kfTL0c5d{PjgBV$4UqwZbC|E@n83wI_NI?)GVw6Rz zAe$l(KtL-ZTScH0laS;kWO?reS&R}a39^LO7duYt^hfV}=bm%VJ?G55bMDRXaCg?y z(AU6VFj}MoL@!hyM`f$Js?v&gzlti=SOUpMU0t0A9ulF;Wzh!$V=)+m8l@~cqMvJs zI`!h50^+>SM#LqA#+<+;BqUgzIujKe78-rR;%p4L@T0vx2BVVV;p*dr1|#2$J_H#= z5FUbzBFH#`yjR*E`N)J2k%Gu1j7$j;nFx_Vh#W@bVnjZSdq}%Gdg+Ay!PIS>KjYmPJ$kRs8>K(@eT)7Tqk9Zk|Qol*QO|ov|gGzAcAgnM=3I zW$ZwqFsvyIo14sCc}$1f%)NJ*_&|9~88*1#KKbJ0R!;1h09*9=@=bFYFTt`-Q>* zk%$h87?6+&iCD0REf#UaB0vms#UkFYXlPg@8U?{o5FP`?T>;Xfy#sYyuo36g(;XJycwOxY&13$HKVeTBZl<8fZ@-k3!ys*9H_ zRl{m(EnlInvr<=2-@tI4u?f!9+|tT=r=7jyUOa*5;pOe)>*pU36msO`si@OAlsszD z-Fx>Rl$4fLRMyrtHMh34cQ9CNfIB1*iomgP$&^e!Ju^EuuUOF3jqgI=K7~ZY`{?R@ zXq!ITcg|2v+EkpCYTOkVh$Bz5kj*!j8np092la3zd0T_Q)5hTuCPg8Qy*ew~RhirdOshGv)OST|7@8XPXTKox2g`4EjXcECO zW;;<8f2m)O!>8WXx3(@};d5l_NqGxIoAjcJl}6(xNx74e@rPngHW?OI*ZT)Y-EJ&3 zg*QI3z20J%y`5=JzsPGmuHLuOo@O|wi7OAF(oAW40L?3A zRF!_k;>6ba0D-TjQQ;=({h!RNMpy*D)tk*b!|O7x+Vxsci;`b>`PHt+lAxO8jv71R zv9LE`ZvxHDLvcqbiga_`m$VFfyz>*+xwuO4%QnvxNSrAF^RaffK3KG`Ev?$P z4*MoTqi86ogW@73DNkflr>8+K&rkf}LKwgMQ#IagXB#Ox!cvk}b1jfci}2M3+=x~a zqIw(j!W-a9eDl)c?;+865lf+7Yt%X@2PusNxIVf zNqf3U4Qo=WoPm<8a&9s+D@fS@15QZx?%ipJr-BxFuGm?R?Etx{FU4iBYkJ+`{^R5& zH@4g5*=Gc4dODt6-yLq(asH-W=F*(CTT4d9jCy7t6u*!N>TO3y_RrkR8qi@t@!DmX tzu4NR<}FFBoSj-b;JkXxUS!!ER%;>c``YLIO!O~cNKWp=YQnLUzW}2gpq2mt diff --git a/common/gtk-3.0/3.16/assets/switch-active.png b/common/gtk-3.0/3.16/assets/switch-active.png deleted file mode 100644 index f8e9eb1dc66ac434bfc3fbef9eaf747c1e51a831..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 807 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42=2# zJ|V6^#SH)dtMy$_>Aa}aaaFVDnrhcomEH>~T^Ch*E~|81*66vQ)^$m>`?6}+W%b^R zs$Cb=doBXGKvJ#el3F(q0aadtu^}Q*QoS3f5ksmAD(gP`s{5QPU=t9!+-5^XVpm*` zUvVRP$+hUE*MMsDCtS9he#L(J6{ne3oM&Efopr@^_EoppS3?(Fi(GmwYAHxr?DFez z%YnMCC#<-Zv+hRco?DX++@5sk_KYL9mz}<|{LGydXYQ;#duP>|yT@+bJAUi_@!R)L z+_``2$%ETZAKZER;NG(bk6%7~`s(4EcMspafAs$SqmLgRfByLB%g0AQzdZi+<O$_n*IiwHaDEak7A-VTpW;A1>2-|~nry#HH31Ygp zjF&vkn7PGswaGQ1-Z}sOOHW#sxhLlR@psby&pn+V9qj28JNN7Egy(ZSC;6Dg=bCAs z|EPthITnu{1D7TT{& z7D|nr@R5OIqUzH9b0!5|tz0ygR+M8Bxc-eYX@Q&(C wpLIDBPw&JfFqEBJSrDSiX(~0ZN_odZg!p00i_>zopr0J?vUmH+?% diff --git a/common/gtk-3.0/3.16/assets/switch-active@2.png b/common/gtk-3.0/3.16/assets/switch-active@2.png deleted file mode 100644 index c6e287a3f3653fb5be6acc1b77d65805570f987c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1552 zcmZ9M2~bm46o#V#0V^29Dj;qUUXmfALe*AL1QRu2Sp*`Yf*=7=3bHFzi%Shz1PQwm z1QbPN2`W`w1`Ue{VM+2{60(s5i$DRPY|0{ip>^8n%(?ge=ltLNGk50BrFppRGhA%G z7=b_-lJ*l0!ez72Fz}*?%|&fml_kT?_op(=6bj zSuD{v)+;h3HX$&Yf=Eb6unmhi9djb^48=AwI`r0%gE<1R@Uq7NZz2pM=H?JdbBNN? z-AT3fxjdUB2+fk&GWa%`5QZj!wPiAIU26LVs=y`%vY|t`R1t>O2BdVLX?&~eLLgOO zl>*`D?bz!b08@ab^RY|;zytwW2Zjy;%nmeNfMp0VG!Vn!0}R*_STlvzbUud3$It~B zh7h0&0S4b%Yr&ciyBInjpbKEw8n(1)0&5t9879nY=YY1I*D%JMkJYx?AxvtczGDB; ze}~Lla3+KQHR>Puf9=?!QDBab1t|i7u=Tz?azZqY|w=by0W1IZ0N^)$o)3taa-hB0C^Qc zK1HHKcSOE-MThT-j@%Okl!yaM#6b_l!KLD`GV$qhad?H~r%FjAM;ytKL~$h1Rg#!T zlC#y4i%&bLFFKQ7cBa%yQ{j3oO?x9{y_RKiWjS@SoO)Sqz3e7j4YIsOc|nt`ut{F@ zPJXvpUfd$T&y$z(6lJZ7@-}&8yP~Q?@tCiu7AT&9${JAl98$g%DQhK4uB59`s(dT$ zdMoQ{l6N&Lx}a{A19SzbrA0Yk=QAi$rkpHZ>c3Ga0~( zvd|lT>SAU<{pMsnNhML&el9@CWovy%k>OSb)~e}hN5j;qUFj=yT%LpY zvy8|KO18_t;QuyW^t5=IgT3j{_dT*mP;oIZw8tt3%9W4#8+pEUta?Z{w3%Wtd<}KV zYa%EKYbQ>D;8j08r)zoxp0n!}>!OQXE|8q^pOHSn3;cKK3WBV)!gH@coP*eB#!E`lkM7aW6)9?tNOB!qn!8&XvM~#!4 zT+1ovR-#;s-E=v03@~g{#I_|$qE_wzAO#7 zSlhx|W|HAEkEPWvGSa=yn_*i6p9+|n;VvUqB!@3M6ixAmRE!|9N9yNbdjq$&nc#Pn zPw4D#y)9G1uf0Buvv;IMF1dYJd9LIgfHrH3m`Pj^kog$z+S7de(XAvPo*VjN1O5Z9 zk-yg1JUOx64nMu+Sa0QKRCW2KS1+!3j=4W0NJ``pJo0jNVHluw)g`Bt|fC%2+% zRPeL*HPC9%r~m-X_5EU6n}<$C9}H?DR#H%L16D6MyLi5QsysHw$g|P4dZ4U-Q^>V6 z405G2_?(LgkhD!TW?a#oeaA@Z{UI^gF1&psc6-#i)l;3wS<+s~FwS7RzR>!>niVe1 l3+sH+W_1XqT;zjXPM2{xRi1M^EMEH~lZbAF3g_dO{{nU`AAkS= diff --git a/common/gtk-3.0/3.16/assets/switch-dark.png b/common/gtk-3.0/3.16/assets/switch-dark.png deleted file mode 100644 index 279c8a007f9e007930798e9ea6f894c26f050f1f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 782 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42%i^ zJ|V6^#Xt}jR~?3MAbk> zRAO~ZGLWo^PO1irR0A2&AVDw#$W8`H0kuQK!EBHeLP1isZ&ZPAL;+k1!tjkO@Q*11 zvYmr7!DNPONESqjLEDT`$DB#Wf=SncMc0x=&yrQoicKGgtl150_>3L-O&rB6+{G;2 z#Vy?>EIpJR0+byBRe;D5h=Np|g4CRX)ty4rokKL7Lp5DOwOqrrUBh(TBAkLVor5!g zHadr7x`t-^MHTu*6#+dCw3kb~#S|DomL)-c!3>PjGIH_;hDNS#?q1$Le!(Gm`GvFQ z%$>hr>$dHOjvl*w6@{Dw83U6X1>XPO-+E@&$(FNc{ymZDiPhM* zZTaS=eY>Uj4{Glyy1Kzjb@kQMsi#92*6my@Wx2|JO_2e&`rHS?`oBG?ii`=zl{$~wt-rEy<-tQ@ z4RaiYn*ZK%@!zlWgkg?^%Fgut{ENi?TeEG*ow($Xo!Qp=D-Iu0Ye;EU(SH-XW#(IJ zv1yDx<(`+4mvS)V{+;L+5}E0IIN-;dMw>H?tDmSV9^q2kdB$#a%=yEDwreIYwo91$ zS0kqJiR{t$WU*0nP^^NKpeRUD zf@o2w?Vy6gGZ~?LJ)-2YSYrvAV^Ef z%}q&>Ls?p}xQNTuLTSZ9p_Y?b0!g$$@Y0klv6jzQaiv<8NW~GC@FXQ1p_-ps$`+RL zL`sfS!xd^c5*1fc$`-5GqEenz%@He8L||6)Bx;US%@eD*z)Dm+v62glNR(WO@{1L# zI3hLI7zu=u3j)MSo|(mH?EeAt4KV@uZ87x=H3J|+&5>c|{$UnI!k73*EC~p=42ZBqq2VaB6)JKmU=wCp zAjUc{$~Gw4b~Dy4IL1CWW<>~oWoYcGFoI(k!6}UB6b>LEBFHZ2xHahbHIWIfk@2pW z1UC%DEsE-np}I#=J+QQOSehp`(K8xA_uk6zF#>JCK^t+&et0G_mgP@i2M{?ZB4-nk z8yv?Ei4%mx3qliwp$Vce07V>OM1rPD(KJaURT@bHq+)1N3@tS(F)f;&9+Q-@H7OIv z$ig$SVxepTltW0)Au@AF%v>^nl^4g#k7MU2a0;m0Z8WYdkta(`k<)o{h+hN=ijoDz z$$}ClKv=>Oma;^p;HR@eCjb_|?GKLKm7veWaylgmW@2h)Zn4C2nYE3roxQ_yCuhWJ zmo*-qUh91VgMvdM&{5dv7#xkB#DJ2SEKUkPBQravs=B7OzTwz+O(*m%t*1K9oxgD9 z+V$SSp$EecM;||V`s~%j>vuE%%)X!hu<-GdwUgo|Xz*`IxM+rx^W?Qz!QDa^%jqrd z>)fRcx;p997qc6?j)_3QiAgsQkI{%%o!qC3bfiCfriPC1g zClJW(lV_%KP=)nfZIdq!9YmM?78rLb`@+Id=(7>qUGhU+%a7h!+fa?k!@@1@>qgnu z;v~Va1EZ(>2>k;QX&AB_ZtX9s>!Oc&Vjt)Q6gOIDSy%0BRXB$--v1HxQ2s|k${;rm zrE#3@z4>UmKV125gyNSer2FPQ4Z3^n`HiE#+uyvUG3W30h{VTdsz`e?@7LCb78caB m23K^-r}RzTUR?(lPELBWyfAAEzYl3K-nt|_1$Q<^xbr_Ot8k_O diff --git a/common/gtk-3.0/3.16/assets/switch-header-dark.png b/common/gtk-3.0/3.16/assets/switch-header-dark.png deleted file mode 100644 index 8d2dde720ac9b2f2f8b6a017b30de578d7ac9f7d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 767 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42&WH zJ|V6^#Xt}jR~?3MAbk> zRAO~ZGLWo^PO1irR0A2&AVDw#$W8`H0kuQK!EBHeLP1isUrdo-R1sVX!T<^e#FhZr zu3YP^>lLl*6{F`Jqwf`K;1lN(mIJiNH9W^XBF{gj z80ascUAPm8S(23aKyg+9Dvbm{l$IL!Oja`M; zH)NTvHcgm%JBDT7QsZ`;zSCOj-5-`{sr@`7xY}lo!;IY~ng>cEm&zQU5w_woOZ!wV zsfJehNjwpnj0)fVCaJZD*w5TAA9;eoVuMFgp-20!+N=#5*cYTsIPzeF*~Q!X+^P)X zY@YKh-*m4y`u`l`n`o7dmP`EK@|8y3V4aXV;YqXeD%)rGgt=ccJY!dp+!VyruO| ojDp6lY5K3$ED-;^I?(5~yuXX+Cdryz+@R#=>FVdQ&MBb@05Gg7VgLXD diff --git a/common/gtk-3.0/3.16/assets/switch-header-dark@2.png b/common/gtk-3.0/3.16/assets/switch-header-dark@2.png deleted file mode 100644 index 2fbc761e1884e2223889b86fa8513e2687779a26..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1515 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 diff --git a/common/gtk-3.0/3.16/assets/switch-insensitive-dark@2.png b/common/gtk-3.0/3.16/assets/switch-insensitive-dark@2.png deleted file mode 100644 index c19fc0b921e38a73c5e11ede9fa1a5e77e8a1249..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1471 zcmb`Hi%(Nm9LFyp78qFN4Z;v9DivD_R!S*_l@=&SDW$L5+vja5ZvpB1F|P)kfanGz zXmqIYS=6ya(G7fzK-^H7iYUG|brV@wbn0RpI(6r|e__9TPR{pt&-Z*!a!ztvg@XK` zfam}Sf`a%3ToIU2Fjo2b;L0p$0h3P?hcEW?^Sk@72(d|l=}4*yPmS5A;{~EaIKgJ%%I-Ce~)391h2jv zTwweZS6cG%bi8!?^Eu2PxQYA0gA}4VVmdD^a&X>rj+C)OxqV;8vkd7`21#2xxUq zrQVL9P7tC*9l(j`oVZ!k+yT8C2SKv0(gXub1;a4Jz;EA%dqfao2- zuLMHpz+>?=mjXB7s|wWdVb^~N;7~V|obHXomFp6~y0m>AhEP;U~L|H-uTWH7;8abj$j<_;cT+IVW zYx1Qvd>Npw2&cXXt}lk`1xS++paPghDzj8$k!ox*fX)WvIACxCsB8I900q3g$0QPz zL0(?oK0fp269|6({sBP?h{S~>Kq4h3ucA<>)RYuj+Ug8uW{I#= zB$dkKau`vnbf}@cs=CHxwpeX;hr{W@uuYpk+tS+B*51DL|E+=VlYWID?~Q!!C*sJc zC&P2u*BfI9&#Y2%5^rjd8vL`>bhzuMm*z9)P>)GdX}Y?P)V8b|rJWo9<4SE!tmcF} zJBywD%5`zWYthV5PyfU>_p+#x$<*{eGgX4R=|pGxl|_WEsW3^(*m_c@oRUoU7M6g)0i8b!F(M6}TRlV_Paom{cT&#R&FD$8mmPzr zE>iz0${uOmK3Eu0aCzO$k=BeHRp#{JoxOYg^T)-}Q70qQVjgLFqk;!E9&fNDuI;wi z-foSo;RMyaNbJLidl&A#=zP$*C-4n+^yKY?(jVkOEo=JZ){W#1e=ou;cVfEzdT8^y z!^s`@eEXhy*@`j~c-)C7tZjSsO*i-KLtE9-&SCbE)z9LZ&p^GYg3VhFq(R+zeeVAJ z=G(*1C%B{Kfw>1;3Z=0^J0T^rs^UPwC{3EXuY-I)&bwPBjn!JNJwCz>dlnz+EuMqK zmM&>*!&hsD605T`Be!p)NbZ#0823BsML#*#b;MM1wRyjh+!44f)wtrv^OOT)B|~!J z^2d<*$>%%l7a~FyM0+mnSb4tow-Ayni>pE&o%S5gt6$==PD)tC@8rMF&GLfBC#PZ3 znv8>I)uhSLLx(2lse;~Xn)cSqJ(J~+3U?<~a3s}wGjy)xE|E-per#KnrVRgm@_7R8*BtGpe*w~OLGJ(n diff --git a/common/gtk-3.0/3.16/assets/switch-insensitive-header-dark.png b/common/gtk-3.0/3.16/assets/switch-insensitive-header-dark.png deleted file mode 100644 index f0bd5856b3c065100060870eb9706af2ff19ea38..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 769 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#T$MgIeQ zLR^6~5QK)7ho*HT6f{I-RzxH9a{bYf*>d~IY(Rb)y- zWKwlZN^MkfbyPxiOj1=$Qf+i1kX;p;`M)H{FPMRmpI<;wN?KY?O6J@_){kbwx> zh4oBIU5}a?9`tF42wquzA!5;{#Y|uK{oj1zh~M%h#y?M5M(lFgR+727u{Q9Ont+)7 zit;;Qr{DVCc(PHzIpKBKB>$?MqP?8)%M>*f(sDlSVNQMP7trzH#*%4A=9KDWHl{32 z=00$YKT|Dd3RA!j72oN~vyz{^7Y{39I2U_qhm7HZhcm3!%wbw#wWQEumH(HIr@cfS zjw<#(SfRg2?*D2Ai(=2q&pHghvYVtlWpUW&Jj>4A#Qn_T@UU-;Yy3ToQx}Ucy#6p( z%)`uTlfm>o^@{}_ZuHC*^@6%)3vc`{H?Rw*x+zRsUw*sq@;kqqPZYN|ZTJzlF=umQ etlqn08*}O(hcGE-NGqNMB|uMCKbLh*2~7acCMfv; diff --git a/common/gtk-3.0/3.16/assets/switch-insensitive-header-dark@2.png b/common/gtk-3.0/3.16/assets/switch-insensitive-header-dark@2.png deleted file mode 100644 index 4af14c49d1b732b211048a2329efede55b1a94ce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1443 zcmb`HiBl6-9LIww1T%1j%cy9Xgxt~E7S`e1O+QIUbMDa5Bk>r3;oUK&HMh|`@Zj+ot=5LVo@5) zo$bzGFj!D}iUiCA7!gcoT3JM^!Q@=Zhh$79vu|MOBhb1nPlrnx4Bun)aLQ#j`hi6s zb83!RT5K>|@e)15YPE8WUlo>W@#T7MaY^2`7l~{J!|A0sOO^`EpvK0=D2kHP)tXET z3M!&YqXF6^H<^S6iXdtc1hiJUp+>Bsa&s$SLn&;aaJ&M;%(=NFqN8$fQf{zn^2;%u zU8%OH4R%ypj%q2D#*S%ih`|BtY_N_}5)PDbs5CZ}-j=I%sB{jDAYq~c97jNllc=@= zAxIE{5;ovOaFRA_9jJ~}5#S=ANffsu8XJn+5W=nkT1$QwBuda)rL}_uL~8?n6bRf# z$I@wb6>Xq*RfO&Hss9qdr4Cmf-<2nD;|V6l0a96jgtRF%(9{HIdLrbRnCX=yWG9Q* ze336-?9Uem@@0VnNsvGmOrr=+RfNzeLjh^Zc{K1m2o8ska0ugOBHTFUcOt@GGn}mo- zgp`Ugiv*yy$kY~vx=f)iSK#GJ8XHVwhrw49_RVjv^n(Ar&nyv18BR{)oSnzJxVkdk z+}v4{r%ajZ;psWU%h%68U{+9Ya7f6U@CYt9GIGI!sF>LJghflm*%F09nUez}D25X{ zy|JLsY$>yrSJ-T%ouaDNtgWf7tE;bH_y5)Jl8-AGjByqyWr@t&=lS_}>TZ*t>nol# zJtb`TD!g$%Z)m?bKDvLs@^O7wUH;AQ8vJ0E(a3QW{_shBbVk47ePv?OVlruHvEy0A z3whzfBPCDw*Q?5|osW6bt57?3=^EpjPQ6ZXUVCoBqUx5b-j;>U^GcwSm^zM6<^6SW z-yZGR-PW^uW7ciF(ztT_yIZ^4_S_r&X4BKPAJU&p%vRoDL&vW%-*32BIuc!{-#XY4 z-~oM6BauFIIbk9%gi4s=JC}w=k<0f6Lihf;vZM8B*VmZ6rk6XmtIa<;>{$Cu(T867 z*_6S*PO#ShbEvQ(tLbHJCroAhG_BrLJ?+!Lmbp>LTlUSiFAt3d7-}A04(Qx_BeXV5 zKi~6$?A`cs!IOi5uYNWBcv1GtD!!}y$To@>dw=pH|DrB^bGJ9u<-uX~Gro^tB;@B^ z_iW5s(=vEq>u*&}r<=Kgl#_RzH?x{w_QdQndobFiWpq`> z?V?W7Ie*fvn@wSlIr;pSYR;ac)amXHR;-Ir%8lB$Y&E}$v!t_6xcmt#S;WLek78s@BQCoH}nr9UGg@~cxBYzfV$1W*XVBnDb1O%p zy}I{qx3B8G?lf|rD>W!p!t`gs7Ws|F{>`>?+tP!Qu^oCsn$xG9edv95K`R#72 z3VB`Cv2HeWeDJ}Bz*>9INGlw%0$yIDMl{x;O{rL#S4Q-N19$&E;$s?qxYWzC9i1C? z#=YUrA9=;fyjP_m8Q7aE?&zRqp#5ZPLc!s~oW8Ad3XJhDKAd8YK8!bx?rc{(_Wx}B Sm_uBmpGYWGl+wo6RQ(IMG*M>& diff --git a/common/gtk-3.0/3.16/assets/switch-insensitive-header.png b/common/gtk-3.0/3.16/assets/switch-insensitive-header.png deleted file mode 100644 index 9beee2f8f79272736cab4900bf40f160d1fe8ab6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 809 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42&WH zJ|V6^#s7ie-CZF5|Ns5}4-fx;ef|I2K0W>U`N996&whS>2tr>T z{|BP)&whV@1Vn$nJ^b_e;s0+>{(pP==i8(I-yi?^4wQZT>+7Sx-yVa}qrX3%LfPLR z|NZjh?{^@2{QK*pXHTv?d35zJQ03PrVDiz^$Jbsyy#Y~t_3FtRH%|Zk_7K8NscFt` zY|n1&%x&zij&l?V53 zJG_6#Q6M_J>o^GQIdOE)iQ_=D_tc5KmoJ~VdKHLH-Mo3``ID=^zX6^7#542mc3`-~ zlmz(&GcfY=3kXU{ORK4=Yiep~>*?9p+J%ONg-0Z(q-5vhmXws1Ra90sHZ`}jw6wN$ zbaZrf0YP^U5n$!%T^zu8koRf;V=X>!Vb*E>BRZ`+NlK zfX@X>S6O|2nLKG{e5-opy`*{De2tcS{!qHvm6 ad;ipIQNG(T{gZ)F!r6!b&WJC&9c%qGYd^qlL|F-^ETBY zgtVGwNC@ki<7%zqg)xFLQUVdbAZFzy%=I=N}pAhZ8zOv%ukUN4W!z@N#$pUuQ4+{n9dBkv*v56QoT&%aE75U=JHrsm(x zC@jt_EY7}LdZV~B{{bnVL?V*NL^8RQN-d+&NL7E3s;kJ*s;ekuGKB)6P-?2FR0_4W zhDM{(YHO;hXjP2bY9_s!$*8HWs$tP<*$hSllgX%MHnLdES{9SeYGSilbT*5@Ze};I z84b-1jSb8uNF%GciS>6ggx$(%ZfkAev^H|OT06NfyG*okd2KyB4v)_f^mg|4b_oR> zp`cSJ?CKM8MZKM(-Y$`-M#Qqeo26pkwUMo0QSj`WRbTt1ZN^=W^fDrO3yMgGn zuSvLSdD$)^xq#Mr#7BwE3SWR_b$aabY_4waPHjne-d(AT#~LiLC5t`F-?d#zUlZ-U zL%*~spd;MkRh1K69vW1)r;ixvKzsDry=22yUFq(UBJ{9F&Nv*MU;Q%h4c zm0`Z&gAWonI31MQA1|F&FUqQXL#6U|bZ8x?E0T|V>$LJkR!H(mK~auntnY?Ys_H;H z7Nvikn~3M2Y+X(uvA0;EpU0d;n9z(U^!STdSBo9Qy^$ibH4|n<1q8HW?Ng$sd;Sf= zFZC5#`Lp>0yVC?{hdYF)^^QOmRG3@7KNmB1tn~9T8@KY@^n0#rz^d9$*~Jr$x#^6q z+Zh<=!w#EU+BvrI6^P$@B=dvcs`??XjU9*iyPw8b*hi@RC9ks)xw~JC;9<_Lp=ILe zPXsPjWLRLvdF)~380g?oG9!(PejcjI)E91j_#?u2Ac%PKO?^MFypJy=aNm4KAtj#r zA;nqq{@(F^ZqakwidrjU8`-61>S=$e$?fh+Z*R8rY9dSi>ufFEQTu|)` zkBVNuu6r^r*l>m{70Xi!avvqV`}t

y64U8UO2aZ;le5N=1p7-M2jb` zTQzIbs(I^I&)>d&@s_m0on-=Zdwru<6C406m+p~4m-fgSz-8^yc=E?gv zkKYH9w~jx$b?W|&6K|hge*f&++hZa#E9l z09%5H$Q4JS?~>nZua`+575)5=U$u!#B_ulTkH6)U)g`-jslL43c|>@Z;{=H+B{@!^ zwfk&h*8g_xT@diu&~kfne-5{X_i6vdf9BrQejXnpc+~XbqVoo2ryi@i$xgYo!J+I& zu;z2;(ql`zR{!31mA+^Q2!41`H1L1{|murT2yGsf&&5olt$bMo;dLF|58vWR9hRQ4THfD2oM4ehZ`G% zj8P~f6bgm5ut1|N?Cj8Xc6J!dUMvQK#bR8XoLpR-2m~C7sL&+B- zD0KR{xELCP5y@agr6$IvCdMTvUuG&WvYCvGj6^1rk;P=>fwGcs-b^gGnQ}Wf`R?tk z!u<5Y!t~O@bXIXDt2np3B)hCEhsDZ!c(35$y~65>;<{?qGxmdq`bth?RZ~M{>+`Bs zPW5X}HMjZktJb>LTy`7xY1_*uyqERu@1F7%o_D@$>}qT1;x%=*H}>&4J^bc=esfP} z%TRBNpqo3~|7LXH?bvYJ2f-WRaNERin{bdP8s-V#^F*VdzeS_`$x;6FSf_%pOCsu; z74=F)-BMAHbh1}E-T!HN0JJC_mPrR?(jn0Dm(k?~;mVgW(6_}2`O<$DMe?PowUsIP zl4yNJF(~%s$+czi`q$}=RmsM8$;RqT(8jS{V6J5`Cy5?_lCp}bn))UPbhCyQOnd7# zogKPxgdS2~U*EvMz|hdp$Oufy*wob2%*-52YL}(uA695<>)pF;z}mAHEL+=s`@r1n z?e`zR96adY=yVwCjKkrMy5jN2{vr?v$BAz4?k7&1^zb_6eTGaXpFQj2nSOzsZ3^OW@gryP0lI+C{yvyhdsUD$qMDyn%Zu;VZP6PGOE8PCt?w8na4PlA>a_`I;@gO2hn2bi3!c<2pPx0RkN& z!HnjN#=W3=dF|HDs+eZ&?jov-vX#D$$=va^mb=@DFUm8vl!j#Cj&v0ARDa-DO(lGp zmz4Gk@+q1%-&pR8*J?1soim#GEpR3WCYX0{BSTCbO^%f2njoyTqv+peBq_PIy({=r zn_R5+D9g5JX%t*cf?e|bcuObpY`%%QvRPllO4|@|q#jPwq2-&f)bRbqFLcGZ>zw%kY=z_cqGw zr^U9$heXZ&OXg5RUB<2a;;m3{2iT*bjSVKcj95?YyEpfDG;puQlALlg;PB zx{Dk4PZb}zv6{%8DGMWc^i9dwj{yq%ZO1<~okHs~S0~4+G#n3o&~P(9-ele*8>cLY xxEe?m@g3X7`ASXIgoAqo(>{y;oU4&c&)Jtm>wH#;n{!uudUzbsxen`>{4Znue_;Rs diff --git a/common/gtk-3.0/3.16/assets/switch-insensitive.png b/common/gtk-3.0/3.16/assets/switch-insensitive.png deleted file mode 100644 index 10ad419b7d17daa257b83883ab3687496c571f53..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 775 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#T$MgIeQ zLR^6~kd;>6k=D^s(9n=s(Vo=M8CTtsQQeYS*^t`MmQ>T6Qq!CWWY;#ORJEoww5COrK0mXrAAS1n|IjyQG4X6glsBTKFX-)-_K*eA#P*-YIb81a1P%x#Y zv9@m#P`s{xGE`+%b5-wzn*K>3*{bHWn&$4AGrMQb?wLEcZ|+>6V0?CIA`lf;B^A~r z71sbw02y1;T+=hD3#e@NT!_m3NB0~&zW4C)y;rZEx_bT8^{c0@Uq5y8=9wptEkMup91_L%|3|j?s0o`H|DIgDp**;p52Ty zY~JzZop=4C-;dYJy}T11)UhVM-@;^z=X0a}fQKg^cU)JTd)=2MEYG&@W6q__RKwIO zY&PjGQKrlXZmDZmEt$$3@N)B^g)EAlDYqBR6l%E4seNpULhF=AbD54a%(Bz2@!GIN zAYWc2gDK<3njec*G+VZ4Two|LN^JG!4D!%aVeMm>@_S8zhNH*nNx9u=WejV+MO;)} zE5q>k!R+Tep06()2>JGGda}*zlBm-hB67BU6|$EqZ#Zbwe?7dg(br16(k19=`th%| w*I!OL7n{jh`0{PmT@~KVad*9vFaBfX)qnjzGB+2Pd>I%#UHx3vIVCg!0N8g~1poj5 diff --git a/common/gtk-3.0/3.16/assets/switch-insensitive@2.png b/common/gtk-3.0/3.16/assets/switch-insensitive@2.png deleted file mode 100644 index 15b7e098f039a92a3e8cadf712e99b32773ac6df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1578 zcmcgs`BPI@6b?m!qyvv8W96X zL0JTiAVX6jLxBd7I#C-bWf8)r0-_ReC@}4fKlD%NneU$ao$s7`?!7bbT`?x)q&31B z0fWJ;gH8p6gBb^grMOs-|4ULD6fe?P-R9qGe=5pIK%o3f8T!DzB z1;)}Ms3aN_dyxoZGMT8<3`!Ordx40eUL=>j_H~BAKJmkxi3|kAFxWr9AP9W1$1Bw zKnOYzIecOcpUmZbBqB0b2y`+KO<5kE!zXb>M6eO4l;5onxNgPu* z;6Vzk`Y&Z#@=*i??2<&GCs7z!3LOi4Is;2(VW}K!CI?4l;egM|#?f8ghX{;Z z0w63NfdgP_Yq~GEW3C_#%A)}A0L1A$F%>`{q322IVktvh$dJfb5*bG-%PlO_U&m)~y_gJgf_v-b1`hmW|!G6Qo<4MEQ=}7?n%jtoaGXt|TgA21mZ{~;I%@4m@ z7&b19E&;q5T`?L~mH;N#mL?5j=6dk?XlUUf5im2ePt48NSy)HlNv^Utk;e?lG;a#sYI-2Sokx+F$zM9)n1YNM>JPk3Ct#zB+q}uxDgB@rfFd@VeDF#PXFHI~D{@D&y%7{E19en03N>zuHcMucMEu zOLwT~)x8g{`QpZ4577x?iY;Q?E7T|0sc;sz&TI}5Bl3y^0mD1Cz{WWH>$lt{tc41+4 z{BKJuX5|*TSc{Fsabc}*kH5#_zD17vgB?|80s?CgY2*5Mt;;byGGKD=Qhr~8N8oCI zqJJ~f?Ur;pa`*FFn?)21e5JJAWe26Sy$oA)5+3muZC{0f@8=3&tEThZ5MtXmHeX6%kYH5@4 z;o)J0G3^6-!0GSC_l7MC?u`w)sf-hsj7HbxU8#|1#ZAXJg5$ONBKg*r}exi7P9)X|?+?mE)n{W1pke(JZcUR)h13P-AKr!X{L%v)>h8@M=Dt34!k?`8 c(OA)1F>!_5vGzc+XnLxH0z(3t(8>IN0nM!cu>b%7 diff --git a/common/gtk-3.0/3.16/assets/switch-selected.png b/common/gtk-3.0/3.16/assets/switch-selected.png deleted file mode 100644 index 652844e8646928ab43230987d41c558b75ef81cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 726 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#T$MNa~J zLR^6~RRAk1YkqcOb$M=0Wqxr%T4h;INnys^8QpWHbwm^W$hf+lSWazi7*b#oIP4-nwzo_RULnY+1Tz+wwg-R_@)t`rh>u z_imiHd;R$Ro5vsAI`QDv$p^PjKD>GI?XxRD^yb-BAbR)w+LyPt!07hRPxpc7*XIYn zK0W;X1%&>7dwim@%^m1T?~)+DU^Uy7|f9`|VDVx0a+gNdH?M z^TgWo*%=pscd~|`CIoQ`nTqyyr2b7k%8-&=DQ zK523-mfO1UYQw(0ei0hUn@&8Lc#l=$2K&Sw^mH46Us?+j|6?0_HTGT(y zh;Y`}-;g+q?Sbiql=;Xf;P1^E!ApMTRI6wXvBUHt=(8kOkyv!r3O(XMXa%xDr#-C zmTHQk_BAMKn;`b3=U9r0E==cZ=6{%bKKI`D?s-4n^Wtvf4bBKk2!cSMGe(BG=0GO^ zsQ@`~d^JPywNIYG^zyJRyz}ANw#d zHat0w!bpfrNsLNQqGlx1veV*n(&;%_^xTZNysY@Vti*!cDb9(2e`xd9!fTbDs^6bF!?BEJ_aBY5QePMWg zapdFT$mZ%8U}JTBYi(k8gR{HI`Mfy|;B9kx+q1k+vj;nKfUmp9zU|HbYXPX=KQA2a zFCOuh{?kYCSOr#u6=;sP0P*pkI0^pgXNcgb(`ST)p(3JZ&q-f^U%VtEds*(v)$52G z3Q8)-o4=w^C^TACRZU%8{WlE^MpN?^7ORcZF*GtVHZjGUTUc4y*xDV(@AeK3j*d=u zom~h7S0a(*=Hcb-6A(lW2@MOUP$Hsfv`4XYdVFG13L`ZwJtI3OFR!q;q@<*@to-?N z=8G3EUslz;VzJ)TH#fJo_4N-7a%SfjR#w+HHn%_R?C$OFA07S87|-+q);-EdSKHFI zV>8RfUQ}D`k?3NouI#BAVKEg+q>fniD`Nu!jyhVt$ zL{fh3PSQ5%;BkD&!N#?{ME1CB^^8_TffAOlWzxs>`yoXRx`Ab+I%^&5tsoPYynyuxR;cbojVFt)ghK(|$oK!fK-yi6D#`-M=}mDMbtFj0j4Z%Vnq+p;DVv$!?;@($$pSL)R38`%~Rw~G>UL*Mr_qXy7w7e$ls?U zQduK@!oL2Afgjwe;J}lWKajM^_EVLY)bwc@pV#5ktqp&8Rj38={WA^xB^Y||hq2t= zcfIqI=w>!`bjSO>t@1^O)@C`=$~jh@%e0hVrpg7GfT}Qa<>HH9whRTpavG}E+Y!w* cyk1-c2zKr(T+z3kq=(n7#5qU(1LkYHjQ{`u diff --git a/common/gtk-3.0/3.16/assets/switch.png b/common/gtk-3.0/3.16/assets/switch.png deleted file mode 100644 index 7368c5dd10ea5df128d48e0e75661b7879d54c28..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 788 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 diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-active-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-close-active-dark.png deleted file mode 100644 index ef7c8bd2087a2f9d7048f1ccb0d298782d067c3e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 446 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(b%0NZ zE0F%rz;MRc_@=S(Z9~I5dU|(_^luyL-8MG3ZKQw4*x-(l0Z`z;7XCW84inSo{uy4MjEu-SE;53!W?Devj oPik8~opJ9)&HC5BH6PE{Usx!@7_l}z73dfSPgg&ebxsLQ0Na|Wng9R* diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-active-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-close-active-dark@2.png deleted file mode 100644 index 56b81c04834301e61735bff55e8405d59ad523d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 655 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ED*}8% zT!Hj|Fgjyw{7_f-v8DEPGmV?Z#&-=2?wRP{G19vYM8*cUjeu2gOKm~U}Dh+_@K~jbWw~ax1f$TdVhCY-u(g&IYL_objLv9;_)Z7K>0;>UP zgeZn`A%ak{^?1Jp(5>brL4Lsuj7+S8Lc$`dW*)wwVc`)`aS4e@$!S^j4K1y09bMg% zCQqL+bMBH=TX*d~cA#-pCZ64s(SGQHROWK#rV}T3%fwvCs)^&*d%BZDKh&VDP`7s8;gwAy z`O6;MJg{S(`hm$!JoyW+H8*~gGzdL?(O~K|Io^9yuW2!Vxw3P4;bK4j7cZl0y^?<{ z%r{KX+8TB|LANI?OP7~-c|s|R*?Ay`OD1mF1F;;vr(*9!QYuz93FoYH%d-re@W|Eg zUd^vn4@#}3KUZpUervKMmFsPQ#I`9w5+VQq diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-active.png b/common/gtk-3.0/3.16/assets/titlebutton-close-active.png deleted file mode 100644 index e7d701fb568d7a85f4dd1f1a98475221cfea719c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 441 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(OMp*^ zE0F$VZ2Z~K_OqVVdwq)!hE^X8EI;alk)g#$1FMgQmLGv429}=;fLtgWg<)j<(b(pb zwbLhS=kI-8-zWEdpVI$*#-ty!ru>*Y{l~JoKUXgJxpLvpm5Y9^TKseM;-704|J=Ot z&(kY^KRx*S<>B9NkL_iR*8$xjS`y?J%pf8v78DZN*wox|_T2dkA3lEi{N>+K^}rIK zf;LYV#}Elg)`N|HhZRH^4m7(v<{J0@|KA_|Mo4z)QEOmeEOPy7^}DlWmzcpkcE`P} z6K)rtO!DPw*^(BiU6ZT1_P$PN;D-8XH_Jp4&(3-7UinYyZ>sRix!Zd*rEg3-zBor> zQ)AWpzxy6cII@=Eg}w2a&8i3P=pQU~Y1qdv^hD}x_7_eDhW{2tdKn$ZCe8)Ah{4m< K&t;ucLK6Tay}i!> diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-active@2.png b/common/gtk-3.0/3.16/assets/titlebutton-close-active@2.png deleted file mode 100644 index 83913ef06a76cfb9e4ffbc9a7b7f4aaa6d54298e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 679 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ECj)#! zT!Hj|2r@SQplkC{+wzl{*(YP;j|S!+^({XdS$;IM_@rm?!NBr^z6B6{G_?9?X!*gw z>LU>8TYfUM1ThSNBq{>xg@^#v8(Duew)v8f_$49fOJ>&BqN16e zQ2(u^@mp)tx30Et-R<9cI==UIeDCY}-rxOwLihK{eLt4Y{jq%h&y@>*u3YqU)#9J4 z7yn$h^yj9PKew#Xzz}0p^>lFzk&v8v@MTn!g9O`!a;FxJXi>@S;X2y4 z*RJsi{`2ntq9nE_C*QU|Ptc#&E<0zzwHFg)W4UG41dE<^di{t&`;Jw3i{8JFrq^BU zxblwh`tnvGp}rSA6KE-BX*FHH=|+}okTTr{D>=JKuOUKadC%3I*<171c>c(;TshmDsE6ptz0>hTU)78&qol`;+0Eo0JPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(W`IwK zE0AVj_zwj8_wQe|>e$Ym2e<4wya$Z7?>n+{=l-4h_ix*CX#1W+JN6ykwg2djy@z%J z8N2rH+I3{t{v+G>8~}>!-hFWQz9Tz!AKJC|(2m`QckDg9bN4|o`_OKn`aK7C?m0Yj zQt2$9Rmvqne!&ckOdOnwN=j<#8X8)9`UXbECMG7PW65xx%F`!Fw+yrwZ{Cp@cxTu1&DmW4elmS_6u6lZSXv4SB~MpBmvv4FO#qvA BwvGS* diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop-dark@2.png deleted file mode 100644 index 1742875b322d862d067212adab0d90c0ea3170c5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 615 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ElLLH0 zT!AzL!+#*y1_HPD@87?B_wJn_aB%D1qkHxo-nJJAj_%m8f9syZK<@T^M|SQ6syVo4 z&!L_B4sYLcV8`A=d-sCa+jj5Yx%c3%U59q>KC)xa0U!ft$c{aSfoRvhBRh5<+PU}e z&OHZr?mV<}&!O#m5AWE05X9YcWY^w9K-t|uLqOca50sFMGa zA|W~T;LWlo0|wRuvpo!!hONAMi#5ZwlbiMZ|N2B|;} zh)L7U6_zYcJX%u6*pj-F<%6?&Q)$9mX@?(N35RDjPTeecICAsE#fxtIbb2~hmepZn zXxj>w`kcxYPu7SQJ8&d~Z76F?eIcUX;333#hRcdA%;h<=0Ow4O2b29+ye~&OsH{<8 z;hi)4Wf6Se%y;T`;l8rR$o?;{$;UAEyJ|x#Q8&H=gP*s!!dpJZq>> knsV;RO_!)gd`mxc)Sqk%y)7$SpazO(Pgg&ebxsLQ0J07g+yDRo diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop.png b/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop.png deleted file mode 100644 index e7e1c0d680ae84410320312fd9e28d41cdd24ac9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 414 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(a)3{W zE0FH%>uYFesHy3yZ0N0S=&h{nDsSk>t8LAyZpo@{&#G(Bscz4xYRv$PQ~}l0^;9)< zrB=68H*}ZRbyWdTV^3v6H;|iF(_B^81CdIr00=IOz zNB;c3zC`78ccGKf@ihLHisn^!w^^>;q+jdvLG`z>(YYxaSDxS2s}OSJ-Md}Uq@JTU zfkk>#{4WO!mdr&9pDcc^5V7drj^_#m588J1>1@yVkaEG)F=UU~V|Dp<(VAC>zADwb gy-JL2_v$i_nO-QM{KL?D7tk#Xp00i_>zopr0Mq`RtN;K2 diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop@2.png b/common/gtk-3.0/3.16/assets/titlebutton-close-backdrop@2.png deleted file mode 100644 index 28ad9366b4d523bcc93b167735c36ad9943556f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 629 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Ea{_!q zT!AzYG(f@p!oofvsHkYKXy~u0>8fn#EvxCQsp+h2=mDathVF`n?y5QvH?OueueKwr zx;>}5B?m~>wddEhXH>OjfW%u18#>afTe7NKa;w{m>$);)n~Li?OKUqyYr8V4nyMOl zE9<%|8@sE3#sbN@o@$V>J*m|#Kt@_sGtdek_gmlXSfJxfN`m}?85o&3I5;^46_nM~ z)it#ATwFuK!oooy0th03ASya8E+Hv7IVCl}ps=W@xVZSlt=b$021agA7sn8d^HV3k zENe0lXbomvm}Q#49lB<>khs^QJ^y#l^p!BF`ttAO%-<7JjLryr>a&{bzC_gRH`9WI zz#F@k$FfcBJKV4KB`HJWn*p!H9S!~q_hjCcteD($aN!TH{RdXgtDU&h;;w4U+UM_M zSMjFZ6Q9*@tY~!dyuFi8k8qaE%mhu5=PP6W^*Ec}yS@8Z*Xg}VTiGt}U^udLQg)2S ztLr=eX<4mG-rxAs<>Alz)QTSkdd2$QifMPG)N9S1tHqN~hRZB>^Hqos@nc+;I@Kz7 znrq-$;~25%E2W!E->F4DUNmXn@98D+zZWj~yGPbzf_=7{yY{wxsh`5K1u{F1HEf!^ kMrH9j!wt?)_L~-q-|0zN-tPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(b%0NZ zE0F%rz;MRc_@=S(Z9~I5dU|(_^luyL-8MG3ZKQw4*x-(l0Z`z;7XCW84inSo{uy4MjEu-SE;53!W?Devj oPik8~opJ9)&HC5BH6PE{Usx!@7_l}z73dfSPgg&ebxsLQ0Na|Wng9R* diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-close-dark@2.png deleted file mode 100644 index 56b81c04834301e61735bff55e8405d59ad523d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 655 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ED*}8% zT!Hj|Fgjyw{7_f-v8DEPGmV?Z#&-=2?wRP{G19vYM8*cUjeu2gOKm~U}Dh+_@K~jbWw~ax1f$TdVhCY-u(g&IYL_objLv9;_)Z7K>0;>UP zgeZn`A%ak{^?1Jp(5>brL4Lsuj7+S8Lc$`dW*)wwVc`)`aS4e@$!S^j4K1y09bMg% zCQqL+bMBH=TX*d~cA#-pCZ64s(SGQHROWK#rV}T3%fwvCs)^&*d%BZDKh&VDP`7s8;gwAy z`O6;MJg{S(`hm$!JoyW+H8*~gGzdL?(O~K|Io^9yuW2!Vxw3P4;bK4j7cZl0y^?<{ z%r{KX+8TB|LANI?OP7~-c|s|R*?Ay`OD1mF1F;;vr(*9!QYuz93FoYH%d-re@W|Eg zUd^vn4@#}3KUZpUervKMmFsPQ#I`9w5+VQq diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark.png deleted file mode 100644 index d3a7a7d84f250cc311535435e2de7b47c69f29f2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 446 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(b%0NZ zE0F%*z;MQx;f$};IZug;ZsMoB#ZLQ(p79nvehyew` zDnVQz1EL0~;51kkNP?8%MJqYxE(BVyQ4-`A%)rDdA}SUX5*iktkeHO5l2Ke%S=Z3m z)ZEf`_T2dkA3lEi{N?wbzyGfC%W?qqGCA@Vc&d5TSmoS!D%X$+3RI5pVYQ~I^*7pn)R=L cYd)T@zpzk*F=B0cD$p?up00i_>zopr0Pj|&f&c&j diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-close-hover-dark@2.png deleted file mode 100644 index ba8476501ed759b7dafebadd5f38df87f1159704..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 655 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ED*}8% zT!Hj|AZlPZW6W^LoBx=*%*jCMGrm$Md_+(CNSyK#J>?^Q##b3DDES61}F|z0Fni+1Z(5>br zL4Lsuj7+S8Lc$`dW*)wwVc`)`aS4e@$!S^j4K1y09bMg%CQqL+bMBH=TX*d~cA#-pCZ64s z(SGQHROWK#rV}T3%fwvCs)^&*d%BZDKh&VDP`7s8;gwAy`O6;MJg{S(`hm$!JoyW+ zH8*~gGzdL?(O~K|Io^9yuW2!Vxw3P4;bK4j7cZl0y^?<{%r{KX+8TB|LANI?OP7~- zc|s|R*?Ay`OD1mF1F;;vr(*9!QYuz93FoYH%d-re@W|EgUd^vn4@#}3KUZpUervKM zmFsPQ#I?6A4oUz3 diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close-hover.png b/common/gtk-3.0/3.16/assets/titlebutton-close-hover.png deleted file mode 100644 index a1ec77a8e9e760ca2a5322a1a77082c1b219a992..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 469 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(dw@@f zE0F%w(DS*i?Q=u-w}v(lYHa`7(Dt>V6+%v`ZJAQjGP|awySBNnrg>^@b8AgYQ%!SI zZEJl^OG8adV@-2oO-ofxGgLd+khJRN?+tBl>w)I9y@ePHCR3}MzcjP~5s(3t0%`#= zfaJqlpPYeC(Jl${3uX`z6$=UpZER|8*}s4PfddB)9y)Xw2#%dScmBfb4ve){P z&11v;d)boRpR8F_cz(fluAXM?gS@vwg7|FA=AVDXn=;Aoz@7Ks>Nu}Vk~w(hH*4eM zCk@xH{eCQ*p=x^I*7T+J3|p6I7U(UoU>5c~_OaMgZuoc5!lIL8@MUQTpt6Hc~)E#{zsp zT!Hj|hX4N?8vf6m`Jui2V?)EIwzf|VJwKY8zcjReZEX40*#51d6+(V*X#LvI4kW)f zw0#AmS+#AmYg(q(HqWeWo?X*CyS905P3yec*4CPqC3P)J>sp#>nwx7{SJk$zt81;R zZf>Y)X{>2(tZ7+W*IZZAyrr(Sx~64CT}x$6^NzaKs+#754XtPDT5@Zezcm2uZ9_v} z8rpy;wYnK-JBX|Ukw7(pg-a8FK5-}s@(X5QWMUN*5*AVQ@C^+MkBCc~K4aJJ{reAq z!NG$E4*|hp5IAz==+R@xj-R@4<<{*x_a1!z@%zu;zyJPCyK!*^0|TRqr;B5VgyhtN z*UOq5L|88vJGvxEB_;XfPb-Q>{! z%da|0f{N<&FD-j|c*VtEGdoKzeTj6j%V0HVJ7as!#mZl)=Jgr+mn9&dpwET;piFP`>vB*o)n+D{3liRcmzqxp!Y{c?AE4$`!0o}MEpbO~U zg#n#A6jvp*N*DP?9NP7`qxIv?Lu$wQzqHJGaiDxdd-yTMe~eWu4c+UGT$>0Cdj?Ne KKbLh*2~7ZIyjns4 diff --git a/common/gtk-3.0/3.16/assets/titlebutton-close.png b/common/gtk-3.0/3.16/assets/titlebutton-close.png deleted file mode 100644 index 48def3e3bb0c8d7bc707e68a49c181ff5a432e2f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 465 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(OMp*^ zE0F$_mi9R@@pEj(=Y;gniRqscfLtJ%@i`vIO`A|sJ*BX6RzXE~NlkB2)zqS@*0Q>$ z(z>Ryy85!Z1|TZ0uc~PHl92u-F&#uEq^DIk1IgEknLzSQQU;Lx8V?drt#1C5nEojt z1IPf{1rY&~7TYp_&S20g3GxeO5D^s%3JGm&YHr!TfB%642M!)ObolV$V`tBuzwr9Q z$B&;reg5+6_n*Ii|H&=?{Q#(|)6>Ne`~Lij z$kXX}e`)LbZuoc5!lIL8@MUQTpt6Hc~)E=L38~ zT!Hj|AZlp%pO*F^D)VD<@~61$Pibi%6VksVq<>9F|D2HaIX>faB9M{sB|iOYJdgnr z1j>Gi&zMnIIjf*zPC>=wqROd7RWrfd*@YEz3o4i7S1iphZz`>8F0E}Xsa=s*x+br* zrmU_3h|23%=a$rg*_(1ps>|zFY3VIVkiZTbTet7rd+`0o?>~S3{{8oF-`SdZ z3=E8_o-U3d5|UF7zKm*ekYKw|?&PwGcVq4S3*XjAcpDvfzxRK3m*kY=U)!H2=+0{w zmDzvQ|Afo-8urg2!J9vA-rgvgH`~}rJXmU0@gp{^yfdu#<&K5S_HN-?Dyz4Z_4GxP zzWsehVs5|VkDF{^KD=DC(?!y9mtbecPlKo}_lhQJoL=Ypq%(|R@%c-sdP1?CCnUY4 zSf>`eF%y5>lHAD@kp9$(i+#-%#w(T+ZM`0Toi41$Fm;1TjeuwH#OI3M%&kq!O!tVN zjDHt2@w6UK0O`PGSAPCJ=T<PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(LV!<* zE09*}Iiu2cPPzM{YR_f$o{Q>Tm(;p0sdiriGSs^-t9M^g1EGsx62e9yHF_>-_FUHL zy`4*RQS(RuYSx7!Zuoc5!lIL8@MUQTpt6Hc~)EO9OmD zT!A#h|NjgP|BYv!(QUt^-FH=^?Ydge8O^Tq8a)@(yDqBrTvF-2sNQu+z5B9S*JZWt zi)vs&)$YrxT^H56FR681QtQ414(fbdN{(gHb zrSTva=uY{PAirP+MkZE4Az=|!cMnhB(6I1`xU^~0XYAU2>-L>{55E71`Lqle8jP%- zE{-7@=ci7-S#-#N$2E7887o(=8M{#6f~8aP0#5v|m)f}J2+L&2cfon*Jf@{~PN)`P z+1??n>dG3hQKe{|f~?_%S@!&TE2kf94LZL>vAOTlg^sfiy^Ld3&K_7a#mk0q^|4QG zzaAWYu7AC(x3BZJ?KZ~Q$!E8U>N(Ak;Jp9e@}IDpTMWnMoX4tZ5#_39zPI;H-|=WG zyV3i9OLiW4V16Tf$F-Qmdy!FEYkp4u5uB7f|fEFZfs)9>io02>>UrwE%%=FS}W{9k?iT}=d#Wzp$PyDTNv5^ diff --git a/common/gtk-3.0/3.16/assets/titlebutton-maximize-active.png b/common/gtk-3.0/3.16/assets/titlebutton-maximize-active.png deleted file mode 100644 index 6c4451149f3ca89b65eebcc41fe499da866df431..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 391 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(LV!<* zE09*}Iiu2cPPzM{YR_f$o{Q>Tm(;p0sdiriGSs^-t9M^g1EGsx62e9yHF_>-_FUHL zy`4*RQS(RuYSx7!Zuoc5!lIL8@MUQTpt6Hc~)EO9OmD zT!A#h|NjgP|BYv!(QUt^-FH=^?Ydge8O^Tq8a)@(yDqBrTvF-2sNQu+z5B9S*JZWt zi)vs&)$YrxT^H56FR681QtQ414(fbdN{(gHb zrSTva=uY{PAirP+MkZE4Az=|!cMnhB(6I1`xU^~0XYAU2>-L>{55E71`Lqle8jP%- zE{-7@=ci7-S#-#N$2E7887o(=8M{#6f~8aP0#5v|m)f}J2+L&2cfon*Jf@{~PN)`P z+1??n>dG3hQKe{|f~?_%S@!&TE2kf94LZL>vAOTlg^sfiy^Ld3&K_7a#mk0q^|4QG zzaAWYu7AC(x3BZJ?KZ~Q$!E8U>N(Ak;Jp9e@}IDpTMWnMoX4tZ5#_39zPI;H-|=WG zyV3i9OLiW4V16Tf$F-Qmdy!FEYkp4u5uB7f|fEFZfs)9>io02>>UrwE%%=FS}W{9k?iT}=d#Wzp$PyDTNv5^ diff --git a/common/gtk-3.0/3.16/assets/titlebutton-maximize-backdrop-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-maximize-backdrop-dark.png deleted file mode 100644 index 0b40ca5895c7e8c60a9d30c318f6a3bf04604a50..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFgg}c$T@31W*ZgNswPK10y37v$Ly5P;eT1 zj&?p!SliRZF@$4ga)N^3jI~(|m(QGuWt~$(695fiPTT+h diff --git a/common/gtk-3.0/3.16/assets/titlebutton-maximize-backdrop-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-maximize-backdrop-dark@2.png deleted file mode 100644 index 4b2db99672c43676661ef730aca7274fe1520e1b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EP60k4 zu0Z<#|NpC2t=hkT|CuvqfQ&tRPHx`6f7_u$+xHyUvG>s4y@z)1KC*M~!5w=JY~Q^f zNbcBkc*nlOJNF#izU$D=J%?rU7VQ9)_}T7oU(; z^Zt4!P(`$-i(`n!#J8s%#T*QHTrUQMObxkm|9@ET66TW|8~44m?O*Zz`UXSe;#o5N zq6`!E)bC_iAR%-s|KrA2`5!A+&*mweeYJdcpt7J~FW>(Cfo!+_=blqiI&|=N^)2T0 X46Jb}KYo4(TEpP!>gTe~DWM4fV*QD1 diff --git a/common/gtk-3.0/3.16/assets/titlebutton-maximize-backdrop.png b/common/gtk-3.0/3.16/assets/titlebutton-maximize-backdrop.png deleted file mode 100644 index 85e145c714132bc9406da54ac2da2c4bf9114e6b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF diff --git a/common/gtk-3.0/3.16/assets/titlebutton-maximize-backdrop@2.png b/common/gtk-3.0/3.16/assets/titlebutton-maximize-backdrop@2.png deleted file mode 100644 index 3429d541302a84118e189b3b5e1949c11b237306..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EP60k4 zu0T38G_;|iAuVktkj%}URMOC0Rn=PB&{f{hQCZtn*#ts0K*74siiWPL#-8fB?&^k~ zs=BTUkYJDWtF1qPrihgU`2{mDv#_$Ui-}9v*xK4Vxq5i|W@YCTYix_P0jh}hba4#P znE3WWG+%=Pk4s<;)1nm#-}i?GFTUE6d57Wq_moM?j$Qeewd};txWd_;pKsOqoY9`} z?XGg%oHv5`?G`CQ$93$Im*v=pPy6%6@!_u%d-bIcojdAx`}z{$HFsEJx0Y}_0bP0l+XkKR$)@Z diff --git a/common/gtk-3.0/3.16/assets/titlebutton-maximize-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-maximize-dark@2.png deleted file mode 100644 index fb52df8f34ea70f5a784a81cdfc2c2fbc686025d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 336 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Et^qzF zu0VSK{{O31t-5;k>i+%vR~XgFAK|*tzH6?%juX?mN6=&%s@L z4(`}}XxE+tJN6z1G4>wXvFFgvJ%^44bCv@Q5-$nz3ua(pW8>iDR#H}tjZaF;&Mqh_ zU$$(;=7Nm#?LZ|_o-U3d8t31hwiaqo5Ma6Zv46q3br#?4S4|YyAtJuuayajntWrl8 zmp>r|;+~WCebG1foY%(lb9+Vn<@}FdRm^9e%=O!M^UMndhT6vc_cbQ`{BO=48fxpd aC2Oy%4(kRPW7}Y$EexKnelF{r5}E+rV2T6) diff --git a/common/gtk-3.0/3.16/assets/titlebutton-maximize-hover-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-maximize-hover-dark.png deleted file mode 100644 index a6dfa0428c291e052f79c77ebe13dc6095588797..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 413 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(T7XZ8 zE09)EQBhD(kdl&;l#~<|l@=A15)qdc5tkB|QVyTpHY{X)sT=0B9pW0I;YO+nm((0=A7PHbNlDao4jygj_tHLK${dx zg8YIR*g53n4GevJBO)WCqGMuX)6+9DG7E}JO3TX6U%K|>>7Zuoc5!lIL8@MUQTpt6Hc~)EHv)V@ zT!AzQXlpa5fPj#Ykg%|f1PCYyi^~X!ON)z3i-}2ziOGqH$%=`|0Fj88jFO6$l8UaD zuBooBg|4ZcuBn5JoT7}JilT~^qKb}=k(IQZqL`Spi%-0}f4qx#w2OC~n_rw?Se9Qz zu3toEKtxVJRE}?WMpRmDY+7|xYE^Vfb#z*FY+6-(MqOe~Q)+HwQchEHUUN!*Q(9hg zQFUi=T~BdMSIfj{Efc13Mni z1qFr0W#tu>Rn@(H6L#<2ci`}`zymVLDZc=bxumsmwvsDG}lyEkaFh9{r|uQti=} zB@%sSxc)8aIWD+nk5b#^H@A--?!NG*ZT|0s$Xc~qu4hU%ip=UPW|&;S{QJ}Va(Slx zUCI1riEOLBXNme(aJb!gEl{y*`p1^b7Zz(CSbqEV@+Xqt7Ot+)tZZDlIc`SsN%@ys zpRZh5xF^PkGp6f!<-A$FOAfg1xxl#X(>9hzR?GXIeDsR02=4#!wd|kXmzud3H!oUQ zqjGVF&7{E95}nH|_w$9UF0$^q_GZK4TaLytE`LSeZohWs$lE6jj`<#6<+!xNyyLdE tOgx-7y(cF(irG4vx%#rypRF#^Us+!tizzSDe8dMzf}XB^F6*2UngD0DGr0f& diff --git a/common/gtk-3.0/3.16/assets/titlebutton-maximize-hover.png b/common/gtk-3.0/3.16/assets/titlebutton-maximize-hover.png deleted file mode 100644 index 6ead74b62088fd4023fabf54e0c4c70cc7a7b3e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 422 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(W`IwK zE07Kafd;>%vcR}X-^k*isA9jEiqM#fwBm-WvgR2x7T&pj=FW|?K=keXeFXY+@7t$) zf4)5W^W`BB{rvRs*QZCnKR^2O_0ivNj~6Ujx_HU5Wy@DioHA?D)Y(<_-7mO%3W1g> zl?3?(Gcfb;3X90AsAySO^L5>Ae^$!u%dR(bwcF3XE4(^?rENX`g}bUD zwr?aB|Lzru+E}dD%cXc~?bPh#7N)yvI;&eZUpU^U|5>X%OZ}A3wTXGJ(%(z(*%w^& w;=$LtcwWm*ZRhXJcW$00cFVdQ&MBb@0DPOg`2YX_ diff --git a/common/gtk-3.0/3.16/assets/titlebutton-maximize-hover@2.png b/common/gtk-3.0/3.16/assets/titlebutton-maximize-hover@2.png deleted file mode 100644 index 4c310f2f8ef36edb17162061e55e8a7751730a6f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 815 zcmV+~1JL}5P)V&QC@jjW_ev|e2$Wrl9!y6nVy!LpRum4v#+nTu&}kYwYIXhxwf{tx3|c}!pX+N z$;QFV$;8mj$k5Kn(a*=#(#h4+$?fUc?djL<>e=t>+x6|-^X%R8?A`S3-Sq9<_3z&H z@80z9-TL(6`t;)a^y2*V;r;gH{q^Mh_2m8bFMh0^7Hfa^Yrxe_4W1n`T6?#`uh6&`~Lp^&INyn00042NklFIPozzom1!@G^9{YUBaDw5I- z%LZ&_=&9c{YXOC#>pBI1Ws`@RK&va9g_qE%j3B-g!3`3ZX)HYJTs+I@a0F0qR=VOL^bafz#hHQNcW z;_viYr^7WSL*v+=PY7I#$9WK%fnJD1ztAq$g0eKlc1jfq{9N^*EWD`ue0w|n5PH3r z^e`+cZ%HNAPN885*{GqNWJB9gL&Z3>hp}Zuoc5!lIL8@MUQTpt6Hc~)Et^qzF zu0T31Ev=!UAvbqYVPRiG!%QH%vZ1%Kp$CX68hWZ5x~uBCz+`u2LswN@Z&gEQRYP}W zeRpMD7mx%>UHtXs5YQm;k|4ie239t9PA(ob4Xv!4+=9}o`lgP(`}UvlJEIBmO_ZmL zV~EE2x2LUz8WaRrE`IFqShvpNyZx$(0y{*+7hDeK-I7&0yQAaB$_ILrRBB(w=S{NV zmHd?dapSW4k6wG`8BM-Dr)K-ii;N7vnCkZjDt!K*&$nuomU7hAIG;?`ttaQNmPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE09*}Iiu2cPPzM{YR_f$o{Q>Tm(;p0sdiriGSs^-t9M^g1EGsx62e9y|9*RHy^47g z&>+#0AirP+5mB+AkkH1a=9aVP&R_WO@zduo|Bk8$mH-tbd%8G=NJ!=$jOJ@m5O6)X zxFg?PYUjK9mC05|J|v3HKU5WSeILuJi%)bO9b2@@Meg7iFWU{P44Lgs%M`qK%~fIc zx%5^=^+7-~yO^n(!i>1|gTe~ HDWM4f72kj+ diff --git a/common/gtk-3.0/3.16/assets/titlebutton-minimize-active-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-minimize-active-dark@2.png deleted file mode 100644 index eb977482eee02108f82764555ee18287e7a62aa9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 489 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EIRQQ) zu0WdM|9^&t|Hd=V=(b#|z+ zMK!RXYWHQ;u8Zp3m(;p0sdZlha)BfaU4$_%%{g{w?YTRTUq1Z%?eU#CMcP2?I#mEEB^oQw=3XrKmB5#>Fu;zYK`?A&eLxmi;P@-ZPL-(ttOo>4t(A< zGwT03;iCE+<%^Q8CRWienvNHE7Kd~1eEB7Et;}xm&RFl?`}SIOFrJ99VqH*@$!Jiz zJL4X+uk=b@fwJoO`HkV?Tnz`-)*c91_hc&LgsZD3?)t*paARrt{u(Xy-G0BCo~>p* z8lB7D(X};=seYRM_q4e+5~>w(J*hlFD?_wBb(1gf2Y$GIrj{|j*U9Md63GluPPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE09*}Iiu2cPPzM{YR_f$o{Q>Tm(;p0sdiriGSs^-t9M^g1EGsx62e9y|9*RHy^47g z&>+#0AirP+5mB+AkkH1a=9aVP&R_WO@zduo|Bk8$mH-tbd%8G=NJ!=$jOJ@m5O6)X zxFg?PYUjK9mC05|J|v3HKU5WSeILuJi%)bO9b2@@Meg7iFWU{P44Lgs%M`qK%~fIc zx%5^=^+7-~yO^n(!i>1|gTe~ HDWM4f72kj+ diff --git a/common/gtk-3.0/3.16/assets/titlebutton-minimize-active@2.png b/common/gtk-3.0/3.16/assets/titlebutton-minimize-active@2.png deleted file mode 100644 index eb977482eee02108f82764555ee18287e7a62aa9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 489 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EIRQQ) zu0WdM|9^&t|Hd=V=(b#|z+ zMK!RXYWHQ;u8Zp3m(;p0sdZlha)BfaU4$_%%{g{w?YTRTUq1Z%?eU#CMcP2?I#mEEB^oQw=3XrKmB5#>Fu;zYK`?A&eLxmi;P@-ZPL-(ttOo>4t(A< zGwT03;iCE+<%^Q8CRWienvNHE7Kd~1eEB7Et;}xm&RFl?`}SIOFrJ99VqH*@$!Jiz zJL4X+uk=b@fwJoO`HkV?Tnz`-)*c91_hc&LgsZD3?)t*paARrt{u(Xy-G0BCo~>p* z8lB7D(X};=seYRM_q4e+5~>w(J*hlFD?_wBb(1gf2Y$GIrj{|j*U9Md63GluP4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1T4JzX3_ zEP9g@Bv=nK7$gbb+4;Oc%B-+l{C4DvB%do~7d0d%F)(c2$im{YFl84|1B0ilpUXO@ GgeCySYA#Ix diff --git a/common/gtk-3.0/3.16/assets/titlebutton-minimize-backdrop-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-minimize-backdrop-dark@2.png deleted file mode 100644 index 4e9b3d64a5e9927ef8c36cc8a7b52d3e32dd343c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^av;pY3?xs=ZJr3En2Vh}LpV4%Za?&Y0OWEOctjR6 zFi5WlVa7PAi84Sz$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS_yc@G zT!HlN-AA_XKD=Z1!JT^!AL6x~4isW73GxeOuyBYd6# diff --git a/common/gtk-3.0/3.16/assets/titlebutton-minimize-backdrop.png b/common/gtk-3.0/3.16/assets/titlebutton-minimize-backdrop.png deleted file mode 100644 index 97763fb18e8f5e0b034422c0133582aec913d6d6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`EX7WqAsj$Z!;#Vf4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1T4JY5_^ zEP9g@Bv=nK7$ga=S@l};nA*K-A(y)Kj=AKD_ckeVGA!X_Vfp`I+g_l022WQ%mvv4F FO#r72E~)?k diff --git a/common/gtk-3.0/3.16/assets/titlebutton-minimize-backdrop@2.png b/common/gtk-3.0/3.16/assets/titlebutton-minimize-backdrop@2.png deleted file mode 100644 index 3c4a02135b1ddc01b895b6245b38ddcef1c69834..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^av;pY3?xs=ZJr3En2Vh}LpV4%Za?&Y0OWEOctjR6 zFi5WlVa7PAi84Sz$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS_yc@G zT!D0DQ&&wxS7l>&Rb9{ZRi|x%LaZf0e!&d(9;wAgb$X+K04nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1T4JzX3_ zEP9g@Bv=nK7$gbb+4=lJTF#?)dS&}wB>7w^yQm>CiGg9)MHZH4E{Zll4Gf;HelF{r G5}E)A3NO(B diff --git a/common/gtk-3.0/3.16/assets/titlebutton-minimize-dark@2.png b/common/gtk-3.0/3.16/assets/titlebutton-minimize-dark@2.png deleted file mode 100644 index 76c3c8fa8659ee138a4e94626a5afb85e527d912..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^av;pY3?xs=ZJr3En2Vh}LpV4%Za?&Y0OWEOctjR6 zFi5WlVa7PAi84Sz$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS_yc@G zT!HlN-G_JVJ+gDp!JT^!eY*Wr6ez@6666=mkW?^t^F$+e4xoUnr;B5VM0j$7L|el} p2^N+IHEQAl0S8XHhuilsFzoST@;MJEZ^s diff --git a/common/gtk-3.0/3.16/assets/titlebutton-minimize-hover-dark.png b/common/gtk-3.0/3.16/assets/titlebutton-minimize-hover-dark.png deleted file mode 100644 index daec11dfb27484a67291fdd1b6e1db323d5233dc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 363 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkcYsfb zE09)EQBhD(kdl&;l#~<|l@=A15)qdc5tkB|QVyTpHVk?;lg``$5VjDNt6Wn1v9X7$jKWR`uIjfMn*-)#KxwlXJlj+ z6wl((m;qFi=jq}YA`zb3AI;aGz{A2=xq@|d)7tO$D?1i&7XB-nl)KI8&%!mI?@34U8zU4a3`W(C{doYK$OB=J~%(dk3NpCc2NS$6LfU$c?KGcFqnZuoc5!lIL8@MUQTpt6Hc~)E^8t97%YS4rgl|DT_2GttfCWy$`O zN$CmizI~JU-7oXp+~|Xo9>YQB{0mEy`4aR}SMl5B9lXdgLv-mSt!|bMH?>mBC#$oz zoD|r7Y`ftnFG(w#NB@?e;4Hct)VE?K*QX1|LfQ7e>v-&2x`lQBm*2ROSeWBcd#_I;VaHH%5*u3vnw-xr04Uy_T$mVBFU-?{IS-K$GXB4&Sj zcHf$|8i;-6o5EWv^Ub`l!r<|NI}$gqNj&?a=40h2 zI6bP0 Hl+XkK^DF8$ diff --git a/common/gtk-3.0/3.16/assets/titlebutton-minimize-hover.png b/common/gtk-3.0/3.16/assets/titlebutton-minimize-hover.png deleted file mode 100644 index 39cdfbf836ef47d4b14e06b17b74f92dfc13c4e5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 368 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkUw}`D zE07Kafd;>%vcR}X-^k*isA9jEiqM#fwBm-WvgR2x7T&pj=FW|?K=keXeFXY+@7t$) zf4)5W^W`BB{r&d1s=hmPo;nBE`XIkx24)^!VG(&16%9?xlG3vM2M!)Oe&X4Sm!I>` zJ>3aZl<(={7$Pw>xBsnBgMff*w4&LUgV&QC@jjW_ev|e2$Wrl9!y6nVy!LpRum4v#+nTu&}kYwYIXhxwf{tx3|c}!pX+N z$;QFV$;8mj$k5Kn(a*=#(#h4+$?fUc?djL<>e=t>+x6|-^X%R8?A`S3-Sq9<_3z&H z@80z9-TL(6`t;)a^y2*V;r;gH{q^Mh_2m8bFVq9^ZNV#^3t))0003QNklHE5QM1_2o@4tFmWRV(u*;PWhd|d zT)_vS%9F|dlfKdE%ATV9N1Aqus0MRfz~#(PhtzZce-uT54{);|)B;v%CJJTg60ka- z=p5mzsP!_1t+(FVh;z}>=M9|Zy@jit=x7(isnetHf5S|X`_0E=y2P3ERUegFUf M07*qoM6N<$f=K;M#Q*>R diff --git a/common/gtk-3.0/3.16/assets/titlebutton-minimize.png b/common/gtk-3.0/3.16/assets/titlebutton-minimize.png deleted file mode 100644 index cffbf9424de29513addf7fdf6994eb508537d601..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`EX7WqAsj$Z!;#Vf4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1T4JzX3_ zEP9g@Bv=nK7$ga=$$Mef?7L^{!YeGXJ)O7oq*$GW7#P+}WMP@*Q?3Wpz~JfX=d#Wz Gp$Pz`ODvoK diff --git a/common/gtk-3.0/3.16/assets/titlebutton-minimize@2.png b/common/gtk-3.0/3.16/assets/titlebutton-minimize@2.png deleted file mode 100644 index 2a6ba854f3e7a614b2d7f544a3884a8659bb0ec8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^av;pY3?xs=ZJr3En2Vh}LpV4%Za?&Y0OWEOctjR6 zFi5WlVa7PAi84Sz$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS_yc@G zT!D0TLw8L>cXdM#ka1}pzYkD|wIs+dn4zFy^BK|TbG|?USx* m4{FrJ1p*G7bPu=hVPM$f$I5GP)IA2MkipZ{&t;ucLK6UXgE+bX diff --git a/common/gtk-3.0/3.16/gtk-dark.css b/common/gtk-3.0/3.16/gtk-dark.css deleted file mode 100644 index d332894..0000000 --- a/common/gtk-3.0/3.16/gtk-dark.css +++ /dev/null @@ -1,3903 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -GtkPaned-handle-size: 1; - -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: #78b9e6; - -GtkWidget-visited-link-color: #4ca2df; - -GtkWidget-focus-padding: 2; - -GtkWidget-focus-line-width: 1; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - -GtkStatusbar-shadow-type: none; - outline-color: rgba(101, 123, 131, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; } - -.background { - color: #657b83; - background-color: rgba(0, 43, 54, 0.999); } - -*:insensitive { - -gtk-image-effect: dim; } - -.gtkstyle-fallback { - background-color: #002b36; - color: #657b83; } - .gtkstyle-fallback:prelight { - background-color: #005469; - color: #657b83; } - .gtkstyle-fallback:active { - background-color: #000203; - color: #657b83; } - .gtkstyle-fallback:insensitive { - background-color: #003340; - color: rgba(101, 123, 131, 0.45); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view { - color: #657b83; - background-color: #073642; } - .view.dim-label, .view.label.separator, GtkPlacesSidebar.sidebar .view.label.separator, .header-bar .view.subtitle { - color: rgba(101, 123, 131, 0.55); } - .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { - color: rgba(253, 246, 227, 0.65); - text-shadow: none; } - -.rubberband { - border: 1px solid #268bd2; - background-color: rgba(38, 139, 210, 0.2); } - -.label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator { - color: #657b83; } - -.label:insensitive { - color: rgba(101, 123, 131, 0.45); } - -.dim-label, .label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator, .header-bar .subtitle { - opacity: 0.55; } - -GtkAssistant .sidebar { - background-color: #073642; - border-top: 1px solid #001317; } - GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #001317; } - GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #001317; } - -GtkAssistant.csd .sidebar { - border-top-style: none; } - -GtkAssistant .sidebar .label { - padding: 6px 12px; } - -GtkAssistant .sidebar .label.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -GtkTextView { - background-color: #04313c; } - -.grid-child { - padding: 3px; - border-radius: 3px; } - .grid-child:selected { - outline-offset: -2px; } - -.popover.osd, .osd { - color: #657b83; - border: none; - background-color: rgba(7, 54, 66, 0.95); - background-clip: padding-box; - outline-color: rgba(101, 123, 131, 0.3); - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - .spinner:active { - opacity: 1; - animation: spin 1s linear infinite; } - .spinner:active:insensitive { - opacity: 0.5; } - -.entry { - border: 1px solid; - padding: 5px 8px; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #657b83; - border-color: #001317; - background-color: #073642; - background-image: linear-gradient(to bottom, #073642); } - .entry.image.left { - padding-left: 0; } - .entry.image.right { - padding-right: 0; } - .entry.flat, .entry.flat:focus { - padding: 2px; - color: #657b83; - border-color: #001317; - background-color: #073642; - background-image: linear-gradient(to bottom, #073642); - border: none; - border-radius: 0; } - .entry:focus { - background-clip: border-box; - color: #657b83; - border-color: #001317; - background-color: #073642; - background-image: linear-gradient(to bottom, #073642); - box-shadow: inset 1px 0 #268bd2, inset -1px 0 #268bd2, inset 0 1px #268bd2, inset 0 -1px #268bd2; } - .entry:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(7, 54, 66, 0.55); - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.55)); } - .entry:selected, .entry:selected:focus { - background-color: #268bd2; - color: #fdf6e3; } - .entry.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - .linked > .entry:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .linked > .entry:first-child:dir(rtl) { - border-right-style: none; } - .linked > .entry:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; } - .linked > .entry:last-child:dir(rtl) { - border-left-style: solid; } - .entry.warning { - color: #fdf6e3; - border-color: #001317; - background-image: linear-gradient(to bottom, #7d4328); } - .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); - box-shadow: none; } - .entry.warning:selected, .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .entry.error { - color: #fdf6e3; - border-color: #001317; - background-image: linear-gradient(to bottom, #873437); } - .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); - box-shadow: none; } - .entry.error:selected, .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - .entry.image { - color: #526d76; } - .linked.vertical > .entry { - border-bottom-color: #052b35; - box-shadow: none; } - .linked.vertical > .entry:focus { - border-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:insensitive { - border-bottom-color: #052b35; } - .linked.vertical > .entry:first-child { - border-bottom-color: #052b35; } - .linked.vertical > .entry:first-child:focus { - border-bottom-color: #268bd2; - box-shadow: none; } - .linked.vertical > .entry:first-child:insensitive { - border-bottom-color: #052b35; } - .linked.vertical > .entry:last-child { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .linked.vertical > .entry:last-child:focus { - border-bottom-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:last-child:insensitive { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .osd .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.35)); - background-color: transparent; } - .osd .entry.image, .osd .entry.image:hover { - color: inherit; } - .osd .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, #268bd2); } - .osd .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.2)); } - -GtkSearchEntry.entry { - border-radius: 20px; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -.button { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 5px 8px; - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(8, 62, 75, 0); - border-color: rgba(0, 19, 23, 0); - transition: none; } - .button.flat:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - .button.flat:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; - -gtk-image-effect: highlight; } - .button:active, .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; - transition-duration: 50ms; } - .button:active { - color: #657b83; } - .button:active:hover, .button:checked { - color: #fdf6e3; } - .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; } - .button:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .button:insensitive > GtkLabel { - color: inherit; } - .button:insensitive:active, .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { - color: inherit; } - .button.osd { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(3, 24, 29, 0.95); } - .button.osd.image-button, .header-bar .button.osd.titlebutton, - .titlebar .button.osd.titlebutton { - padding: 10px; } - .button.osd:hover { - color: #268bd2; } - .button.osd:active, .button.osd:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .button.osd:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .osd .button:dir(rtl) { - border-radius: 0; - border-right-style: none; - border-left-style: none; } - .osd .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:dir(rtl) { - border-left-style: solid; } - .osd .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd .button:hover, .osd .button:hover:first-child, .osd .button:hover:last-child { - box-shadow: none; } - .osd .button:active, .osd .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd .button.flat:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd .button.flat:hover, .osd .button.flat:hover:first-child, .osd .button.flat:hover:last-child { - box-shadow: none; } - .osd .button.flat:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); - background-image: none; } - .osd .button.flat:active, .osd .button.flat:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .button.suggested-action:active, .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .button.suggested-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(101, 123, 131, 0.45); } - .button.suggested-action:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .button.destructive-action:active, .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .button.destructive-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(101, 123, 131, 0.45); } - .button.destructive-action:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - .button.image-button, .header-bar .button.titlebutton, - .titlebar .button.titlebutton { - padding: 7px; } - .header-bar .button.image-button, .header-bar .button.titlebutton { - padding: 7px 10px; } - .button.text-button { - padding-left: 16px; - padding-right: 16px; } - .button.text-button.image-button, .header-bar .button.text-button.titlebutton, - .titlebar .button.text-button.titlebutton { - padding: 5px 8px; } - .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, - .titlebar .button.text-button.titlebutton GtkLabel:first-child { - padding-left: 8px; } - .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, - .titlebar .button.text-button.titlebutton GtkLabel:last-child { - padding-right: 8px; } - .stack-switcher > .button { - outline-offset: -3px; } - .stack-switcher > .button > GtkLabel { - 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 { - padding: 5px 10px; } - .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, - .titlebar .stack-switcher > .button.titlebutton { - padding: 2px 4px; } - .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; } - .stack-switcher > .button.needs-attention > .label, - .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 2px; } - .stack-switcher > .button.needs-attention > .label:dir(rtl), - .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { - background-position: left 3px, left 2px; } - .inline-toolbar .button, .inline-toolbar .button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar GtkToolButton > .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .inline-toolbar GtkToolButton > .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { - color: inherit; } - .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { - color: inherit; } - -.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, -.linked > .button:hover, -.linked > .button:active, -.linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5), inset -1px 0 rgba(0, 19, 23, 0.5); } - .inline-toolbar GtkToolButton > .button.flat:active, .osd .button:active, .inline-toolbar .button:active, .linked > .button:active, GtkComboBox.combobox-entry .entry:active, GtkComboBox.combobox-entry .button:active, .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, .linked > GtkComboBox > .button:active:dir(ltr), .inline-toolbar GtkToolButton > .button.flat:checked, .osd .button:checked, .inline-toolbar .button:checked, .linked > .button:checked, GtkComboBox.combobox-entry .entry:checked, GtkComboBox.combobox-entry .button:checked, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked, .linked > GtkComboBox > .button:checked:dir(ltr) { - box-shadow: none; } - .inline-toolbar.toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .inline-toolbar .button:dir(rtl):backdrop, .linked > .button:dir(rtl), - .linked > .button:dir(rtl):hover, - .linked > .button:dir(rtl):active, - .linked > .button:dir(rtl):checked, GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), .primary-toolbar .linked.path-bar > .button:dir(rtl), .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { - border-radius: 0; } - -.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, .primary-toolbar .linked.path-bar > .button:first-child, .header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 19, 23, 0.5); } - .osd .button:first-child:active, .inline-toolbar .button:first-child:active, .linked > .button:first-child:active, .inline-toolbar GtkToolButton:first-child > .button.flat:active, GtkComboBox.combobox-entry .entry:first-child:active, GtkComboBox.combobox-entry .button:first-child:active, .linked > GtkComboBox:first-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, .osd .button:first-child:checked, .inline-toolbar .button:first-child:checked, .linked > .button:first-child:checked, .inline-toolbar GtkToolButton:first-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:first-child:checked, GtkComboBox.combobox-entry .button:first-child:checked, .linked > GtkComboBox:first-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - -.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, .primary-toolbar .linked.path-bar > .button:last-child, .header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5); } - .osd .button:last-child:active, .inline-toolbar .button:last-child:active, .linked > .button:last-child:active, .inline-toolbar GtkToolButton:last-child > .button.flat:active, GtkComboBox.combobox-entry .entry:last-child:active, GtkComboBox.combobox-entry .button:last-child:active, .linked > GtkComboBox:last-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, .osd .button:last-child:checked, .inline-toolbar .button:last-child:checked, .linked > .button:last-child:checked, .inline-toolbar GtkToolButton:last-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:last-child:checked, GtkComboBox.combobox-entry .button:last-child:checked, .linked > GtkComboBox:last-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { - border-bottom-left-radius: 0; } - -.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, .primary-toolbar .linked.path-bar > .button:only-child, .header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - .osd .button:only-child:active, .inline-toolbar .button:only-child:active, .linked > .button:only-child:active, .inline-toolbar GtkToolButton:only-child > .button.flat:active, GtkComboBox.combobox-entry .entry:only-child:active, GtkComboBox.combobox-entry .button:only-child:active, .linked > GtkComboBox:only-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, .osd .button:only-child:checked, .inline-toolbar .button:only-child:checked, .linked > .button:only-child:checked, .inline-toolbar GtkToolButton:only-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:only-child:checked, GtkComboBox.combobox-entry .button:only-child:checked, .linked > GtkComboBox:only-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, -.linked.vertical > .button:hover, -.linked.vertical > .button:active, -.linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, -.linked.vertical > GtkComboBox > .button { - border-style: solid; - border-bottom-style: none; - border-top-style: none; - border-radius: 0; } - .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, - .linked.vertical > GtkComboBox > .button:hover { - box-shadow: inset 0 -1px rgba(0, 19, 23, 0.5), inset 0 1px rgba(0, 19, 23, 0.5); } - .linked.vertical > .entry:active, .linked.vertical > .button:active, .linked.vertical > GtkComboBoxText > .button:active, - .linked.vertical > GtkComboBox > .button:active, .linked.vertical > .entry:checked, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button:checked, - .linked.vertical > GtkComboBox > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, -.linked.vertical > GtkComboBox:first-child > .button { - border-radius: 3px 3px 0 0; - border-top-style: solid; } - .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, - .linked.vertical > GtkComboBox:first-child > .button:hover { - box-shadow: inset 0 -1px rgba(0, 19, 23, 0.5); } - .linked.vertical > .entry:first-child:active, .linked.vertical > .button:first-child:active, .linked.vertical > GtkComboBoxText:first-child > .button:active, - .linked.vertical > GtkComboBox:first-child > .button:active, .linked.vertical > .entry:first-child:checked, .linked.vertical > .button:first-child:checked, .linked.vertical > GtkComboBoxText:first-child > .button:checked, - .linked.vertical > GtkComboBox:first-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, -.linked.vertical > GtkComboBox:last-child > .button { - border-radius: 0 0 3px 3px; - border-bottom-style: solid; } - .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, - .linked.vertical > GtkComboBox:last-child > .button:hover { - box-shadow: inset 0 1px rgba(0, 19, 23, 0.5); } - .linked.vertical > .entry:last-child:active, .linked.vertical > .button:last-child:active, .linked.vertical > GtkComboBoxText:last-child > .button:active, - .linked.vertical > GtkComboBox:last-child > .button:active, .linked.vertical > .entry:last-child:checked, .linked.vertical > .button:last-child:checked, .linked.vertical > GtkComboBoxText:last-child > .button:checked, - .linked.vertical > GtkComboBox:last-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, -.linked.vertical > GtkComboBox:only-child > .button { - border-radius: 3px; - border-style: solid; } - .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, - .linked.vertical > GtkComboBox:only-child > .button:hover { - box-shadow: none; } - .linked.vertical > .entry:only-child:active, .linked.vertical > .button:only-child:active, .linked.vertical > GtkComboBoxText:only-child > .button:active, - .linked.vertical > GtkComboBox:only-child > .button:active, .linked.vertical > .entry:only-child:checked, .linked.vertical > .button:only-child:checked, .linked.vertical > GtkComboBoxText:only-child > .button:checked, - .linked.vertical > GtkComboBox:only-child > .button:checked { - box-shadow: none; } - -.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, -.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, -.app-notification.frame .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -/* menu buttons */ -.menuitem.button.flat { - transition: none; - outline-offset: -1px; - border-radius: 2px; } - .menuitem.button.flat:hover { - background-color: #0a333e; } - .menuitem.button.flat:checked { - color: #657b83; } - -*:link, .button:link, .button:visited { - color: #78b9e6; } - *:link:visited, .button:visited { - color: #4ca2df; } - *:selected *:link:visited, *:selected .button:visited:link, *:selected .button:visited { - color: #a7cbdc; } - *:link:hover, .button:hover:link, .button:hover:visited { - color: #a3cfee; } - *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { - color: #e8ebe1; } - *:link:active, .button:active:link, .button:active:visited { - color: #78b9e6; } - *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { - color: #d2e1e0; } - *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { - color: #d2e1e0; } - -.spinbutton { - border-radius: 3px; } - .spinbutton .button { - background-image: none; - border: 1px solid rgba(0, 19, 23, 0.6); - border-style: none none none solid; - color: #607880; - border-radius: 0; - box-shadow: none; } - .spinbutton .button:dir(rtl) { - border-style: none solid none none; } - .spinbutton .button:first-child { - color: red; } - .spinbutton .button:insensitive { - color: rgba(101, 123, 131, 0.45); } - .spinbutton .button:active { - background-color: #268bd2; - color: #fdf6e3; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - border-radius: 2px 2px 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:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; } - GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: #268bd2; - border-radius: 0; - box-shadow: none; } - -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; } - GtkComboBox > .the-button-in-the-combobox { - padding-top: 3px; - padding-bottom: 3px; } - GtkComboBox:insensitive { - color: rgba(101, 123, 131, 0.45); } - GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { - -GtkWidget-wide-separators: true; } - GtkComboBox.combobox-entry .entry:dir(ltr) { - border-right-style: none; } - GtkComboBox.combobox-entry .entry:dir(rtl) { - border-left-style: none; } - GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 #001317; } - GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.55); } - GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 #001317; } - GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 rgba(0, 19, 23, 0.55); } - -.toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #002b36; } - .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.85); } - -.primary-toolbar { - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #002b36, rgba(0, 15, 18, 0.97)) 1 0 1 0; } - -.inline-toolbar { - background-color: #001f27; - border-style: solid; - border-color: #001317; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -.search-bar { - background-color: #002b36; - border-style: solid; - border-color: #001317; - border-width: 0 0 1px; - padding: 3px; } - -.action-bar { - background-color: #001f27; } - -.header-bar { - padding: 5px 5px 4px 5px; - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: #001b22; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; } - .csd .header-bar { - background-color: rgba(0, 43, 54, 0.97); - border-color: rgba(0, 27, 34, 0.97); } - .header-bar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .header-bar .title { - padding-left: 12px; - padding-right: 12px; } - .header-bar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .header-bar.selection-mode, .header-bar.titlebar.selection-mode { - color: #fdf6e3; - background-color: rgba(38, 139, 210, 0.95); - border-color: rgba(35, 128, 193, 0.95); - box-shadow: none; } - .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { - background-color: rgba(38, 139, 210, 0.95); - color: rgba(253, 246, 227, 0.6); } - .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.05); - border-color: rgba(253, 246, 227, 0.5); } - .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { - color: rgba(38, 139, 210, 0.95); - outline-color: rgba(38, 139, 210, 0.25); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { - color: rgba(38, 139, 210, 0.35); - background-color: rgba(253, 246, 227, 0.15); - border-color: rgba(253, 246, 227, 0.15); } - .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { - background-color: #268bd2; } - .tiled .header-bar, .tiled .header-bar:backdrop, - .maximized .header-bar, .maximized .header-bar:backdrop { - border-radius: 0; } - .maximized .header-bar { - background-color: #002b36; - border-color: #001b22; } - .header-bar.default-decoration, - .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, - .csd .header-bar.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: #002b36; - border-bottom-width: 0; } - .maximized .header-bar.default-decoration, .maximized - .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized - .csd .header-bar.default-decoration:backdrop { - background-color: #002b36; } - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: 3px 3px 0 0; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: inset 0 1px rgba(0, 55, 69, 0.97); } - .csd .titlebar { - background-color: rgba(0, 43, 54, 0.97); } - .titlebar:backdrop { - color: rgba(89, 128, 143, 0.5); - background-color: #00313e; } - .csd .titlebar:backdrop { - background-color: rgba(0, 49, 62, 0.97); } - .maximized .titlebar { - background-color: #002b36; } - .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { - background-color: #00313e; } - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { - background-color: transparent; } - -.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, -.header-bar > GtkBox > .separator.vertical, GtkPlacesSidebar.sidebar -.header-bar > GtkBox > .vertical.view.separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(89, 128, 143, 0) 25%, rgba(89, 128, 143, 0.15) 25%, rgba(89, 128, 143, 0.15) 75%, rgba(89, 128, 143, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, - .header-bar > GtkBox > .separator.vertical:backdrop, GtkPlacesSidebar.sidebar - .header-bar > GtkBox > .vertical.view.separator:backdrop { - opacity: 0.6; } - -.primary-toolbar .entry, .header-bar .entry { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { - color: inherit; } - .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { - opacity: 0.85; } - .primary-toolbar .entry:focus, .header-bar .entry:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - background-clip: padding-box; } - .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { - color: #fdf6e3; } - .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar .entry.warning, .header-bar .entry.warning { - color: white; - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(125, 63, 34, 0.988)); } - .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); } - .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar .entry.error, .header-bar .entry.error { - color: white; - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(135, 47, 50, 0.988)); } - .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); } - .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar .button, .header-bar .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - outline-offset: -3px; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:backdrop, .header-bar .button:backdrop { - opacity: 0.7; } - .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { - color: inherit; } - .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.primary-toolbar .linked > .button, .header-bar .linked > .button { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { - box-shadow: none; } - -.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - background-color: rgba(0, 193, 243, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .primary-toolbar .linked.stack-switcher > .button:insensitive, .header-bar .linked.stack-switcher > .button:insensitive, .primary-toolbar .linked.path-bar > .button:insensitive, .header-bar .linked.path-bar > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37), inset -1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked { - box-shadow: none; } - -.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, .primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, .primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { - color: #fdf6e3; } - .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { - background-color: rgba(253, 246, 227, 0.1); - border-color: transparent; } - .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { - color: rgba(253, 246, 227, 0.4); } - -.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(89, 128, 143, 0.8); } - .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { - background-color: rgba(89, 128, 143, 0.05); - border-color: transparent; } - .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(89, 128, 143, 0.5); } - .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { - background-color: rgba(0, 0, 0, 0.1); } - -.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(89, 128, 143, 0.2); } - -.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { - color: inherit; } - .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr), .header-bar GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 transparent; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl), .header-bar GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 transparent; } - -.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { - opacity: 0.75; } - -.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.37)); } - .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.27)); } - -.primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, #005469); - border-color: rgba(0, 0, 0, 0.67); } - .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { - background-image: linear-gradient(to bottom, #006883); - border-color: rgba(0, 0, 0, 0.67); } - .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 72, 90, 0.991)); - border-color: rgba(0, 0, 0, 0.67); } - -.path-bar .button { - padding: 5px 10px; } - .path-bar .button:first-child { - padding-left: 10px; } - .path-bar .button:last-child { - padding-right: 10px; } - .path-bar .button:only-child { - padding-left: 14px; - padding-right: 14px; } - .path-bar .button GtkLabel:last-child { - padding-left: 4px; } - .path-bar .button GtkLabel:first-child { - padding-right: 4px; } - .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { - padding-right: 0; - padding-left: 0; } - .path-bar .button GtkImage { - padding-top: 2px; - padding-bottom: 1px; } - -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: rgba(101, 123, 131, 0.15); - border-top-color: rgba(0, 0, 0, 0.1); } - GtkTreeView.view:selected { - border-radius: 0; - border-left-color: #92c1db; - border-top-color: rgba(101, 123, 131, 0.1); } - GtkTreeView.view:insensitive { - color: rgba(101, 123, 131, 0.45); } - GtkTreeView.view:insensitive:selected { - color: #7cb6d9; } - GtkTreeView.view.dnd { - border-style: solid none; - border-width: 1px; - border-color: #4683ab; } - GtkTreeView.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #365963; } - GtkTreeView.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - GtkTreeView.view.expander:hover { - color: #657b83; } - GtkTreeView.view.expander:selected { - color: #bdd6de; } - GtkTreeView.view.expander:selected:hover { - color: #fdf6e3; } - GtkTreeView.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - GtkTreeView.view.progressbar, GtkTreeView.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-image: linear-gradient(to bottom, #268bd2); } - GtkTreeView.view.progressbar:selected, GtkTreeView.view.progressbar:selected:focus, GtkTreeView.view.progressbar:focus:selected, GtkTreeView.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-image: linear-gradient(to bottom, #fdf6e3); } - GtkTreeView.view.trough { - color: #657b83; - background-image: linear-gradient(to bottom, #001317); - border-radius: 3px; - border-width: 0; } - GtkTreeView.view.trough:selected, GtkTreeView.view.trough:selected:focus { - color: #fdf6e3; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); - border-radius: 3px; - border-width: 0; } - -column-header .button { - color: #526d76; - background-color: #073642; } - column-header .button:hover { - color: #268bd2; - box-shadow: none; - transition: none; } - column-header .button:active { - color: #657b83; - transition: none; } - -column-header:last-child .button, column-header:last-child.button { - border-right-style: none; - border-image: none; } - -column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { - transition: none; - color: #268bd2; - box-shadow: inset 1px 1px 0 1px #268bd2, inset -1px 0 0 1px #268bd2, inset 1px 1px #073642, inset -1px 0 #073642; } - -column-header .button, column-header .button:hover, column-header .button:active { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.11) 20%, rgba(255, 255, 255, 0.11) 80%, rgba(255, 255, 255, 0) 80%) 0 1 0 0/0 1px 0 0 stretch; } - column-header .button:active, column-header .button:hover { - background-color: #073642; } - column-header .button:active:hover { - color: #657b83; } - column-header .button:insensitive { - border-color: #002b36; - background-image: none; } - -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #002b36; - color: rgba(89, 128, 143, 0.8); } - .menubar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .menubar > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - .menubar > .menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - .menubar > .menuitem:insensitive { - color: rgba(89, 128, 143, 0.2); - border-color: transparent; } - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #002b36; - border: 1px solid #001317; } - .csd .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - .menu .menuitem { - padding: 5px; } - .menu .menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - .menu .menuitem:insensitive { - color: rgba(101, 123, 131, 0.45); } - .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator { - color: rgba(7, 54, 66, 0); } - .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 #103d49; } - .menu.button.bottom { - border-top: 1px solid #103d49; } - .menu.button:hover { - background-color: #103d49; } - .menu.button:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent; } - -.csd .popup { - border-radius: 2px; } - -.menuitem .accelerator { - color: alpha(currentColor,0.55); } - -.popover { - padding: 2px; - border: 1px solid black; - border-radius: 3px; - background-clip: border-box; - background-color: #002b36; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } - .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { - color: rgba(7, 54, 66, 0); } - .popover > .list, - .popover > .view, - .popover > .toolbar, - .popover > .inline-toolbar, - .popover.osd > .toolbar, - .popover.osd > .inline-toolbar { - border-style: none; - background-color: transparent; } - -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - .entry.cursor-handle.top, - .cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - .entry.cursor-handle.bottom, - .cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -.notebook { - padding: 0; - background-color: #073642; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -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.frame { - border: 1px solid #001317; } - .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.header { - background-color: #002b36; } - .notebook.header.frame { - border: 0px solid #001317; } - .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.top { - box-shadow: inset 0 -1px #001317; } - .notebook.header.bottom { - box-shadow: inset 0 1px #001317; } - .notebook.header.right { - box-shadow: inset 1px 0 #001317; } - .notebook.header.left { - box-shadow: inset -1px 0 #001317; } - .notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - outline-offset: 0; } - .notebook tab.top, .notebook tab.bottom { - padding: 4px 15px; } - .notebook tab.left, .notebook tab.right { - padding: 4px 15px; } - .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { - padding-left: 12px; - padding-right: 12px; } - .notebook tab.reorderable-page.top, .notebook tab.top { - padding-top: 6px; - border-radius: 3.5px 2px 0 0; - border-width: 0; - border-top-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { - background-color: #073642; - box-shadow: inset 0 1px #001317, inset 0 -1px #073642, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.bottom, .notebook tab.bottom { - padding-bottom: 6px; - border-radius: 0 0 2px 3.5px; - border-width: 0; - border-bottom-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { - background-color: #073642; - box-shadow: inset 0 -1px #073642, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.right, .notebook tab.right { - padding-right: 17px; - border-radius: 0 3.5px 3.5px 0; - border-width: 0; - border-right-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { - background-color: #073642; - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #073642, inset -1px 0 #001317; } - .notebook tab.reorderable-page.left, .notebook tab.left { - padding-left: 17px; - border-radius: 3.5px 0 0 3.5px; - border-width: 0; - border-left-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { - background-color: #073642; - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #073642; } - .notebook tab GtkLabel { - padding: 0 2px; - color: rgba(101, 123, 131, 0.45); } - .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(101, 123, 131, 0.725); } - .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { - color: #657b83; } - .notebook tab .button { - padding: 0; - color: #425f68; } - .notebook tab .button:hover { - color: #ff4d4d; } - .notebook tab .button:active { - color: #268bd2; } - .notebook tab .button > GtkImage { - padding: 2px; } - .notebook.arrow { - color: rgba(101, 123, 131, 0.45); } - .notebook.arrow:hover { - color: rgba(101, 123, 131, 0.725); } - .notebook.arrow:active { - color: #657b83; } - .notebook.arrow:insensitive { - color: rgba(101, 123, 131, 0.15); } - -.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: 6px; } - .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { - margin: 0; - background-color: #47636c; - border: 1px solid rgba(0, 0, 0, 0.3); - 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.99; } - .scrollbar .trough { - background-color: #07323d; - border: 1px none #001317; } - .scrollbar .slider { - background-color: #284b55; } - .scrollbar .slider:hover { - background-color: #1e434d; } - .scrollbar .slider:prelight:active, .scrollbar .slider:active { - background-color: #268bd2; } - .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, #001317 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #07323d; } - .scrollbars-junction:dir(rtl), - .scrollbars-junction.frame:dir(rtl) { - border-image-slice: 0 1 0 0; } - -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 41; - outline-color: transparent; } - GtkSwitch.trough, GtkSwitch.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; } - GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { - background-position: left center; } - -GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough, -.list-row:selected GtkSwitch.trough, -GtkInfoBar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -.header-bar GtkSwitch.trough, -.primary-toolbar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } - -GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active, -.list-row:selected GtkSwitch.trough:active, -GtkInfoBar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -.header-bar GtkSwitch.trough:active, -.primary-toolbar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } - -GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:insensitive, -.list-row:selected GtkSwitch.trough:insensitive, -GtkInfoBar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:insensitive, -.primary-toolbar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } - -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active:insensitive, -.list-row:selected GtkSwitch.trough:active:insensitive, -GtkInfoBar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:active:insensitive, -.primary-toolbar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } - -.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check, -GtkFileChooserDialog .dialog-vbox > .frame .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -.menu .menuitem.check:hover, -GtkTreeView.view.check:selected, -.list-row:selected .check, -GtkInfoBar .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.check:insensitive:hover, -GtkTreeView.view.check:insensitive:selected, -.list-row:selected .check:insensitive, -GtkInfoBar .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -.menu .menuitem.check:inconsistent:hover, -GtkTreeView.view.check:inconsistent:selected, -.list-row:selected .check:inconsistent, -GtkInfoBar .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.check:inconsistent:insensitive:hover, -GtkTreeView.view.check:inconsistent:insensitive:selected, -.list-row:selected .check:inconsistent:insensitive, -GtkInfoBar .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -.menu .menuitem.check:checked:hover, -GtkTreeView.view.check:checked:selected, -.list-row:selected .check:checked, -GtkInfoBar .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -.menu .menuitem.check:checked:insensitive:hover, -GtkTreeView.view.check:checked:insensitive:selected, -.list-row:selected .check:checked:insensitive, -GtkInfoBar .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio, -GtkFileChooserDialog .dialog-vbox > .frame .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -.menu .menuitem.radio:hover, -GtkTreeView.view.radio:selected, -.list-row:selected .radio, -GtkInfoBar .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:insensitive:hover, -GtkTreeView.view.radio:insensitive:selected, -.list-row:selected .radio:insensitive, -GtkInfoBar .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:hover, -GtkTreeView.view.radio:inconsistent:selected, -.list-row:selected .radio:inconsistent, -GtkInfoBar .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:insensitive:hover, -GtkTreeView.view.radio:inconsistent:insensitive:selected, -.list-row:selected .radio:inconsistent:insensitive, -GtkInfoBar .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -.menu .menuitem.radio:checked:hover, -GtkTreeView.view.radio:checked:selected, -.list-row:selected .radio:checked, -GtkInfoBar .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:checked:insensitive:hover, -GtkTreeView.view.radio:checked:insensitive:selected, -.list-row:selected .radio:checked:insensitive, -GtkInfoBar .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -GtkIconView.view.check, -GtkFlowBox.view.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); - background-color: transparent; } - -GtkIconView.view.check:checked, -GtkFlowBox.view.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@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: rgba(101, 123, 131, 0.45); } - -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; } - .scale.trough { - margin: 5px; } - .scale.fine-tune.trough { - border-radius: 5px; - margin: 3px; } - .scale.slider { - background-clip: border-box; - background-image: linear-gradient(to bottom, #083e4b); - border: 1px solid #000b0d; - border-radius: 50%; - box-shadow: none; } - .scale.slider:hover { - background-image: linear-gradient(to bottom, #0a5062); - border-color: #000b0d; } - .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #04313d); - border-color: rgba(0, 11, 13, 0.8); } - .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .osd .scale.slider { - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.95)); - border-color: #268bd2; } - .osd .scale.slider:hover { - background-image: linear-gradient(to bottom, #268bd2); } - .osd .scale.slider:active { - background-image: linear-gradient(to bottom, #1e6ea7); - border-color: #1e6ea7; } - .menu .menuitem:hover .scale.slider, - .list-row:selected .scale.slider, - GtkInfoBar .scale.slider { - background-image: linear-gradient(to bottom, #fdf6e3); - border-color: #fdf6e3; } - .menu .menuitem:hover .scale.slider:hover, - .list-row:selected .scale.slider:hover, - GtkInfoBar .scale.slider:hover { - background-image: linear-gradient(to bottom, #dde6e0); - border-color: #dde6e0; } - .menu .menuitem:hover .scale.slider:active, - .list-row:selected .scale.slider:active, - GtkInfoBar .scale.slider:active { - background-image: linear-gradient(to bottom, #92c1db); - border-color: #92c1db; } - .menu .menuitem:hover .scale.slider:insensitive, - .list-row:selected .scale.slider:insensitive, - GtkInfoBar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); - border-color: #9cc6db; } - .scale.trough { - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, #00171d); } - .scale.trough.highlight { - background-image: linear-gradient(to bottom, #268bd2); } - .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, rgba(38, 139, 210, 0.55)); } - .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 23, 29, 0.55)); } - .osd .scale.trough { - background-image: linear-gradient(to bottom, rgba(10, 80, 98, 0.95)); - outline-color: rgba(101, 123, 131, 0.2); } - .osd .scale.trough.highlight { - background-image: none; - background-image: linear-gradient(to bottom, #268bd2); } - .menu .menuitem:hover .scale.trough, - .list-row:selected .scale.trough, - GtkInfoBar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } - .menu .menuitem:hover .scale.trough.highlight, - .list-row:selected .scale.trough.highlight, - GtkInfoBar .scale.trough.highlight { - background-image: linear-gradient(to bottom, #fdf6e3); } - .menu .menuitem:hover .scale.trough.highlight:insensitive, - .list-row:selected .scale.trough.highlight:insensitive, - GtkInfoBar .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); } - .menu .menuitem:hover .scale.trough:insensitive, - .list-row:selected .scale.trough:insensitive, - GtkInfoBar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -GtkProgressBar { - padding: 0; - font-size: smaller; - color: rgba(101, 123, 131, 0.7); } - GtkProgressBar.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; } - -.progressbar { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - .progressbar.osd { - background-color: #268bd2; } - .list-row:selected .progressbar, - GtkInfoBar .progressbar { - background-color: #fdf6e3; } - -.osd .scale.progressbar { - background-color: #268bd2; } - -GtkProgressBar.trough, .level-bar.trough { - border: none; - border-radius: 3px; - background-color: #00171d; } - GtkProgressBar.trough.osd, .osd.level-bar.trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, - GtkInfoBar GtkProgressBar.trough, - GtkInfoBar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.2); } - -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; } - GtkLevelBar.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; } - -.level-bar.trough { - padding: 3px; - border-radius: 4px; } - -.level-bar.fill-block { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - .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 { - border-color: #859900; - background-color: #859900; } - .level-bar.fill-block.level-low { - border-color: #cb4b16; - background-color: #cb4b16; } - .level-bar.fill-block.empty-fill-block { - background-color: #073642; - border-color: #073642; } - -.frame { - border: 1px solid #001317; - padding: 0; } - .frame.flat { - border-style: none; } - .frame.action-bar { - padding: 6px; - border-width: 1px 0 0; } - -GtkScrolledWindow GtkViewport.frame { - border-style: none; } - -.separator, GtkPlacesSidebar.sidebar .view.separator { - color: rgba(0, 0, 0, 0.1); } - GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, - GtkFontButton .separator, - GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .view.separator, - GtkFileChooserButton .separator.vertical, - GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFileChooserButton .vertical.view.separator, - GtkFontButton .separator.vertical, - GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .vertical.view.separator { - -GtkWidget-wide-separators: true; } - -.list, .list-row { - background-color: #073642; - border-color: #001317; } - -.list-row, -.grid-child { - padding: 2px; } - -.list-row.button { - background-color: transparent; - border-style: none; - border-radius: 0; - box-shadow: none; } - .list-row.button:hover { - background-color: rgba(255, 255, 255, 0.03); } - .list-row.button:active { - color: #657b83; } - .list-row.button:selected:active { - color: #fdf6e3; } - .list-row.button:selected:hover { - background-color: #227dbd; } - .list-row.button:selected:insensitive { - color: rgba(253, 246, 227, 0.7); - background-color: rgba(38, 139, 210, 0.7); } - .list-row.button:selected:insensitive .label { - color: inherit; } - -.list-row, list-row.button { - transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .list-row:hover, list-row.button:hover { - transition: none; } - -.app-notification, -.app-notification.frame { - padding: 10px; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: rgba(2, 16, 20, 0.95); } - .app-notification .button, - .app-notification.frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .app-notification .button.flat, - .app-notification.frame .button.flat { - border-color: rgba(38, 139, 210, 0); } - .app-notification .button:hover, - .app-notification.frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .app-notification .button:active, .app-notification .button:checked, - .app-notification.frame .button:active, - .app-notification.frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification .button:insensitive, - .app-notification.frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - .expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - .expander:hover { - color: #b8c4c9; } - .expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GtkCalendar { - color: #657b83; - border: 1px solid #001317; - border-radius: 3px; - padding: 2px; } - GtkCalendar:selected { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 1.5px; } - GtkCalendar.header { - color: #657b83; - border: none; - border-radius: 0; } - GtkCalendar.button, GtkCalendar.button:focus { - color: rgba(101, 123, 131, 0.45); - border-color: transparent; - background-color: transparent; - background-image: none; } - GtkCalendar.button:hover, GtkCalendar.button:focus:hover { - color: #657b83; } - GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { - color: rgba(101, 123, 131, 0.45); - background-color: transparent; - background-image: none; } - GtkCalendar.highlight { - color: alpha(currentColor,0.55); } - -.message-dialog .dialog-action-area .button { - padding: 8px; } - -.message-dialog { - -GtkDialog-button-spacing: 0; } - .message-dialog .titlebar { - background-color: rgba(0, 43, 54, 0.97); - border-bottom: 1px solid rgba(0, 15, 18, 0.97); } - .message-dialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - .message-dialog.csd .dialog-action-area .button { - padding: 8px; - border-radius: 0; } - .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 { - border-right-style: none; - border-bottom-style: none; } - .message-dialog.csd .dialog-action-area .button:last-child { - border-bottom-right-radius: 3px; } - .message-dialog.csd .dialog-action-area .button:first-child { - border-left-style: none; - border-bottom-left-radius: 3px; } - -GtkFileChooserDialog .search-bar { - background-color: #002b36; - border-color: #001317; - box-shadow: none; } - -GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #001317; } - -.sidebar, .sidebar .view { - border: none; - background-color: #003340; } - .sidebar:selected, .sidebar .view:selected { - background-color: #268bd2; } - -GtkPlacesSidebar.sidebar .view { - color: #657b83; - background-color: transparent; } - GtkPlacesSidebar.sidebar .view:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.sidebar-item { - padding: 10px 4px; } - .sidebar-item > GtkLabel { - padding-left: 6px; - padding-right: 6px; } - .sidebar-item.needs-attention > GtkLabel { - background-size: 6px 6px, 0 0; } - -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: #001317; } - -GtkPaned.wide { - -GtkPaned-handle-size: 5; - margin: 0; } - GtkPaned.wide .pane-separator { - background-color: transparent; - border-style: none solid; - border-color: #001317; - border-width: 1px; } - GtkPaned.wide.vertical .pane-separator { - border-style: solid none; } - -GtkInfoBar { - border-style: none; } - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: #268bd2; - color: #fdf6e3; } - -.list-row:selected .button, GtkInfoBar .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - .list-row:selected .flat.button, GtkInfoBar .flat.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .list-row:selected .button:hover, GtkInfoBar .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.2); } - .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.2); } - -.tooltip { - color: #657b83; - border-radius: 2px; } - .tooltip.background { - background-color: rgba(12, 92, 112, 0.95); - background-clip: padding-box; } - .tooltip.window-frame.csd { - background-color: transparent; } - -.tooltip * { - padding: 4px; - background-color: transparent; - color: inherit; } - -:selected GtkColorSwatch { - box-shadow: none; } - :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { - border-color: #fdf6e3; } - -GtkColorSwatch.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -GtkColorSwatch.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { - border-radius: 3px; } - -GtkColorSwatch:hover, GtkColorSwatch:hover:selected { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } - -GtkColorEditor GtkColorSwatch { - border-radius: 3px; } - GtkColorEditor GtkColorSwatch:hover { - background-image: none; } - -GtkColorSwatch.color-dark { - color: white; - outline-color: rgba(0, 0, 0, 0.3); } - -GtkColorSwatch.color-light { - color: black; - outline-color: rgba(255, 255, 255, 0.5); } - -GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { - border: 1px solid rgba(0, 0, 0, 0.15); } - GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { - border-color: rgba(0, 0, 0, 0.25); } - -GtkColorSwatch#add-color-button { - border-style: solid; - border-width: 1px; - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - GtkColorSwatch#add-color-button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - GtkColorSwatch#add-color-button .overlay { - border-color: transparent; - background-color: transparent; - background-image: none; } - -GtkColorButton.button { - padding: 5px; } - GtkColorButton.button GtkColorSwatch { - border-radius: 0; } - -.scale-popup .button { - padding: 6px; } - .scale-popup .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - -GtkVolumeButton.button { - padding: 8px; } - -.touch-selection, -.context-menu { - font: initial; } - -.monospace { - font: Monospace; } - -.overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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; } - -.window-frame { - border-radius: 3px 3px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.97), 0 8px 8px 0 rgba(0, 0, 0, 0.35); - margin: 10px; } - .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.87), 0 5px 5px 0 rgba(0, 0, 0, 0.35); } - .window-frame.tiled { - border-radius: 0; } - .window-frame.popup { - box-shadow: none; - border-radius: 0; } - .window-frame.ssd { - border-radius: 3px 3px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } - .window-frame.ssd.maximized { - border-radius: 0; } - .window-frame.csd.popup { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #000203; } - .window-frame.csd.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.25); } - .window-frame.csd.message-dialog { - border-radius: 3px; } - .window-frame.solid-csd { - border-radius: 0; - margin: 1px; - background-color: rgba(0, 43, 54, 0.97); - box-shadow: none; } - -.header-bar.default-decoration .button.titlebutton, -.titlebar.default-decoration .button.titlebutton { - padding-top: 0px; - padding-bottom: 0px; } - -.header-bar .button.titlebutton, -.titlebar .button.titlebutton { - padding-left: 4px; - padding-right: 4px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(0, 43, 54, 0); } - .header-bar .button.titlebutton:not(GtkMenuButton), - .titlebar .button.titlebutton:not(GtkMenuButton) { - padding-top: 8px; - padding-bottom: 8px; } - .header-bar .button.titlebutton:hover, - .titlebar .button.titlebutton:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, - .titlebar .button.titlebutton:active, - .titlebar .button.titlebutton:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.close, - .titlebar .button.titlebutton.maximize, - .titlebar .button.titlebutton.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; } - .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - opacity: 1; } - .header-bar .button.titlebutton.close, - .titlebar .button.titlebutton.close { - background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } - .header-bar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.close:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.close:hover, - .titlebar .button.titlebutton.close:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } - .header-bar .button.titlebutton.close:active, - .titlebar .button.titlebutton.close:active { - background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } - .header-bar .button.titlebutton.maximize, - .titlebar .button.titlebutton.maximize { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-dark.png"), url("assets/titlebutton-maximize-dark@2.png")); } - .header-bar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.maximize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop-dark.png"), url("assets/titlebutton-maximize-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.maximize:hover, - .titlebar .button.titlebutton.maximize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover-dark.png"), url("assets/titlebutton-maximize-hover-dark@2.png")); } - .header-bar .button.titlebutton.maximize:active, - .titlebar .button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active-dark.png"), url("assets/titlebutton-maximize-active-dark@2.png")); } - .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.minimize { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-dark.png"), url("assets/titlebutton-minimize-dark@2.png")); } - .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop-dark.png"), url("assets/titlebutton-minimize-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.minimize:hover, - .titlebar .button.titlebutton.minimize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover-dark.png"), url("assets/titlebutton-minimize-hover-dark@2.png")); } - .header-bar .button.titlebutton.minimize:active, - .titlebar .button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active-dark.png"), url("assets/titlebutton-minimize-active-dark@2.png")); } - -.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.button.flat:selected, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, -GtkEntry.gb-command-bar-entry.entry.flat:focus:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); } - -GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, -ScratchMainWindow .notebook tab.reorderable-page.top:active, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, -ScratchMainWindow .notebook tab.top:active, -ScratchMainWindow .notebook tab.top.active-page, -ScratchMainWindow .notebook tab.top.active-page:hover, -EphyNotebook.notebook tab.reorderable-page.top:active, -EphyNotebook.notebook tab.reorderable-page.top.active-page, -EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, -EphyNotebook.notebook tab.top:active, -EphyNotebook.notebook tab.top.active-page, -EphyNotebook.notebook tab.top.active-page:hover, -MidoriNotebook .notebook tab.reorderable-page.top:active, -MidoriNotebook .notebook tab.reorderable-page.top.active-page, -MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, -MidoriNotebook .notebook tab.top:active, -MidoriNotebook .notebook tab.top.active-page, -MidoriNotebook .notebook tab.top.active-page:hover, -TerminalWindow .notebook tab.reorderable-page.top:active, -TerminalWindow .notebook tab.reorderable-page.top.active-page, -TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -TerminalWindow .notebook tab.top:active, -TerminalWindow .notebook tab.top.active-page, -TerminalWindow .notebook tab.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - -TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.top { - padding-top: 7px; - border-top-width: 3px; } - -TerminalWindow .notebook.header.top, -PantheonTerminalPantheonTerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #001b22, inset 0 -1px #001317; } - -GtkHTML { - background-color: #073642; - color: #657b83; } - GtkHTML:active { - color: #fdf6e3; - background-color: #268bd2; } - -SushiFontWidget { - padding: 6px 12px; } - -TerminalWindow .background { - background-color: transparent; } - -TerminalWindow .scrollbar.vertical .slider { - margin-left: 3px; } - -TerminalWindow .scrollbar.trough { - border-width: 0; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { - color: #657b83; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { - color: #fdf6e3; } - -.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, GtkPlacesSidebar.sidebar .nautilus-canvas-item.label.view.separator, .header-bar .nautilus-canvas-item.subtitle, -.nautilus-list-dim-label { - color: #33535d; } - .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, - .nautilus-list-dim-label:selected, - .nautilus-list-dim-label:selected:focus { - color: #d2e1e0; } - -NautilusNotebook.notebook { - background-color: #073642; } - NautilusNotebook.notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; } - -NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { - padding: 5px; - box-shadow: none; - background-color: #073642; } - -.nautilus-circular-button { - border-radius: 50%; - outline-radius: 50%; } - -.disk-space-display { - border-style: solid; - border-width: 1px; } - .disk-space-display.unknown { - background-color: rgba(101, 123, 131, 0.5); - border-color: rgba(79, 96, 102, 0.5); } - .disk-space-display.used { - background-color: rgba(38, 139, 210, 0.8); - border-color: rgba(30, 110, 167, 0.8); } - .disk-space-display.free { - background-color: #001f27; - border-color: black; } - -NemoWindow EelEditableLabel.entry { - transition: none; } - -NemoWindow .sidebar .frame { - border-width: 0; } - -NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #001317; } - -NemoWindow .primary-toolbar NemoPathBar.linked > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - background-color: rgba(0, 193, 243, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37), inset -1px 0 rgba(0, 0, 0, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.gedit-headerbar-paned { - color: rgba(0, 27, 34, 0.97); } - -.open-document-selector-treeview.view { - padding: 3px 6px 3px 6px; - border-color: #073642; } - .open-document-selector-treeview.view:prelight { - background-color: #0e3b47; } - .open-document-selector-treeview.view:prelight:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.open-document-selector-name-label { - color: #657b83; } - -.open-document-selector-path-label { - color: #365963; - font-size: smaller; } - .open-document-selector-path-label:selected { - color: rgba(253, 246, 227, 0.9); } - -.gedit-document-panel .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; } - .gedit-document-panel .list-row .button GtkImage { - color: inherit; } - -.gedit-document-panel .prelight-row .button { - color: #425f68; } - -.gedit-document-panel .list-row .button:hover, -.gedit-document-panel .prelight-row .button:hover { - color: #ff4d4d; } - -.gedit-document-panel .prelight-row:selected .button:hover { - color: #ff6666; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; } - .gedit-document-panel .prelight-row:selected .button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -.gedit-document-panel-dragged-row { - border: 1px solid #001317; - background-color: #000203; - color: #657b83; } - -GeditStatusbar { - border-top: 1px solid #001317; - background-color: #002b36; } - -GeditStatusMenuButton.button.flat, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton:checked.button.flat { - border-bottom-style: none; - border-radius: 0; } - -GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #001317; } - -.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { - color: rgba(101, 123, 131, 0.6); - margin: 2px; - padding: 2px; } - -GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { - background-color: #003340; - padding: 6px; - border-color: #001317; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image:hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image:hover { - color: inherit; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):insensitive, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { - box-shadow: -1px 0 #268bd2; } - -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; } - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - box-shadow: 1px 0 #268bd2; } - -GbEditorFrame .gb-search-slider { - padding: 2px; } - -GdTaggedEntry { - color: #657b83; } - -.preferences.sidebar GtkViewport { - border: none; } - -.preferences.sidebar GtkListBox { - background-color: #002b36; } - -.preferences.sidebar GtkListBoxRow { - padding: 10px; } - -GbPreferencesPageLanguage GtkSearchEntry { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - -GbPreferencesPageLanguage GtkScrolledWindow { - border-top-width: 0; } - -GtkBox.gb-command-bar-box { - border: none; - background-color: #073642; } - GtkBox.gb-command-bar-box GtkLabel { - color: #657b83; } - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: #657b83; - background-image: none; - background-color: #073642; - padding: 6px 6px 6px 6px; - border: none; } - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; } - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; } - -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; } - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #001317; } - -GbViewStack.focused GtkBox.header.notebook { - background-color: #073642; } - GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { - opacity: 1; } - -EphyWindow .floating-bar { - color: #657b83; } - -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon { - background-color: rgba(101, 123, 131, 0.3); - border-radius: 2px; } - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: #78b9e6; } - -.documents-entry-tag { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover { - color: #fdf6e3; - background-color: #3295da; } - .documents-entry-tag:active { - color: #fdf6e3; - background-color: #2380c1; } - .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; } - .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { - color: rgba(253, 246, 227, 0.7); } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -TotemGrilo.vertical GdMainView.frame { - border-width: 0; } - -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { - background-color: #268bd2; } - -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; } - -.gnome-panel-menu-bar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: #657b83; - background-image: linear-gradient(to bottom, rgba(5, 36, 44, 0.95)); } - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: #657b83; } - -PanelApplet .button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); - border-color: rgba(0, 0, 0, 0.17); } - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: rgba(0, 0, 0, 0.25); - border-radius: 0; - border-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -PanelApplet:hover { - color: white; } - -PanelApplet:active, -PanelApplet:hover:active { - color: #268bd2; } - -WnckPager { - color: #333e42; } - WnckPager:selected { - color: #268bd2; } - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; } - -ClockBox { - color: #657b83; } - -.xfce4-panel.panel { - background-color: rgba(5, 36, 44, 0.95); - text-shadow: none; - icon-shadow: none; } - .xfce4-panel.panel .button.flat { - color: #657b83; - background-color: rgba(5, 36, 44, 0); - border-radius: 0; - border: none; } - .xfce4-panel.panel .button.flat:hover { - border: none; - background-color: rgba(10, 74, 90, 0.95); } - .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - -.floating-bar { - background-color: #268bd2; - color: #fdf6e3; } - .floating-bar.top { - border-radius: 0 0 2px 2px; } - .floating-bar.right { - border-radius: 2px 0 0 2px; } - .floating-bar.bottom { - border-radius: 2px 2px 0 0; } - .floating-bar.left { - border-radius: 0 2px 2px 0; } - .floating-bar .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - background-color: transparent; - box-shadow: none; - border: none; } - -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; } - -MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { - color: #fdf6e3; - background-color: #268bd2; - outline-color: transparent; } - -MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { - background-color: transparent; } - -MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { - outline-color: transparent; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - .marlin-pathbar.pathbar:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; - border: solid transparent; - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { - padding: 0 3px; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { - background-color: rgba(255, 255, 255, 0.05); - border: solid rgba(255, 255, 255, 0.07); - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { - color: rgba(101, 123, 131, 0.45); } - -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; } - -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: #657b83; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration.top { - border: 1px solid rgba(0, 15, 18, 0.97); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #002b36); - color: rgba(89, 128, 143, 0.8); - box-shadow: inset 0 1px rgba(0, 55, 69, 0.97); } - UnityDecoration.top:backdrop { - border-bottom-width: 0; - color: rgba(89, 128, 143, 0.5); } - UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 15, 18, 0.97)); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: rgba(0, 75, 95, 0.97); - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; } - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar GtkLabel { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #001317; - border-right: 1px solid #001317; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #001317; } - .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { - padding: 0 3px 0 3px; } - -.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #001317; - background-color: #002b36; } - .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view { - background-color: #002b36; - color: #657b83; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:prelight { - background-color: #003f50; } - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: #002b36; - background-image: none; } - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #657b83; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GraniteWidgetsWelcome { - background-color: #073642; } - -GraniteWidgetsWelcome GtkLabel { - color: #33535d; - font: open sans 11; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(101, 123, 131, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #073642); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry.entry { - padding: 4px; } - -.h1 { - font: open sans 24px; } - -.h2 { - font: open sans light 18px; } - -.h3 { - font: open sans 11px; } - -.h4, -.category-label { - color: #47636c; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: rgba(5, 36, 44, 0.95); - color: #657b83; - font: bold; - box-shadow: inset 0 -1px rgba(1, 10, 12, 0.95); } - #panel_window .menubar { - padding-left: 5px; } - #panel_window .menubar, #panel_window .menubar > .menuitem { - background-color: transparent; - color: #657b83; - font: bold; } - #panel_window .menubar .menuitem:insensitive { - color: rgba(101, 123, 131, 0.5); } - #panel_window .menubar .menuitem:insensitive GtkLabel { - color: inherit; } - #panel_window .menubar .menu .menuitem { - font: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: #657b83; } - -#content_frame { - padding-bottom: 14px; - background-color: #002b36; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - #content_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - #content_frame .button:active, #content_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - #content_frame .button:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - #content_frame .button:insensitive > GtkLabel { - color: inherit; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: rgba(0, 43, 54, 0.97); - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px rgba(0, 27, 34, 0.97); } - -#buttonbox_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - #buttonbox_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - #buttonbox_frame .button:active, #buttonbox_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - #buttonbox_frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -#login_window #user_combobox { - color: #657b83; - font: 13px; } - #login_window #user_combobox .menu { - font: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font: bold; } - -.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { - color: rgba(0, 27, 34, 0.97); } - -NemoWindow GtkEventBox { - background-color: #002b36; } - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; } - -GtkFileChooserDialog .sidebar, -NautilusWindow .sidebar, -NemoWindow .sidebar { - border-right: 1px solid rgba(5, 35, 43, 0.95); } - -GtkFileChooserDialog .sidebar:dir(rtl), -NautilusWindow .sidebar:dir(rtl), -NemoWindow .sidebar:dir(rtl) { - border-left: 1px solid rgba(5, 35, 43, 0.95); } - -GtkFileChooserDialog.csd.background, -GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, -NautilusWindow.csd.background, -NautilusWindow .source-list, -NautilusWindow .source-list.view, -NautilusWindow .source-list.view:prelight, -NemoWindow.csd.background, -NemoWindow .source-list, -NemoWindow .source-list.view, -NemoWindow .source-list.view:prelight, -MarlinViewWindow.csd.background, -MarlinViewWindow .source-list, -MarlinViewWindow .source-list.view, -MarlinViewWindow .source-list.view:prelight { - background-color: transparent; } - -GtkFileChooserDialog .sidebar, GtkFileChooserDialog .source-list.sidebar.view, -NautilusWindow .sidebar, -NautilusWindow .source-list.sidebar.view, -NemoWindow .sidebar, -NemoWindow .source-list.sidebar.view, -MarlinViewWindow .sidebar, -MarlinViewWindow .source-list.sidebar.view { - background-color: rgba(7, 54, 66, 0.95); } - GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar row, GtkFileChooserDialog .source-list.sidebar.view .view, GtkFileChooserDialog .source-list.sidebar.view row, - NautilusWindow .sidebar .view, - NautilusWindow .sidebar row, - NautilusWindow .source-list.sidebar.view .view, - NautilusWindow .source-list.sidebar.view row, - NemoWindow .sidebar .view, - NemoWindow .sidebar row, - NemoWindow .source-list.sidebar.view .view, - NemoWindow .source-list.sidebar.view row, - MarlinViewWindow .sidebar .view, - MarlinViewWindow .sidebar row, - MarlinViewWindow .source-list.sidebar.view .view, - MarlinViewWindow .source-list.sidebar.view row { - background-color: transparent; - color: #657b83; } - GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar row.image, GtkFileChooserDialog .source-list.sidebar.view .view.image, GtkFileChooserDialog .source-list.sidebar.view row.image, - NautilusWindow .sidebar .view.image, - NautilusWindow .sidebar row.image, - NautilusWindow .source-list.sidebar.view .view.image, - NautilusWindow .source-list.sidebar.view row.image, - NemoWindow .sidebar .view.image, - NemoWindow .sidebar row.image, - NemoWindow .source-list.sidebar.view .view.image, - NemoWindow .source-list.sidebar.view row.image, - MarlinViewWindow .sidebar .view.image, - MarlinViewWindow .sidebar row.image, - MarlinViewWindow .source-list.sidebar.view .view.image, - MarlinViewWindow .source-list.sidebar.view row.image { - color: rgba(101, 123, 131, 0.7); } - GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar row.cell:selected, GtkFileChooserDialog .source-list.sidebar.view .view.cell:selected, GtkFileChooserDialog .source-list.sidebar.view row.cell:selected, - NautilusWindow .sidebar .view.cell:selected, - NautilusWindow .sidebar row.cell:selected, - NautilusWindow .source-list.sidebar.view .view.cell:selected, - NautilusWindow .source-list.sidebar.view row.cell:selected, - NemoWindow .sidebar .view.cell:selected, - NemoWindow .sidebar row.cell:selected, - NemoWindow .source-list.sidebar.view .view.cell:selected, - NemoWindow .source-list.sidebar.view row.cell:selected, - MarlinViewWindow .sidebar .view.cell:selected, - MarlinViewWindow .sidebar row.cell:selected, - MarlinViewWindow .source-list.sidebar.view .view.cell:selected, - MarlinViewWindow .source-list.sidebar.view row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog .source-list.sidebar.view.frame, - NautilusWindow .sidebar.frame, - NautilusWindow .source-list.sidebar.view.frame, - NemoWindow .sidebar.frame, - NemoWindow .source-list.sidebar.view.frame, - MarlinViewWindow .sidebar.frame, - MarlinViewWindow .source-list.sidebar.view.frame { - color: #657b83; } - GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog .source-list.sidebar.view .separator, - NautilusWindow .sidebar .separator, - NautilusWindow GtkPlacesSidebar.sidebar .view.separator, - NautilusWindow .source-list.sidebar.view .separator, - NemoWindow .sidebar .separator, - NemoWindow GtkPlacesSidebar.sidebar .view.separator, - NemoWindow .source-list.sidebar.view .separator, - MarlinViewWindow .sidebar .separator, - MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, - MarlinViewWindow .source-list.sidebar.view .separator { - color: transparent; } - -GtkFileChooserDialog.maximized .sidebar, -NautilusWindow.maximized .sidebar, -NemoWindow.maximized .sidebar, -MarlinViewWindow.maximized .sidebar { - background-color: #073642; } - -GtkFileChooserDialog .pane-separator, -NautilusWindow .pane-separator, -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { - background-color: rgba(5, 35, 43, 0.95); } - -NautilusWindow NautilusWindowSlot { - background-color: #073642; } - -NautilusDesktopWindow NautilusWindowSlot { - background-color: transparent; } - -GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { - background-color: rgba(7, 54, 66, 0.95); } - -GtkFileChooserDialog .sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #002b36; } - -GtkFileChooserDialog .dialog-action-box { - background-color: #002b36; } - -GtkFileChooserDialog .dialog-vbox > .frame { - color: #657b83; - border-color: transparent; } - -GtkFileChooserDialog .action-bar.frame { - background-color: transparent; - border-color: rgba(2, 16, 20, 0.95); } - -GtkFileChooserDialog .action-bar.frame GtkLabel, GtkFileChooserDialog .action-bar.frame GtkComboBox, -GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, -GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { - color: #657b83; } - -FeedReaderreaderUI.background.csd > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd > .titlebar .pane-separator, -GeditWindow.background.csd.maximized > .titlebar .pane-separator, -GeditWindow.background.csd > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { - background-color: rgba(0, 27, 34, 0.97); } - -FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: rgba(0, 43, 54, 0.97); } - FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: rgba(0, 49, 62, 0.97); } - -FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #002b36; } - FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #00313e; } - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; } - -GeditWindow.background.csd { - background-color: transparent; } - -GeditWindow.background .gedit-side-panel-paned .pane-separator { - background-color: rgba(5, 35, 43, 0.95); } - -GeditWindow.background .gedit-bottom-panel-paned .pane-separator { - background-color: #001317; } - -.gedit-bottom-panel-paned { - background-color: #073642; } - -.gedit-document-panel { - background-color: rgba(7, 54, 66, 0.95); } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel .list-row { - color: #657b83; } - .gedit-document-panel .list-row { - background-color: rgba(101, 123, 131, 0); - border: solid rgba(101, 123, 131, 0); - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:hover { - border: solid rgba(101, 123, 131, 0.15); - border-width: 3px 2px 3px 2px; - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel .list-row:active { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:active .button { - color: #fdf6e3; } - .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -GeditFileBrowserWidget { - background-color: rgba(7, 54, 66, 0.95); } - .maximized GeditFileBrowserWidget { - background-color: #073642; } - GeditFileBrowserWidget .horizontal { - background-color: transparent; - border-color: rgba(4, 28, 34, 0.95); } - GeditFileBrowserWidget .horizontal GtkComboBox { - color: #657b83; } - -GeditWindow.background.csd GeditFileBrowserView.view { - background-color: transparent; - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander { - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { - color: #268bd2; } - -GtkFileChooserDialog .action-bar.frame .button, -GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - GtkFileChooserDialog .action-bar.frame .button:hover, - GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - GtkFileChooserDialog .action-bar.frame .button:active, - GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog .action-bar.frame .button:checked, - GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - GtkFileChooserDialog .action-bar.frame .button:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -GtkFileChooserDialog .action-bar.frame .entry, -GtkFileChooserDialog .dialog-vbox > .frame .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.35)); - background-color: transparent; } - GtkFileChooserDialog .action-bar.frame .image.entry, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog .action-bar.frame .image.entry:hover, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { - color: inherit; } - GtkFileChooserDialog .action-bar.frame .entry:focus, - GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, #268bd2); } - GtkFileChooserDialog .action-bar.frame .entry:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.2)); } - -GtkFileChooserDialog .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -NautilusWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { - background-color: #8da0a7; - border: 1px solid rgba(0, 0, 0, 0.3); } - -GtkFileChooserDialog .sidebar .scrollbar .trough, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .trough, -NautilusWindow .sidebar .scrollbar .trough, -NautilusWindow .source-list.sidebar.view .scrollbar .trough, -NemoWindow .sidebar .scrollbar .trough, -NemoWindow .source-list.sidebar.view .scrollbar .trough, -MarlinViewWindow .sidebar .scrollbar .trough, -MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { - background-color: rgba(0, 0, 0, 0.2); - border: none; } - -GtkFileChooserDialog .sidebar .scrollbar .slider, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider, -NautilusWindow .sidebar .scrollbar .slider, -NautilusWindow .source-list.sidebar.view .scrollbar .slider, -NemoWindow .sidebar .scrollbar .slider, -NemoWindow .source-list.sidebar.view .scrollbar .slider, -MarlinViewWindow .sidebar .scrollbar .slider, -MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { - background-color: rgba(141, 160, 167, 0.7); } - GtkFileChooserDialog .sidebar .scrollbar .slider:hover, - NautilusWindow .sidebar .scrollbar .slider:hover, - NemoWindow .sidebar .scrollbar .slider:hover, - MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { - background-color: #9cacb2; } - GtkFileChooserDialog .sidebar .scrollbar .slider:prelight:active, - NautilusWindow .sidebar .scrollbar .slider:prelight:active, - NemoWindow .sidebar .scrollbar .slider:prelight:active, - MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog .sidebar .scrollbar .slider:insensitive, - NautilusWindow .sidebar .scrollbar .slider:insensitive, - NemoWindow .sidebar .scrollbar .slider:insensitive, - MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { - background-color: transparent; } - -@define-color theme_fg_color #657b83; -@define-color theme_text_color #657b83; -@define-color theme_bg_color #002b36; -@define-color theme_base_color #073642; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #657b83; -@define-color text_color #657b83; -@define-color bg_color #002b36; -@define-color base_color #073642; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #003340; -@define-color insensitive_fg_color alpha(#657b83, 0.5); -@define-color insensitive_base_color #073642; -@define-color theme_unfocused_fg_color #657b83; -@define-color theme_unfocused_text_color #657b83; -@define-color theme_unfocused_bg_color #002b36; -@define-color theme_unfocused_base_color #073642; -@define-color borders #001317; -@define-color unfocused_borders #001317; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #78b9e6; -@define-color content_view_bg #073642; -@define-color wm_title alpha(#59808f, 0.8); -@define-color wm_unfocused_title alpha(#59808f, 0.5); -@define-color wm_bg #002b36; -@define-color wm_bg_unfocused #00313e; -@define-color wm_highlight #003745; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #dc322f; -@define-color wm_button_close_hover_bg #cb4b16; -@define-color wm_button_close_active_bg #dc322f; -@define-color wm_icon_close_bg #002b36; -@define-color wm_button_hover_bg #657b83; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #002b36; -@define-color wm_icon_bg #93a1a1; -@define-color wm_icon_unfocused_bg #657b83; -@define-color wm_icon_hover_bg #93a1a1; -@define-color wm_icon_active_bg #fdf6e3; diff --git a/common/gtk-3.0/3.16/gtk-darker.css b/common/gtk-3.0/3.16/gtk-darker.css deleted file mode 100644 index 5c4ca56..0000000 --- a/common/gtk-3.0/3.16/gtk-darker.css +++ /dev/null @@ -1,3896 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -GtkPaned-handle-size: 1; - -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: #1e6ea7; - -GtkWidget-visited-link-color: #16527c; - -GtkWidget-focus-padding: 2; - -GtkWidget-focus-line-width: 1; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - -GtkStatusbar-shadow-type: none; - outline-color: rgba(92, 97, 108, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; } - -.background { - color: #5c616c; - background-color: rgba(245, 246, 247, 0.999); } - -*:insensitive { - -gtk-image-effect: dim; } - -.gtkstyle-fallback { - background-color: #F5F6F7; - color: #5c616c; } - .gtkstyle-fallback:prelight { - background-color: white; - color: #5c616c; } - .gtkstyle-fallback:active { - background-color: #d9dde0; - color: #5c616c; } - .gtkstyle-fallback:insensitive { - background-color: #faf6eb; - color: rgba(92, 97, 108, 0.55); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view { - color: #5c616c; - background-color: #fdf6e3; } - .view.dim-label, .view.label.separator, GtkPlacesSidebar.sidebar .view.label.separator, .header-bar .view.subtitle { - color: rgba(92, 97, 108, 0.55); } - .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { - color: rgba(253, 246, 227, 0.65); - text-shadow: none; } - -.rubberband { - border: 1px solid #268bd2; - background-color: rgba(38, 139, 210, 0.2); } - -.label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator { - color: #5c616c; } - -.label:insensitive { - color: rgba(92, 97, 108, 0.55); } - -.dim-label, .label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator, .header-bar .subtitle { - opacity: 0.55; } - -GtkAssistant .sidebar { - background-color: #fdf6e3; - border-top: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #dcdfe3; } - -GtkAssistant.csd .sidebar { - border-top-style: none; } - -GtkAssistant .sidebar .label { - padding: 6px 12px; } - -GtkAssistant .sidebar .label.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -GtkTextView { - background-color: #f9f6ed; } - -.grid-child { - padding: 3px; - border-radius: 3px; } - .grid-child:selected { - outline-offset: -2px; } - -.popover.osd, .osd { - color: #657b83; - border: none; - background-color: rgba(7, 54, 66, 0.95); - background-clip: padding-box; - outline-color: rgba(101, 123, 131, 0.3); - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - .spinner:active { - opacity: 1; - animation: spin 1s linear infinite; } - .spinner:active:insensitive { - opacity: 0.5; } - -.entry { - border: 1px solid; - padding: 5px 8px; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry.image.left { - padding-left: 0; } - .entry.image.right { - padding-right: 0; } - .entry.flat, .entry.flat:focus { - padding: 2px; - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); - border: none; - border-radius: 0; } - .entry:focus { - background-clip: border-box; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(253, 246, 227, 0.55); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.55)); } - .entry:selected, .entry:selected:focus { - background-color: #268bd2; - color: #fdf6e3; } - .entry.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - .linked > .entry:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .linked > .entry:first-child:dir(rtl) { - border-right-style: none; } - .linked > .entry:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; } - .linked > .entry:last-child:dir(rtl) { - border-left-style: solid; } - .entry.warning { - color: #fdf6e3; - border-color: #cb4b16; - background-image: linear-gradient(to bottom, #df8f68); } - .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); - box-shadow: none; } - .entry.warning:selected, .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .entry.error { - color: #fdf6e3; - border-color: #dc322f; - background-image: linear-gradient(to bottom, #e98077); } - .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); - box-shadow: none; } - .entry.error:selected, .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - .entry.image { - color: #7c7f84; } - .linked.vertical > .entry { - border-bottom-color: #f3efe3; - box-shadow: none; } - .linked.vertical > .entry:focus { - border-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:insensitive { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:first-child { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:first-child:focus { - border-bottom-color: #268bd2; - box-shadow: none; } - .linked.vertical > .entry:first-child:insensitive { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:last-child { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .linked.vertical > .entry:last-child:focus { - border-bottom-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:last-child:insensitive { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .osd .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.35)); - background-color: transparent; } - .osd .entry.image, .osd .entry.image:hover { - color: inherit; } - .osd .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, #268bd2); } - .osd .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.2)); } - -GtkSearchEntry.entry { - border-radius: 20px; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -.button { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 5px 8px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(251, 251, 252, 0); - border-color: rgba(101, 123, 131, 0); - transition: none; } - .button.flat:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - .button.flat:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; - -gtk-image-effect: highlight; } - .button:active, .button:checked { - background-clip: border-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; - transition-duration: 50ms; } - .button:active { - color: #5c616c; } - .button:active:hover, .button:checked { - color: #fdf6e3; } - .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; } - .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button:insensitive > GtkLabel { - color: inherit; } - .button:insensitive:active, .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { - color: inherit; } - .button.osd { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(3, 24, 29, 0.95); } - .button.osd.image-button, .header-bar .button.osd.titlebutton, - .titlebar .button.osd.titlebutton { - padding: 10px; } - .button.osd:hover { - color: #268bd2; } - .button.osd:active, .button.osd:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .button.osd:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .osd .button:dir(rtl) { - border-radius: 0; - border-right-style: none; - border-left-style: none; } - .osd .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:dir(rtl) { - border-left-style: solid; } - .osd .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd .button:hover, .osd .button:hover:first-child, .osd .button:hover:last-child { - box-shadow: none; } - .osd .button:active, .osd .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd .button.flat:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd .button.flat:hover, .osd .button.flat:hover:first-child, .osd .button.flat:hover:last-child { - box-shadow: none; } - .osd .button.flat:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); - background-image: none; } - .osd .button.flat:active, .osd .button.flat:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .button.suggested-action:active, .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .button.suggested-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.suggested-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .button.destructive-action:active, .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .button.destructive-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.destructive-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - .button.image-button, .header-bar .button.titlebutton, - .titlebar .button.titlebutton { - padding: 7px; } - .header-bar .button.image-button, .header-bar .button.titlebutton { - padding: 7px 10px; } - .button.text-button { - padding-left: 16px; - padding-right: 16px; } - .button.text-button.image-button, .header-bar .button.text-button.titlebutton, - .titlebar .button.text-button.titlebutton { - padding: 5px 8px; } - .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, - .titlebar .button.text-button.titlebutton GtkLabel:first-child { - padding-left: 8px; } - .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, - .titlebar .button.text-button.titlebutton GtkLabel:last-child { - padding-right: 8px; } - .stack-switcher > .button { - outline-offset: -3px; } - .stack-switcher > .button > GtkLabel { - 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 { - padding: 5px 10px; } - .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, - .titlebar .stack-switcher > .button.titlebutton { - padding: 2px 4px; } - .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; } - .stack-switcher > .button.needs-attention > .label, - .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 4px; } - .stack-switcher > .button.needs-attention > .label:dir(rtl), - .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { - background-position: left 3px, left 4px; } - .inline-toolbar .button, .inline-toolbar .button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar GtkToolButton > .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .inline-toolbar GtkToolButton > .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { - color: inherit; } - .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { - color: inherit; } - -.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, -.linked > .button:hover, -.linked > .button:active, -.linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4), inset -1px 0 rgba(101, 123, 131, 0.4); } - .inline-toolbar GtkToolButton > .button.flat:active, .osd .button:active, .inline-toolbar .button:active, .linked > .button:active, GtkComboBox.combobox-entry .entry:active, GtkComboBox.combobox-entry .button:active, .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, .linked > GtkComboBox > .button:active:dir(ltr), .inline-toolbar GtkToolButton > .button.flat:checked, .osd .button:checked, .inline-toolbar .button:checked, .linked > .button:checked, GtkComboBox.combobox-entry .entry:checked, GtkComboBox.combobox-entry .button:checked, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked, .linked > GtkComboBox > .button:checked:dir(ltr) { - box-shadow: none; } - .inline-toolbar.toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .inline-toolbar .button:dir(rtl):backdrop, .linked > .button:dir(rtl), - .linked > .button:dir(rtl):hover, - .linked > .button:dir(rtl):active, - .linked > .button:dir(rtl):checked, GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), .primary-toolbar .linked.path-bar > .button:dir(rtl), .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { - border-radius: 0; } - -.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, .primary-toolbar .linked.path-bar > .button:first-child, .header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.4); } - .osd .button:first-child:active, .inline-toolbar .button:first-child:active, .linked > .button:first-child:active, .inline-toolbar GtkToolButton:first-child > .button.flat:active, GtkComboBox.combobox-entry .entry:first-child:active, GtkComboBox.combobox-entry .button:first-child:active, .linked > GtkComboBox:first-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, .osd .button:first-child:checked, .inline-toolbar .button:first-child:checked, .linked > .button:first-child:checked, .inline-toolbar GtkToolButton:first-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:first-child:checked, GtkComboBox.combobox-entry .button:first-child:checked, .linked > GtkComboBox:first-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - -.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, .primary-toolbar .linked.path-bar > .button:last-child, .header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4); } - .osd .button:last-child:active, .inline-toolbar .button:last-child:active, .linked > .button:last-child:active, .inline-toolbar GtkToolButton:last-child > .button.flat:active, GtkComboBox.combobox-entry .entry:last-child:active, GtkComboBox.combobox-entry .button:last-child:active, .linked > GtkComboBox:last-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, .osd .button:last-child:checked, .inline-toolbar .button:last-child:checked, .linked > .button:last-child:checked, .inline-toolbar GtkToolButton:last-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:last-child:checked, GtkComboBox.combobox-entry .button:last-child:checked, .linked > GtkComboBox:last-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { - border-bottom-left-radius: 0; } - -.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, .primary-toolbar .linked.path-bar > .button:only-child, .header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - .osd .button:only-child:active, .inline-toolbar .button:only-child:active, .linked > .button:only-child:active, .inline-toolbar GtkToolButton:only-child > .button.flat:active, GtkComboBox.combobox-entry .entry:only-child:active, GtkComboBox.combobox-entry .button:only-child:active, .linked > GtkComboBox:only-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, .osd .button:only-child:checked, .inline-toolbar .button:only-child:checked, .linked > .button:only-child:checked, .inline-toolbar GtkToolButton:only-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:only-child:checked, GtkComboBox.combobox-entry .button:only-child:checked, .linked > GtkComboBox:only-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, -.linked.vertical > .button:hover, -.linked.vertical > .button:active, -.linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, -.linked.vertical > GtkComboBox > .button { - border-style: solid; - border-bottom-style: none; - border-top-style: none; - border-radius: 0; } - .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, - .linked.vertical > GtkComboBox > .button:hover { - box-shadow: inset 0 -1px rgba(101, 123, 131, 0.4), inset 0 1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:active, .linked.vertical > .button:active, .linked.vertical > GtkComboBoxText > .button:active, - .linked.vertical > GtkComboBox > .button:active, .linked.vertical > .entry:checked, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button:checked, - .linked.vertical > GtkComboBox > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, -.linked.vertical > GtkComboBox:first-child > .button { - border-radius: 3px 3px 0 0; - border-top-style: solid; } - .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, - .linked.vertical > GtkComboBox:first-child > .button:hover { - box-shadow: inset 0 -1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:first-child:active, .linked.vertical > .button:first-child:active, .linked.vertical > GtkComboBoxText:first-child > .button:active, - .linked.vertical > GtkComboBox:first-child > .button:active, .linked.vertical > .entry:first-child:checked, .linked.vertical > .button:first-child:checked, .linked.vertical > GtkComboBoxText:first-child > .button:checked, - .linked.vertical > GtkComboBox:first-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, -.linked.vertical > GtkComboBox:last-child > .button { - border-radius: 0 0 3px 3px; - border-bottom-style: solid; } - .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, - .linked.vertical > GtkComboBox:last-child > .button:hover { - box-shadow: inset 0 1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:last-child:active, .linked.vertical > .button:last-child:active, .linked.vertical > GtkComboBoxText:last-child > .button:active, - .linked.vertical > GtkComboBox:last-child > .button:active, .linked.vertical > .entry:last-child:checked, .linked.vertical > .button:last-child:checked, .linked.vertical > GtkComboBoxText:last-child > .button:checked, - .linked.vertical > GtkComboBox:last-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, -.linked.vertical > GtkComboBox:only-child > .button { - border-radius: 3px; - border-style: solid; } - .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, - .linked.vertical > GtkComboBox:only-child > .button:hover { - box-shadow: none; } - .linked.vertical > .entry:only-child:active, .linked.vertical > .button:only-child:active, .linked.vertical > GtkComboBoxText:only-child > .button:active, - .linked.vertical > GtkComboBox:only-child > .button:active, .linked.vertical > .entry:only-child:checked, .linked.vertical > .button:only-child:checked, .linked.vertical > GtkComboBoxText:only-child > .button:checked, - .linked.vertical > GtkComboBox:only-child > .button:checked { - box-shadow: none; } - -.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, -.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, -.app-notification.frame .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -/* menu buttons */ -.menuitem.button.flat { - transition: none; - outline-offset: -1px; - border-radius: 2px; } - .menuitem.button.flat:hover { - background-color: #edeff0; } - .menuitem.button.flat:checked { - color: #5c616c; } - -*:link, .button:link, .button:visited { - color: #1e6ea7; } - *:link:visited, .button:visited { - color: #16527c; } - *:selected *:link:visited, *:selected .button:visited:link, *:selected .button:visited { - color: #a7cbdc; } - *:link:hover, .button:hover:link, .button:hover:visited { - color: #268bd2; } - *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { - color: #e8ebe1; } - *:link:active, .button:active:link, .button:active:visited { - color: #1e6ea7; } - *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { - color: #d2e1e0; } - *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { - color: #d2e1e0; } - -.spinbutton { - border-radius: 3px; } - .spinbutton .button { - background-image: none; - border: 1px solid rgba(220, 223, 227, 0.6); - border-style: none none none solid; - color: #646872; - border-radius: 0; - box-shadow: none; } - .spinbutton .button:dir(rtl) { - border-style: none solid none none; } - .spinbutton .button:first-child { - color: red; } - .spinbutton .button:insensitive { - color: rgba(92, 97, 108, 0.55); } - .spinbutton .button:active { - background-color: #268bd2; - color: #fdf6e3; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - border-radius: 2px 2px 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:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; } - GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: #268bd2; - border-radius: 0; - box-shadow: none; } - -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; } - GtkComboBox > .the-button-in-the-combobox { - padding-top: 3px; - padding-bottom: 3px; } - GtkComboBox:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { - -GtkWidget-wide-separators: true; } - GtkComboBox.combobox-entry .entry:dir(ltr) { - border-right-style: none; } - GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: 1px 0 #268bd2; } - GtkComboBox.combobox-entry .entry:dir(rtl) { - border-left-style: none; } - GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: -1px 0 #268bd2; } - GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 #657b83; } - GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.55); } - GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 #657b83; } - GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.55); } - -.toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #F5F6F7; } - .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.85); } - -.primary-toolbar { - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #002b36, rgba(0, 15, 18, 0.97)) 1 0 1 0; } - -.inline-toolbar { - background-color: #edeef0; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -.search-bar { - background-color: #F5F6F7; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 0 1px; - padding: 3px; } - -.action-bar { - background-color: #edeef0; } - -.header-bar { - padding: 5px 5px 4px 5px; - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: #001b22; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; } - .csd .header-bar { - background-color: rgba(0, 43, 54, 0.97); - border-color: rgba(0, 27, 34, 0.97); } - .header-bar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .header-bar .title { - padding-left: 12px; - padding-right: 12px; } - .header-bar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .header-bar.selection-mode, .header-bar.titlebar.selection-mode { - color: #fdf6e3; - background-color: rgba(38, 139, 210, 0.95); - border-color: rgba(35, 128, 193, 0.95); - box-shadow: none; } - .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { - background-color: rgba(38, 139, 210, 0.95); - color: rgba(253, 246, 227, 0.6); } - .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.05); - border-color: rgba(253, 246, 227, 0.5); } - .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { - color: rgba(38, 139, 210, 0.95); - outline-color: rgba(38, 139, 210, 0.25); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { - color: rgba(38, 139, 210, 0.35); - background-color: rgba(253, 246, 227, 0.15); - border-color: rgba(253, 246, 227, 0.15); } - .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { - background-color: #268bd2; } - .tiled .header-bar, .tiled .header-bar:backdrop, - .maximized .header-bar, .maximized .header-bar:backdrop { - border-radius: 0; } - .maximized .header-bar { - background-color: #002b36; - border-color: #001b22; } - .header-bar.default-decoration, - .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, - .csd .header-bar.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: #002b36; - border-bottom-width: 0; } - .maximized .header-bar.default-decoration, .maximized - .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized - .csd .header-bar.default-decoration:backdrop { - background-color: #002b36; } - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: 3px 3px 0 0; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: inset 0 1px rgba(0, 55, 69, 0.97); } - .csd .titlebar { - background-color: rgba(0, 43, 54, 0.97); } - .titlebar:backdrop { - color: rgba(89, 128, 143, 0.5); - background-color: #00313e; } - .csd .titlebar:backdrop { - background-color: rgba(0, 49, 62, 0.97); } - .maximized .titlebar { - background-color: #002b36; } - .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { - background-color: #00313e; } - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { - background-color: transparent; } - -.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, -.header-bar > GtkBox > .separator.vertical, GtkPlacesSidebar.sidebar -.header-bar > GtkBox > .vertical.view.separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(89, 128, 143, 0) 25%, rgba(89, 128, 143, 0.15) 25%, rgba(89, 128, 143, 0.15) 75%, rgba(89, 128, 143, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, - .header-bar > GtkBox > .separator.vertical:backdrop, GtkPlacesSidebar.sidebar - .header-bar > GtkBox > .vertical.view.separator:backdrop { - opacity: 0.6; } - -.primary-toolbar .entry, .header-bar .entry { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { - color: inherit; } - .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { - opacity: 0.85; } - .primary-toolbar .entry:focus, .header-bar .entry:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - background-clip: padding-box; } - .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { - color: #fdf6e3; } - .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar .entry.warning, .header-bar .entry.warning { - color: white; - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(125, 63, 34, 0.988)); } - .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); } - .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar .entry.error, .header-bar .entry.error { - color: white; - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(135, 47, 50, 0.988)); } - .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); } - .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar .button, .header-bar .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - outline-offset: -3px; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:backdrop, .header-bar .button:backdrop { - opacity: 0.7; } - .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { - color: inherit; } - .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.primary-toolbar .linked > .button, .header-bar .linked > .button { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { - box-shadow: none; } - -.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - background-color: rgba(0, 193, 243, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .primary-toolbar .linked.stack-switcher > .button:insensitive, .header-bar .linked.stack-switcher > .button:insensitive, .primary-toolbar .linked.path-bar > .button:insensitive, .header-bar .linked.path-bar > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37), inset -1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked { - box-shadow: none; } - -.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, .primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, .primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { - color: #fdf6e3; } - .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { - background-color: rgba(253, 246, 227, 0.1); - border-color: transparent; } - .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { - color: rgba(253, 246, 227, 0.4); } - -.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(89, 128, 143, 0.8); } - .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { - background-color: rgba(89, 128, 143, 0.05); - border-color: transparent; } - .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(89, 128, 143, 0.5); } - .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { - background-color: rgba(0, 0, 0, 0.1); } - -.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(89, 128, 143, 0.2); } - -.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { - color: inherit; } - .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr), .header-bar GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 transparent; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl), .header-bar GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 transparent; } - -.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { - opacity: 0.75; } - -.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.37)); } - .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.27)); } - -.primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, #005469); - border-color: rgba(0, 0, 0, 0.67); } - .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { - background-image: linear-gradient(to bottom, #006883); - border-color: rgba(0, 0, 0, 0.67); } - .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 72, 90, 0.991)); - border-color: rgba(0, 0, 0, 0.67); } - -.path-bar .button { - padding: 5px 10px; } - .path-bar .button:first-child { - padding-left: 10px; } - .path-bar .button:last-child { - padding-right: 10px; } - .path-bar .button:only-child { - padding-left: 14px; - padding-right: 14px; } - .path-bar .button GtkLabel:last-child { - padding-left: 4px; } - .path-bar .button GtkLabel:first-child { - padding-right: 4px; } - .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { - padding-right: 0; - padding-left: 0; } - .path-bar .button GtkImage { - padding-top: 2px; - padding-bottom: 1px; } - -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: rgba(92, 97, 108, 0.15); - border-top-color: rgba(0, 0, 0, 0.1); } - GtkTreeView.view:selected { - border-radius: 0; - border-left-color: #92c1db; - border-top-color: rgba(92, 97, 108, 0.1); } - GtkTreeView.view:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkTreeView.view:insensitive:selected { - color: #7cb6d9; } - GtkTreeView.view.dnd { - border-style: solid none; - border-width: 1px; - border-color: #41769f; } - GtkTreeView.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #adaca8; } - GtkTreeView.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - GtkTreeView.view.expander:hover { - color: #5c616c; } - GtkTreeView.view.expander:selected { - color: #bdd6de; } - GtkTreeView.view.expander:selected:hover { - color: #fdf6e3; } - GtkTreeView.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - GtkTreeView.view.progressbar, GtkTreeView.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-image: linear-gradient(to bottom, #268bd2); } - GtkTreeView.view.progressbar:selected, GtkTreeView.view.progressbar:selected:focus, GtkTreeView.view.progressbar:focus:selected, GtkTreeView.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-image: linear-gradient(to bottom, #fdf6e3); } - GtkTreeView.view.trough { - color: #5c616c; - background-image: linear-gradient(to bottom, #657b83); - border-radius: 3px; - border-width: 0; } - GtkTreeView.view.trough:selected, GtkTreeView.view.trough:selected:focus { - color: #fdf6e3; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); - border-radius: 3px; - border-width: 0; } - -column-header .button { - color: #7c7f84; - background-color: #fdf6e3; } - column-header .button:hover { - color: #268bd2; - box-shadow: none; - transition: none; } - column-header .button:active { - color: #5c616c; - transition: none; } - -column-header:last-child .button, column-header:last-child.button { - border-right-style: none; - border-image: none; } - -column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { - transition: none; - color: #268bd2; - box-shadow: inset 1px 1px 0 1px #268bd2, inset -1px 0 0 1px #268bd2, inset 1px 1px #fdf6e3, inset -1px 0 #fdf6e3; } - -column-header .button, column-header .button:hover, column-header .button:active { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; } - column-header .button:active, column-header .button:hover { - background-color: #fdf6e3; } - column-header .button:active:hover { - color: #5c616c; } - column-header .button:insensitive { - border-color: #F5F6F7; - background-image: none; } - -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #002b36; - color: rgba(89, 128, 143, 0.8); } - .menubar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .menubar > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - .menubar > .menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - .menubar > .menuitem:insensitive { - color: rgba(89, 128, 143, 0.2); - border-color: transparent; } - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; } - .csd .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - .menu .menuitem { - padding: 5px; } - .menu .menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - .menu .menuitem:insensitive { - color: rgba(92, 97, 108, 0.55); } - .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator { - color: rgba(253, 246, 227, 0); } - .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 #ede7d7; } - .menu.button.bottom { - border-top: 1px solid #ede7d7; } - .menu.button:hover { - background-color: #ede7d7; } - .menu.button:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent; } - -.csd .popup { - border-radius: 2px; } - -.menuitem .accelerator { - color: alpha(currentColor,0.55); } - -.popover { - padding: 2px; - border: 1px solid #cdd2d7; - border-radius: 3px; - background-clip: border-box; - background-color: #fdf6e3; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } - .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { - color: rgba(253, 246, 227, 0); } - .popover > .list, - .popover > .view, - .popover > .toolbar, - .popover > .inline-toolbar, - .popover.osd > .toolbar, - .popover.osd > .inline-toolbar { - border-style: none; - background-color: transparent; } - -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - .entry.cursor-handle.top, - .cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - .entry.cursor-handle.bottom, - .cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -.notebook { - padding: 0; - background-color: #fdf6e3; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -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.frame { - border: 1px solid #dcdfe3; } - .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.header { - background-color: #F5F6F7; } - .notebook.header.frame { - border: 0px solid #dcdfe3; } - .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.top { - box-shadow: inset 0 -1px #dcdfe3; } - .notebook.header.bottom { - box-shadow: inset 0 1px #dcdfe3; } - .notebook.header.right { - box-shadow: inset 1px 0 #dcdfe3; } - .notebook.header.left { - box-shadow: inset -1px 0 #dcdfe3; } - .notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - outline-offset: 0; } - .notebook tab.top, .notebook tab.bottom { - padding: 4px 15px; } - .notebook tab.left, .notebook tab.right { - padding: 4px 15px; } - .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { - padding-left: 12px; - padding-right: 12px; } - .notebook tab.reorderable-page.top, .notebook tab.top { - padding-top: 6px; - border-radius: 3.5px 2px 0 0; - border-width: 0; - border-top-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #fdf6e3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom, .notebook tab.bottom { - padding-bottom: 6px; - border-radius: 0 0 2px 3.5px; - border-width: 0; - border-bottom-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 -1px #fdf6e3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right, .notebook tab.right { - padding-right: 17px; - border-radius: 0 3.5px 3.5px 0; - border-width: 0; - border-right-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #fdf6e3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left, .notebook tab.left { - padding-left: 17px; - border-radius: 3.5px 0 0 3.5px; - border-width: 0; - border-left-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #fdf6e3; } - .notebook tab GtkLabel { - padding: 0 2px; - color: rgba(92, 97, 108, 0.55); } - .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(92, 97, 108, 0.775); } - .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { - color: #5c616c; } - .notebook tab .button { - padding: 0; - color: #92959d; } - .notebook tab .button:hover { - color: #ff4d4d; } - .notebook tab .button:active { - color: #268bd2; } - .notebook tab .button > GtkImage { - padding: 2px; } - .notebook.arrow { - color: rgba(92, 97, 108, 0.55); } - .notebook.arrow:hover { - color: rgba(92, 97, 108, 0.775); } - .notebook.arrow:active { - color: #5c616c; } - .notebook.arrow:insensitive { - color: rgba(92, 97, 108, 0.25); } - -.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: 6px; } - .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { - margin: 0; - background-color: #8a8e96; - border: 1px solid rgba(255, 255, 255, 0.6); - 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.99; } - .scrollbar .trough { - background-color: #fdf4de; - border: 1px none #dcdfe3; } - .scrollbar .slider { - background-color: #b8babf; } - .scrollbar .slider:hover { - background-color: #c7c9cd; } - .scrollbar .slider:prelight:active, .scrollbar .slider:active { - background-color: #268bd2; } - .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, #dcdfe3 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #fdf4de; } - .scrollbars-junction:dir(rtl), - .scrollbars-junction.frame:dir(rtl) { - border-image-slice: 0 1 0 0; } - -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 41; - outline-color: transparent; } - GtkSwitch.trough, GtkSwitch.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; } - GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { - background-position: left center; } - -GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough, -.list-row:selected GtkSwitch.trough, -GtkInfoBar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -.header-bar GtkSwitch.trough, -.primary-toolbar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } - -GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active, -.list-row:selected GtkSwitch.trough:active, -GtkInfoBar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -.header-bar GtkSwitch.trough:active, -.primary-toolbar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } - -GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:insensitive, -.list-row:selected GtkSwitch.trough:insensitive, -GtkInfoBar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:insensitive, -.primary-toolbar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } - -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active:insensitive, -.list-row:selected GtkSwitch.trough:active:insensitive, -GtkInfoBar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:active:insensitive, -.primary-toolbar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } - -.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check, -GtkFileChooserDialog .dialog-vbox > .frame .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -.menu .menuitem.check:hover, -GtkTreeView.view.check:selected, -.list-row:selected .check, -GtkInfoBar .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.check:insensitive:hover, -GtkTreeView.view.check:insensitive:selected, -.list-row:selected .check:insensitive, -GtkInfoBar .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -.menu .menuitem.check:inconsistent:hover, -GtkTreeView.view.check:inconsistent:selected, -.list-row:selected .check:inconsistent, -GtkInfoBar .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.check:inconsistent:insensitive:hover, -GtkTreeView.view.check:inconsistent:insensitive:selected, -.list-row:selected .check:inconsistent:insensitive, -GtkInfoBar .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -.menu .menuitem.check:checked:hover, -GtkTreeView.view.check:checked:selected, -.list-row:selected .check:checked, -GtkInfoBar .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -.menu .menuitem.check:checked:insensitive:hover, -GtkTreeView.view.check:checked:insensitive:selected, -.list-row:selected .check:checked:insensitive, -GtkInfoBar .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio, -GtkFileChooserDialog .dialog-vbox > .frame .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -.menu .menuitem.radio:hover, -GtkTreeView.view.radio:selected, -.list-row:selected .radio, -GtkInfoBar .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:insensitive:hover, -GtkTreeView.view.radio:insensitive:selected, -.list-row:selected .radio:insensitive, -GtkInfoBar .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:hover, -GtkTreeView.view.radio:inconsistent:selected, -.list-row:selected .radio:inconsistent, -GtkInfoBar .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:insensitive:hover, -GtkTreeView.view.radio:inconsistent:insensitive:selected, -.list-row:selected .radio:inconsistent:insensitive, -GtkInfoBar .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -.menu .menuitem.radio:checked:hover, -GtkTreeView.view.radio:checked:selected, -.list-row:selected .radio:checked, -GtkInfoBar .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:checked:insensitive:hover, -GtkTreeView.view.radio:checked:insensitive:selected, -.list-row:selected .radio:checked:insensitive, -GtkInfoBar .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -GtkIconView.view.check, -GtkFlowBox.view.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); - background-color: transparent; } - -GtkIconView.view.check:checked, -GtkFlowBox.view.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-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: rgba(92, 97, 108, 0.55); } - -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; } - .scale.trough { - margin: 5px; } - .scale.fine-tune.trough { - border-radius: 5px; - margin: 3px; } - .scale.slider { - background-clip: border-box; - background-image: linear-gradient(to bottom, #fbfbfc); - border: 1px solid rgba(45, 55, 59, 0.5); - border-radius: 50%; - box-shadow: none; } - .scale.slider:hover { - background-image: linear-gradient(to bottom, white); - border-color: rgba(45, 55, 59, 0.5); } - .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #f9f6ec); - border-color: rgba(45, 55, 59, 0.3); } - .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .osd .scale.slider { - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.95)); - border-color: #268bd2; } - .osd .scale.slider:hover { - background-image: linear-gradient(to bottom, #268bd2); } - .osd .scale.slider:active { - background-image: linear-gradient(to bottom, #1e6ea7); - border-color: #1e6ea7; } - .menu .menuitem:hover .scale.slider, - .list-row:selected .scale.slider, - GtkInfoBar .scale.slider { - background-image: linear-gradient(to bottom, #fdf6e3); - border-color: #fdf6e3; } - .menu .menuitem:hover .scale.slider:hover, - .list-row:selected .scale.slider:hover, - GtkInfoBar .scale.slider:hover { - background-image: linear-gradient(to bottom, #dde6e0); - border-color: #dde6e0; } - .menu .menuitem:hover .scale.slider:active, - .list-row:selected .scale.slider:active, - GtkInfoBar .scale.slider:active { - background-image: linear-gradient(to bottom, #92c1db); - border-color: #92c1db; } - .menu .menuitem:hover .scale.slider:insensitive, - .list-row:selected .scale.slider:insensitive, - GtkInfoBar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); - border-color: #9cc6db; } - .scale.trough { - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, #657b83); } - .scale.trough.highlight { - background-image: linear-gradient(to bottom, #268bd2); } - .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, rgba(38, 139, 210, 0.55)); } - .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(101, 123, 131, 0.55)); } - .osd .scale.trough { - background-image: linear-gradient(to bottom, rgba(10, 80, 98, 0.95)); - outline-color: rgba(101, 123, 131, 0.2); } - .osd .scale.trough.highlight { - background-image: none; - background-image: linear-gradient(to bottom, #268bd2); } - .menu .menuitem:hover .scale.trough, - .list-row:selected .scale.trough, - GtkInfoBar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } - .menu .menuitem:hover .scale.trough.highlight, - .list-row:selected .scale.trough.highlight, - GtkInfoBar .scale.trough.highlight { - background-image: linear-gradient(to bottom, #fdf6e3); } - .menu .menuitem:hover .scale.trough.highlight:insensitive, - .list-row:selected .scale.trough.highlight:insensitive, - GtkInfoBar .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); } - .menu .menuitem:hover .scale.trough:insensitive, - .list-row:selected .scale.trough:insensitive, - GtkInfoBar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -GtkProgressBar { - padding: 0; - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - GtkProgressBar.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; } - -.progressbar { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - .progressbar.osd { - background-color: #268bd2; } - .list-row:selected .progressbar, - GtkInfoBar .progressbar { - background-color: #fdf6e3; } - -.osd .scale.progressbar { - background-color: #268bd2; } - -GtkProgressBar.trough, .level-bar.trough { - border: none; - border-radius: 3px; - background-color: #657b83; } - GtkProgressBar.trough.osd, .osd.level-bar.trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, - GtkInfoBar GtkProgressBar.trough, - GtkInfoBar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.2); } - -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; } - GtkLevelBar.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; } - -.level-bar.trough { - padding: 3px; - border-radius: 4px; } - -.level-bar.fill-block { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - .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 { - border-color: #859900; - background-color: #859900; } - .level-bar.fill-block.level-low { - border-color: #cb4b16; - background-color: #cb4b16; } - .level-bar.fill-block.empty-fill-block { - background-color: rgba(92, 97, 108, 0.2); - border-color: rgba(92, 97, 108, 0.2); } - -.frame { - border: 1px solid #dcdfe3; - padding: 0; } - .frame.flat { - border-style: none; } - .frame.action-bar { - padding: 6px; - border-width: 1px 0 0; } - -GtkScrolledWindow GtkViewport.frame { - border-style: none; } - -.separator, GtkPlacesSidebar.sidebar .view.separator { - color: rgba(0, 0, 0, 0.1); } - GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, - GtkFontButton .separator, - GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .view.separator, - GtkFileChooserButton .separator.vertical, - GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFileChooserButton .vertical.view.separator, - GtkFontButton .separator.vertical, - GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .vertical.view.separator { - -GtkWidget-wide-separators: true; } - -.list, .list-row { - background-color: #fdf6e3; - border-color: #dcdfe3; } - -.list-row, -.grid-child { - padding: 2px; } - -.list-row.button { - background-color: transparent; - border-style: none; - border-radius: 0; - box-shadow: none; } - .list-row.button:hover { - background-color: rgba(0, 0, 0, 0.05); } - .list-row.button:active { - color: #5c616c; } - .list-row.button:selected:active { - color: #fdf6e3; } - .list-row.button:selected:hover { - background-color: #227dbd; } - .list-row.button:selected:insensitive { - color: rgba(253, 246, 227, 0.7); - background-color: rgba(38, 139, 210, 0.7); } - .list-row.button:selected:insensitive .label { - color: inherit; } - -.list-row, list-row.button { - transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .list-row:hover, list-row.button:hover { - transition: none; } - -.app-notification, -.app-notification.frame { - padding: 10px; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: rgba(2, 16, 20, 0.95); } - .app-notification .button, - .app-notification.frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .app-notification .button.flat, - .app-notification.frame .button.flat { - border-color: rgba(38, 139, 210, 0); } - .app-notification .button:hover, - .app-notification.frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .app-notification .button:active, .app-notification .button:checked, - .app-notification.frame .button:active, - .app-notification.frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification .button:insensitive, - .app-notification.frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - .expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - .expander:hover { - color: #aaaeb7; } - .expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GtkCalendar { - color: #5c616c; - border: 1px solid #dcdfe3; - border-radius: 3px; - padding: 2px; } - GtkCalendar:selected { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 1.5px; } - GtkCalendar.header { - color: #5c616c; - border: none; - border-radius: 0; } - GtkCalendar.button, GtkCalendar.button:focus { - color: rgba(92, 97, 108, 0.45); - border-color: transparent; - background-color: transparent; - background-image: none; } - GtkCalendar.button:hover, GtkCalendar.button:focus:hover { - color: #5c616c; } - GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { - color: rgba(92, 97, 108, 0.55); - background-color: transparent; - background-image: none; } - GtkCalendar.highlight { - color: alpha(currentColor,0.55); } - -.message-dialog .dialog-action-area .button { - padding: 8px; } - -.message-dialog { - -GtkDialog-button-spacing: 0; } - .message-dialog .titlebar { - background-color: rgba(0, 43, 54, 0.97); - border-bottom: 1px solid rgba(0, 15, 18, 0.97); } - .message-dialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - .message-dialog.csd .dialog-action-area .button { - padding: 8px; - border-radius: 0; } - .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 { - border-right-style: none; - border-bottom-style: none; } - .message-dialog.csd .dialog-action-area .button:last-child { - border-bottom-right-radius: 3px; } - .message-dialog.csd .dialog-action-area .button:first-child { - border-left-style: none; - border-bottom-left-radius: 3px; } - -GtkFileChooserDialog .search-bar { - background-color: #F5F6F7; - border-color: #dcdfe3; - box-shadow: none; } - -GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #dcdfe3; } - -.sidebar, .sidebar .view { - border: none; - background-color: #fbfbfc; } - .sidebar:selected, .sidebar .view:selected { - background-color: #268bd2; } - -GtkPlacesSidebar.sidebar .view { - color: #5c616c; - background-color: transparent; } - GtkPlacesSidebar.sidebar .view:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.sidebar-item { - padding: 10px 4px; } - .sidebar-item > GtkLabel { - padding-left: 6px; - padding-right: 6px; } - .sidebar-item.needs-attention > GtkLabel { - background-size: 6px 6px, 0 0; } - -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: #dcdfe3; } - -GtkPaned.wide { - -GtkPaned-handle-size: 5; - margin: 0; } - GtkPaned.wide .pane-separator { - background-color: transparent; - border-style: none solid; - border-color: #dcdfe3; - border-width: 1px; } - GtkPaned.wide.vertical .pane-separator { - border-style: solid none; } - -GtkInfoBar { - border-style: none; } - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: #268bd2; - color: #fdf6e3; } - -.list-row:selected .button, GtkInfoBar .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - .list-row:selected .flat.button, GtkInfoBar .flat.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .list-row:selected .button:hover, GtkInfoBar .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.2); } - .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.2); } - -.tooltip { - color: #657b83; - border-radius: 2px; } - .tooltip.background { - background-color: rgba(12, 92, 112, 0.95); - background-clip: padding-box; } - .tooltip.window-frame.csd { - background-color: transparent; } - -.tooltip * { - padding: 4px; - background-color: transparent; - color: inherit; } - -:selected GtkColorSwatch { - box-shadow: none; } - :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { - border-color: #fdf6e3; } - -GtkColorSwatch.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -GtkColorSwatch.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { - border-radius: 3px; } - -GtkColorSwatch:hover, GtkColorSwatch:hover:selected { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } - -GtkColorEditor GtkColorSwatch { - border-radius: 3px; } - GtkColorEditor GtkColorSwatch:hover { - background-image: none; } - -GtkColorSwatch.color-dark { - color: white; - outline-color: rgba(0, 0, 0, 0.3); } - -GtkColorSwatch.color-light { - color: black; - outline-color: rgba(255, 255, 255, 0.5); } - -GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { - border: 1px solid rgba(0, 0, 0, 0.15); } - GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { - border-color: rgba(0, 0, 0, 0.25); } - -GtkColorSwatch#add-color-button { - border-style: solid; - border-width: 1px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - GtkColorSwatch#add-color-button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - GtkColorSwatch#add-color-button .overlay { - border-color: transparent; - background-color: transparent; - background-image: none; } - -GtkColorButton.button { - padding: 5px; } - GtkColorButton.button GtkColorSwatch { - border-radius: 0; } - -.scale-popup .button { - padding: 6px; } - .scale-popup .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - -GtkVolumeButton.button { - padding: 8px; } - -.touch-selection, -.context-menu { - font: initial; } - -.monospace { - font: Monospace; } - -.overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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; } - -.window-frame { - border-radius: 3px 3px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.97), 0 8px 8px 0 rgba(0, 0, 0, 0.2); - margin: 10px; } - .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.87), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } - .window-frame.tiled { - border-radius: 0; } - .window-frame.popup { - box-shadow: none; - border-radius: 0; } - .window-frame.ssd { - border-radius: 3px 3px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } - .window-frame.ssd.maximized { - border-radius: 0; } - .window-frame.csd.popup { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.message-dialog { - border-radius: 3px; } - .window-frame.solid-csd { - border-radius: 0; - margin: 1px; - background-color: rgba(0, 43, 54, 0.97); - box-shadow: none; } - -.header-bar.default-decoration .button.titlebutton, -.titlebar.default-decoration .button.titlebutton { - padding-top: 0px; - padding-bottom: 0px; } - -.header-bar .button.titlebutton, -.titlebar .button.titlebutton { - padding-left: 4px; - padding-right: 4px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(0, 43, 54, 0); } - .header-bar .button.titlebutton:not(GtkMenuButton), - .titlebar .button.titlebutton:not(GtkMenuButton) { - padding-top: 8px; - padding-bottom: 8px; } - .header-bar .button.titlebutton:hover, - .titlebar .button.titlebutton:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, - .titlebar .button.titlebutton:active, - .titlebar .button.titlebutton:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.close, - .titlebar .button.titlebutton.maximize, - .titlebar .button.titlebutton.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; } - .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - opacity: 1; } - .header-bar .button.titlebutton.close, - .titlebar .button.titlebutton.close { - background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } - .header-bar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.close:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.close:hover, - .titlebar .button.titlebutton.close:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } - .header-bar .button.titlebutton.close:active, - .titlebar .button.titlebutton.close:active { - background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } - .header-bar .button.titlebutton.maximize, - .titlebar .button.titlebutton.maximize { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-dark.png"), url("assets/titlebutton-maximize-dark@2.png")); } - .header-bar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.maximize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop-dark.png"), url("assets/titlebutton-maximize-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.maximize:hover, - .titlebar .button.titlebutton.maximize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover-dark.png"), url("assets/titlebutton-maximize-hover-dark@2.png")); } - .header-bar .button.titlebutton.maximize:active, - .titlebar .button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active-dark.png"), url("assets/titlebutton-maximize-active-dark@2.png")); } - .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.minimize { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-dark.png"), url("assets/titlebutton-minimize-dark@2.png")); } - .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop-dark.png"), url("assets/titlebutton-minimize-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.minimize:hover, - .titlebar .button.titlebutton.minimize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover-dark.png"), url("assets/titlebutton-minimize-hover-dark@2.png")); } - .header-bar .button.titlebutton.minimize:active, - .titlebar .button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active-dark.png"), url("assets/titlebutton-minimize-active-dark@2.png")); } - -.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.button.flat:selected, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, -GtkEntry.gb-command-bar-entry.entry.flat:focus:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); } - -GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, -ScratchMainWindow .notebook tab.reorderable-page.top:active, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, -ScratchMainWindow .notebook tab.top:active, -ScratchMainWindow .notebook tab.top.active-page, -ScratchMainWindow .notebook tab.top.active-page:hover, -EphyNotebook.notebook tab.reorderable-page.top:active, -EphyNotebook.notebook tab.reorderable-page.top.active-page, -EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, -EphyNotebook.notebook tab.top:active, -EphyNotebook.notebook tab.top.active-page, -EphyNotebook.notebook tab.top.active-page:hover, -MidoriNotebook .notebook tab.reorderable-page.top:active, -MidoriNotebook .notebook tab.reorderable-page.top.active-page, -MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, -MidoriNotebook .notebook tab.top:active, -MidoriNotebook .notebook tab.top.active-page, -MidoriNotebook .notebook tab.top.active-page:hover, -TerminalWindow .notebook tab.reorderable-page.top:active, -TerminalWindow .notebook tab.reorderable-page.top.active-page, -TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -TerminalWindow .notebook tab.top:active, -TerminalWindow .notebook tab.top.active-page, -TerminalWindow .notebook tab.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - -TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.top { - padding-top: 7px; - border-top-width: 3px; } - -TerminalWindow .notebook.header.top, -PantheonTerminalPantheonTerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #001b22, inset 0 -1px #dcdfe3; } - -GtkHTML { - background-color: #fdf6e3; - color: #5c616c; } - GtkHTML:active { - color: #fdf6e3; - background-color: #268bd2; } - -SushiFontWidget { - padding: 6px 12px; } - -TerminalWindow .background { - background-color: transparent; } - -TerminalWindow .scrollbar.vertical .slider { - margin-left: 3px; } - -TerminalWindow .scrollbar.trough { - border-width: 0; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { - color: #5c616c; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { - color: #fdf6e3; } - -.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, GtkPlacesSidebar.sidebar .nautilus-canvas-item.label.view.separator, .header-bar .nautilus-canvas-item.subtitle, -.nautilus-list-dim-label { - color: #a9acb2; } - .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, - .nautilus-list-dim-label:selected, - .nautilus-list-dim-label:selected:focus { - color: #d2e1e0; } - -NautilusNotebook.notebook { - background-color: #fdf6e3; } - NautilusNotebook.notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; } - -NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { - padding: 5px; - box-shadow: none; - background-color: #fdf6e3; } - -.nautilus-circular-button { - border-radius: 50%; - outline-radius: 50%; } - -.disk-space-display { - border-style: solid; - border-width: 1px; } - .disk-space-display.unknown { - background-color: rgba(92, 97, 108, 0.5); - border-color: rgba(69, 72, 80, 0.5); } - .disk-space-display.used { - background-color: rgba(38, 139, 210, 0.8); - border-color: rgba(30, 110, 167, 0.8); } - .disk-space-display.free { - background-color: #edeef0; - border-color: #d0d5da; } - -NemoWindow EelEditableLabel.entry { - transition: none; } - -NemoWindow .sidebar .frame { - border-width: 0; } - -NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #dcdfe3; } - -NemoWindow .primary-toolbar NemoPathBar.linked > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - background-color: rgba(0, 193, 243, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37), inset -1px 0 rgba(0, 0, 0, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.gedit-headerbar-paned { - color: rgba(0, 27, 34, 0.97); } - -.open-document-selector-treeview.view { - padding: 3px 6px 3px 6px; - border-color: #fdf6e3; } - .open-document-selector-treeview.view:prelight { - background-color: #f2ecdb; } - .open-document-selector-treeview.view:prelight:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.open-document-selector-name-label { - color: #5c616c; } - -.open-document-selector-path-label { - color: #adaca8; - font-size: smaller; } - .open-document-selector-path-label:selected { - color: rgba(253, 246, 227, 0.9); } - -.gedit-document-panel .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; } - .gedit-document-panel .list-row .button GtkImage { - color: inherit; } - -.gedit-document-panel .prelight-row .button { - color: #92959d; } - -.gedit-document-panel .list-row .button:hover, -.gedit-document-panel .prelight-row .button:hover { - color: #ff4d4d; } - -.gedit-document-panel .prelight-row:selected .button:hover { - color: #ff6666; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; } - .gedit-document-panel .prelight-row:selected .button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel .prelight-row .button:active { - color: #5c616c; } - -.gedit-document-panel-dragged-row { - border: 1px solid #dcdfe3; - background-color: #d9dde0; - color: #5c616c; } - -GeditStatusbar { - border-top: 1px solid #dcdfe3; - background-color: #F5F6F7; } - -GeditStatusMenuButton.button.flat, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton:checked.button.flat { - border-bottom-style: none; - border-radius: 0; } - -GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #dcdfe3; } - -.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { - color: rgba(92, 97, 108, 0.6); - margin: 2px; - padding: 2px; } - -GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { - background-color: #fbfbfc; - padding: 6px; - border-color: #dcdfe3; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image:hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image:hover { - color: inherit; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):insensitive, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { - box-shadow: -1px 0 #268bd2; } - -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; } - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - box-shadow: 1px 0 #268bd2; } - -GbEditorFrame .gb-search-slider { - padding: 2px; } - -GdTaggedEntry { - color: #5c616c; } - -.preferences.sidebar GtkViewport { - border: none; } - -.preferences.sidebar GtkListBox { - background-color: #F5F6F7; } - -.preferences.sidebar GtkListBoxRow { - padding: 10px; } - -GbPreferencesPageLanguage GtkSearchEntry { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - -GbPreferencesPageLanguage GtkScrolledWindow { - border-top-width: 0; } - -GtkBox.gb-command-bar-box { - border: none; - background-color: #073642; } - GtkBox.gb-command-bar-box GtkLabel { - color: #657b83; } - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: #657b83; - background-image: none; - background-color: #073642; - padding: 6px 6px 6px 6px; - border: none; } - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; } - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; } - -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; } - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbViewStack.focused GtkBox.header.notebook { - background-color: #fdf6e3; } - GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { - opacity: 1; } - -EphyWindow .floating-bar { - color: #5c616c; } - -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon { - background-color: rgba(92, 97, 108, 0.3); - border-radius: 2px; } - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: #78b9e6; } - -.documents-entry-tag { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover { - color: #fdf6e3; - background-color: #3295da; } - .documents-entry-tag:active { - color: #fdf6e3; - background-color: #2380c1; } - .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; } - .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { - color: rgba(253, 246, 227, 0.7); } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -TotemGrilo.vertical GdMainView.frame { - border-width: 0; } - -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { - background-color: #268bd2; } - -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; } - -.gnome-panel-menu-bar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: #657b83; - background-image: linear-gradient(to bottom, rgba(5, 36, 44, 0.95)); } - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: #657b83; } - -PanelApplet .button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); - border-color: rgba(0, 0, 0, 0.17); } - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: rgba(0, 0, 0, 0.25); - border-radius: 0; - border-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -PanelApplet:hover { - color: white; } - -PanelApplet:active, -PanelApplet:hover:active { - color: #268bd2; } - -WnckPager { - color: #333e42; } - WnckPager:selected { - color: #268bd2; } - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; } - -ClockBox { - color: #657b83; } - -.xfce4-panel.panel { - background-color: rgba(5, 36, 44, 0.95); - text-shadow: none; - icon-shadow: none; } - .xfce4-panel.panel .button.flat { - color: #657b83; - background-color: rgba(5, 36, 44, 0); - border-radius: 0; - border: none; } - .xfce4-panel.panel .button.flat:hover { - border: none; - background-color: rgba(10, 74, 90, 0.95); } - .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - -.floating-bar { - background-color: #268bd2; - color: #fdf6e3; } - .floating-bar.top { - border-radius: 0 0 2px 2px; } - .floating-bar.right { - border-radius: 2px 0 0 2px; } - .floating-bar.bottom { - border-radius: 2px 2px 0 0; } - .floating-bar.left { - border-radius: 0 2px 2px 0; } - .floating-bar .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - background-color: transparent; - box-shadow: none; - border: none; } - -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; } - -MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { - color: #fdf6e3; - background-color: #268bd2; - outline-color: transparent; } - -MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { - background-color: transparent; } - -MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { - outline-color: transparent; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - .marlin-pathbar.pathbar:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; - border: solid transparent; - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { - padding: 0 3px; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { - background-color: rgba(0, 0, 0, 0.04); - border: solid rgba(0, 0, 0, 0.08); - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { - color: rgba(92, 97, 108, 0.55); } - -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; } - -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: #5c616c; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration.top { - border: 1px solid rgba(0, 15, 18, 0.97); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #002b36); - color: rgba(89, 128, 143, 0.8); - box-shadow: inset 0 1px rgba(0, 55, 69, 0.97); } - UnityDecoration.top:backdrop { - border-bottom-width: 0; - color: rgba(89, 128, 143, 0.5); } - UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 15, 18, 0.97)); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: rgba(0, 75, 95, 0.97); - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; } - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar GtkLabel { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #dcdfe3; - border-right: 1px solid #dcdfe3; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #dcdfe3; } - .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { - padding: 0 3px 0 3px; } - -.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #dcdfe3; - background-color: #F5F6F7; } - .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view { - background-color: #F5F6F7; - color: #5c616c; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:prelight { - background-color: white; } - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: #F5F6F7; - background-image: none; } - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #5c616c; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GraniteWidgetsWelcome { - background-color: #fdf6e3; } - -GraniteWidgetsWelcome GtkLabel { - color: #a9acb2; - font: open sans 11; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(92, 97, 108, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #fdf6e3); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry.entry { - padding: 4px; } - -.h1 { - font: open sans 24px; } - -.h2 { - font: open sans light 18px; } - -.h3 { - font: open sans 11px; } - -.h4, -.category-label { - color: #8a8e96; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: rgba(5, 36, 44, 0.95); - color: #657b83; - font: bold; - box-shadow: inset 0 -1px rgba(1, 10, 12, 0.95); } - #panel_window .menubar { - padding-left: 5px; } - #panel_window .menubar, #panel_window .menubar > .menuitem { - background-color: transparent; - color: #657b83; - font: bold; } - #panel_window .menubar .menuitem:insensitive { - color: rgba(101, 123, 131, 0.5); } - #panel_window .menubar .menuitem:insensitive GtkLabel { - color: inherit; } - #panel_window .menubar .menu .menuitem { - font: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: #5c616c; } - -#content_frame { - padding-bottom: 14px; - background-color: #F5F6F7; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - #content_frame .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - #content_frame .button:active, #content_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - #content_frame .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - #content_frame .button:insensitive > GtkLabel { - color: inherit; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: rgba(7, 54, 66, 0.95); - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px rgba(7, 54, 66, 0.95); } - -#buttonbox_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - #buttonbox_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - #buttonbox_frame .button:active, #buttonbox_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - #buttonbox_frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -#login_window #user_combobox { - color: #5c616c; - font: 13px; } - #login_window #user_combobox .menu { - font: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font: bold; } - -.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { - color: rgba(0, 27, 34, 0.97); } - -NemoWindow GtkEventBox { - background-color: #F5F6F7; } - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; } - -GtkFileChooserDialog.csd.background, -GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, -NautilusWindow.csd.background, -NautilusWindow .source-list, -NautilusWindow .source-list.view, -NautilusWindow .source-list.view:prelight, -NemoWindow.csd.background, -NemoWindow .source-list, -NemoWindow .source-list.view, -NemoWindow .source-list.view:prelight, -MarlinViewWindow.csd.background, -MarlinViewWindow .source-list, -MarlinViewWindow .source-list.view, -MarlinViewWindow .source-list.view:prelight { - background-color: transparent; } - -GtkFileChooserDialog .sidebar, GtkFileChooserDialog .source-list.sidebar.view, -NautilusWindow .sidebar, -NautilusWindow .source-list.sidebar.view, -NemoWindow .sidebar, -NemoWindow .source-list.sidebar.view, -MarlinViewWindow .sidebar, -MarlinViewWindow .source-list.sidebar.view { - background-color: rgba(7, 54, 66, 0.95); } - GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar row, GtkFileChooserDialog .source-list.sidebar.view .view, GtkFileChooserDialog .source-list.sidebar.view row, - NautilusWindow .sidebar .view, - NautilusWindow .sidebar row, - NautilusWindow .source-list.sidebar.view .view, - NautilusWindow .source-list.sidebar.view row, - NemoWindow .sidebar .view, - NemoWindow .sidebar row, - NemoWindow .source-list.sidebar.view .view, - NemoWindow .source-list.sidebar.view row, - MarlinViewWindow .sidebar .view, - MarlinViewWindow .sidebar row, - MarlinViewWindow .source-list.sidebar.view .view, - MarlinViewWindow .source-list.sidebar.view row { - background-color: transparent; - color: #657b83; } - GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar row.image, GtkFileChooserDialog .source-list.sidebar.view .view.image, GtkFileChooserDialog .source-list.sidebar.view row.image, - NautilusWindow .sidebar .view.image, - NautilusWindow .sidebar row.image, - NautilusWindow .source-list.sidebar.view .view.image, - NautilusWindow .source-list.sidebar.view row.image, - NemoWindow .sidebar .view.image, - NemoWindow .sidebar row.image, - NemoWindow .source-list.sidebar.view .view.image, - NemoWindow .source-list.sidebar.view row.image, - MarlinViewWindow .sidebar .view.image, - MarlinViewWindow .sidebar row.image, - MarlinViewWindow .source-list.sidebar.view .view.image, - MarlinViewWindow .source-list.sidebar.view row.image { - color: rgba(101, 123, 131, 0.7); } - GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar row.cell:selected, GtkFileChooserDialog .source-list.sidebar.view .view.cell:selected, GtkFileChooserDialog .source-list.sidebar.view row.cell:selected, - NautilusWindow .sidebar .view.cell:selected, - NautilusWindow .sidebar row.cell:selected, - NautilusWindow .source-list.sidebar.view .view.cell:selected, - NautilusWindow .source-list.sidebar.view row.cell:selected, - NemoWindow .sidebar .view.cell:selected, - NemoWindow .sidebar row.cell:selected, - NemoWindow .source-list.sidebar.view .view.cell:selected, - NemoWindow .source-list.sidebar.view row.cell:selected, - MarlinViewWindow .sidebar .view.cell:selected, - MarlinViewWindow .sidebar row.cell:selected, - MarlinViewWindow .source-list.sidebar.view .view.cell:selected, - MarlinViewWindow .source-list.sidebar.view row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog .source-list.sidebar.view.frame, - NautilusWindow .sidebar.frame, - NautilusWindow .source-list.sidebar.view.frame, - NemoWindow .sidebar.frame, - NemoWindow .source-list.sidebar.view.frame, - MarlinViewWindow .sidebar.frame, - MarlinViewWindow .source-list.sidebar.view.frame { - color: #657b83; } - GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog .source-list.sidebar.view .separator, - NautilusWindow .sidebar .separator, - NautilusWindow GtkPlacesSidebar.sidebar .view.separator, - NautilusWindow .source-list.sidebar.view .separator, - NemoWindow .sidebar .separator, - NemoWindow GtkPlacesSidebar.sidebar .view.separator, - NemoWindow .source-list.sidebar.view .separator, - MarlinViewWindow .sidebar .separator, - MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, - MarlinViewWindow .source-list.sidebar.view .separator { - color: transparent; } - -GtkFileChooserDialog.maximized .sidebar, -NautilusWindow.maximized .sidebar, -NemoWindow.maximized .sidebar, -MarlinViewWindow.maximized .sidebar { - background-color: #073642; } - -GtkFileChooserDialog .pane-separator, -NautilusWindow .pane-separator, -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { - background-color: rgba(7, 54, 66, 0.95); } - -NautilusWindow NautilusWindowSlot { - background-color: #fdf6e3; } - -NautilusDesktopWindow NautilusWindowSlot { - background-color: transparent; } - -GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { - background-color: rgba(7, 54, 66, 0.95); } - -GtkFileChooserDialog .sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-action-box { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-vbox > .frame { - color: #657b83; - border-color: transparent; } - -GtkFileChooserDialog .action-bar.frame { - background-color: transparent; - border-color: rgba(5, 35, 43, 0.95); } - -GtkFileChooserDialog .action-bar.frame GtkLabel, GtkFileChooserDialog .action-bar.frame GtkComboBox, -GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, -GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { - color: #657b83; } - -FeedReaderreaderUI.background.csd > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd > .titlebar .pane-separator, -GeditWindow.background.csd.maximized > .titlebar .pane-separator, -GeditWindow.background.csd > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { - background-color: rgba(0, 27, 34, 0.97); } - -FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: rgba(0, 43, 54, 0.97); } - FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: rgba(0, 49, 62, 0.97); } - -FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #002b36; } - FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #00313e; } - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; } - -GeditWindow.background.csd { - background-color: transparent; } - -GeditWindow.background .gedit-side-panel-paned .pane-separator { - background-color: rgba(7, 54, 66, 0.95); } - -GeditWindow.background .gedit-bottom-panel-paned .pane-separator { - background-color: #dcdfe3; } - -.gedit-bottom-panel-paned { - background-color: #fdf6e3; } - -.gedit-document-panel { - background-color: rgba(7, 54, 66, 0.95); } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel .list-row { - color: #657b83; } - .gedit-document-panel .list-row { - background-color: rgba(101, 123, 131, 0); - border: solid rgba(101, 123, 131, 0); - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:hover { - border: solid rgba(101, 123, 131, 0.15); - border-width: 3px 2px 3px 2px; - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel .list-row:active { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:active .button { - color: #fdf6e3; } - .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -GeditFileBrowserWidget { - background-color: rgba(7, 54, 66, 0.95); } - .maximized GeditFileBrowserWidget { - background-color: #073642; } - GeditFileBrowserWidget .horizontal { - background-color: transparent; - border-color: rgba(4, 28, 34, 0.95); } - GeditFileBrowserWidget .horizontal GtkComboBox { - color: #657b83; } - -GeditWindow.background.csd GeditFileBrowserView.view { - background-color: transparent; - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander { - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { - color: #268bd2; } - -GtkFileChooserDialog .action-bar.frame .button, -GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - GtkFileChooserDialog .action-bar.frame .button:hover, - GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - GtkFileChooserDialog .action-bar.frame .button:active, - GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog .action-bar.frame .button:checked, - GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - GtkFileChooserDialog .action-bar.frame .button:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -GtkFileChooserDialog .action-bar.frame .entry, -GtkFileChooserDialog .dialog-vbox > .frame .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.35)); - background-color: transparent; } - GtkFileChooserDialog .action-bar.frame .image.entry, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog .action-bar.frame .image.entry:hover, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { - color: inherit; } - GtkFileChooserDialog .action-bar.frame .entry:focus, - GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, #268bd2); } - GtkFileChooserDialog .action-bar.frame .entry:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.2)); } - -GtkFileChooserDialog .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -NautilusWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { - background-color: #8da0a7; - border: 1px solid rgba(0, 0, 0, 0.3); } - -GtkFileChooserDialog .sidebar .scrollbar .trough, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .trough, -NautilusWindow .sidebar .scrollbar .trough, -NautilusWindow .source-list.sidebar.view .scrollbar .trough, -NemoWindow .sidebar .scrollbar .trough, -NemoWindow .source-list.sidebar.view .scrollbar .trough, -MarlinViewWindow .sidebar .scrollbar .trough, -MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { - background-color: rgba(0, 0, 0, 0.2); - border: none; } - -GtkFileChooserDialog .sidebar .scrollbar .slider, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider, -NautilusWindow .sidebar .scrollbar .slider, -NautilusWindow .source-list.sidebar.view .scrollbar .slider, -NemoWindow .sidebar .scrollbar .slider, -NemoWindow .source-list.sidebar.view .scrollbar .slider, -MarlinViewWindow .sidebar .scrollbar .slider, -MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { - background-color: rgba(141, 160, 167, 0.7); } - GtkFileChooserDialog .sidebar .scrollbar .slider:hover, - NautilusWindow .sidebar .scrollbar .slider:hover, - NemoWindow .sidebar .scrollbar .slider:hover, - MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { - background-color: #9cacb2; } - GtkFileChooserDialog .sidebar .scrollbar .slider:prelight:active, - NautilusWindow .sidebar .scrollbar .slider:prelight:active, - NemoWindow .sidebar .scrollbar .slider:prelight:active, - MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog .sidebar .scrollbar .slider:insensitive, - NautilusWindow .sidebar .scrollbar .slider:insensitive, - NemoWindow .sidebar .scrollbar .slider:insensitive, - MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { - background-color: transparent; } - -@define-color theme_fg_color #5c616c; -@define-color theme_text_color #5c616c; -@define-color theme_bg_color #F5F6F7; -@define-color theme_base_color #fdf6e3; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #5c616c; -@define-color text_color #5c616c; -@define-color bg_color #F5F6F7; -@define-color base_color #fdf6e3; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #faf6eb; -@define-color insensitive_fg_color alpha(#5c616c, 0.5); -@define-color insensitive_base_color #fdf6e3; -@define-color theme_unfocused_fg_color #5c616c; -@define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #F5F6F7; -@define-color theme_unfocused_base_color #fdf6e3; -@define-color borders #dcdfe3; -@define-color unfocused_borders #dcdfe3; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #1e6ea7; -@define-color content_view_bg #fdf6e3; -@define-color wm_title alpha(#59808f, 0.8); -@define-color wm_unfocused_title alpha(#59808f, 0.5); -@define-color wm_bg #002b36; -@define-color wm_bg_unfocused #00313e; -@define-color wm_highlight #003745; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #dc322f; -@define-color wm_button_close_hover_bg #cb4b16; -@define-color wm_button_close_active_bg #dc322f; -@define-color wm_icon_close_bg #002b36; -@define-color wm_button_hover_bg #657b83; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #002b36; -@define-color wm_icon_bg #93a1a1; -@define-color wm_icon_unfocused_bg #657b83; -@define-color wm_icon_hover_bg #93a1a1; -@define-color wm_icon_active_bg #fdf6e3; diff --git a/common/gtk-3.0/3.16/gtk-solid-dark.css b/common/gtk-3.0/3.16/gtk-solid-dark.css deleted file mode 100644 index 12d9fd1..0000000 --- a/common/gtk-3.0/3.16/gtk-solid-dark.css +++ /dev/null @@ -1,3903 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -GtkPaned-handle-size: 1; - -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: #78b9e6; - -GtkWidget-visited-link-color: #4ca2df; - -GtkWidget-focus-padding: 2; - -GtkWidget-focus-line-width: 1; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - -GtkStatusbar-shadow-type: none; - outline-color: rgba(101, 123, 131, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; } - -.background { - color: #657b83; - background-color: #002b36; } - -*:insensitive { - -gtk-image-effect: dim; } - -.gtkstyle-fallback { - background-color: #002b36; - color: #657b83; } - .gtkstyle-fallback:prelight { - background-color: #005469; - color: #657b83; } - .gtkstyle-fallback:active { - background-color: #000203; - color: #657b83; } - .gtkstyle-fallback:insensitive { - background-color: #003340; - color: rgba(101, 123, 131, 0.45); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view { - color: #657b83; - background-color: #073642; } - .view.dim-label, .view.label.separator, GtkPlacesSidebar.sidebar .view.label.separator, .header-bar .view.subtitle { - color: rgba(101, 123, 131, 0.55); } - .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { - color: rgba(253, 246, 227, 0.65); - text-shadow: none; } - -.rubberband { - border: 1px solid #268bd2; - background-color: rgba(38, 139, 210, 0.2); } - -.label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator { - color: #657b83; } - -.label:insensitive { - color: rgba(101, 123, 131, 0.45); } - -.dim-label, .label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator, .header-bar .subtitle { - opacity: 0.55; } - -GtkAssistant .sidebar { - background-color: #073642; - border-top: 1px solid #001317; } - GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #001317; } - GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #001317; } - -GtkAssistant.csd .sidebar { - border-top-style: none; } - -GtkAssistant .sidebar .label { - padding: 6px 12px; } - -GtkAssistant .sidebar .label.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -GtkTextView { - background-color: #04313c; } - -.grid-child { - padding: 3px; - border-radius: 3px; } - .grid-child:selected { - outline-offset: -2px; } - -.popover.osd, .osd { - color: #657b83; - border: none; - background-color: #073642; - background-clip: padding-box; - outline-color: rgba(101, 123, 131, 0.3); - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - .spinner:active { - opacity: 1; - animation: spin 1s linear infinite; } - .spinner:active:insensitive { - opacity: 0.5; } - -.entry { - border: 1px solid; - padding: 5px 8px; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #657b83; - border-color: #001317; - background-color: #073642; - background-image: linear-gradient(to bottom, #073642); } - .entry.image.left { - padding-left: 0; } - .entry.image.right { - padding-right: 0; } - .entry.flat, .entry.flat:focus { - padding: 2px; - color: #657b83; - border-color: #001317; - background-color: #073642; - background-image: linear-gradient(to bottom, #073642); - border: none; - border-radius: 0; } - .entry:focus { - background-clip: border-box; - color: #657b83; - border-color: #001317; - background-color: #073642; - background-image: linear-gradient(to bottom, #073642); - box-shadow: inset 1px 0 #268bd2, inset -1px 0 #268bd2, inset 0 1px #268bd2, inset 0 -1px #268bd2; } - .entry:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(7, 54, 66, 0.55); - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.55)); } - .entry:selected, .entry:selected:focus { - background-color: #268bd2; - color: #fdf6e3; } - .entry.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - .linked > .entry:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .linked > .entry:first-child:dir(rtl) { - border-right-style: none; } - .linked > .entry:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; } - .linked > .entry:last-child:dir(rtl) { - border-left-style: solid; } - .entry.warning { - color: #fdf6e3; - border-color: #001317; - background-image: linear-gradient(to bottom, #7d4328); } - .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); - box-shadow: none; } - .entry.warning:selected, .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .entry.error { - color: #fdf6e3; - border-color: #001317; - background-image: linear-gradient(to bottom, #873437); } - .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); - box-shadow: none; } - .entry.error:selected, .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - .entry.image { - color: #526d76; } - .linked.vertical > .entry { - border-bottom-color: #052b35; - box-shadow: none; } - .linked.vertical > .entry:focus { - border-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:insensitive { - border-bottom-color: #052b35; } - .linked.vertical > .entry:first-child { - border-bottom-color: #052b35; } - .linked.vertical > .entry:first-child:focus { - border-bottom-color: #268bd2; - box-shadow: none; } - .linked.vertical > .entry:first-child:insensitive { - border-bottom-color: #052b35; } - .linked.vertical > .entry:last-child { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .linked.vertical > .entry:last-child:focus { - border-bottom-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:last-child:insensitive { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .osd .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.4)); - background-color: transparent; } - .osd .entry.image, .osd .entry.image:hover { - color: inherit; } - .osd .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, #268bd2); } - .osd .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.25)); } - -GtkSearchEntry.entry { - border-radius: 20px; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -.button { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 5px 8px; - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(8, 62, 75, 0); - border-color: rgba(0, 19, 23, 0); - transition: none; } - .button.flat:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - .button.flat:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; - -gtk-image-effect: highlight; } - .button:active, .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; - transition-duration: 50ms; } - .button:active { - color: #657b83; } - .button:active:hover, .button:checked { - color: #fdf6e3; } - .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; } - .button:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .button:insensitive > GtkLabel { - color: inherit; } - .button:insensitive:active, .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { - color: inherit; } - .button.osd { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - background-color: #073642; - border-color: #03181d; } - .button.osd.image-button, .header-bar .button.osd.titlebutton, - .titlebar .button.osd.titlebutton { - padding: 10px; } - .button.osd:hover { - color: #268bd2; } - .button.osd:active, .button.osd:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .button.osd:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .osd .button:dir(rtl) { - border-radius: 0; - border-right-style: none; - border-left-style: none; } - .osd .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:dir(rtl) { - border-left-style: solid; } - .osd .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd .button:hover, .osd .button:hover:first-child, .osd .button:hover:last-child { - box-shadow: none; } - .osd .button:active, .osd .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd .button.flat:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd .button.flat:hover, .osd .button.flat:hover:first-child, .osd .button.flat:hover:last-child { - box-shadow: none; } - .osd .button.flat:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); - background-image: none; } - .osd .button.flat:active, .osd .button.flat:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .button.suggested-action:active, .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .button.suggested-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(101, 123, 131, 0.45); } - .button.suggested-action:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .button.destructive-action:active, .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .button.destructive-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(101, 123, 131, 0.45); } - .button.destructive-action:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - .button.image-button, .header-bar .button.titlebutton, - .titlebar .button.titlebutton { - padding: 7px; } - .header-bar .button.image-button, .header-bar .button.titlebutton { - padding: 7px 10px; } - .button.text-button { - padding-left: 16px; - padding-right: 16px; } - .button.text-button.image-button, .header-bar .button.text-button.titlebutton, - .titlebar .button.text-button.titlebutton { - padding: 5px 8px; } - .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, - .titlebar .button.text-button.titlebutton GtkLabel:first-child { - padding-left: 8px; } - .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, - .titlebar .button.text-button.titlebutton GtkLabel:last-child { - padding-right: 8px; } - .stack-switcher > .button { - outline-offset: -3px; } - .stack-switcher > .button > GtkLabel { - 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 { - padding: 5px 10px; } - .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, - .titlebar .stack-switcher > .button.titlebutton { - padding: 2px 4px; } - .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; } - .stack-switcher > .button.needs-attention > .label, - .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 2px; } - .stack-switcher > .button.needs-attention > .label:dir(rtl), - .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { - background-position: left 3px, left 2px; } - .inline-toolbar .button, .inline-toolbar .button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar GtkToolButton > .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .inline-toolbar GtkToolButton > .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { - color: inherit; } - .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { - color: inherit; } - -.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, -.linked > .button:hover, -.linked > .button:active, -.linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5), inset -1px 0 rgba(0, 19, 23, 0.5); } - .inline-toolbar GtkToolButton > .button.flat:active, .osd .button:active, .inline-toolbar .button:active, .linked > .button:active, GtkComboBox.combobox-entry .entry:active, GtkComboBox.combobox-entry .button:active, .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, .linked > GtkComboBox > .button:active:dir(ltr), .inline-toolbar GtkToolButton > .button.flat:checked, .osd .button:checked, .inline-toolbar .button:checked, .linked > .button:checked, GtkComboBox.combobox-entry .entry:checked, GtkComboBox.combobox-entry .button:checked, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked, .linked > GtkComboBox > .button:checked:dir(ltr) { - box-shadow: none; } - .inline-toolbar.toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .inline-toolbar .button:dir(rtl):backdrop, .linked > .button:dir(rtl), - .linked > .button:dir(rtl):hover, - .linked > .button:dir(rtl):active, - .linked > .button:dir(rtl):checked, GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), .primary-toolbar .linked.path-bar > .button:dir(rtl), .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { - border-radius: 0; } - -.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, .primary-toolbar .linked.path-bar > .button:first-child, .header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 19, 23, 0.5); } - .osd .button:first-child:active, .inline-toolbar .button:first-child:active, .linked > .button:first-child:active, .inline-toolbar GtkToolButton:first-child > .button.flat:active, GtkComboBox.combobox-entry .entry:first-child:active, GtkComboBox.combobox-entry .button:first-child:active, .linked > GtkComboBox:first-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, .osd .button:first-child:checked, .inline-toolbar .button:first-child:checked, .linked > .button:first-child:checked, .inline-toolbar GtkToolButton:first-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:first-child:checked, GtkComboBox.combobox-entry .button:first-child:checked, .linked > GtkComboBox:first-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - -.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, .primary-toolbar .linked.path-bar > .button:last-child, .header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5); } - .osd .button:last-child:active, .inline-toolbar .button:last-child:active, .linked > .button:last-child:active, .inline-toolbar GtkToolButton:last-child > .button.flat:active, GtkComboBox.combobox-entry .entry:last-child:active, GtkComboBox.combobox-entry .button:last-child:active, .linked > GtkComboBox:last-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, .osd .button:last-child:checked, .inline-toolbar .button:last-child:checked, .linked > .button:last-child:checked, .inline-toolbar GtkToolButton:last-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:last-child:checked, GtkComboBox.combobox-entry .button:last-child:checked, .linked > GtkComboBox:last-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { - border-bottom-left-radius: 0; } - -.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, .primary-toolbar .linked.path-bar > .button:only-child, .header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - .osd .button:only-child:active, .inline-toolbar .button:only-child:active, .linked > .button:only-child:active, .inline-toolbar GtkToolButton:only-child > .button.flat:active, GtkComboBox.combobox-entry .entry:only-child:active, GtkComboBox.combobox-entry .button:only-child:active, .linked > GtkComboBox:only-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, .osd .button:only-child:checked, .inline-toolbar .button:only-child:checked, .linked > .button:only-child:checked, .inline-toolbar GtkToolButton:only-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:only-child:checked, GtkComboBox.combobox-entry .button:only-child:checked, .linked > GtkComboBox:only-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, -.linked.vertical > .button:hover, -.linked.vertical > .button:active, -.linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, -.linked.vertical > GtkComboBox > .button { - border-style: solid; - border-bottom-style: none; - border-top-style: none; - border-radius: 0; } - .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, - .linked.vertical > GtkComboBox > .button:hover { - box-shadow: inset 0 -1px rgba(0, 19, 23, 0.5), inset 0 1px rgba(0, 19, 23, 0.5); } - .linked.vertical > .entry:active, .linked.vertical > .button:active, .linked.vertical > GtkComboBoxText > .button:active, - .linked.vertical > GtkComboBox > .button:active, .linked.vertical > .entry:checked, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button:checked, - .linked.vertical > GtkComboBox > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, -.linked.vertical > GtkComboBox:first-child > .button { - border-radius: 3px 3px 0 0; - border-top-style: solid; } - .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, - .linked.vertical > GtkComboBox:first-child > .button:hover { - box-shadow: inset 0 -1px rgba(0, 19, 23, 0.5); } - .linked.vertical > .entry:first-child:active, .linked.vertical > .button:first-child:active, .linked.vertical > GtkComboBoxText:first-child > .button:active, - .linked.vertical > GtkComboBox:first-child > .button:active, .linked.vertical > .entry:first-child:checked, .linked.vertical > .button:first-child:checked, .linked.vertical > GtkComboBoxText:first-child > .button:checked, - .linked.vertical > GtkComboBox:first-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, -.linked.vertical > GtkComboBox:last-child > .button { - border-radius: 0 0 3px 3px; - border-bottom-style: solid; } - .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, - .linked.vertical > GtkComboBox:last-child > .button:hover { - box-shadow: inset 0 1px rgba(0, 19, 23, 0.5); } - .linked.vertical > .entry:last-child:active, .linked.vertical > .button:last-child:active, .linked.vertical > GtkComboBoxText:last-child > .button:active, - .linked.vertical > GtkComboBox:last-child > .button:active, .linked.vertical > .entry:last-child:checked, .linked.vertical > .button:last-child:checked, .linked.vertical > GtkComboBoxText:last-child > .button:checked, - .linked.vertical > GtkComboBox:last-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, -.linked.vertical > GtkComboBox:only-child > .button { - border-radius: 3px; - border-style: solid; } - .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, - .linked.vertical > GtkComboBox:only-child > .button:hover { - box-shadow: none; } - .linked.vertical > .entry:only-child:active, .linked.vertical > .button:only-child:active, .linked.vertical > GtkComboBoxText:only-child > .button:active, - .linked.vertical > GtkComboBox:only-child > .button:active, .linked.vertical > .entry:only-child:checked, .linked.vertical > .button:only-child:checked, .linked.vertical > GtkComboBoxText:only-child > .button:checked, - .linked.vertical > GtkComboBox:only-child > .button:checked { - box-shadow: none; } - -.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, -.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, -.app-notification.frame .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -/* menu buttons */ -.menuitem.button.flat { - transition: none; - outline-offset: -1px; - border-radius: 2px; } - .menuitem.button.flat:hover { - background-color: #0a333e; } - .menuitem.button.flat:checked { - color: #657b83; } - -*:link, .button:link, .button:visited { - color: #78b9e6; } - *:link:visited, .button:visited { - color: #4ca2df; } - *:selected *:link:visited, *:selected .button:visited:link, *:selected .button:visited { - color: #a7cbdc; } - *:link:hover, .button:hover:link, .button:hover:visited { - color: #a3cfee; } - *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { - color: #e8ebe1; } - *:link:active, .button:active:link, .button:active:visited { - color: #78b9e6; } - *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { - color: #d2e1e0; } - *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { - color: #d2e1e0; } - -.spinbutton { - border-radius: 3px; } - .spinbutton .button { - background-image: none; - border: 1px solid rgba(0, 19, 23, 0.6); - border-style: none none none solid; - color: #607880; - border-radius: 0; - box-shadow: none; } - .spinbutton .button:dir(rtl) { - border-style: none solid none none; } - .spinbutton .button:first-child { - color: red; } - .spinbutton .button:insensitive { - color: rgba(101, 123, 131, 0.45); } - .spinbutton .button:active { - background-color: #268bd2; - color: #fdf6e3; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - border-radius: 2px 2px 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:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; } - GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: #268bd2; - border-radius: 0; - box-shadow: none; } - -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; } - GtkComboBox > .the-button-in-the-combobox { - padding-top: 3px; - padding-bottom: 3px; } - GtkComboBox:insensitive { - color: rgba(101, 123, 131, 0.45); } - GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { - -GtkWidget-wide-separators: true; } - GtkComboBox.combobox-entry .entry:dir(ltr) { - border-right-style: none; } - GtkComboBox.combobox-entry .entry:dir(rtl) { - border-left-style: none; } - GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 #001317; } - GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.55); } - GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 #001317; } - GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 rgba(0, 19, 23, 0.55); } - -.toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #002b36; } - .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.9); } - -.primary-toolbar { - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #002b36, #000f12) 1 0 1 0; } - -.inline-toolbar { - background-color: #001f27; - border-style: solid; - border-color: #001317; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -.search-bar { - background-color: #002b36; - border-style: solid; - border-color: #001317; - border-width: 0 0 1px; - padding: 3px; } - -.action-bar { - background-color: #001f27; } - -.header-bar { - padding: 5px 5px 4px 5px; - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: #001b22; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; } - .csd .header-bar { - background-color: #002b36; - border-color: #001b22; } - .header-bar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .header-bar .title { - padding-left: 12px; - padding-right: 12px; } - .header-bar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .header-bar.selection-mode, .header-bar.titlebar.selection-mode { - color: #fdf6e3; - background-color: #268bd2; - border-color: #2380c1; - box-shadow: none; } - .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { - background-color: #268bd2; - color: rgba(253, 246, 227, 0.6); } - .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.05); - border-color: rgba(253, 246, 227, 0.5); } - .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.15); - border-color: rgba(253, 246, 227, 0.15); } - .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { - background-color: #268bd2; } - .tiled .header-bar, .tiled .header-bar:backdrop, - .maximized .header-bar, .maximized .header-bar:backdrop { - border-radius: 0; } - .maximized .header-bar { - background-color: #002b36; - border-color: #001b22; } - .header-bar.default-decoration, - .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, - .csd .header-bar.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: #002b36; - border-bottom-width: 0; } - .maximized .header-bar.default-decoration, .maximized - .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized - .csd .header-bar.default-decoration:backdrop { - background-color: #002b36; } - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: 3px 3px 0 0; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: inset 0 1px #003745; } - .csd .titlebar { - background-color: #002b36; } - .titlebar:backdrop { - color: rgba(89, 128, 143, 0.5); - background-color: #00313e; } - .csd .titlebar:backdrop { - background-color: #00313e; } - .maximized .titlebar { - background-color: #002b36; } - .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { - background-color: #00313e; } - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { - background-color: transparent; } - -.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, -.header-bar > GtkBox > .separator.vertical, GtkPlacesSidebar.sidebar -.header-bar > GtkBox > .vertical.view.separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(89, 128, 143, 0) 25%, rgba(89, 128, 143, 0.15) 25%, rgba(89, 128, 143, 0.15) 75%, rgba(89, 128, 143, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, - .header-bar > GtkBox > .separator.vertical:backdrop, GtkPlacesSidebar.sidebar - .header-bar > GtkBox > .vertical.view.separator:backdrop { - opacity: 0.6; } - -.primary-toolbar .entry, .header-bar .entry { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { - color: inherit; } - .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { - opacity: 0.85; } - .primary-toolbar .entry:focus, .header-bar .entry:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - background-clip: padding-box; } - .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { - color: #fdf6e3; } - .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar .entry.warning, .header-bar .entry.warning { - color: white; - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, #7a3e23); } - .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); } - .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar .entry.error, .header-bar .entry.error { - color: white; - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, #842f32); } - .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); } - .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar .button, .header-bar .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - outline-offset: -3px; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:backdrop, .header-bar .button:backdrop { - opacity: 0.7; } - .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { - color: inherit; } - .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.primary-toolbar .linked > .button, .header-bar .linked > .button { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { - box-shadow: none; } - -.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - background-color: rgba(0, 193, 243, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .primary-toolbar .linked.stack-switcher > .button:insensitive, .header-bar .linked.stack-switcher > .button:insensitive, .primary-toolbar .linked.path-bar > .button:insensitive, .header-bar .linked.path-bar > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4), inset -1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked { - box-shadow: none; } - -.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, .primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, .primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { - color: #fdf6e3; } - .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { - background-color: rgba(253, 246, 227, 0.1); - border-color: transparent; } - .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { - color: rgba(253, 246, 227, 0.4); } - -.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(89, 128, 143, 0.8); } - .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { - background-color: rgba(89, 128, 143, 0.05); - border-color: transparent; } - .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(89, 128, 143, 0.5); } - .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { - background-color: rgba(0, 0, 0, 0.1); } - -.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(89, 128, 143, 0.2); } - -.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { - color: inherit; } - .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr), .header-bar GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 transparent; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl), .header-bar GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 transparent; } - -.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { - opacity: 0.75; } - -.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4)); } - .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3)); } - -.primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, #005469); - border-color: rgba(0, 0, 0, 0.7); } - .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { - background-image: linear-gradient(to bottom, #006883); - border-color: rgba(0, 0, 0, 0.7); } - .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #00475a); - border-color: rgba(0, 0, 0, 0.7); } - -.path-bar .button { - padding: 5px 10px; } - .path-bar .button:first-child { - padding-left: 10px; } - .path-bar .button:last-child { - padding-right: 10px; } - .path-bar .button:only-child { - padding-left: 14px; - padding-right: 14px; } - .path-bar .button GtkLabel:last-child { - padding-left: 4px; } - .path-bar .button GtkLabel:first-child { - padding-right: 4px; } - .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { - padding-right: 0; - padding-left: 0; } - .path-bar .button GtkImage { - padding-top: 2px; - padding-bottom: 1px; } - -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: rgba(101, 123, 131, 0.15); - border-top-color: rgba(0, 0, 0, 0.1); } - GtkTreeView.view:selected { - border-radius: 0; - border-left-color: #92c1db; - border-top-color: rgba(101, 123, 131, 0.1); } - GtkTreeView.view:insensitive { - color: rgba(101, 123, 131, 0.45); } - GtkTreeView.view:insensitive:selected { - color: #7cb6d9; } - GtkTreeView.view.dnd { - border-style: solid none; - border-width: 1px; - border-color: #4683ab; } - GtkTreeView.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #365963; } - GtkTreeView.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - GtkTreeView.view.expander:hover { - color: #657b83; } - GtkTreeView.view.expander:selected { - color: #bdd6de; } - GtkTreeView.view.expander:selected:hover { - color: #fdf6e3; } - GtkTreeView.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - GtkTreeView.view.progressbar, GtkTreeView.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-image: linear-gradient(to bottom, #268bd2); } - GtkTreeView.view.progressbar:selected, GtkTreeView.view.progressbar:selected:focus, GtkTreeView.view.progressbar:focus:selected, GtkTreeView.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-image: linear-gradient(to bottom, #fdf6e3); } - GtkTreeView.view.trough { - color: #657b83; - background-image: linear-gradient(to bottom, #001317); - border-radius: 3px; - border-width: 0; } - GtkTreeView.view.trough:selected, GtkTreeView.view.trough:selected:focus { - color: #fdf6e3; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); - border-radius: 3px; - border-width: 0; } - -column-header .button { - color: #526d76; - background-color: #073642; } - column-header .button:hover { - color: #268bd2; - box-shadow: none; - transition: none; } - column-header .button:active { - color: #657b83; - transition: none; } - -column-header:last-child .button, column-header:last-child.button { - border-right-style: none; - border-image: none; } - -column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { - transition: none; - color: #268bd2; - box-shadow: inset 1px 1px 0 1px #268bd2, inset -1px 0 0 1px #268bd2, inset 1px 1px #073642, inset -1px 0 #073642; } - -column-header .button, column-header .button:hover, column-header .button:active { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.11) 20%, rgba(255, 255, 255, 0.11) 80%, rgba(255, 255, 255, 0) 80%) 0 1 0 0/0 1px 0 0 stretch; } - column-header .button:active, column-header .button:hover { - background-color: #073642; } - column-header .button:active:hover { - color: #657b83; } - column-header .button:insensitive { - border-color: #002b36; - background-image: none; } - -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #002b36; - color: rgba(89, 128, 143, 0.8); } - .menubar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .menubar > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - .menubar > .menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - .menubar > .menuitem:insensitive { - color: rgba(89, 128, 143, 0.2); - border-color: transparent; } - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #002b36; - border: 1px solid #001317; } - .csd .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - .menu .menuitem { - padding: 5px; } - .menu .menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - .menu .menuitem:insensitive { - color: rgba(101, 123, 131, 0.45); } - .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator { - color: rgba(7, 54, 66, 0); } - .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 #103d49; } - .menu.button.bottom { - border-top: 1px solid #103d49; } - .menu.button:hover { - background-color: #103d49; } - .menu.button:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent; } - -.csd .popup { - border-radius: 2px; } - -.menuitem .accelerator { - color: alpha(currentColor,0.55); } - -.popover { - padding: 2px; - border: 1px solid black; - border-radius: 3px; - background-clip: border-box; - background-color: #002b36; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } - .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { - color: rgba(7, 54, 66, 0); } - .popover > .list, - .popover > .view, - .popover > .toolbar, - .popover > .inline-toolbar, - .popover.osd > .toolbar, - .popover.osd > .inline-toolbar { - border-style: none; - background-color: transparent; } - -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - .entry.cursor-handle.top, - .cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - .entry.cursor-handle.bottom, - .cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -.notebook { - padding: 0; - background-color: #073642; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -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.frame { - border: 1px solid #001317; } - .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.header { - background-color: #002b36; } - .notebook.header.frame { - border: 0px solid #001317; } - .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.top { - box-shadow: inset 0 -1px #001317; } - .notebook.header.bottom { - box-shadow: inset 0 1px #001317; } - .notebook.header.right { - box-shadow: inset 1px 0 #001317; } - .notebook.header.left { - box-shadow: inset -1px 0 #001317; } - .notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - outline-offset: 0; } - .notebook tab.top, .notebook tab.bottom { - padding: 4px 15px; } - .notebook tab.left, .notebook tab.right { - padding: 4px 15px; } - .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { - padding-left: 12px; - padding-right: 12px; } - .notebook tab.reorderable-page.top, .notebook tab.top { - padding-top: 6px; - border-radius: 3.5px 2px 0 0; - border-width: 0; - border-top-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { - background-color: #073642; - box-shadow: inset 0 1px #001317, inset 0 -1px #073642, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.bottom, .notebook tab.bottom { - padding-bottom: 6px; - border-radius: 0 0 2px 3.5px; - border-width: 0; - border-bottom-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { - background-color: #073642; - box-shadow: inset 0 -1px #073642, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.right, .notebook tab.right { - padding-right: 17px; - border-radius: 0 3.5px 3.5px 0; - border-width: 0; - border-right-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { - background-color: #073642; - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #073642, inset -1px 0 #001317; } - .notebook tab.reorderable-page.left, .notebook tab.left { - padding-left: 17px; - border-radius: 3.5px 0 0 3.5px; - border-width: 0; - border-left-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { - background-color: #073642; - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #073642; } - .notebook tab GtkLabel { - padding: 0 2px; - color: rgba(101, 123, 131, 0.45); } - .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(101, 123, 131, 0.725); } - .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { - color: #657b83; } - .notebook tab .button { - padding: 0; - color: #425f68; } - .notebook tab .button:hover { - color: #ff4d4d; } - .notebook tab .button:active { - color: #268bd2; } - .notebook tab .button > GtkImage { - padding: 2px; } - .notebook.arrow { - color: rgba(101, 123, 131, 0.45); } - .notebook.arrow:hover { - color: rgba(101, 123, 131, 0.725); } - .notebook.arrow:active { - color: #657b83; } - .notebook.arrow:insensitive { - color: rgba(101, 123, 131, 0.15); } - -.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: 6px; } - .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { - margin: 0; - background-color: #47636c; - border: 1px solid rgba(0, 0, 0, 0.3); - 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.99; } - .scrollbar .trough { - background-color: #07323d; - border: 1px none #001317; } - .scrollbar .slider { - background-color: #284b55; } - .scrollbar .slider:hover { - background-color: #1e434d; } - .scrollbar .slider:prelight:active, .scrollbar .slider:active { - background-color: #268bd2; } - .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, #001317 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #07323d; } - .scrollbars-junction:dir(rtl), - .scrollbars-junction.frame:dir(rtl) { - border-image-slice: 0 1 0 0; } - -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 41; - outline-color: transparent; } - GtkSwitch.trough, GtkSwitch.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; } - GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { - background-position: left center; } - -GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough, -.list-row:selected GtkSwitch.trough, -GtkInfoBar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -.header-bar GtkSwitch.trough, -.primary-toolbar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } - -GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active, -.list-row:selected GtkSwitch.trough:active, -GtkInfoBar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -.header-bar GtkSwitch.trough:active, -.primary-toolbar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } - -GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:insensitive, -.list-row:selected GtkSwitch.trough:insensitive, -GtkInfoBar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:insensitive, -.primary-toolbar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } - -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active:insensitive, -.list-row:selected GtkSwitch.trough:active:insensitive, -GtkInfoBar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:active:insensitive, -.primary-toolbar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } - -.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check, -GtkFileChooserDialog .dialog-vbox > .frame .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -.menu .menuitem.check:hover, -GtkTreeView.view.check:selected, -.list-row:selected .check, -GtkInfoBar .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.check:insensitive:hover, -GtkTreeView.view.check:insensitive:selected, -.list-row:selected .check:insensitive, -GtkInfoBar .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -.menu .menuitem.check:inconsistent:hover, -GtkTreeView.view.check:inconsistent:selected, -.list-row:selected .check:inconsistent, -GtkInfoBar .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.check:inconsistent:insensitive:hover, -GtkTreeView.view.check:inconsistent:insensitive:selected, -.list-row:selected .check:inconsistent:insensitive, -GtkInfoBar .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -.menu .menuitem.check:checked:hover, -GtkTreeView.view.check:checked:selected, -.list-row:selected .check:checked, -GtkInfoBar .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -.menu .menuitem.check:checked:insensitive:hover, -GtkTreeView.view.check:checked:insensitive:selected, -.list-row:selected .check:checked:insensitive, -GtkInfoBar .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio, -GtkFileChooserDialog .dialog-vbox > .frame .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -.menu .menuitem.radio:hover, -GtkTreeView.view.radio:selected, -.list-row:selected .radio, -GtkInfoBar .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:insensitive:hover, -GtkTreeView.view.radio:insensitive:selected, -.list-row:selected .radio:insensitive, -GtkInfoBar .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:hover, -GtkTreeView.view.radio:inconsistent:selected, -.list-row:selected .radio:inconsistent, -GtkInfoBar .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:insensitive:hover, -GtkTreeView.view.radio:inconsistent:insensitive:selected, -.list-row:selected .radio:inconsistent:insensitive, -GtkInfoBar .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -.menu .menuitem.radio:checked:hover, -GtkTreeView.view.radio:checked:selected, -.list-row:selected .radio:checked, -GtkInfoBar .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:checked:insensitive:hover, -GtkTreeView.view.radio:checked:insensitive:selected, -.list-row:selected .radio:checked:insensitive, -GtkInfoBar .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -GtkIconView.view.check, -GtkFlowBox.view.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); - background-color: transparent; } - -GtkIconView.view.check:checked, -GtkFlowBox.view.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@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: rgba(101, 123, 131, 0.45); } - -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; } - .scale.trough { - margin: 5px; } - .scale.fine-tune.trough { - border-radius: 5px; - margin: 3px; } - .scale.slider { - background-clip: border-box; - background-image: linear-gradient(to bottom, #083e4b); - border: 1px solid #000b0d; - border-radius: 50%; - box-shadow: none; } - .scale.slider:hover { - background-image: linear-gradient(to bottom, #0a5062); - border-color: #000b0d; } - .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #04313d); - border-color: rgba(0, 11, 13, 0.8); } - .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .osd .scale.slider { - background-image: linear-gradient(to bottom, #073642); - border-color: #268bd2; } - .osd .scale.slider:hover { - background-image: linear-gradient(to bottom, #268bd2); } - .osd .scale.slider:active { - background-image: linear-gradient(to bottom, #1e6ea7); - border-color: #1e6ea7; } - .menu .menuitem:hover .scale.slider, - .list-row:selected .scale.slider, - GtkInfoBar .scale.slider { - background-image: linear-gradient(to bottom, #fdf6e3); - border-color: #fdf6e3; } - .menu .menuitem:hover .scale.slider:hover, - .list-row:selected .scale.slider:hover, - GtkInfoBar .scale.slider:hover { - background-image: linear-gradient(to bottom, #dde6e0); - border-color: #dde6e0; } - .menu .menuitem:hover .scale.slider:active, - .list-row:selected .scale.slider:active, - GtkInfoBar .scale.slider:active { - background-image: linear-gradient(to bottom, #92c1db); - border-color: #92c1db; } - .menu .menuitem:hover .scale.slider:insensitive, - .list-row:selected .scale.slider:insensitive, - GtkInfoBar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); - border-color: #9cc6db; } - .scale.trough { - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, #00171d); } - .scale.trough.highlight { - background-image: linear-gradient(to bottom, #268bd2); } - .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, rgba(38, 139, 210, 0.55)); } - .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 23, 29, 0.55)); } - .osd .scale.trough { - background-image: linear-gradient(to bottom, #0a5062); - outline-color: rgba(101, 123, 131, 0.2); } - .osd .scale.trough.highlight { - background-image: none; - background-image: linear-gradient(to bottom, #268bd2); } - .menu .menuitem:hover .scale.trough, - .list-row:selected .scale.trough, - GtkInfoBar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } - .menu .menuitem:hover .scale.trough.highlight, - .list-row:selected .scale.trough.highlight, - GtkInfoBar .scale.trough.highlight { - background-image: linear-gradient(to bottom, #fdf6e3); } - .menu .menuitem:hover .scale.trough.highlight:insensitive, - .list-row:selected .scale.trough.highlight:insensitive, - GtkInfoBar .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); } - .menu .menuitem:hover .scale.trough:insensitive, - .list-row:selected .scale.trough:insensitive, - GtkInfoBar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -GtkProgressBar { - padding: 0; - font-size: smaller; - color: rgba(101, 123, 131, 0.7); } - GtkProgressBar.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; } - -.progressbar { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - .progressbar.osd { - background-color: #268bd2; } - .list-row:selected .progressbar, - GtkInfoBar .progressbar { - background-color: #fdf6e3; } - -.osd .scale.progressbar { - background-color: #268bd2; } - -GtkProgressBar.trough, .level-bar.trough { - border: none; - border-radius: 3px; - background-color: #00171d; } - GtkProgressBar.trough.osd, .osd.level-bar.trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, - GtkInfoBar GtkProgressBar.trough, - GtkInfoBar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.2); } - -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; } - GtkLevelBar.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; } - -.level-bar.trough { - padding: 3px; - border-radius: 4px; } - -.level-bar.fill-block { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - .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 { - border-color: #859900; - background-color: #859900; } - .level-bar.fill-block.level-low { - border-color: #cb4b16; - background-color: #cb4b16; } - .level-bar.fill-block.empty-fill-block { - background-color: #073642; - border-color: #073642; } - -.frame { - border: 1px solid #001317; - padding: 0; } - .frame.flat { - border-style: none; } - .frame.action-bar { - padding: 6px; - border-width: 1px 0 0; } - -GtkScrolledWindow GtkViewport.frame { - border-style: none; } - -.separator, GtkPlacesSidebar.sidebar .view.separator { - color: rgba(0, 0, 0, 0.1); } - GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, - GtkFontButton .separator, - GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .view.separator, - GtkFileChooserButton .separator.vertical, - GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFileChooserButton .vertical.view.separator, - GtkFontButton .separator.vertical, - GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .vertical.view.separator { - -GtkWidget-wide-separators: true; } - -.list, .list-row { - background-color: #073642; - border-color: #001317; } - -.list-row, -.grid-child { - padding: 2px; } - -.list-row.button { - background-color: transparent; - border-style: none; - border-radius: 0; - box-shadow: none; } - .list-row.button:hover { - background-color: rgba(255, 255, 255, 0.03); } - .list-row.button:active { - color: #657b83; } - .list-row.button:selected:active { - color: #fdf6e3; } - .list-row.button:selected:hover { - background-color: #227dbd; } - .list-row.button:selected:insensitive { - color: rgba(253, 246, 227, 0.7); - background-color: rgba(38, 139, 210, 0.7); } - .list-row.button:selected:insensitive .label { - color: inherit; } - -.list-row, list-row.button { - transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .list-row:hover, list-row.button:hover { - transition: none; } - -.app-notification, -.app-notification.frame { - padding: 10px; - color: #657b83; - background-color: #073642; - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: #021014; } - .app-notification .button, - .app-notification.frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .app-notification .button.flat, - .app-notification.frame .button.flat { - border-color: rgba(38, 139, 210, 0); } - .app-notification .button:hover, - .app-notification.frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .app-notification .button:active, .app-notification .button:checked, - .app-notification.frame .button:active, - .app-notification.frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification .button:insensitive, - .app-notification.frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - .expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - .expander:hover { - color: #b8c4c9; } - .expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GtkCalendar { - color: #657b83; - border: 1px solid #001317; - border-radius: 3px; - padding: 2px; } - GtkCalendar:selected { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 1.5px; } - GtkCalendar.header { - color: #657b83; - border: none; - border-radius: 0; } - GtkCalendar.button, GtkCalendar.button:focus { - color: rgba(101, 123, 131, 0.45); - border-color: transparent; - background-color: transparent; - background-image: none; } - GtkCalendar.button:hover, GtkCalendar.button:focus:hover { - color: #657b83; } - GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { - color: rgba(101, 123, 131, 0.45); - background-color: transparent; - background-image: none; } - GtkCalendar.highlight { - color: alpha(currentColor,0.55); } - -.message-dialog .dialog-action-area .button { - padding: 8px; } - -.message-dialog { - -GtkDialog-button-spacing: 0; } - .message-dialog .titlebar { - background-color: #002b36; - border-bottom: 1px solid #000f12; } - .message-dialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - .message-dialog.csd .dialog-action-area .button { - padding: 8px; - border-radius: 0; } - .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 { - border-right-style: none; - border-bottom-style: none; } - .message-dialog.csd .dialog-action-area .button:last-child { - border-bottom-right-radius: 3px; } - .message-dialog.csd .dialog-action-area .button:first-child { - border-left-style: none; - border-bottom-left-radius: 3px; } - -GtkFileChooserDialog .search-bar { - background-color: #002b36; - border-color: #001317; - box-shadow: none; } - -GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #001317; } - -.sidebar, .sidebar .view { - border: none; - background-color: #003340; } - .sidebar:selected, .sidebar .view:selected { - background-color: #268bd2; } - -GtkPlacesSidebar.sidebar .view { - color: #657b83; - background-color: transparent; } - GtkPlacesSidebar.sidebar .view:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.sidebar-item { - padding: 10px 4px; } - .sidebar-item > GtkLabel { - padding-left: 6px; - padding-right: 6px; } - .sidebar-item.needs-attention > GtkLabel { - background-size: 6px 6px, 0 0; } - -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: #001317; } - -GtkPaned.wide { - -GtkPaned-handle-size: 5; - margin: 0; } - GtkPaned.wide .pane-separator { - background-color: transparent; - border-style: none solid; - border-color: #001317; - border-width: 1px; } - GtkPaned.wide.vertical .pane-separator { - border-style: solid none; } - -GtkInfoBar { - border-style: none; } - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: #268bd2; - color: #fdf6e3; } - -.list-row:selected .button, GtkInfoBar .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - .list-row:selected .flat.button, GtkInfoBar .flat.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .list-row:selected .button:hover, GtkInfoBar .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.2); } - .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.2); } - -.tooltip { - color: #657b83; - border-radius: 2px; } - .tooltip.background { - background-color: #0c5c70; - background-clip: padding-box; } - .tooltip.window-frame.csd { - background-color: transparent; } - -.tooltip * { - padding: 4px; - background-color: transparent; - color: inherit; } - -:selected GtkColorSwatch { - box-shadow: none; } - :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { - border-color: #fdf6e3; } - -GtkColorSwatch.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -GtkColorSwatch.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { - border-radius: 3px; } - -GtkColorSwatch:hover, GtkColorSwatch:hover:selected { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } - -GtkColorEditor GtkColorSwatch { - border-radius: 3px; } - GtkColorEditor GtkColorSwatch:hover { - background-image: none; } - -GtkColorSwatch.color-dark { - color: white; - outline-color: rgba(0, 0, 0, 0.3); } - -GtkColorSwatch.color-light { - color: black; - outline-color: rgba(255, 255, 255, 0.5); } - -GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { - border: 1px solid rgba(0, 0, 0, 0.15); } - GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { - border-color: rgba(0, 0, 0, 0.25); } - -GtkColorSwatch#add-color-button { - border-style: solid; - border-width: 1px; - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - GtkColorSwatch#add-color-button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - GtkColorSwatch#add-color-button .overlay { - border-color: transparent; - background-color: transparent; - background-image: none; } - -GtkColorButton.button { - padding: 5px; } - GtkColorButton.button GtkColorSwatch { - border-radius: 0; } - -.scale-popup .button { - padding: 6px; } - .scale-popup .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - -GtkVolumeButton.button { - padding: 8px; } - -.touch-selection, -.context-menu { - font: initial; } - -.monospace { - font: Monospace; } - -.overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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; } - -.window-frame { - border-radius: 3px 3px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px #000f12, 0 8px 8px 0 rgba(0, 0, 0, 0.35); - margin: 10px; } - .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.35); } - .window-frame.tiled { - border-radius: 0; } - .window-frame.popup { - box-shadow: none; - border-radius: 0; } - .window-frame.ssd { - border-radius: 3px 3px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } - .window-frame.ssd.maximized { - border-radius: 0; } - .window-frame.csd.popup { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #000203; } - .window-frame.csd.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.25); } - .window-frame.csd.message-dialog { - border-radius: 3px; } - .window-frame.solid-csd { - border-radius: 0; - margin: 1px; - background-color: #002b36; - box-shadow: none; } - -.header-bar.default-decoration .button.titlebutton, -.titlebar.default-decoration .button.titlebutton { - padding-top: 0px; - padding-bottom: 0px; } - -.header-bar .button.titlebutton, -.titlebar .button.titlebutton { - padding-left: 4px; - padding-right: 4px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(0, 43, 54, 0); } - .header-bar .button.titlebutton:not(GtkMenuButton), - .titlebar .button.titlebutton:not(GtkMenuButton) { - padding-top: 8px; - padding-bottom: 8px; } - .header-bar .button.titlebutton:hover, - .titlebar .button.titlebutton:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, - .titlebar .button.titlebutton:active, - .titlebar .button.titlebutton:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.close, - .titlebar .button.titlebutton.maximize, - .titlebar .button.titlebutton.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; } - .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - opacity: 1; } - .header-bar .button.titlebutton.close, - .titlebar .button.titlebutton.close { - background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } - .header-bar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.close:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.close:hover, - .titlebar .button.titlebutton.close:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } - .header-bar .button.titlebutton.close:active, - .titlebar .button.titlebutton.close:active { - background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } - .header-bar .button.titlebutton.maximize, - .titlebar .button.titlebutton.maximize { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-dark.png"), url("assets/titlebutton-maximize-dark@2.png")); } - .header-bar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.maximize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop-dark.png"), url("assets/titlebutton-maximize-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.maximize:hover, - .titlebar .button.titlebutton.maximize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover-dark.png"), url("assets/titlebutton-maximize-hover-dark@2.png")); } - .header-bar .button.titlebutton.maximize:active, - .titlebar .button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active-dark.png"), url("assets/titlebutton-maximize-active-dark@2.png")); } - .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.minimize { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-dark.png"), url("assets/titlebutton-minimize-dark@2.png")); } - .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop-dark.png"), url("assets/titlebutton-minimize-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.minimize:hover, - .titlebar .button.titlebutton.minimize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover-dark.png"), url("assets/titlebutton-minimize-hover-dark@2.png")); } - .header-bar .button.titlebutton.minimize:active, - .titlebar .button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active-dark.png"), url("assets/titlebutton-minimize-active-dark@2.png")); } - -.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.button.flat:selected, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, -GtkEntry.gb-command-bar-entry.entry.flat:focus:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); } - -GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, -ScratchMainWindow .notebook tab.reorderable-page.top:active, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, -ScratchMainWindow .notebook tab.top:active, -ScratchMainWindow .notebook tab.top.active-page, -ScratchMainWindow .notebook tab.top.active-page:hover, -EphyNotebook.notebook tab.reorderable-page.top:active, -EphyNotebook.notebook tab.reorderable-page.top.active-page, -EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, -EphyNotebook.notebook tab.top:active, -EphyNotebook.notebook tab.top.active-page, -EphyNotebook.notebook tab.top.active-page:hover, -MidoriNotebook .notebook tab.reorderable-page.top:active, -MidoriNotebook .notebook tab.reorderable-page.top.active-page, -MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, -MidoriNotebook .notebook tab.top:active, -MidoriNotebook .notebook tab.top.active-page, -MidoriNotebook .notebook tab.top.active-page:hover, -TerminalWindow .notebook tab.reorderable-page.top:active, -TerminalWindow .notebook tab.reorderable-page.top.active-page, -TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -TerminalWindow .notebook tab.top:active, -TerminalWindow .notebook tab.top.active-page, -TerminalWindow .notebook tab.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - -TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.top { - padding-top: 7px; - border-top-width: 3px; } - -TerminalWindow .notebook.header.top, -PantheonTerminalPantheonTerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #001b22, inset 0 -1px #001317; } - -GtkHTML { - background-color: #073642; - color: #657b83; } - GtkHTML:active { - color: #fdf6e3; - background-color: #268bd2; } - -SushiFontWidget { - padding: 6px 12px; } - -TerminalWindow .background { - background-color: transparent; } - -TerminalWindow .scrollbar.vertical .slider { - margin-left: 3px; } - -TerminalWindow .scrollbar.trough { - border-width: 0; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { - color: #657b83; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { - color: #fdf6e3; } - -.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, GtkPlacesSidebar.sidebar .nautilus-canvas-item.label.view.separator, .header-bar .nautilus-canvas-item.subtitle, -.nautilus-list-dim-label { - color: #33535d; } - .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, - .nautilus-list-dim-label:selected, - .nautilus-list-dim-label:selected:focus { - color: #d2e1e0; } - -NautilusNotebook.notebook { - background-color: #073642; } - NautilusNotebook.notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; } - -NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { - padding: 5px; - box-shadow: none; - background-color: #073642; } - -.nautilus-circular-button { - border-radius: 50%; - outline-radius: 50%; } - -.disk-space-display { - border-style: solid; - border-width: 1px; } - .disk-space-display.unknown { - background-color: rgba(101, 123, 131, 0.5); - border-color: rgba(79, 96, 102, 0.5); } - .disk-space-display.used { - background-color: rgba(38, 139, 210, 0.8); - border-color: rgba(30, 110, 167, 0.8); } - .disk-space-display.free { - background-color: #001f27; - border-color: black; } - -NemoWindow EelEditableLabel.entry { - transition: none; } - -NemoWindow .sidebar .frame { - border-width: 0; } - -NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #001317; } - -NemoWindow .primary-toolbar NemoPathBar.linked > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - background-color: rgba(0, 193, 243, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4), inset -1px 0 rgba(0, 0, 0, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.gedit-headerbar-paned { - color: #001b22; } - -.open-document-selector-treeview.view { - padding: 3px 6px 3px 6px; - border-color: #073642; } - .open-document-selector-treeview.view:prelight { - background-color: #0e3b47; } - .open-document-selector-treeview.view:prelight:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.open-document-selector-name-label { - color: #657b83; } - -.open-document-selector-path-label { - color: #365963; - font-size: smaller; } - .open-document-selector-path-label:selected { - color: rgba(253, 246, 227, 0.9); } - -.gedit-document-panel .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; } - .gedit-document-panel .list-row .button GtkImage { - color: inherit; } - -.gedit-document-panel .prelight-row .button { - color: #425f68; } - -.gedit-document-panel .list-row .button:hover, -.gedit-document-panel .prelight-row .button:hover { - color: #ff4d4d; } - -.gedit-document-panel .prelight-row:selected .button:hover { - color: #ff6666; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; } - .gedit-document-panel .prelight-row:selected .button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -.gedit-document-panel-dragged-row { - border: 1px solid #001317; - background-color: #000203; - color: #657b83; } - -GeditStatusbar { - border-top: 1px solid #001317; - background-color: #002b36; } - -GeditStatusMenuButton.button.flat, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton:checked.button.flat { - border-bottom-style: none; - border-radius: 0; } - -GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #001317; } - -.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { - color: rgba(101, 123, 131, 0.6); - margin: 2px; - padding: 2px; } - -GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { - background-color: #003340; - padding: 6px; - border-color: #001317; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image:hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image:hover { - color: inherit; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):insensitive, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { - box-shadow: -1px 0 #268bd2; } - -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; } - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - box-shadow: 1px 0 #268bd2; } - -GbEditorFrame .gb-search-slider { - padding: 2px; } - -GdTaggedEntry { - color: #657b83; } - -.preferences.sidebar GtkViewport { - border: none; } - -.preferences.sidebar GtkListBox { - background-color: #002b36; } - -.preferences.sidebar GtkListBoxRow { - padding: 10px; } - -GbPreferencesPageLanguage GtkSearchEntry { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - -GbPreferencesPageLanguage GtkScrolledWindow { - border-top-width: 0; } - -GtkBox.gb-command-bar-box { - border: none; - background-color: #073642; } - GtkBox.gb-command-bar-box GtkLabel { - color: #657b83; } - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: #657b83; - background-image: none; - background-color: #073642; - padding: 6px 6px 6px 6px; - border: none; } - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; } - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; } - -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; } - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #001317; } - -GbViewStack.focused GtkBox.header.notebook { - background-color: #073642; } - GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { - opacity: 1; } - -EphyWindow .floating-bar { - color: #657b83; } - -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon { - background-color: rgba(101, 123, 131, 0.3); - border-radius: 2px; } - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: #78b9e6; } - -.documents-entry-tag { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover { - color: #fdf6e3; - background-color: #3295da; } - .documents-entry-tag:active { - color: #fdf6e3; - background-color: #2380c1; } - .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; } - .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { - color: rgba(253, 246, 227, 0.7); } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -TotemGrilo.vertical GdMainView.frame { - border-width: 0; } - -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { - background-color: #268bd2; } - -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; } - -.gnome-panel-menu-bar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: #657b83; - background-image: linear-gradient(to bottom, #05242c); } - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: #657b83; } - -PanelApplet .button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); - border-color: rgba(0, 0, 0, 0.17); } - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: rgba(0, 0, 0, 0.25); - border-radius: 0; - border-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -PanelApplet:hover { - color: white; } - -PanelApplet:active, -PanelApplet:hover:active { - color: #268bd2; } - -WnckPager { - color: #333e42; } - WnckPager:selected { - color: #268bd2; } - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; } - -ClockBox { - color: #657b83; } - -.xfce4-panel.panel { - background-color: #05242c; - text-shadow: none; - icon-shadow: none; } - .xfce4-panel.panel .button.flat { - color: #657b83; - background-color: rgba(5, 36, 44, 0); - border-radius: 0; - border: none; } - .xfce4-panel.panel .button.flat:hover { - border: none; - background-color: #0a4a5a; } - .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - -.floating-bar { - background-color: #268bd2; - color: #fdf6e3; } - .floating-bar.top { - border-radius: 0 0 2px 2px; } - .floating-bar.right { - border-radius: 2px 0 0 2px; } - .floating-bar.bottom { - border-radius: 2px 2px 0 0; } - .floating-bar.left { - border-radius: 0 2px 2px 0; } - .floating-bar .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - background-color: transparent; - box-shadow: none; - border: none; } - -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; } - -MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { - color: #fdf6e3; - background-color: #268bd2; - outline-color: transparent; } - -MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { - background-color: transparent; } - -MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { - outline-color: transparent; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - .marlin-pathbar.pathbar:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; - border: solid transparent; - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { - padding: 0 3px; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { - background-color: rgba(255, 255, 255, 0.05); - border: solid rgba(255, 255, 255, 0.07); - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { - color: rgba(101, 123, 131, 0.45); } - -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; } - -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: #657b83; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration.top { - border: 1px solid #000f12; - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #002b36); - color: rgba(89, 128, 143, 0.8); - box-shadow: inset 0 1px #003745; } - UnityDecoration.top:backdrop { - border-bottom-width: 0; - color: rgba(89, 128, 143, 0.5); } - UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, #000f12); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: #004b5f; - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; } - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar GtkLabel { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #001317; - border-right: 1px solid #001317; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #001317; } - .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { - padding: 0 3px 0 3px; } - -.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #001317; - background-color: #002b36; } - .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view { - background-color: #002b36; - color: #657b83; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:prelight { - background-color: #003f50; } - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: #002b36; - background-image: none; } - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #657b83; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GraniteWidgetsWelcome { - background-color: #073642; } - -GraniteWidgetsWelcome GtkLabel { - color: #33535d; - font: open sans 11; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(101, 123, 131, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #073642); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry.entry { - padding: 4px; } - -.h1 { - font: open sans 24px; } - -.h2 { - font: open sans light 18px; } - -.h3 { - font: open sans 11px; } - -.h4, -.category-label { - color: #47636c; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: #05242c; - color: #657b83; - font: bold; - box-shadow: inset 0 -1px #010a0c; } - #panel_window .menubar { - padding-left: 5px; } - #panel_window .menubar, #panel_window .menubar > .menuitem { - background-color: transparent; - color: #657b83; - font: bold; } - #panel_window .menubar .menuitem:insensitive { - color: rgba(101, 123, 131, 0.5); } - #panel_window .menubar .menuitem:insensitive GtkLabel { - color: inherit; } - #panel_window .menubar .menu .menuitem { - font: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: #657b83; } - -#content_frame { - padding-bottom: 14px; - background-color: #002b36; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - #content_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - #content_frame .button:active, #content_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - #content_frame .button:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - #content_frame .button:insensitive > GtkLabel { - color: inherit; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: #002b36; - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px #001b22; } - -#buttonbox_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - #buttonbox_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - #buttonbox_frame .button:active, #buttonbox_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - #buttonbox_frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -#login_window #user_combobox { - color: #657b83; - font: 13px; } - #login_window #user_combobox .menu { - font: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font: bold; } - -.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { - color: #001b22; } - -NemoWindow GtkEventBox { - background-color: #002b36; } - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; } - -GtkFileChooserDialog .sidebar, -NautilusWindow .sidebar, -NemoWindow .sidebar { - border-right: 1px solid #05232b; } - -GtkFileChooserDialog .sidebar:dir(rtl), -NautilusWindow .sidebar:dir(rtl), -NemoWindow .sidebar:dir(rtl) { - border-left: 1px solid #05232b; } - -GtkFileChooserDialog.csd.background, -GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, -NautilusWindow.csd.background, -NautilusWindow .source-list, -NautilusWindow .source-list.view, -NautilusWindow .source-list.view:prelight, -NemoWindow.csd.background, -NemoWindow .source-list, -NemoWindow .source-list.view, -NemoWindow .source-list.view:prelight, -MarlinViewWindow.csd.background, -MarlinViewWindow .source-list, -MarlinViewWindow .source-list.view, -MarlinViewWindow .source-list.view:prelight { - background-color: transparent; } - -GtkFileChooserDialog .sidebar, GtkFileChooserDialog .source-list.sidebar.view, -NautilusWindow .sidebar, -NautilusWindow .source-list.sidebar.view, -NemoWindow .sidebar, -NemoWindow .source-list.sidebar.view, -MarlinViewWindow .sidebar, -MarlinViewWindow .source-list.sidebar.view { - background-color: #073642; } - GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar row, GtkFileChooserDialog .source-list.sidebar.view .view, GtkFileChooserDialog .source-list.sidebar.view row, - NautilusWindow .sidebar .view, - NautilusWindow .sidebar row, - NautilusWindow .source-list.sidebar.view .view, - NautilusWindow .source-list.sidebar.view row, - NemoWindow .sidebar .view, - NemoWindow .sidebar row, - NemoWindow .source-list.sidebar.view .view, - NemoWindow .source-list.sidebar.view row, - MarlinViewWindow .sidebar .view, - MarlinViewWindow .sidebar row, - MarlinViewWindow .source-list.sidebar.view .view, - MarlinViewWindow .source-list.sidebar.view row { - background-color: transparent; - color: #657b83; } - GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar row.image, GtkFileChooserDialog .source-list.sidebar.view .view.image, GtkFileChooserDialog .source-list.sidebar.view row.image, - NautilusWindow .sidebar .view.image, - NautilusWindow .sidebar row.image, - NautilusWindow .source-list.sidebar.view .view.image, - NautilusWindow .source-list.sidebar.view row.image, - NemoWindow .sidebar .view.image, - NemoWindow .sidebar row.image, - NemoWindow .source-list.sidebar.view .view.image, - NemoWindow .source-list.sidebar.view row.image, - MarlinViewWindow .sidebar .view.image, - MarlinViewWindow .sidebar row.image, - MarlinViewWindow .source-list.sidebar.view .view.image, - MarlinViewWindow .source-list.sidebar.view row.image { - color: rgba(101, 123, 131, 0.7); } - GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar row.cell:selected, GtkFileChooserDialog .source-list.sidebar.view .view.cell:selected, GtkFileChooserDialog .source-list.sidebar.view row.cell:selected, - NautilusWindow .sidebar .view.cell:selected, - NautilusWindow .sidebar row.cell:selected, - NautilusWindow .source-list.sidebar.view .view.cell:selected, - NautilusWindow .source-list.sidebar.view row.cell:selected, - NemoWindow .sidebar .view.cell:selected, - NemoWindow .sidebar row.cell:selected, - NemoWindow .source-list.sidebar.view .view.cell:selected, - NemoWindow .source-list.sidebar.view row.cell:selected, - MarlinViewWindow .sidebar .view.cell:selected, - MarlinViewWindow .sidebar row.cell:selected, - MarlinViewWindow .source-list.sidebar.view .view.cell:selected, - MarlinViewWindow .source-list.sidebar.view row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog .source-list.sidebar.view.frame, - NautilusWindow .sidebar.frame, - NautilusWindow .source-list.sidebar.view.frame, - NemoWindow .sidebar.frame, - NemoWindow .source-list.sidebar.view.frame, - MarlinViewWindow .sidebar.frame, - MarlinViewWindow .source-list.sidebar.view.frame { - color: #657b83; } - GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog .source-list.sidebar.view .separator, - NautilusWindow .sidebar .separator, - NautilusWindow GtkPlacesSidebar.sidebar .view.separator, - NautilusWindow .source-list.sidebar.view .separator, - NemoWindow .sidebar .separator, - NemoWindow GtkPlacesSidebar.sidebar .view.separator, - NemoWindow .source-list.sidebar.view .separator, - MarlinViewWindow .sidebar .separator, - MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, - MarlinViewWindow .source-list.sidebar.view .separator { - color: transparent; } - -GtkFileChooserDialog.maximized .sidebar, -NautilusWindow.maximized .sidebar, -NemoWindow.maximized .sidebar, -MarlinViewWindow.maximized .sidebar { - background-color: #073642; } - -GtkFileChooserDialog .pane-separator, -NautilusWindow .pane-separator, -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { - background-color: #05232b; } - -NautilusWindow NautilusWindowSlot { - background-color: #073642; } - -NautilusDesktopWindow NautilusWindowSlot { - background-color: transparent; } - -GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { - background-color: #073642; } - -GtkFileChooserDialog .sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #002b36; } - -GtkFileChooserDialog .dialog-action-box { - background-color: #002b36; } - -GtkFileChooserDialog .dialog-vbox > .frame { - color: #657b83; - border-color: transparent; } - -GtkFileChooserDialog .action-bar.frame { - background-color: transparent; - border-color: #021014; } - -GtkFileChooserDialog .action-bar.frame GtkLabel, GtkFileChooserDialog .action-bar.frame GtkComboBox, -GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, -GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { - color: #657b83; } - -FeedReaderreaderUI.background.csd > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd > .titlebar .pane-separator, -GeditWindow.background.csd.maximized > .titlebar .pane-separator, -GeditWindow.background.csd > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { - background-color: #001b22; } - -FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #002b36; } - FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #00313e; } - -FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #002b36; } - FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #00313e; } - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; } - -GeditWindow.background.csd { - background-color: transparent; } - -GeditWindow.background .gedit-side-panel-paned .pane-separator { - background-color: #05232b; } - -GeditWindow.background .gedit-bottom-panel-paned .pane-separator { - background-color: #001317; } - -.gedit-bottom-panel-paned { - background-color: #073642; } - -.gedit-document-panel { - background-color: #073642; } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel .list-row { - color: #657b83; } - .gedit-document-panel .list-row { - background-color: rgba(101, 123, 131, 0); - border: solid rgba(101, 123, 131, 0); - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:hover { - border: solid rgba(101, 123, 131, 0.15); - border-width: 3px 2px 3px 2px; - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel .list-row:active { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:active .button { - color: #fdf6e3; } - .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -GeditFileBrowserWidget { - background-color: #073642; } - .maximized GeditFileBrowserWidget { - background-color: #073642; } - GeditFileBrowserWidget .horizontal { - background-color: transparent; - border-color: #041c22; } - GeditFileBrowserWidget .horizontal GtkComboBox { - color: #657b83; } - -GeditWindow.background.csd GeditFileBrowserView.view { - background-color: transparent; - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander { - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { - color: #268bd2; } - -GtkFileChooserDialog .action-bar.frame .button, -GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - GtkFileChooserDialog .action-bar.frame .button:hover, - GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - GtkFileChooserDialog .action-bar.frame .button:active, - GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog .action-bar.frame .button:checked, - GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - GtkFileChooserDialog .action-bar.frame .button:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -GtkFileChooserDialog .action-bar.frame .entry, -GtkFileChooserDialog .dialog-vbox > .frame .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.4)); - background-color: transparent; } - GtkFileChooserDialog .action-bar.frame .image.entry, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog .action-bar.frame .image.entry:hover, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { - color: inherit; } - GtkFileChooserDialog .action-bar.frame .entry:focus, - GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, #268bd2); } - GtkFileChooserDialog .action-bar.frame .entry:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.25)); } - -GtkFileChooserDialog .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -NautilusWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { - background-color: #8da0a7; - border: 1px solid rgba(0, 0, 0, 0.3); } - -GtkFileChooserDialog .sidebar .scrollbar .trough, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .trough, -NautilusWindow .sidebar .scrollbar .trough, -NautilusWindow .source-list.sidebar.view .scrollbar .trough, -NemoWindow .sidebar .scrollbar .trough, -NemoWindow .source-list.sidebar.view .scrollbar .trough, -MarlinViewWindow .sidebar .scrollbar .trough, -MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { - background-color: rgba(0, 0, 0, 0.2); - border: none; } - -GtkFileChooserDialog .sidebar .scrollbar .slider, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider, -NautilusWindow .sidebar .scrollbar .slider, -NautilusWindow .source-list.sidebar.view .scrollbar .slider, -NemoWindow .sidebar .scrollbar .slider, -NemoWindow .source-list.sidebar.view .scrollbar .slider, -MarlinViewWindow .sidebar .scrollbar .slider, -MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { - background-color: rgba(141, 160, 167, 0.7); } - GtkFileChooserDialog .sidebar .scrollbar .slider:hover, - NautilusWindow .sidebar .scrollbar .slider:hover, - NemoWindow .sidebar .scrollbar .slider:hover, - MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { - background-color: #9cacb2; } - GtkFileChooserDialog .sidebar .scrollbar .slider:prelight:active, - NautilusWindow .sidebar .scrollbar .slider:prelight:active, - NemoWindow .sidebar .scrollbar .slider:prelight:active, - MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog .sidebar .scrollbar .slider:insensitive, - NautilusWindow .sidebar .scrollbar .slider:insensitive, - NemoWindow .sidebar .scrollbar .slider:insensitive, - MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { - background-color: transparent; } - -@define-color theme_fg_color #657b83; -@define-color theme_text_color #657b83; -@define-color theme_bg_color #002b36; -@define-color theme_base_color #073642; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #657b83; -@define-color text_color #657b83; -@define-color bg_color #002b36; -@define-color base_color #073642; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #003340; -@define-color insensitive_fg_color alpha(#657b83, 0.5); -@define-color insensitive_base_color #073642; -@define-color theme_unfocused_fg_color #657b83; -@define-color theme_unfocused_text_color #657b83; -@define-color theme_unfocused_bg_color #002b36; -@define-color theme_unfocused_base_color #073642; -@define-color borders #001317; -@define-color unfocused_borders #001317; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #78b9e6; -@define-color content_view_bg #073642; -@define-color wm_title alpha(#59808f, 0.8); -@define-color wm_unfocused_title alpha(#59808f, 0.5); -@define-color wm_bg #002b36; -@define-color wm_bg_unfocused #00313e; -@define-color wm_highlight #003745; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #dc322f; -@define-color wm_button_close_hover_bg #cb4b16; -@define-color wm_button_close_active_bg #dc322f; -@define-color wm_icon_close_bg #002b36; -@define-color wm_button_hover_bg #657b83; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #002b36; -@define-color wm_icon_bg #93a1a1; -@define-color wm_icon_unfocused_bg #657b83; -@define-color wm_icon_hover_bg #93a1a1; -@define-color wm_icon_active_bg #fdf6e3; diff --git a/common/gtk-3.0/3.16/gtk-solid-darker.css b/common/gtk-3.0/3.16/gtk-solid-darker.css deleted file mode 100644 index 19d64ac..0000000 --- a/common/gtk-3.0/3.16/gtk-solid-darker.css +++ /dev/null @@ -1,3896 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -GtkPaned-handle-size: 1; - -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: #1e6ea7; - -GtkWidget-visited-link-color: #16527c; - -GtkWidget-focus-padding: 2; - -GtkWidget-focus-line-width: 1; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - -GtkStatusbar-shadow-type: none; - outline-color: rgba(92, 97, 108, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; } - -.background { - color: #5c616c; - background-color: #F5F6F7; } - -*:insensitive { - -gtk-image-effect: dim; } - -.gtkstyle-fallback { - background-color: #F5F6F7; - color: #5c616c; } - .gtkstyle-fallback:prelight { - background-color: white; - color: #5c616c; } - .gtkstyle-fallback:active { - background-color: #d9dde0; - color: #5c616c; } - .gtkstyle-fallback:insensitive { - background-color: #faf6eb; - color: rgba(92, 97, 108, 0.55); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view { - color: #5c616c; - background-color: #fdf6e3; } - .view.dim-label, .view.label.separator, GtkPlacesSidebar.sidebar .view.label.separator, .header-bar .view.subtitle { - color: rgba(92, 97, 108, 0.55); } - .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { - color: rgba(253, 246, 227, 0.65); - text-shadow: none; } - -.rubberband { - border: 1px solid #268bd2; - background-color: rgba(38, 139, 210, 0.2); } - -.label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator { - color: #5c616c; } - -.label:insensitive { - color: rgba(92, 97, 108, 0.55); } - -.dim-label, .label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator, .header-bar .subtitle { - opacity: 0.55; } - -GtkAssistant .sidebar { - background-color: #fdf6e3; - border-top: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #dcdfe3; } - -GtkAssistant.csd .sidebar { - border-top-style: none; } - -GtkAssistant .sidebar .label { - padding: 6px 12px; } - -GtkAssistant .sidebar .label.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -GtkTextView { - background-color: #f9f6ed; } - -.grid-child { - padding: 3px; - border-radius: 3px; } - .grid-child:selected { - outline-offset: -2px; } - -.popover.osd, .osd { - color: #657b83; - border: none; - background-color: #073642; - background-clip: padding-box; - outline-color: rgba(101, 123, 131, 0.3); - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - .spinner:active { - opacity: 1; - animation: spin 1s linear infinite; } - .spinner:active:insensitive { - opacity: 0.5; } - -.entry { - border: 1px solid; - padding: 5px 8px; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry.image.left { - padding-left: 0; } - .entry.image.right { - padding-right: 0; } - .entry.flat, .entry.flat:focus { - padding: 2px; - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); - border: none; - border-radius: 0; } - .entry:focus { - background-clip: border-box; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(253, 246, 227, 0.55); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.55)); } - .entry:selected, .entry:selected:focus { - background-color: #268bd2; - color: #fdf6e3; } - .entry.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - .linked > .entry:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .linked > .entry:first-child:dir(rtl) { - border-right-style: none; } - .linked > .entry:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; } - .linked > .entry:last-child:dir(rtl) { - border-left-style: solid; } - .entry.warning { - color: #fdf6e3; - border-color: #cb4b16; - background-image: linear-gradient(to bottom, #df8f68); } - .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); - box-shadow: none; } - .entry.warning:selected, .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .entry.error { - color: #fdf6e3; - border-color: #dc322f; - background-image: linear-gradient(to bottom, #e98077); } - .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); - box-shadow: none; } - .entry.error:selected, .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - .entry.image { - color: #7c7f84; } - .linked.vertical > .entry { - border-bottom-color: #f3efe3; - box-shadow: none; } - .linked.vertical > .entry:focus { - border-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:insensitive { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:first-child { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:first-child:focus { - border-bottom-color: #268bd2; - box-shadow: none; } - .linked.vertical > .entry:first-child:insensitive { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:last-child { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .linked.vertical > .entry:last-child:focus { - border-bottom-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:last-child:insensitive { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .osd .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.4)); - background-color: transparent; } - .osd .entry.image, .osd .entry.image:hover { - color: inherit; } - .osd .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, #268bd2); } - .osd .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.25)); } - -GtkSearchEntry.entry { - border-radius: 20px; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -.button { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 5px 8px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(251, 251, 252, 0); - border-color: rgba(101, 123, 131, 0); - transition: none; } - .button.flat:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - .button.flat:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; - -gtk-image-effect: highlight; } - .button:active, .button:checked { - background-clip: border-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; - transition-duration: 50ms; } - .button:active { - color: #5c616c; } - .button:active:hover, .button:checked { - color: #fdf6e3; } - .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; } - .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button:insensitive > GtkLabel { - color: inherit; } - .button:insensitive:active, .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { - color: inherit; } - .button.osd { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - background-color: #073642; - border-color: #03181d; } - .button.osd.image-button, .header-bar .button.osd.titlebutton, - .titlebar .button.osd.titlebutton { - padding: 10px; } - .button.osd:hover { - color: #268bd2; } - .button.osd:active, .button.osd:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .button.osd:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .osd .button:dir(rtl) { - border-radius: 0; - border-right-style: none; - border-left-style: none; } - .osd .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:dir(rtl) { - border-left-style: solid; } - .osd .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd .button:hover, .osd .button:hover:first-child, .osd .button:hover:last-child { - box-shadow: none; } - .osd .button:active, .osd .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd .button.flat:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd .button.flat:hover, .osd .button.flat:hover:first-child, .osd .button.flat:hover:last-child { - box-shadow: none; } - .osd .button.flat:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); - background-image: none; } - .osd .button.flat:active, .osd .button.flat:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .button.suggested-action:active, .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .button.suggested-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.suggested-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .button.destructive-action:active, .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .button.destructive-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.destructive-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - .button.image-button, .header-bar .button.titlebutton, - .titlebar .button.titlebutton { - padding: 7px; } - .header-bar .button.image-button, .header-bar .button.titlebutton { - padding: 7px 10px; } - .button.text-button { - padding-left: 16px; - padding-right: 16px; } - .button.text-button.image-button, .header-bar .button.text-button.titlebutton, - .titlebar .button.text-button.titlebutton { - padding: 5px 8px; } - .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, - .titlebar .button.text-button.titlebutton GtkLabel:first-child { - padding-left: 8px; } - .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, - .titlebar .button.text-button.titlebutton GtkLabel:last-child { - padding-right: 8px; } - .stack-switcher > .button { - outline-offset: -3px; } - .stack-switcher > .button > GtkLabel { - 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 { - padding: 5px 10px; } - .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, - .titlebar .stack-switcher > .button.titlebutton { - padding: 2px 4px; } - .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; } - .stack-switcher > .button.needs-attention > .label, - .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 4px; } - .stack-switcher > .button.needs-attention > .label:dir(rtl), - .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { - background-position: left 3px, left 4px; } - .inline-toolbar .button, .inline-toolbar .button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar GtkToolButton > .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .inline-toolbar GtkToolButton > .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { - color: inherit; } - .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { - color: inherit; } - -.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, -.linked > .button:hover, -.linked > .button:active, -.linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4), inset -1px 0 rgba(101, 123, 131, 0.4); } - .inline-toolbar GtkToolButton > .button.flat:active, .osd .button:active, .inline-toolbar .button:active, .linked > .button:active, GtkComboBox.combobox-entry .entry:active, GtkComboBox.combobox-entry .button:active, .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, .linked > GtkComboBox > .button:active:dir(ltr), .inline-toolbar GtkToolButton > .button.flat:checked, .osd .button:checked, .inline-toolbar .button:checked, .linked > .button:checked, GtkComboBox.combobox-entry .entry:checked, GtkComboBox.combobox-entry .button:checked, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked, .linked > GtkComboBox > .button:checked:dir(ltr) { - box-shadow: none; } - .inline-toolbar.toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .inline-toolbar .button:dir(rtl):backdrop, .linked > .button:dir(rtl), - .linked > .button:dir(rtl):hover, - .linked > .button:dir(rtl):active, - .linked > .button:dir(rtl):checked, GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), .primary-toolbar .linked.path-bar > .button:dir(rtl), .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { - border-radius: 0; } - -.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, .primary-toolbar .linked.path-bar > .button:first-child, .header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.4); } - .osd .button:first-child:active, .inline-toolbar .button:first-child:active, .linked > .button:first-child:active, .inline-toolbar GtkToolButton:first-child > .button.flat:active, GtkComboBox.combobox-entry .entry:first-child:active, GtkComboBox.combobox-entry .button:first-child:active, .linked > GtkComboBox:first-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, .osd .button:first-child:checked, .inline-toolbar .button:first-child:checked, .linked > .button:first-child:checked, .inline-toolbar GtkToolButton:first-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:first-child:checked, GtkComboBox.combobox-entry .button:first-child:checked, .linked > GtkComboBox:first-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - -.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, .primary-toolbar .linked.path-bar > .button:last-child, .header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4); } - .osd .button:last-child:active, .inline-toolbar .button:last-child:active, .linked > .button:last-child:active, .inline-toolbar GtkToolButton:last-child > .button.flat:active, GtkComboBox.combobox-entry .entry:last-child:active, GtkComboBox.combobox-entry .button:last-child:active, .linked > GtkComboBox:last-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, .osd .button:last-child:checked, .inline-toolbar .button:last-child:checked, .linked > .button:last-child:checked, .inline-toolbar GtkToolButton:last-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:last-child:checked, GtkComboBox.combobox-entry .button:last-child:checked, .linked > GtkComboBox:last-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { - border-bottom-left-radius: 0; } - -.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, .primary-toolbar .linked.path-bar > .button:only-child, .header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - .osd .button:only-child:active, .inline-toolbar .button:only-child:active, .linked > .button:only-child:active, .inline-toolbar GtkToolButton:only-child > .button.flat:active, GtkComboBox.combobox-entry .entry:only-child:active, GtkComboBox.combobox-entry .button:only-child:active, .linked > GtkComboBox:only-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, .osd .button:only-child:checked, .inline-toolbar .button:only-child:checked, .linked > .button:only-child:checked, .inline-toolbar GtkToolButton:only-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:only-child:checked, GtkComboBox.combobox-entry .button:only-child:checked, .linked > GtkComboBox:only-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, -.linked.vertical > .button:hover, -.linked.vertical > .button:active, -.linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, -.linked.vertical > GtkComboBox > .button { - border-style: solid; - border-bottom-style: none; - border-top-style: none; - border-radius: 0; } - .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, - .linked.vertical > GtkComboBox > .button:hover { - box-shadow: inset 0 -1px rgba(101, 123, 131, 0.4), inset 0 1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:active, .linked.vertical > .button:active, .linked.vertical > GtkComboBoxText > .button:active, - .linked.vertical > GtkComboBox > .button:active, .linked.vertical > .entry:checked, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button:checked, - .linked.vertical > GtkComboBox > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, -.linked.vertical > GtkComboBox:first-child > .button { - border-radius: 3px 3px 0 0; - border-top-style: solid; } - .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, - .linked.vertical > GtkComboBox:first-child > .button:hover { - box-shadow: inset 0 -1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:first-child:active, .linked.vertical > .button:first-child:active, .linked.vertical > GtkComboBoxText:first-child > .button:active, - .linked.vertical > GtkComboBox:first-child > .button:active, .linked.vertical > .entry:first-child:checked, .linked.vertical > .button:first-child:checked, .linked.vertical > GtkComboBoxText:first-child > .button:checked, - .linked.vertical > GtkComboBox:first-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, -.linked.vertical > GtkComboBox:last-child > .button { - border-radius: 0 0 3px 3px; - border-bottom-style: solid; } - .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, - .linked.vertical > GtkComboBox:last-child > .button:hover { - box-shadow: inset 0 1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:last-child:active, .linked.vertical > .button:last-child:active, .linked.vertical > GtkComboBoxText:last-child > .button:active, - .linked.vertical > GtkComboBox:last-child > .button:active, .linked.vertical > .entry:last-child:checked, .linked.vertical > .button:last-child:checked, .linked.vertical > GtkComboBoxText:last-child > .button:checked, - .linked.vertical > GtkComboBox:last-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, -.linked.vertical > GtkComboBox:only-child > .button { - border-radius: 3px; - border-style: solid; } - .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, - .linked.vertical > GtkComboBox:only-child > .button:hover { - box-shadow: none; } - .linked.vertical > .entry:only-child:active, .linked.vertical > .button:only-child:active, .linked.vertical > GtkComboBoxText:only-child > .button:active, - .linked.vertical > GtkComboBox:only-child > .button:active, .linked.vertical > .entry:only-child:checked, .linked.vertical > .button:only-child:checked, .linked.vertical > GtkComboBoxText:only-child > .button:checked, - .linked.vertical > GtkComboBox:only-child > .button:checked { - box-shadow: none; } - -.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, -.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, -.app-notification.frame .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -/* menu buttons */ -.menuitem.button.flat { - transition: none; - outline-offset: -1px; - border-radius: 2px; } - .menuitem.button.flat:hover { - background-color: #edeff0; } - .menuitem.button.flat:checked { - color: #5c616c; } - -*:link, .button:link, .button:visited { - color: #1e6ea7; } - *:link:visited, .button:visited { - color: #16527c; } - *:selected *:link:visited, *:selected .button:visited:link, *:selected .button:visited { - color: #a7cbdc; } - *:link:hover, .button:hover:link, .button:hover:visited { - color: #268bd2; } - *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { - color: #e8ebe1; } - *:link:active, .button:active:link, .button:active:visited { - color: #1e6ea7; } - *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { - color: #d2e1e0; } - *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { - color: #d2e1e0; } - -.spinbutton { - border-radius: 3px; } - .spinbutton .button { - background-image: none; - border: 1px solid rgba(220, 223, 227, 0.6); - border-style: none none none solid; - color: #646872; - border-radius: 0; - box-shadow: none; } - .spinbutton .button:dir(rtl) { - border-style: none solid none none; } - .spinbutton .button:first-child { - color: red; } - .spinbutton .button:insensitive { - color: rgba(92, 97, 108, 0.55); } - .spinbutton .button:active { - background-color: #268bd2; - color: #fdf6e3; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - border-radius: 2px 2px 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:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; } - GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: #268bd2; - border-radius: 0; - box-shadow: none; } - -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; } - GtkComboBox > .the-button-in-the-combobox { - padding-top: 3px; - padding-bottom: 3px; } - GtkComboBox:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { - -GtkWidget-wide-separators: true; } - GtkComboBox.combobox-entry .entry:dir(ltr) { - border-right-style: none; } - GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: 1px 0 #268bd2; } - GtkComboBox.combobox-entry .entry:dir(rtl) { - border-left-style: none; } - GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: -1px 0 #268bd2; } - GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 #657b83; } - GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.55); } - GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 #657b83; } - GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.55); } - -.toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #F5F6F7; } - .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.9); } - -.primary-toolbar { - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #002b36, #000f12) 1 0 1 0; } - -.inline-toolbar { - background-color: #edeef0; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -.search-bar { - background-color: #F5F6F7; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 0 1px; - padding: 3px; } - -.action-bar { - background-color: #edeef0; } - -.header-bar { - padding: 5px 5px 4px 5px; - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: #001b22; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; } - .csd .header-bar { - background-color: #002b36; - border-color: #001b22; } - .header-bar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .header-bar .title { - padding-left: 12px; - padding-right: 12px; } - .header-bar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .header-bar.selection-mode, .header-bar.titlebar.selection-mode { - color: #fdf6e3; - background-color: #268bd2; - border-color: #2380c1; - box-shadow: none; } - .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { - background-color: #268bd2; - color: rgba(253, 246, 227, 0.6); } - .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.05); - border-color: rgba(253, 246, 227, 0.5); } - .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.15); - border-color: rgba(253, 246, 227, 0.15); } - .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { - background-color: #268bd2; } - .tiled .header-bar, .tiled .header-bar:backdrop, - .maximized .header-bar, .maximized .header-bar:backdrop { - border-radius: 0; } - .maximized .header-bar { - background-color: #002b36; - border-color: #001b22; } - .header-bar.default-decoration, - .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, - .csd .header-bar.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: #002b36; - border-bottom-width: 0; } - .maximized .header-bar.default-decoration, .maximized - .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized - .csd .header-bar.default-decoration:backdrop { - background-color: #002b36; } - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: 3px 3px 0 0; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: inset 0 1px #003745; } - .csd .titlebar { - background-color: #002b36; } - .titlebar:backdrop { - color: rgba(89, 128, 143, 0.5); - background-color: #00313e; } - .csd .titlebar:backdrop { - background-color: #00313e; } - .maximized .titlebar { - background-color: #002b36; } - .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { - background-color: #00313e; } - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { - background-color: transparent; } - -.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, -.header-bar > GtkBox > .separator.vertical, GtkPlacesSidebar.sidebar -.header-bar > GtkBox > .vertical.view.separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(89, 128, 143, 0) 25%, rgba(89, 128, 143, 0.15) 25%, rgba(89, 128, 143, 0.15) 75%, rgba(89, 128, 143, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, - .header-bar > GtkBox > .separator.vertical:backdrop, GtkPlacesSidebar.sidebar - .header-bar > GtkBox > .vertical.view.separator:backdrop { - opacity: 0.6; } - -.primary-toolbar .entry, .header-bar .entry { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { - color: inherit; } - .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { - opacity: 0.85; } - .primary-toolbar .entry:focus, .header-bar .entry:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - background-clip: padding-box; } - .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { - color: #fdf6e3; } - .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar .entry.warning, .header-bar .entry.warning { - color: white; - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, #7a3e23); } - .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); } - .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar .entry.error, .header-bar .entry.error { - color: white; - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, #842f32); } - .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); } - .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar .button, .header-bar .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - outline-offset: -3px; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:backdrop, .header-bar .button:backdrop { - opacity: 0.7; } - .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { - color: inherit; } - .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.primary-toolbar .linked > .button, .header-bar .linked > .button { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { - box-shadow: none; } - -.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - background-color: rgba(0, 193, 243, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .primary-toolbar .linked.stack-switcher > .button:insensitive, .header-bar .linked.stack-switcher > .button:insensitive, .primary-toolbar .linked.path-bar > .button:insensitive, .header-bar .linked.path-bar > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4), inset -1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked { - box-shadow: none; } - -.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, .primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, .primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { - color: #fdf6e3; } - .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { - background-color: rgba(253, 246, 227, 0.1); - border-color: transparent; } - .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { - color: rgba(253, 246, 227, 0.4); } - -.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(89, 128, 143, 0.8); } - .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { - background-color: rgba(89, 128, 143, 0.05); - border-color: transparent; } - .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(89, 128, 143, 0.5); } - .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { - background-color: rgba(0, 0, 0, 0.1); } - -.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(89, 128, 143, 0.2); } - -.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { - color: inherit; } - .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr), .header-bar GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 transparent; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl), .header-bar GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 transparent; } - -.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { - opacity: 0.75; } - -.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4)); } - .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3)); } - -.primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, #005469); - border-color: rgba(0, 0, 0, 0.7); } - .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { - background-image: linear-gradient(to bottom, #006883); - border-color: rgba(0, 0, 0, 0.7); } - .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #00475a); - border-color: rgba(0, 0, 0, 0.7); } - -.path-bar .button { - padding: 5px 10px; } - .path-bar .button:first-child { - padding-left: 10px; } - .path-bar .button:last-child { - padding-right: 10px; } - .path-bar .button:only-child { - padding-left: 14px; - padding-right: 14px; } - .path-bar .button GtkLabel:last-child { - padding-left: 4px; } - .path-bar .button GtkLabel:first-child { - padding-right: 4px; } - .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { - padding-right: 0; - padding-left: 0; } - .path-bar .button GtkImage { - padding-top: 2px; - padding-bottom: 1px; } - -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: rgba(92, 97, 108, 0.15); - border-top-color: rgba(0, 0, 0, 0.1); } - GtkTreeView.view:selected { - border-radius: 0; - border-left-color: #92c1db; - border-top-color: rgba(92, 97, 108, 0.1); } - GtkTreeView.view:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkTreeView.view:insensitive:selected { - color: #7cb6d9; } - GtkTreeView.view.dnd { - border-style: solid none; - border-width: 1px; - border-color: #41769f; } - GtkTreeView.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #adaca8; } - GtkTreeView.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - GtkTreeView.view.expander:hover { - color: #5c616c; } - GtkTreeView.view.expander:selected { - color: #bdd6de; } - GtkTreeView.view.expander:selected:hover { - color: #fdf6e3; } - GtkTreeView.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - GtkTreeView.view.progressbar, GtkTreeView.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-image: linear-gradient(to bottom, #268bd2); } - GtkTreeView.view.progressbar:selected, GtkTreeView.view.progressbar:selected:focus, GtkTreeView.view.progressbar:focus:selected, GtkTreeView.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-image: linear-gradient(to bottom, #fdf6e3); } - GtkTreeView.view.trough { - color: #5c616c; - background-image: linear-gradient(to bottom, #657b83); - border-radius: 3px; - border-width: 0; } - GtkTreeView.view.trough:selected, GtkTreeView.view.trough:selected:focus { - color: #fdf6e3; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); - border-radius: 3px; - border-width: 0; } - -column-header .button { - color: #7c7f84; - background-color: #fdf6e3; } - column-header .button:hover { - color: #268bd2; - box-shadow: none; - transition: none; } - column-header .button:active { - color: #5c616c; - transition: none; } - -column-header:last-child .button, column-header:last-child.button { - border-right-style: none; - border-image: none; } - -column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { - transition: none; - color: #268bd2; - box-shadow: inset 1px 1px 0 1px #268bd2, inset -1px 0 0 1px #268bd2, inset 1px 1px #fdf6e3, inset -1px 0 #fdf6e3; } - -column-header .button, column-header .button:hover, column-header .button:active { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; } - column-header .button:active, column-header .button:hover { - background-color: #fdf6e3; } - column-header .button:active:hover { - color: #5c616c; } - column-header .button:insensitive { - border-color: #F5F6F7; - background-image: none; } - -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #002b36; - color: rgba(89, 128, 143, 0.8); } - .menubar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .menubar > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - .menubar > .menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - .menubar > .menuitem:insensitive { - color: rgba(89, 128, 143, 0.2); - border-color: transparent; } - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; } - .csd .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - .menu .menuitem { - padding: 5px; } - .menu .menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - .menu .menuitem:insensitive { - color: rgba(92, 97, 108, 0.55); } - .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator { - color: rgba(253, 246, 227, 0); } - .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 #ede7d7; } - .menu.button.bottom { - border-top: 1px solid #ede7d7; } - .menu.button:hover { - background-color: #ede7d7; } - .menu.button:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent; } - -.csd .popup { - border-radius: 2px; } - -.menuitem .accelerator { - color: alpha(currentColor,0.55); } - -.popover { - padding: 2px; - border: 1px solid #cdd2d7; - border-radius: 3px; - background-clip: border-box; - background-color: #fdf6e3; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } - .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { - color: rgba(253, 246, 227, 0); } - .popover > .list, - .popover > .view, - .popover > .toolbar, - .popover > .inline-toolbar, - .popover.osd > .toolbar, - .popover.osd > .inline-toolbar { - border-style: none; - background-color: transparent; } - -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - .entry.cursor-handle.top, - .cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - .entry.cursor-handle.bottom, - .cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -.notebook { - padding: 0; - background-color: #fdf6e3; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -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.frame { - border: 1px solid #dcdfe3; } - .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.header { - background-color: #F5F6F7; } - .notebook.header.frame { - border: 0px solid #dcdfe3; } - .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.top { - box-shadow: inset 0 -1px #dcdfe3; } - .notebook.header.bottom { - box-shadow: inset 0 1px #dcdfe3; } - .notebook.header.right { - box-shadow: inset 1px 0 #dcdfe3; } - .notebook.header.left { - box-shadow: inset -1px 0 #dcdfe3; } - .notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - outline-offset: 0; } - .notebook tab.top, .notebook tab.bottom { - padding: 4px 15px; } - .notebook tab.left, .notebook tab.right { - padding: 4px 15px; } - .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { - padding-left: 12px; - padding-right: 12px; } - .notebook tab.reorderable-page.top, .notebook tab.top { - padding-top: 6px; - border-radius: 3.5px 2px 0 0; - border-width: 0; - border-top-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #fdf6e3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom, .notebook tab.bottom { - padding-bottom: 6px; - border-radius: 0 0 2px 3.5px; - border-width: 0; - border-bottom-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 -1px #fdf6e3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right, .notebook tab.right { - padding-right: 17px; - border-radius: 0 3.5px 3.5px 0; - border-width: 0; - border-right-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #fdf6e3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left, .notebook tab.left { - padding-left: 17px; - border-radius: 3.5px 0 0 3.5px; - border-width: 0; - border-left-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #fdf6e3; } - .notebook tab GtkLabel { - padding: 0 2px; - color: rgba(92, 97, 108, 0.55); } - .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(92, 97, 108, 0.775); } - .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { - color: #5c616c; } - .notebook tab .button { - padding: 0; - color: #92959d; } - .notebook tab .button:hover { - color: #ff4d4d; } - .notebook tab .button:active { - color: #268bd2; } - .notebook tab .button > GtkImage { - padding: 2px; } - .notebook.arrow { - color: rgba(92, 97, 108, 0.55); } - .notebook.arrow:hover { - color: rgba(92, 97, 108, 0.775); } - .notebook.arrow:active { - color: #5c616c; } - .notebook.arrow:insensitive { - color: rgba(92, 97, 108, 0.25); } - -.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: 6px; } - .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { - margin: 0; - background-color: #8a8e96; - border: 1px solid rgba(255, 255, 255, 0.6); - 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.99; } - .scrollbar .trough { - background-color: #fdf4de; - border: 1px none #dcdfe3; } - .scrollbar .slider { - background-color: #b8babf; } - .scrollbar .slider:hover { - background-color: #c7c9cd; } - .scrollbar .slider:prelight:active, .scrollbar .slider:active { - background-color: #268bd2; } - .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, #dcdfe3 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #fdf4de; } - .scrollbars-junction:dir(rtl), - .scrollbars-junction.frame:dir(rtl) { - border-image-slice: 0 1 0 0; } - -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 41; - outline-color: transparent; } - GtkSwitch.trough, GtkSwitch.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; } - GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { - background-position: left center; } - -GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough, -.list-row:selected GtkSwitch.trough, -GtkInfoBar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -.header-bar GtkSwitch.trough, -.primary-toolbar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } - -GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active, -.list-row:selected GtkSwitch.trough:active, -GtkInfoBar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -.header-bar GtkSwitch.trough:active, -.primary-toolbar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } - -GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:insensitive, -.list-row:selected GtkSwitch.trough:insensitive, -GtkInfoBar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:insensitive, -.primary-toolbar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } - -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active:insensitive, -.list-row:selected GtkSwitch.trough:active:insensitive, -GtkInfoBar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:active:insensitive, -.primary-toolbar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } - -.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check, -GtkFileChooserDialog .dialog-vbox > .frame .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -.menu .menuitem.check:hover, -GtkTreeView.view.check:selected, -.list-row:selected .check, -GtkInfoBar .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.check:insensitive:hover, -GtkTreeView.view.check:insensitive:selected, -.list-row:selected .check:insensitive, -GtkInfoBar .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -.menu .menuitem.check:inconsistent:hover, -GtkTreeView.view.check:inconsistent:selected, -.list-row:selected .check:inconsistent, -GtkInfoBar .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.check:inconsistent:insensitive:hover, -GtkTreeView.view.check:inconsistent:insensitive:selected, -.list-row:selected .check:inconsistent:insensitive, -GtkInfoBar .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -.menu .menuitem.check:checked:hover, -GtkTreeView.view.check:checked:selected, -.list-row:selected .check:checked, -GtkInfoBar .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -.menu .menuitem.check:checked:insensitive:hover, -GtkTreeView.view.check:checked:insensitive:selected, -.list-row:selected .check:checked:insensitive, -GtkInfoBar .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio, -GtkFileChooserDialog .dialog-vbox > .frame .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -.menu .menuitem.radio:hover, -GtkTreeView.view.radio:selected, -.list-row:selected .radio, -GtkInfoBar .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:insensitive:hover, -GtkTreeView.view.radio:insensitive:selected, -.list-row:selected .radio:insensitive, -GtkInfoBar .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:hover, -GtkTreeView.view.radio:inconsistent:selected, -.list-row:selected .radio:inconsistent, -GtkInfoBar .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:insensitive:hover, -GtkTreeView.view.radio:inconsistent:insensitive:selected, -.list-row:selected .radio:inconsistent:insensitive, -GtkInfoBar .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -.menu .menuitem.radio:checked:hover, -GtkTreeView.view.radio:checked:selected, -.list-row:selected .radio:checked, -GtkInfoBar .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:checked:insensitive:hover, -GtkTreeView.view.radio:checked:insensitive:selected, -.list-row:selected .radio:checked:insensitive, -GtkInfoBar .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -GtkIconView.view.check, -GtkFlowBox.view.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); - background-color: transparent; } - -GtkIconView.view.check:checked, -GtkFlowBox.view.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-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: rgba(92, 97, 108, 0.55); } - -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; } - .scale.trough { - margin: 5px; } - .scale.fine-tune.trough { - border-radius: 5px; - margin: 3px; } - .scale.slider { - background-clip: border-box; - background-image: linear-gradient(to bottom, #fbfbfc); - border: 1px solid rgba(45, 55, 59, 0.5); - border-radius: 50%; - box-shadow: none; } - .scale.slider:hover { - background-image: linear-gradient(to bottom, white); - border-color: rgba(45, 55, 59, 0.5); } - .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #f9f6ec); - border-color: rgba(45, 55, 59, 0.3); } - .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .osd .scale.slider { - background-image: linear-gradient(to bottom, #073642); - border-color: #268bd2; } - .osd .scale.slider:hover { - background-image: linear-gradient(to bottom, #268bd2); } - .osd .scale.slider:active { - background-image: linear-gradient(to bottom, #1e6ea7); - border-color: #1e6ea7; } - .menu .menuitem:hover .scale.slider, - .list-row:selected .scale.slider, - GtkInfoBar .scale.slider { - background-image: linear-gradient(to bottom, #fdf6e3); - border-color: #fdf6e3; } - .menu .menuitem:hover .scale.slider:hover, - .list-row:selected .scale.slider:hover, - GtkInfoBar .scale.slider:hover { - background-image: linear-gradient(to bottom, #dde6e0); - border-color: #dde6e0; } - .menu .menuitem:hover .scale.slider:active, - .list-row:selected .scale.slider:active, - GtkInfoBar .scale.slider:active { - background-image: linear-gradient(to bottom, #92c1db); - border-color: #92c1db; } - .menu .menuitem:hover .scale.slider:insensitive, - .list-row:selected .scale.slider:insensitive, - GtkInfoBar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); - border-color: #9cc6db; } - .scale.trough { - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, #657b83); } - .scale.trough.highlight { - background-image: linear-gradient(to bottom, #268bd2); } - .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, rgba(38, 139, 210, 0.55)); } - .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(101, 123, 131, 0.55)); } - .osd .scale.trough { - background-image: linear-gradient(to bottom, #0a5062); - outline-color: rgba(101, 123, 131, 0.2); } - .osd .scale.trough.highlight { - background-image: none; - background-image: linear-gradient(to bottom, #268bd2); } - .menu .menuitem:hover .scale.trough, - .list-row:selected .scale.trough, - GtkInfoBar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } - .menu .menuitem:hover .scale.trough.highlight, - .list-row:selected .scale.trough.highlight, - GtkInfoBar .scale.trough.highlight { - background-image: linear-gradient(to bottom, #fdf6e3); } - .menu .menuitem:hover .scale.trough.highlight:insensitive, - .list-row:selected .scale.trough.highlight:insensitive, - GtkInfoBar .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); } - .menu .menuitem:hover .scale.trough:insensitive, - .list-row:selected .scale.trough:insensitive, - GtkInfoBar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -GtkProgressBar { - padding: 0; - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - GtkProgressBar.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; } - -.progressbar { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - .progressbar.osd { - background-color: #268bd2; } - .list-row:selected .progressbar, - GtkInfoBar .progressbar { - background-color: #fdf6e3; } - -.osd .scale.progressbar { - background-color: #268bd2; } - -GtkProgressBar.trough, .level-bar.trough { - border: none; - border-radius: 3px; - background-color: #657b83; } - GtkProgressBar.trough.osd, .osd.level-bar.trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, - GtkInfoBar GtkProgressBar.trough, - GtkInfoBar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.2); } - -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; } - GtkLevelBar.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; } - -.level-bar.trough { - padding: 3px; - border-radius: 4px; } - -.level-bar.fill-block { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - .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 { - border-color: #859900; - background-color: #859900; } - .level-bar.fill-block.level-low { - border-color: #cb4b16; - background-color: #cb4b16; } - .level-bar.fill-block.empty-fill-block { - background-color: rgba(92, 97, 108, 0.2); - border-color: rgba(92, 97, 108, 0.2); } - -.frame { - border: 1px solid #dcdfe3; - padding: 0; } - .frame.flat { - border-style: none; } - .frame.action-bar { - padding: 6px; - border-width: 1px 0 0; } - -GtkScrolledWindow GtkViewport.frame { - border-style: none; } - -.separator, GtkPlacesSidebar.sidebar .view.separator { - color: rgba(0, 0, 0, 0.1); } - GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, - GtkFontButton .separator, - GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .view.separator, - GtkFileChooserButton .separator.vertical, - GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFileChooserButton .vertical.view.separator, - GtkFontButton .separator.vertical, - GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .vertical.view.separator { - -GtkWidget-wide-separators: true; } - -.list, .list-row { - background-color: #fdf6e3; - border-color: #dcdfe3; } - -.list-row, -.grid-child { - padding: 2px; } - -.list-row.button { - background-color: transparent; - border-style: none; - border-radius: 0; - box-shadow: none; } - .list-row.button:hover { - background-color: rgba(0, 0, 0, 0.05); } - .list-row.button:active { - color: #5c616c; } - .list-row.button:selected:active { - color: #fdf6e3; } - .list-row.button:selected:hover { - background-color: #227dbd; } - .list-row.button:selected:insensitive { - color: rgba(253, 246, 227, 0.7); - background-color: rgba(38, 139, 210, 0.7); } - .list-row.button:selected:insensitive .label { - color: inherit; } - -.list-row, list-row.button { - transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .list-row:hover, list-row.button:hover { - transition: none; } - -.app-notification, -.app-notification.frame { - padding: 10px; - color: #657b83; - background-color: #073642; - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: #021014; } - .app-notification .button, - .app-notification.frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .app-notification .button.flat, - .app-notification.frame .button.flat { - border-color: rgba(38, 139, 210, 0); } - .app-notification .button:hover, - .app-notification.frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .app-notification .button:active, .app-notification .button:checked, - .app-notification.frame .button:active, - .app-notification.frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification .button:insensitive, - .app-notification.frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - .expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - .expander:hover { - color: #aaaeb7; } - .expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GtkCalendar { - color: #5c616c; - border: 1px solid #dcdfe3; - border-radius: 3px; - padding: 2px; } - GtkCalendar:selected { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 1.5px; } - GtkCalendar.header { - color: #5c616c; - border: none; - border-radius: 0; } - GtkCalendar.button, GtkCalendar.button:focus { - color: rgba(92, 97, 108, 0.45); - border-color: transparent; - background-color: transparent; - background-image: none; } - GtkCalendar.button:hover, GtkCalendar.button:focus:hover { - color: #5c616c; } - GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { - color: rgba(92, 97, 108, 0.55); - background-color: transparent; - background-image: none; } - GtkCalendar.highlight { - color: alpha(currentColor,0.55); } - -.message-dialog .dialog-action-area .button { - padding: 8px; } - -.message-dialog { - -GtkDialog-button-spacing: 0; } - .message-dialog .titlebar { - background-color: #002b36; - border-bottom: 1px solid #000f12; } - .message-dialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - .message-dialog.csd .dialog-action-area .button { - padding: 8px; - border-radius: 0; } - .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 { - border-right-style: none; - border-bottom-style: none; } - .message-dialog.csd .dialog-action-area .button:last-child { - border-bottom-right-radius: 3px; } - .message-dialog.csd .dialog-action-area .button:first-child { - border-left-style: none; - border-bottom-left-radius: 3px; } - -GtkFileChooserDialog .search-bar { - background-color: #F5F6F7; - border-color: #dcdfe3; - box-shadow: none; } - -GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #dcdfe3; } - -.sidebar, .sidebar .view { - border: none; - background-color: #fbfbfc; } - .sidebar:selected, .sidebar .view:selected { - background-color: #268bd2; } - -GtkPlacesSidebar.sidebar .view { - color: #5c616c; - background-color: transparent; } - GtkPlacesSidebar.sidebar .view:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.sidebar-item { - padding: 10px 4px; } - .sidebar-item > GtkLabel { - padding-left: 6px; - padding-right: 6px; } - .sidebar-item.needs-attention > GtkLabel { - background-size: 6px 6px, 0 0; } - -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: #dcdfe3; } - -GtkPaned.wide { - -GtkPaned-handle-size: 5; - margin: 0; } - GtkPaned.wide .pane-separator { - background-color: transparent; - border-style: none solid; - border-color: #dcdfe3; - border-width: 1px; } - GtkPaned.wide.vertical .pane-separator { - border-style: solid none; } - -GtkInfoBar { - border-style: none; } - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: #268bd2; - color: #fdf6e3; } - -.list-row:selected .button, GtkInfoBar .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - .list-row:selected .flat.button, GtkInfoBar .flat.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .list-row:selected .button:hover, GtkInfoBar .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.2); } - .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.2); } - -.tooltip { - color: #657b83; - border-radius: 2px; } - .tooltip.background { - background-color: #0c5c70; - background-clip: padding-box; } - .tooltip.window-frame.csd { - background-color: transparent; } - -.tooltip * { - padding: 4px; - background-color: transparent; - color: inherit; } - -:selected GtkColorSwatch { - box-shadow: none; } - :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { - border-color: #fdf6e3; } - -GtkColorSwatch.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -GtkColorSwatch.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { - border-radius: 3px; } - -GtkColorSwatch:hover, GtkColorSwatch:hover:selected { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } - -GtkColorEditor GtkColorSwatch { - border-radius: 3px; } - GtkColorEditor GtkColorSwatch:hover { - background-image: none; } - -GtkColorSwatch.color-dark { - color: white; - outline-color: rgba(0, 0, 0, 0.3); } - -GtkColorSwatch.color-light { - color: black; - outline-color: rgba(255, 255, 255, 0.5); } - -GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { - border: 1px solid rgba(0, 0, 0, 0.15); } - GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { - border-color: rgba(0, 0, 0, 0.25); } - -GtkColorSwatch#add-color-button { - border-style: solid; - border-width: 1px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - GtkColorSwatch#add-color-button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - GtkColorSwatch#add-color-button .overlay { - border-color: transparent; - background-color: transparent; - background-image: none; } - -GtkColorButton.button { - padding: 5px; } - GtkColorButton.button GtkColorSwatch { - border-radius: 0; } - -.scale-popup .button { - padding: 6px; } - .scale-popup .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - -GtkVolumeButton.button { - padding: 8px; } - -.touch-selection, -.context-menu { - font: initial; } - -.monospace { - font: Monospace; } - -.overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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; } - -.window-frame { - border-radius: 3px 3px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px #000f12, 0 8px 8px 0 rgba(0, 0, 0, 0.2); - margin: 10px; } - .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } - .window-frame.tiled { - border-radius: 0; } - .window-frame.popup { - box-shadow: none; - border-radius: 0; } - .window-frame.ssd { - border-radius: 3px 3px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } - .window-frame.ssd.maximized { - border-radius: 0; } - .window-frame.csd.popup { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.message-dialog { - border-radius: 3px; } - .window-frame.solid-csd { - border-radius: 0; - margin: 1px; - background-color: #002b36; - box-shadow: none; } - -.header-bar.default-decoration .button.titlebutton, -.titlebar.default-decoration .button.titlebutton { - padding-top: 0px; - padding-bottom: 0px; } - -.header-bar .button.titlebutton, -.titlebar .button.titlebutton { - padding-left: 4px; - padding-right: 4px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(0, 43, 54, 0); } - .header-bar .button.titlebutton:not(GtkMenuButton), - .titlebar .button.titlebutton:not(GtkMenuButton) { - padding-top: 8px; - padding-bottom: 8px; } - .header-bar .button.titlebutton:hover, - .titlebar .button.titlebutton:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, - .titlebar .button.titlebutton:active, - .titlebar .button.titlebutton:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.close, - .titlebar .button.titlebutton.maximize, - .titlebar .button.titlebutton.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; } - .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - opacity: 1; } - .header-bar .button.titlebutton.close, - .titlebar .button.titlebutton.close { - background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } - .header-bar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.close:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.close:hover, - .titlebar .button.titlebutton.close:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } - .header-bar .button.titlebutton.close:active, - .titlebar .button.titlebutton.close:active { - background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } - .header-bar .button.titlebutton.maximize, - .titlebar .button.titlebutton.maximize { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-dark.png"), url("assets/titlebutton-maximize-dark@2.png")); } - .header-bar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.maximize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop-dark.png"), url("assets/titlebutton-maximize-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.maximize:hover, - .titlebar .button.titlebutton.maximize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover-dark.png"), url("assets/titlebutton-maximize-hover-dark@2.png")); } - .header-bar .button.titlebutton.maximize:active, - .titlebar .button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active-dark.png"), url("assets/titlebutton-maximize-active-dark@2.png")); } - .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.minimize { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-dark.png"), url("assets/titlebutton-minimize-dark@2.png")); } - .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop-dark.png"), url("assets/titlebutton-minimize-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.minimize:hover, - .titlebar .button.titlebutton.minimize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover-dark.png"), url("assets/titlebutton-minimize-hover-dark@2.png")); } - .header-bar .button.titlebutton.minimize:active, - .titlebar .button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active-dark.png"), url("assets/titlebutton-minimize-active-dark@2.png")); } - -.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.button.flat:selected, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, -GtkEntry.gb-command-bar-entry.entry.flat:focus:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); } - -GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, -ScratchMainWindow .notebook tab.reorderable-page.top:active, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, -ScratchMainWindow .notebook tab.top:active, -ScratchMainWindow .notebook tab.top.active-page, -ScratchMainWindow .notebook tab.top.active-page:hover, -EphyNotebook.notebook tab.reorderable-page.top:active, -EphyNotebook.notebook tab.reorderable-page.top.active-page, -EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, -EphyNotebook.notebook tab.top:active, -EphyNotebook.notebook tab.top.active-page, -EphyNotebook.notebook tab.top.active-page:hover, -MidoriNotebook .notebook tab.reorderable-page.top:active, -MidoriNotebook .notebook tab.reorderable-page.top.active-page, -MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, -MidoriNotebook .notebook tab.top:active, -MidoriNotebook .notebook tab.top.active-page, -MidoriNotebook .notebook tab.top.active-page:hover, -TerminalWindow .notebook tab.reorderable-page.top:active, -TerminalWindow .notebook tab.reorderable-page.top.active-page, -TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -TerminalWindow .notebook tab.top:active, -TerminalWindow .notebook tab.top.active-page, -TerminalWindow .notebook tab.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - -TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.top { - padding-top: 7px; - border-top-width: 3px; } - -TerminalWindow .notebook.header.top, -PantheonTerminalPantheonTerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #001b22, inset 0 -1px #dcdfe3; } - -GtkHTML { - background-color: #fdf6e3; - color: #5c616c; } - GtkHTML:active { - color: #fdf6e3; - background-color: #268bd2; } - -SushiFontWidget { - padding: 6px 12px; } - -TerminalWindow .background { - background-color: transparent; } - -TerminalWindow .scrollbar.vertical .slider { - margin-left: 3px; } - -TerminalWindow .scrollbar.trough { - border-width: 0; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { - color: #5c616c; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { - color: #fdf6e3; } - -.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, GtkPlacesSidebar.sidebar .nautilus-canvas-item.label.view.separator, .header-bar .nautilus-canvas-item.subtitle, -.nautilus-list-dim-label { - color: #a9acb2; } - .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, - .nautilus-list-dim-label:selected, - .nautilus-list-dim-label:selected:focus { - color: #d2e1e0; } - -NautilusNotebook.notebook { - background-color: #fdf6e3; } - NautilusNotebook.notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; } - -NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { - padding: 5px; - box-shadow: none; - background-color: #fdf6e3; } - -.nautilus-circular-button { - border-radius: 50%; - outline-radius: 50%; } - -.disk-space-display { - border-style: solid; - border-width: 1px; } - .disk-space-display.unknown { - background-color: rgba(92, 97, 108, 0.5); - border-color: rgba(69, 72, 80, 0.5); } - .disk-space-display.used { - background-color: rgba(38, 139, 210, 0.8); - border-color: rgba(30, 110, 167, 0.8); } - .disk-space-display.free { - background-color: #edeef0; - border-color: #d0d5da; } - -NemoWindow EelEditableLabel.entry { - transition: none; } - -NemoWindow .sidebar .frame { - border-width: 0; } - -NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #dcdfe3; } - -NemoWindow .primary-toolbar NemoPathBar.linked > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - background-color: rgba(0, 193, 243, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4), inset -1px 0 rgba(0, 0, 0, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.gedit-headerbar-paned { - color: #001b22; } - -.open-document-selector-treeview.view { - padding: 3px 6px 3px 6px; - border-color: #fdf6e3; } - .open-document-selector-treeview.view:prelight { - background-color: #f2ecdb; } - .open-document-selector-treeview.view:prelight:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.open-document-selector-name-label { - color: #5c616c; } - -.open-document-selector-path-label { - color: #adaca8; - font-size: smaller; } - .open-document-selector-path-label:selected { - color: rgba(253, 246, 227, 0.9); } - -.gedit-document-panel .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; } - .gedit-document-panel .list-row .button GtkImage { - color: inherit; } - -.gedit-document-panel .prelight-row .button { - color: #92959d; } - -.gedit-document-panel .list-row .button:hover, -.gedit-document-panel .prelight-row .button:hover { - color: #ff4d4d; } - -.gedit-document-panel .prelight-row:selected .button:hover { - color: #ff6666; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; } - .gedit-document-panel .prelight-row:selected .button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel .prelight-row .button:active { - color: #5c616c; } - -.gedit-document-panel-dragged-row { - border: 1px solid #dcdfe3; - background-color: #d9dde0; - color: #5c616c; } - -GeditStatusbar { - border-top: 1px solid #dcdfe3; - background-color: #F5F6F7; } - -GeditStatusMenuButton.button.flat, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton:checked.button.flat { - border-bottom-style: none; - border-radius: 0; } - -GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #dcdfe3; } - -.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { - color: rgba(92, 97, 108, 0.6); - margin: 2px; - padding: 2px; } - -GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { - background-color: #fbfbfc; - padding: 6px; - border-color: #dcdfe3; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image:hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image:hover { - color: inherit; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):insensitive, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { - box-shadow: -1px 0 #268bd2; } - -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; } - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - box-shadow: 1px 0 #268bd2; } - -GbEditorFrame .gb-search-slider { - padding: 2px; } - -GdTaggedEntry { - color: #5c616c; } - -.preferences.sidebar GtkViewport { - border: none; } - -.preferences.sidebar GtkListBox { - background-color: #F5F6F7; } - -.preferences.sidebar GtkListBoxRow { - padding: 10px; } - -GbPreferencesPageLanguage GtkSearchEntry { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - -GbPreferencesPageLanguage GtkScrolledWindow { - border-top-width: 0; } - -GtkBox.gb-command-bar-box { - border: none; - background-color: #073642; } - GtkBox.gb-command-bar-box GtkLabel { - color: #657b83; } - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: #657b83; - background-image: none; - background-color: #073642; - padding: 6px 6px 6px 6px; - border: none; } - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; } - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; } - -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; } - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbViewStack.focused GtkBox.header.notebook { - background-color: #fdf6e3; } - GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { - opacity: 1; } - -EphyWindow .floating-bar { - color: #5c616c; } - -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon { - background-color: rgba(92, 97, 108, 0.3); - border-radius: 2px; } - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: #78b9e6; } - -.documents-entry-tag { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover { - color: #fdf6e3; - background-color: #3295da; } - .documents-entry-tag:active { - color: #fdf6e3; - background-color: #2380c1; } - .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; } - .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { - color: rgba(253, 246, 227, 0.7); } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -TotemGrilo.vertical GdMainView.frame { - border-width: 0; } - -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { - background-color: #268bd2; } - -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; } - -.gnome-panel-menu-bar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: #657b83; - background-image: linear-gradient(to bottom, #05242c); } - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: #657b83; } - -PanelApplet .button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); - border-color: rgba(0, 0, 0, 0.17); } - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: rgba(0, 0, 0, 0.25); - border-radius: 0; - border-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -PanelApplet:hover { - color: white; } - -PanelApplet:active, -PanelApplet:hover:active { - color: #268bd2; } - -WnckPager { - color: #333e42; } - WnckPager:selected { - color: #268bd2; } - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; } - -ClockBox { - color: #657b83; } - -.xfce4-panel.panel { - background-color: #05242c; - text-shadow: none; - icon-shadow: none; } - .xfce4-panel.panel .button.flat { - color: #657b83; - background-color: rgba(5, 36, 44, 0); - border-radius: 0; - border: none; } - .xfce4-panel.panel .button.flat:hover { - border: none; - background-color: #0a4a5a; } - .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - -.floating-bar { - background-color: #268bd2; - color: #fdf6e3; } - .floating-bar.top { - border-radius: 0 0 2px 2px; } - .floating-bar.right { - border-radius: 2px 0 0 2px; } - .floating-bar.bottom { - border-radius: 2px 2px 0 0; } - .floating-bar.left { - border-radius: 0 2px 2px 0; } - .floating-bar .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - background-color: transparent; - box-shadow: none; - border: none; } - -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; } - -MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { - color: #fdf6e3; - background-color: #268bd2; - outline-color: transparent; } - -MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { - background-color: transparent; } - -MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { - outline-color: transparent; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - .marlin-pathbar.pathbar:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; - border: solid transparent; - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { - padding: 0 3px; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { - background-color: rgba(0, 0, 0, 0.04); - border: solid rgba(0, 0, 0, 0.08); - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { - color: rgba(92, 97, 108, 0.55); } - -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; } - -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: #5c616c; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration.top { - border: 1px solid #000f12; - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #002b36); - color: rgba(89, 128, 143, 0.8); - box-shadow: inset 0 1px #003745; } - UnityDecoration.top:backdrop { - border-bottom-width: 0; - color: rgba(89, 128, 143, 0.5); } - UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, #000f12); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: #004b5f; - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; } - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar GtkLabel { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #dcdfe3; - border-right: 1px solid #dcdfe3; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #dcdfe3; } - .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { - padding: 0 3px 0 3px; } - -.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #dcdfe3; - background-color: #F5F6F7; } - .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view { - background-color: #F5F6F7; - color: #5c616c; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:prelight { - background-color: white; } - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: #F5F6F7; - background-image: none; } - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #5c616c; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GraniteWidgetsWelcome { - background-color: #fdf6e3; } - -GraniteWidgetsWelcome GtkLabel { - color: #a9acb2; - font: open sans 11; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(92, 97, 108, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #fdf6e3); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry.entry { - padding: 4px; } - -.h1 { - font: open sans 24px; } - -.h2 { - font: open sans light 18px; } - -.h3 { - font: open sans 11px; } - -.h4, -.category-label { - color: #8a8e96; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: #05242c; - color: #657b83; - font: bold; - box-shadow: inset 0 -1px #010a0c; } - #panel_window .menubar { - padding-left: 5px; } - #panel_window .menubar, #panel_window .menubar > .menuitem { - background-color: transparent; - color: #657b83; - font: bold; } - #panel_window .menubar .menuitem:insensitive { - color: rgba(101, 123, 131, 0.5); } - #panel_window .menubar .menuitem:insensitive GtkLabel { - color: inherit; } - #panel_window .menubar .menu .menuitem { - font: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: #5c616c; } - -#content_frame { - padding-bottom: 14px; - background-color: #F5F6F7; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - #content_frame .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - #content_frame .button:active, #content_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - #content_frame .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - #content_frame .button:insensitive > GtkLabel { - color: inherit; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: #073642; - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px #073642; } - -#buttonbox_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - #buttonbox_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - #buttonbox_frame .button:active, #buttonbox_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - #buttonbox_frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -#login_window #user_combobox { - color: #5c616c; - font: 13px; } - #login_window #user_combobox .menu { - font: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font: bold; } - -.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { - color: #001b22; } - -NemoWindow GtkEventBox { - background-color: #F5F6F7; } - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; } - -GtkFileChooserDialog.csd.background, -GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, -NautilusWindow.csd.background, -NautilusWindow .source-list, -NautilusWindow .source-list.view, -NautilusWindow .source-list.view:prelight, -NemoWindow.csd.background, -NemoWindow .source-list, -NemoWindow .source-list.view, -NemoWindow .source-list.view:prelight, -MarlinViewWindow.csd.background, -MarlinViewWindow .source-list, -MarlinViewWindow .source-list.view, -MarlinViewWindow .source-list.view:prelight { - background-color: transparent; } - -GtkFileChooserDialog .sidebar, GtkFileChooserDialog .source-list.sidebar.view, -NautilusWindow .sidebar, -NautilusWindow .source-list.sidebar.view, -NemoWindow .sidebar, -NemoWindow .source-list.sidebar.view, -MarlinViewWindow .sidebar, -MarlinViewWindow .source-list.sidebar.view { - background-color: #073642; } - GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar row, GtkFileChooserDialog .source-list.sidebar.view .view, GtkFileChooserDialog .source-list.sidebar.view row, - NautilusWindow .sidebar .view, - NautilusWindow .sidebar row, - NautilusWindow .source-list.sidebar.view .view, - NautilusWindow .source-list.sidebar.view row, - NemoWindow .sidebar .view, - NemoWindow .sidebar row, - NemoWindow .source-list.sidebar.view .view, - NemoWindow .source-list.sidebar.view row, - MarlinViewWindow .sidebar .view, - MarlinViewWindow .sidebar row, - MarlinViewWindow .source-list.sidebar.view .view, - MarlinViewWindow .source-list.sidebar.view row { - background-color: transparent; - color: #657b83; } - GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar row.image, GtkFileChooserDialog .source-list.sidebar.view .view.image, GtkFileChooserDialog .source-list.sidebar.view row.image, - NautilusWindow .sidebar .view.image, - NautilusWindow .sidebar row.image, - NautilusWindow .source-list.sidebar.view .view.image, - NautilusWindow .source-list.sidebar.view row.image, - NemoWindow .sidebar .view.image, - NemoWindow .sidebar row.image, - NemoWindow .source-list.sidebar.view .view.image, - NemoWindow .source-list.sidebar.view row.image, - MarlinViewWindow .sidebar .view.image, - MarlinViewWindow .sidebar row.image, - MarlinViewWindow .source-list.sidebar.view .view.image, - MarlinViewWindow .source-list.sidebar.view row.image { - color: rgba(101, 123, 131, 0.7); } - GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar row.cell:selected, GtkFileChooserDialog .source-list.sidebar.view .view.cell:selected, GtkFileChooserDialog .source-list.sidebar.view row.cell:selected, - NautilusWindow .sidebar .view.cell:selected, - NautilusWindow .sidebar row.cell:selected, - NautilusWindow .source-list.sidebar.view .view.cell:selected, - NautilusWindow .source-list.sidebar.view row.cell:selected, - NemoWindow .sidebar .view.cell:selected, - NemoWindow .sidebar row.cell:selected, - NemoWindow .source-list.sidebar.view .view.cell:selected, - NemoWindow .source-list.sidebar.view row.cell:selected, - MarlinViewWindow .sidebar .view.cell:selected, - MarlinViewWindow .sidebar row.cell:selected, - MarlinViewWindow .source-list.sidebar.view .view.cell:selected, - MarlinViewWindow .source-list.sidebar.view row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog .source-list.sidebar.view.frame, - NautilusWindow .sidebar.frame, - NautilusWindow .source-list.sidebar.view.frame, - NemoWindow .sidebar.frame, - NemoWindow .source-list.sidebar.view.frame, - MarlinViewWindow .sidebar.frame, - MarlinViewWindow .source-list.sidebar.view.frame { - color: #657b83; } - GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog .source-list.sidebar.view .separator, - NautilusWindow .sidebar .separator, - NautilusWindow GtkPlacesSidebar.sidebar .view.separator, - NautilusWindow .source-list.sidebar.view .separator, - NemoWindow .sidebar .separator, - NemoWindow GtkPlacesSidebar.sidebar .view.separator, - NemoWindow .source-list.sidebar.view .separator, - MarlinViewWindow .sidebar .separator, - MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, - MarlinViewWindow .source-list.sidebar.view .separator { - color: transparent; } - -GtkFileChooserDialog.maximized .sidebar, -NautilusWindow.maximized .sidebar, -NemoWindow.maximized .sidebar, -MarlinViewWindow.maximized .sidebar { - background-color: #073642; } - -GtkFileChooserDialog .pane-separator, -NautilusWindow .pane-separator, -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { - background-color: #073642; } - -NautilusWindow NautilusWindowSlot { - background-color: #fdf6e3; } - -NautilusDesktopWindow NautilusWindowSlot { - background-color: transparent; } - -GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { - background-color: #073642; } - -GtkFileChooserDialog .sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-action-box { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-vbox > .frame { - color: #657b83; - border-color: transparent; } - -GtkFileChooserDialog .action-bar.frame { - background-color: transparent; - border-color: #05232b; } - -GtkFileChooserDialog .action-bar.frame GtkLabel, GtkFileChooserDialog .action-bar.frame GtkComboBox, -GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, -GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { - color: #657b83; } - -FeedReaderreaderUI.background.csd > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd > .titlebar .pane-separator, -GeditWindow.background.csd.maximized > .titlebar .pane-separator, -GeditWindow.background.csd > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { - background-color: #001b22; } - -FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #002b36; } - FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #00313e; } - -FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #002b36; } - FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #00313e; } - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; } - -GeditWindow.background.csd { - background-color: transparent; } - -GeditWindow.background .gedit-side-panel-paned .pane-separator { - background-color: #073642; } - -GeditWindow.background .gedit-bottom-panel-paned .pane-separator { - background-color: #dcdfe3; } - -.gedit-bottom-panel-paned { - background-color: #fdf6e3; } - -.gedit-document-panel { - background-color: #073642; } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel .list-row { - color: #657b83; } - .gedit-document-panel .list-row { - background-color: rgba(101, 123, 131, 0); - border: solid rgba(101, 123, 131, 0); - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:hover { - border: solid rgba(101, 123, 131, 0.15); - border-width: 3px 2px 3px 2px; - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel .list-row:active { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:active .button { - color: #fdf6e3; } - .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -GeditFileBrowserWidget { - background-color: #073642; } - .maximized GeditFileBrowserWidget { - background-color: #073642; } - GeditFileBrowserWidget .horizontal { - background-color: transparent; - border-color: #041c22; } - GeditFileBrowserWidget .horizontal GtkComboBox { - color: #657b83; } - -GeditWindow.background.csd GeditFileBrowserView.view { - background-color: transparent; - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander { - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { - color: #268bd2; } - -GtkFileChooserDialog .action-bar.frame .button, -GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - GtkFileChooserDialog .action-bar.frame .button:hover, - GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - GtkFileChooserDialog .action-bar.frame .button:active, - GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog .action-bar.frame .button:checked, - GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - GtkFileChooserDialog .action-bar.frame .button:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -GtkFileChooserDialog .action-bar.frame .entry, -GtkFileChooserDialog .dialog-vbox > .frame .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.4)); - background-color: transparent; } - GtkFileChooserDialog .action-bar.frame .image.entry, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog .action-bar.frame .image.entry:hover, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { - color: inherit; } - GtkFileChooserDialog .action-bar.frame .entry:focus, - GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, #268bd2); } - GtkFileChooserDialog .action-bar.frame .entry:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.25)); } - -GtkFileChooserDialog .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -NautilusWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { - background-color: #8da0a7; - border: 1px solid rgba(0, 0, 0, 0.3); } - -GtkFileChooserDialog .sidebar .scrollbar .trough, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .trough, -NautilusWindow .sidebar .scrollbar .trough, -NautilusWindow .source-list.sidebar.view .scrollbar .trough, -NemoWindow .sidebar .scrollbar .trough, -NemoWindow .source-list.sidebar.view .scrollbar .trough, -MarlinViewWindow .sidebar .scrollbar .trough, -MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { - background-color: rgba(0, 0, 0, 0.2); - border: none; } - -GtkFileChooserDialog .sidebar .scrollbar .slider, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider, -NautilusWindow .sidebar .scrollbar .slider, -NautilusWindow .source-list.sidebar.view .scrollbar .slider, -NemoWindow .sidebar .scrollbar .slider, -NemoWindow .source-list.sidebar.view .scrollbar .slider, -MarlinViewWindow .sidebar .scrollbar .slider, -MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { - background-color: rgba(141, 160, 167, 0.7); } - GtkFileChooserDialog .sidebar .scrollbar .slider:hover, - NautilusWindow .sidebar .scrollbar .slider:hover, - NemoWindow .sidebar .scrollbar .slider:hover, - MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { - background-color: #9cacb2; } - GtkFileChooserDialog .sidebar .scrollbar .slider:prelight:active, - NautilusWindow .sidebar .scrollbar .slider:prelight:active, - NemoWindow .sidebar .scrollbar .slider:prelight:active, - MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog .sidebar .scrollbar .slider:insensitive, - NautilusWindow .sidebar .scrollbar .slider:insensitive, - NemoWindow .sidebar .scrollbar .slider:insensitive, - MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { - background-color: transparent; } - -@define-color theme_fg_color #5c616c; -@define-color theme_text_color #5c616c; -@define-color theme_bg_color #F5F6F7; -@define-color theme_base_color #fdf6e3; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #5c616c; -@define-color text_color #5c616c; -@define-color bg_color #F5F6F7; -@define-color base_color #fdf6e3; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #faf6eb; -@define-color insensitive_fg_color alpha(#5c616c, 0.5); -@define-color insensitive_base_color #fdf6e3; -@define-color theme_unfocused_fg_color #5c616c; -@define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #F5F6F7; -@define-color theme_unfocused_base_color #fdf6e3; -@define-color borders #dcdfe3; -@define-color unfocused_borders #dcdfe3; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #1e6ea7; -@define-color content_view_bg #fdf6e3; -@define-color wm_title alpha(#59808f, 0.8); -@define-color wm_unfocused_title alpha(#59808f, 0.5); -@define-color wm_bg #002b36; -@define-color wm_bg_unfocused #00313e; -@define-color wm_highlight #003745; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #dc322f; -@define-color wm_button_close_hover_bg #cb4b16; -@define-color wm_button_close_active_bg #dc322f; -@define-color wm_icon_close_bg #002b36; -@define-color wm_button_hover_bg #657b83; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #002b36; -@define-color wm_icon_bg #93a1a1; -@define-color wm_icon_unfocused_bg #657b83; -@define-color wm_icon_hover_bg #93a1a1; -@define-color wm_icon_active_bg #fdf6e3; diff --git a/common/gtk-3.0/3.16/gtk-solid.css b/common/gtk-3.0/3.16/gtk-solid.css deleted file mode 100644 index 4d8f96d..0000000 --- a/common/gtk-3.0/3.16/gtk-solid.css +++ /dev/null @@ -1,3896 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -GtkPaned-handle-size: 1; - -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: #1e6ea7; - -GtkWidget-visited-link-color: #16527c; - -GtkWidget-focus-padding: 2; - -GtkWidget-focus-line-width: 1; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - -GtkStatusbar-shadow-type: none; - outline-color: rgba(92, 97, 108, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; } - -.background { - color: #5c616c; - background-color: #F5F6F7; } - -*:insensitive { - -gtk-image-effect: dim; } - -.gtkstyle-fallback { - background-color: #F5F6F7; - color: #5c616c; } - .gtkstyle-fallback:prelight { - background-color: white; - color: #5c616c; } - .gtkstyle-fallback:active { - background-color: #d9dde0; - color: #5c616c; } - .gtkstyle-fallback:insensitive { - background-color: #faf6eb; - color: rgba(92, 97, 108, 0.55); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view { - color: #5c616c; - background-color: #fdf6e3; } - .view.dim-label, .view.label.separator, GtkPlacesSidebar.sidebar .view.label.separator, .header-bar .view.subtitle { - color: rgba(92, 97, 108, 0.55); } - .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { - color: rgba(253, 246, 227, 0.65); - text-shadow: none; } - -.rubberband { - border: 1px solid #268bd2; - background-color: rgba(38, 139, 210, 0.2); } - -.label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator { - color: #5c616c; } - -.label:insensitive { - color: rgba(92, 97, 108, 0.55); } - -.dim-label, .label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator, .header-bar .subtitle { - opacity: 0.55; } - -GtkAssistant .sidebar { - background-color: #fdf6e3; - border-top: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #dcdfe3; } - -GtkAssistant.csd .sidebar { - border-top-style: none; } - -GtkAssistant .sidebar .label { - padding: 6px 12px; } - -GtkAssistant .sidebar .label.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -GtkTextView { - background-color: #f9f6ed; } - -.grid-child { - padding: 3px; - border-radius: 3px; } - .grid-child:selected { - outline-offset: -2px; } - -.popover.osd, .osd { - color: #657b83; - border: none; - background-color: #073642; - background-clip: padding-box; - outline-color: rgba(101, 123, 131, 0.3); - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - .spinner:active { - opacity: 1; - animation: spin 1s linear infinite; } - .spinner:active:insensitive { - opacity: 0.5; } - -.entry { - border: 1px solid; - padding: 5px 8px; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry.image.left { - padding-left: 0; } - .entry.image.right { - padding-right: 0; } - .entry.flat, .entry.flat:focus { - padding: 2px; - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); - border: none; - border-radius: 0; } - .entry:focus { - background-clip: border-box; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(253, 246, 227, 0.55); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.55)); } - .entry:selected, .entry:selected:focus { - background-color: #268bd2; - color: #fdf6e3; } - .entry.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - .linked > .entry:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .linked > .entry:first-child:dir(rtl) { - border-right-style: none; } - .linked > .entry:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; } - .linked > .entry:last-child:dir(rtl) { - border-left-style: solid; } - .entry.warning { - color: #fdf6e3; - border-color: #cb4b16; - background-image: linear-gradient(to bottom, #df8f68); } - .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); - box-shadow: none; } - .entry.warning:selected, .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .entry.error { - color: #fdf6e3; - border-color: #dc322f; - background-image: linear-gradient(to bottom, #e98077); } - .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); - box-shadow: none; } - .entry.error:selected, .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - .entry.image { - color: #7c7f84; } - .linked.vertical > .entry { - border-bottom-color: #f3efe3; - box-shadow: none; } - .linked.vertical > .entry:focus { - border-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:insensitive { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:first-child { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:first-child:focus { - border-bottom-color: #268bd2; - box-shadow: none; } - .linked.vertical > .entry:first-child:insensitive { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:last-child { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .linked.vertical > .entry:last-child:focus { - border-bottom-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:last-child:insensitive { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .osd .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.4)); - background-color: transparent; } - .osd .entry.image, .osd .entry.image:hover { - color: inherit; } - .osd .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, #268bd2); } - .osd .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.25)); } - -GtkSearchEntry.entry { - border-radius: 20px; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -.button { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 5px 8px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(251, 251, 252, 0); - border-color: rgba(101, 123, 131, 0); - transition: none; } - .button.flat:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - .button.flat:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; - -gtk-image-effect: highlight; } - .button:active, .button:checked { - background-clip: border-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; - transition-duration: 50ms; } - .button:active { - color: #5c616c; } - .button:active:hover, .button:checked { - color: #fdf6e3; } - .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; } - .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button:insensitive > GtkLabel { - color: inherit; } - .button:insensitive:active, .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { - color: inherit; } - .button.osd { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - background-color: #073642; - border-color: #03181d; } - .button.osd.image-button, .header-bar .button.osd.titlebutton, - .titlebar .button.osd.titlebutton { - padding: 10px; } - .button.osd:hover { - color: #268bd2; } - .button.osd:active, .button.osd:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .button.osd:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .osd .button:dir(rtl) { - border-radius: 0; - border-right-style: none; - border-left-style: none; } - .osd .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:dir(rtl) { - border-left-style: solid; } - .osd .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd .button:hover, .osd .button:hover:first-child, .osd .button:hover:last-child { - box-shadow: none; } - .osd .button:active, .osd .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd .button.flat:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd .button.flat:hover, .osd .button.flat:hover:first-child, .osd .button.flat:hover:last-child { - box-shadow: none; } - .osd .button.flat:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); - background-image: none; } - .osd .button.flat:active, .osd .button.flat:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .button.suggested-action:active, .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .button.suggested-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.suggested-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .button.destructive-action:active, .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .button.destructive-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.destructive-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - .button.image-button, .header-bar .button.titlebutton, - .titlebar .button.titlebutton { - padding: 7px; } - .header-bar .button.image-button, .header-bar .button.titlebutton { - padding: 7px 10px; } - .button.text-button { - padding-left: 16px; - padding-right: 16px; } - .button.text-button.image-button, .header-bar .button.text-button.titlebutton, - .titlebar .button.text-button.titlebutton { - padding: 5px 8px; } - .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, - .titlebar .button.text-button.titlebutton GtkLabel:first-child { - padding-left: 8px; } - .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, - .titlebar .button.text-button.titlebutton GtkLabel:last-child { - padding-right: 8px; } - .stack-switcher > .button { - outline-offset: -3px; } - .stack-switcher > .button > GtkLabel { - 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 { - padding: 5px 10px; } - .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, - .titlebar .stack-switcher > .button.titlebutton { - padding: 2px 4px; } - .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; } - .stack-switcher > .button.needs-attention > .label, - .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 4px; } - .stack-switcher > .button.needs-attention > .label:dir(rtl), - .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { - background-position: left 3px, left 4px; } - .inline-toolbar .button, .inline-toolbar .button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar GtkToolButton > .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .inline-toolbar GtkToolButton > .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { - color: inherit; } - .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { - color: inherit; } - -.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, -.linked > .button:hover, -.linked > .button:active, -.linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4), inset -1px 0 rgba(101, 123, 131, 0.4); } - .inline-toolbar GtkToolButton > .button.flat:active, .osd .button:active, .inline-toolbar .button:active, .linked > .button:active, GtkComboBox.combobox-entry .entry:active, GtkComboBox.combobox-entry .button:active, .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, .linked > GtkComboBox > .button:active:dir(ltr), .inline-toolbar GtkToolButton > .button.flat:checked, .osd .button:checked, .inline-toolbar .button:checked, .linked > .button:checked, GtkComboBox.combobox-entry .entry:checked, GtkComboBox.combobox-entry .button:checked, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked, .linked > GtkComboBox > .button:checked:dir(ltr) { - box-shadow: none; } - .inline-toolbar.toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .inline-toolbar .button:dir(rtl):backdrop, .linked > .button:dir(rtl), - .linked > .button:dir(rtl):hover, - .linked > .button:dir(rtl):active, - .linked > .button:dir(rtl):checked, GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), .primary-toolbar .linked.path-bar > .button:dir(rtl), .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { - border-radius: 0; } - -.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, .primary-toolbar .linked.path-bar > .button:first-child, .header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.4); } - .osd .button:first-child:active, .inline-toolbar .button:first-child:active, .linked > .button:first-child:active, .inline-toolbar GtkToolButton:first-child > .button.flat:active, GtkComboBox.combobox-entry .entry:first-child:active, GtkComboBox.combobox-entry .button:first-child:active, .linked > GtkComboBox:first-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, .osd .button:first-child:checked, .inline-toolbar .button:first-child:checked, .linked > .button:first-child:checked, .inline-toolbar GtkToolButton:first-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:first-child:checked, GtkComboBox.combobox-entry .button:first-child:checked, .linked > GtkComboBox:first-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - -.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, .primary-toolbar .linked.path-bar > .button:last-child, .header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4); } - .osd .button:last-child:active, .inline-toolbar .button:last-child:active, .linked > .button:last-child:active, .inline-toolbar GtkToolButton:last-child > .button.flat:active, GtkComboBox.combobox-entry .entry:last-child:active, GtkComboBox.combobox-entry .button:last-child:active, .linked > GtkComboBox:last-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, .osd .button:last-child:checked, .inline-toolbar .button:last-child:checked, .linked > .button:last-child:checked, .inline-toolbar GtkToolButton:last-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:last-child:checked, GtkComboBox.combobox-entry .button:last-child:checked, .linked > GtkComboBox:last-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { - border-bottom-left-radius: 0; } - -.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, .primary-toolbar .linked.path-bar > .button:only-child, .header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - .osd .button:only-child:active, .inline-toolbar .button:only-child:active, .linked > .button:only-child:active, .inline-toolbar GtkToolButton:only-child > .button.flat:active, GtkComboBox.combobox-entry .entry:only-child:active, GtkComboBox.combobox-entry .button:only-child:active, .linked > GtkComboBox:only-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, .osd .button:only-child:checked, .inline-toolbar .button:only-child:checked, .linked > .button:only-child:checked, .inline-toolbar GtkToolButton:only-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:only-child:checked, GtkComboBox.combobox-entry .button:only-child:checked, .linked > GtkComboBox:only-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, -.linked.vertical > .button:hover, -.linked.vertical > .button:active, -.linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, -.linked.vertical > GtkComboBox > .button { - border-style: solid; - border-bottom-style: none; - border-top-style: none; - border-radius: 0; } - .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, - .linked.vertical > GtkComboBox > .button:hover { - box-shadow: inset 0 -1px rgba(101, 123, 131, 0.4), inset 0 1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:active, .linked.vertical > .button:active, .linked.vertical > GtkComboBoxText > .button:active, - .linked.vertical > GtkComboBox > .button:active, .linked.vertical > .entry:checked, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button:checked, - .linked.vertical > GtkComboBox > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, -.linked.vertical > GtkComboBox:first-child > .button { - border-radius: 3px 3px 0 0; - border-top-style: solid; } - .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, - .linked.vertical > GtkComboBox:first-child > .button:hover { - box-shadow: inset 0 -1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:first-child:active, .linked.vertical > .button:first-child:active, .linked.vertical > GtkComboBoxText:first-child > .button:active, - .linked.vertical > GtkComboBox:first-child > .button:active, .linked.vertical > .entry:first-child:checked, .linked.vertical > .button:first-child:checked, .linked.vertical > GtkComboBoxText:first-child > .button:checked, - .linked.vertical > GtkComboBox:first-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, -.linked.vertical > GtkComboBox:last-child > .button { - border-radius: 0 0 3px 3px; - border-bottom-style: solid; } - .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, - .linked.vertical > GtkComboBox:last-child > .button:hover { - box-shadow: inset 0 1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:last-child:active, .linked.vertical > .button:last-child:active, .linked.vertical > GtkComboBoxText:last-child > .button:active, - .linked.vertical > GtkComboBox:last-child > .button:active, .linked.vertical > .entry:last-child:checked, .linked.vertical > .button:last-child:checked, .linked.vertical > GtkComboBoxText:last-child > .button:checked, - .linked.vertical > GtkComboBox:last-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, -.linked.vertical > GtkComboBox:only-child > .button { - border-radius: 3px; - border-style: solid; } - .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, - .linked.vertical > GtkComboBox:only-child > .button:hover { - box-shadow: none; } - .linked.vertical > .entry:only-child:active, .linked.vertical > .button:only-child:active, .linked.vertical > GtkComboBoxText:only-child > .button:active, - .linked.vertical > GtkComboBox:only-child > .button:active, .linked.vertical > .entry:only-child:checked, .linked.vertical > .button:only-child:checked, .linked.vertical > GtkComboBoxText:only-child > .button:checked, - .linked.vertical > GtkComboBox:only-child > .button:checked { - box-shadow: none; } - -.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, -.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, -.app-notification.frame .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -/* menu buttons */ -.menuitem.button.flat { - transition: none; - outline-offset: -1px; - border-radius: 2px; } - .menuitem.button.flat:hover { - background-color: #edeff0; } - .menuitem.button.flat:checked { - color: #5c616c; } - -*:link, .button:link, .button:visited { - color: #1e6ea7; } - *:link:visited, .button:visited { - color: #16527c; } - *:selected *:link:visited, *:selected .button:visited:link, *:selected .button:visited { - color: #a7cbdc; } - *:link:hover, .button:hover:link, .button:hover:visited { - color: #268bd2; } - *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { - color: #e8ebe1; } - *:link:active, .button:active:link, .button:active:visited { - color: #1e6ea7; } - *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { - color: #d2e1e0; } - *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { - color: #d2e1e0; } - -.spinbutton { - border-radius: 3px; } - .spinbutton .button { - background-image: none; - border: 1px solid rgba(220, 223, 227, 0.6); - border-style: none none none solid; - color: #646872; - border-radius: 0; - box-shadow: none; } - .spinbutton .button:dir(rtl) { - border-style: none solid none none; } - .spinbutton .button:first-child { - color: red; } - .spinbutton .button:insensitive { - color: rgba(92, 97, 108, 0.55); } - .spinbutton .button:active { - background-color: #268bd2; - color: #fdf6e3; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - border-radius: 2px 2px 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:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; } - GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: #268bd2; - border-radius: 0; - box-shadow: none; } - -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; } - GtkComboBox > .the-button-in-the-combobox { - padding-top: 3px; - padding-bottom: 3px; } - GtkComboBox:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { - -GtkWidget-wide-separators: true; } - GtkComboBox.combobox-entry .entry:dir(ltr) { - border-right-style: none; } - GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: 1px 0 #268bd2; } - GtkComboBox.combobox-entry .entry:dir(rtl) { - border-left-style: none; } - GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: -1px 0 #268bd2; } - GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 #657b83; } - GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.55); } - GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 #657b83; } - GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.55); } - -.toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #F5F6F7; } - .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.9); } - -.primary-toolbar { - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #eee8d5, #e4dabc) 1 0 1 0; } - -.inline-toolbar { - background-color: #edeef0; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -.search-bar { - background-color: #F5F6F7; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 0 1px; - padding: 3px; } - -.action-bar { - background-color: #edeef0; } - -.header-bar { - padding: 5px 5px 4px 5px; - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: #e4dabc; - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; } - .csd .header-bar { - background-color: #eee8d5; - border-color: #e4dabc; } - .header-bar:backdrop { - color: rgba(82, 93, 118, 0.5); } - .header-bar .title { - padding-left: 12px; - padding-right: 12px; } - .header-bar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .header-bar.selection-mode, .header-bar.titlebar.selection-mode { - color: #fdf6e3; - background-color: #268bd2; - border-color: #2380c1; - box-shadow: none; } - .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { - background-color: #268bd2; - color: rgba(253, 246, 227, 0.6); } - .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.05); - border-color: rgba(253, 246, 227, 0.5); } - .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.15); - border-color: rgba(253, 246, 227, 0.15); } - .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { - background-color: #268bd2; } - .tiled .header-bar, .tiled .header-bar:backdrop, - .maximized .header-bar, .maximized .header-bar:backdrop { - border-radius: 0; } - .maximized .header-bar { - background-color: #eee8d5; - border-color: #e4dabc; } - .header-bar.default-decoration, - .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, - .csd .header-bar.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: #eee8d5; - border-bottom-width: 0; } - .maximized .header-bar.default-decoration, .maximized - .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized - .csd .header-bar.default-decoration:backdrop { - background-color: #eee8d5; } - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: 4px 4px 0 0; - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; - box-shadow: inset 0 1px #f2eee0; } - .csd .titlebar { - background-color: #eee8d5; } - .titlebar:backdrop { - color: rgba(82, 93, 118, 0.5); - background-color: #f2eee0; } - .csd .titlebar:backdrop { - background-color: #f2eee0; } - .maximized .titlebar { - background-color: #eee8d5; } - .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { - background-color: #f2eee0; } - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { - background-color: transparent; } - -.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, -.header-bar > GtkBox > .separator.vertical, GtkPlacesSidebar.sidebar -.header-bar > GtkBox > .vertical.view.separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(82, 93, 118, 0) 25%, rgba(82, 93, 118, 0.15) 25%, rgba(82, 93, 118, 0.15) 75%, rgba(82, 93, 118, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, - .header-bar > GtkBox > .separator.vertical:backdrop, GtkPlacesSidebar.sidebar - .header-bar > GtkBox > .vertical.view.separator:backdrop { - opacity: 0.6; } - -.primary-toolbar .entry, .header-bar .entry { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { - color: inherit; } - .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { - opacity: 0.85; } - .primary-toolbar .entry:focus, .header-bar .entry:focus { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); - background-clip: border-box; } - .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { - color: #fdf6e3; } - .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar .entry.warning, .header-bar .entry.warning { - color: white; - border-color: #cb4b16; - background-image: linear-gradient(to bottom, #d98a62); } - .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); } - .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar .entry.error, .header-bar .entry.error { - color: white; - border-color: #dc322f; - background-image: linear-gradient(to bottom, #e37b71); } - .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); } - .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar .button, .header-bar .button { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - outline-offset: -3px; - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button:backdrop, .header-bar .button:backdrop { - opacity: 0.7; } - .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; - background-clip: border-box; } - .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(82, 93, 118, 0.35); - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { - color: inherit; } - .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.primary-toolbar .linked > .button, .header-bar .linked > .button { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { - box-shadow: none; } - -.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - background-color: rgba(255, 255, 255, 0.9); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .primary-toolbar .linked.stack-switcher > .button:insensitive, .header-bar .linked.stack-switcher > .button:insensitive, .primary-toolbar .linked.path-bar > .button:insensitive, .header-bar .linked.path-bar > .button:insensitive { - color: rgba(82, 93, 118, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1), inset -1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked { - box-shadow: none; } - -.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { - color: rgba(82, 93, 118, 0.35); - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, .primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { - color: rgba(82, 93, 118, 0.35); - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, .primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { - color: #fdf6e3; } - .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { - background-color: rgba(253, 246, 227, 0.1); - border-color: transparent; } - .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { - color: rgba(253, 246, 227, 0.4); } - -.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(82, 93, 118, 0.8); } - .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { - background-color: rgba(82, 93, 118, 0.05); - border-color: transparent; } - .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(82, 93, 118, 0.5); } - .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { - background-color: rgba(0, 0, 0, 0.1); } - -.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(82, 93, 118, 0.2); } - -.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { - color: inherit; } - .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr), .header-bar GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0); } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl), .header-bar GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0); } - -.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { - opacity: 0.75; } - -.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(82, 93, 118, 0.15); } - -.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(82, 93, 118, 0.15)); } - .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(82, 93, 118, 0.1)); } - -.primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, #fbfbfc); - border-color: rgba(82, 93, 118, 0.3); } - .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { - background-image: linear-gradient(to bottom, white); - border-color: rgba(82, 93, 118, 0.3); } - .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #f7f5f0); - border-color: rgba(82, 93, 118, 0.3); } - -.path-bar .button { - padding: 5px 10px; } - .path-bar .button:first-child { - padding-left: 10px; } - .path-bar .button:last-child { - padding-right: 10px; } - .path-bar .button:only-child { - padding-left: 14px; - padding-right: 14px; } - .path-bar .button GtkLabel:last-child { - padding-left: 4px; } - .path-bar .button GtkLabel:first-child { - padding-right: 4px; } - .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { - padding-right: 0; - padding-left: 0; } - .path-bar .button GtkImage { - padding-top: 2px; - padding-bottom: 1px; } - -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: rgba(92, 97, 108, 0.15); - border-top-color: rgba(0, 0, 0, 0.1); } - GtkTreeView.view:selected { - border-radius: 0; - border-left-color: #92c1db; - border-top-color: rgba(92, 97, 108, 0.1); } - GtkTreeView.view:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkTreeView.view:insensitive:selected { - color: #7cb6d9; } - GtkTreeView.view.dnd { - border-style: solid none; - border-width: 1px; - border-color: #41769f; } - GtkTreeView.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #adaca8; } - GtkTreeView.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - GtkTreeView.view.expander:hover { - color: #5c616c; } - GtkTreeView.view.expander:selected { - color: #bdd6de; } - GtkTreeView.view.expander:selected:hover { - color: #fdf6e3; } - GtkTreeView.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - GtkTreeView.view.progressbar, GtkTreeView.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-image: linear-gradient(to bottom, #268bd2); } - GtkTreeView.view.progressbar:selected, GtkTreeView.view.progressbar:selected:focus, GtkTreeView.view.progressbar:focus:selected, GtkTreeView.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-image: linear-gradient(to bottom, #fdf6e3); } - GtkTreeView.view.trough { - color: #5c616c; - background-image: linear-gradient(to bottom, #657b83); - border-radius: 3px; - border-width: 0; } - GtkTreeView.view.trough:selected, GtkTreeView.view.trough:selected:focus { - color: #fdf6e3; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); - border-radius: 3px; - border-width: 0; } - -column-header .button { - color: #7c7f84; - background-color: #fdf6e3; } - column-header .button:hover { - color: #268bd2; - box-shadow: none; - transition: none; } - column-header .button:active { - color: #5c616c; - transition: none; } - -column-header:last-child .button, column-header:last-child.button { - border-right-style: none; - border-image: none; } - -column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { - transition: none; - color: #268bd2; - box-shadow: inset 1px 1px 0 1px #268bd2, inset -1px 0 0 1px #268bd2, inset 1px 1px #fdf6e3, inset -1px 0 #fdf6e3; } - -column-header .button, column-header .button:hover, column-header .button:active { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; } - column-header .button:active, column-header .button:hover { - background-color: #fdf6e3; } - column-header .button:active:hover { - color: #5c616c; } - column-header .button:insensitive { - border-color: #F5F6F7; - background-image: none; } - -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #eee8d5; - color: rgba(82, 93, 118, 0.8); } - .menubar:backdrop { - color: rgba(82, 93, 118, 0.5); } - .menubar > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - .menubar > .menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - .menubar > .menuitem:insensitive { - color: rgba(82, 93, 118, 0.2); - border-color: transparent; } - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; } - .csd .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - .menu .menuitem { - padding: 5px; } - .menu .menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - .menu .menuitem:insensitive { - color: rgba(92, 97, 108, 0.55); } - .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator { - color: rgba(253, 246, 227, 0); } - .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 #ede7d7; } - .menu.button.bottom { - border-top: 1px solid #ede7d7; } - .menu.button:hover { - background-color: #ede7d7; } - .menu.button:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent; } - -.csd .popup { - border-radius: 2px; } - -.menuitem .accelerator { - color: alpha(currentColor,0.55); } - -.popover { - padding: 2px; - border: 1px solid #cdd2d7; - border-radius: 3px; - background-clip: border-box; - background-color: #fdf6e3; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } - .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { - color: rgba(253, 246, 227, 0); } - .popover > .list, - .popover > .view, - .popover > .toolbar, - .popover > .inline-toolbar, - .popover.osd > .toolbar, - .popover.osd > .inline-toolbar { - border-style: none; - background-color: transparent; } - -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - .entry.cursor-handle.top, - .cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - .entry.cursor-handle.bottom, - .cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -.notebook { - padding: 0; - background-color: #fdf6e3; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -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.frame { - border: 1px solid #dcdfe3; } - .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.header { - background-color: #F5F6F7; } - .notebook.header.frame { - border: 0px solid #dcdfe3; } - .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.top { - box-shadow: inset 0 -1px #dcdfe3; } - .notebook.header.bottom { - box-shadow: inset 0 1px #dcdfe3; } - .notebook.header.right { - box-shadow: inset 1px 0 #dcdfe3; } - .notebook.header.left { - box-shadow: inset -1px 0 #dcdfe3; } - .notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - outline-offset: 0; } - .notebook tab.top, .notebook tab.bottom { - padding: 4px 15px; } - .notebook tab.left, .notebook tab.right { - padding: 4px 15px; } - .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { - padding-left: 12px; - padding-right: 12px; } - .notebook tab.reorderable-page.top, .notebook tab.top { - padding-top: 6px; - border-radius: 3.5px 2px 0 0; - border-width: 0; - border-top-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #fdf6e3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom, .notebook tab.bottom { - padding-bottom: 6px; - border-radius: 0 0 2px 3.5px; - border-width: 0; - border-bottom-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 -1px #fdf6e3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right, .notebook tab.right { - padding-right: 17px; - border-radius: 0 3.5px 3.5px 0; - border-width: 0; - border-right-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #fdf6e3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left, .notebook tab.left { - padding-left: 17px; - border-radius: 3.5px 0 0 3.5px; - border-width: 0; - border-left-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #fdf6e3; } - .notebook tab GtkLabel { - padding: 0 2px; - color: rgba(92, 97, 108, 0.55); } - .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(92, 97, 108, 0.775); } - .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { - color: #5c616c; } - .notebook tab .button { - padding: 0; - color: #92959d; } - .notebook tab .button:hover { - color: #ff4d4d; } - .notebook tab .button:active { - color: #268bd2; } - .notebook tab .button > GtkImage { - padding: 2px; } - .notebook.arrow { - color: rgba(92, 97, 108, 0.55); } - .notebook.arrow:hover { - color: rgba(92, 97, 108, 0.775); } - .notebook.arrow:active { - color: #5c616c; } - .notebook.arrow:insensitive { - color: rgba(92, 97, 108, 0.25); } - -.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: 6px; } - .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { - margin: 0; - background-color: #8a8e96; - border: 1px solid rgba(255, 255, 255, 0.6); - 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.99; } - .scrollbar .trough { - background-color: #fdf4de; - border: 1px none #dcdfe3; } - .scrollbar .slider { - background-color: #b8babf; } - .scrollbar .slider:hover { - background-color: #c7c9cd; } - .scrollbar .slider:prelight:active, .scrollbar .slider:active { - background-color: #268bd2; } - .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, #dcdfe3 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #fdf4de; } - .scrollbars-junction:dir(rtl), - .scrollbars-junction.frame:dir(rtl) { - border-image-slice: 0 1 0 0; } - -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 41; - outline-color: transparent; } - GtkSwitch.trough, GtkSwitch.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; } - GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { - background-position: left center; } - -GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough, -.list-row:selected GtkSwitch.trough, -GtkInfoBar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -.header-bar GtkSwitch.trough, -.primary-toolbar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } - -GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active, -.list-row:selected GtkSwitch.trough:active, -GtkInfoBar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -.header-bar GtkSwitch.trough:active, -.primary-toolbar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } - -GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:insensitive, -.list-row:selected GtkSwitch.trough:insensitive, -GtkInfoBar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:insensitive, -.primary-toolbar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } - -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active:insensitive, -.list-row:selected GtkSwitch.trough:active:insensitive, -GtkInfoBar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:active:insensitive, -.primary-toolbar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } - -.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check, -GtkFileChooserDialog .dialog-vbox > .frame .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -.menu .menuitem.check:hover, -GtkTreeView.view.check:selected, -.list-row:selected .check, -GtkInfoBar .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.check:insensitive:hover, -GtkTreeView.view.check:insensitive:selected, -.list-row:selected .check:insensitive, -GtkInfoBar .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -.menu .menuitem.check:inconsistent:hover, -GtkTreeView.view.check:inconsistent:selected, -.list-row:selected .check:inconsistent, -GtkInfoBar .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.check:inconsistent:insensitive:hover, -GtkTreeView.view.check:inconsistent:insensitive:selected, -.list-row:selected .check:inconsistent:insensitive, -GtkInfoBar .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -.menu .menuitem.check:checked:hover, -GtkTreeView.view.check:checked:selected, -.list-row:selected .check:checked, -GtkInfoBar .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -.menu .menuitem.check:checked:insensitive:hover, -GtkTreeView.view.check:checked:insensitive:selected, -.list-row:selected .check:checked:insensitive, -GtkInfoBar .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio, -GtkFileChooserDialog .dialog-vbox > .frame .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -.menu .menuitem.radio:hover, -GtkTreeView.view.radio:selected, -.list-row:selected .radio, -GtkInfoBar .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:insensitive:hover, -GtkTreeView.view.radio:insensitive:selected, -.list-row:selected .radio:insensitive, -GtkInfoBar .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:hover, -GtkTreeView.view.radio:inconsistent:selected, -.list-row:selected .radio:inconsistent, -GtkInfoBar .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:insensitive:hover, -GtkTreeView.view.radio:inconsistent:insensitive:selected, -.list-row:selected .radio:inconsistent:insensitive, -GtkInfoBar .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -.menu .menuitem.radio:checked:hover, -GtkTreeView.view.radio:checked:selected, -.list-row:selected .radio:checked, -GtkInfoBar .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:checked:insensitive:hover, -GtkTreeView.view.radio:checked:insensitive:selected, -.list-row:selected .radio:checked:insensitive, -GtkInfoBar .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -GtkIconView.view.check, -GtkFlowBox.view.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); - background-color: transparent; } - -GtkIconView.view.check:checked, -GtkFlowBox.view.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-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: rgba(92, 97, 108, 0.55); } - -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; } - .scale.trough { - margin: 5px; } - .scale.fine-tune.trough { - border-radius: 5px; - margin: 3px; } - .scale.slider { - background-clip: border-box; - background-image: linear-gradient(to bottom, #fbfbfc); - border: 1px solid rgba(45, 55, 59, 0.5); - border-radius: 50%; - box-shadow: none; } - .scale.slider:hover { - background-image: linear-gradient(to bottom, white); - border-color: rgba(45, 55, 59, 0.5); } - .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #f9f6ec); - border-color: rgba(45, 55, 59, 0.3); } - .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .osd .scale.slider { - background-image: linear-gradient(to bottom, #073642); - border-color: #268bd2; } - .osd .scale.slider:hover { - background-image: linear-gradient(to bottom, #268bd2); } - .osd .scale.slider:active { - background-image: linear-gradient(to bottom, #1e6ea7); - border-color: #1e6ea7; } - .menu .menuitem:hover .scale.slider, - .list-row:selected .scale.slider, - GtkInfoBar .scale.slider { - background-image: linear-gradient(to bottom, #fdf6e3); - border-color: #fdf6e3; } - .menu .menuitem:hover .scale.slider:hover, - .list-row:selected .scale.slider:hover, - GtkInfoBar .scale.slider:hover { - background-image: linear-gradient(to bottom, #dde6e0); - border-color: #dde6e0; } - .menu .menuitem:hover .scale.slider:active, - .list-row:selected .scale.slider:active, - GtkInfoBar .scale.slider:active { - background-image: linear-gradient(to bottom, #92c1db); - border-color: #92c1db; } - .menu .menuitem:hover .scale.slider:insensitive, - .list-row:selected .scale.slider:insensitive, - GtkInfoBar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); - border-color: #9cc6db; } - .scale.trough { - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, #657b83); } - .scale.trough.highlight { - background-image: linear-gradient(to bottom, #268bd2); } - .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, rgba(38, 139, 210, 0.55)); } - .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(101, 123, 131, 0.55)); } - .osd .scale.trough { - background-image: linear-gradient(to bottom, #0a5062); - outline-color: rgba(101, 123, 131, 0.2); } - .osd .scale.trough.highlight { - background-image: none; - background-image: linear-gradient(to bottom, #268bd2); } - .menu .menuitem:hover .scale.trough, - .list-row:selected .scale.trough, - GtkInfoBar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } - .menu .menuitem:hover .scale.trough.highlight, - .list-row:selected .scale.trough.highlight, - GtkInfoBar .scale.trough.highlight { - background-image: linear-gradient(to bottom, #fdf6e3); } - .menu .menuitem:hover .scale.trough.highlight:insensitive, - .list-row:selected .scale.trough.highlight:insensitive, - GtkInfoBar .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); } - .menu .menuitem:hover .scale.trough:insensitive, - .list-row:selected .scale.trough:insensitive, - GtkInfoBar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -GtkProgressBar { - padding: 0; - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - GtkProgressBar.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; } - -.progressbar { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - .progressbar.osd { - background-color: #268bd2; } - .list-row:selected .progressbar, - GtkInfoBar .progressbar { - background-color: #fdf6e3; } - -.osd .scale.progressbar { - background-color: #268bd2; } - -GtkProgressBar.trough, .level-bar.trough { - border: none; - border-radius: 3px; - background-color: #657b83; } - GtkProgressBar.trough.osd, .osd.level-bar.trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, - GtkInfoBar GtkProgressBar.trough, - GtkInfoBar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.2); } - -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; } - GtkLevelBar.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; } - -.level-bar.trough { - padding: 3px; - border-radius: 4px; } - -.level-bar.fill-block { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - .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 { - border-color: #859900; - background-color: #859900; } - .level-bar.fill-block.level-low { - border-color: #cb4b16; - background-color: #cb4b16; } - .level-bar.fill-block.empty-fill-block { - background-color: rgba(92, 97, 108, 0.2); - border-color: rgba(92, 97, 108, 0.2); } - -.frame { - border: 1px solid #dcdfe3; - padding: 0; } - .frame.flat { - border-style: none; } - .frame.action-bar { - padding: 6px; - border-width: 1px 0 0; } - -GtkScrolledWindow GtkViewport.frame { - border-style: none; } - -.separator, GtkPlacesSidebar.sidebar .view.separator { - color: rgba(0, 0, 0, 0.1); } - GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, - GtkFontButton .separator, - GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .view.separator, - GtkFileChooserButton .separator.vertical, - GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFileChooserButton .vertical.view.separator, - GtkFontButton .separator.vertical, - GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .vertical.view.separator { - -GtkWidget-wide-separators: true; } - -.list, .list-row { - background-color: #fdf6e3; - border-color: #dcdfe3; } - -.list-row, -.grid-child { - padding: 2px; } - -.list-row.button { - background-color: transparent; - border-style: none; - border-radius: 0; - box-shadow: none; } - .list-row.button:hover { - background-color: rgba(0, 0, 0, 0.05); } - .list-row.button:active { - color: #5c616c; } - .list-row.button:selected:active { - color: #fdf6e3; } - .list-row.button:selected:hover { - background-color: #227dbd; } - .list-row.button:selected:insensitive { - color: rgba(253, 246, 227, 0.7); - background-color: rgba(38, 139, 210, 0.7); } - .list-row.button:selected:insensitive .label { - color: inherit; } - -.list-row, list-row.button { - transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .list-row:hover, list-row.button:hover { - transition: none; } - -.app-notification, -.app-notification.frame { - padding: 10px; - color: #657b83; - background-color: #073642; - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: #021014; } - .app-notification .button, - .app-notification.frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .app-notification .button.flat, - .app-notification.frame .button.flat { - border-color: rgba(38, 139, 210, 0); } - .app-notification .button:hover, - .app-notification.frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .app-notification .button:active, .app-notification .button:checked, - .app-notification.frame .button:active, - .app-notification.frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification .button:insensitive, - .app-notification.frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - .expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - .expander:hover { - color: #aaaeb7; } - .expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GtkCalendar { - color: #5c616c; - border: 1px solid #dcdfe3; - border-radius: 3px; - padding: 2px; } - GtkCalendar:selected { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 1.5px; } - GtkCalendar.header { - color: #5c616c; - border: none; - border-radius: 0; } - GtkCalendar.button, GtkCalendar.button:focus { - color: rgba(92, 97, 108, 0.45); - border-color: transparent; - background-color: transparent; - background-image: none; } - GtkCalendar.button:hover, GtkCalendar.button:focus:hover { - color: #5c616c; } - GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { - color: rgba(92, 97, 108, 0.55); - background-color: transparent; - background-image: none; } - GtkCalendar.highlight { - color: alpha(currentColor,0.55); } - -.message-dialog .dialog-action-area .button { - padding: 8px; } - -.message-dialog { - -GtkDialog-button-spacing: 0; } - .message-dialog .titlebar { - background-color: #eee8d5; - border-bottom: 1px solid #e4dabc; } - .message-dialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - .message-dialog.csd .dialog-action-area .button { - padding: 8px; - border-radius: 0; } - .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 { - border-right-style: none; - border-bottom-style: none; } - .message-dialog.csd .dialog-action-area .button:last-child { - border-bottom-right-radius: 3px; } - .message-dialog.csd .dialog-action-area .button:first-child { - border-left-style: none; - border-bottom-left-radius: 3px; } - -GtkFileChooserDialog .search-bar { - background-color: #F5F6F7; - border-color: #dcdfe3; - box-shadow: none; } - -GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #dcdfe3; } - -.sidebar, .sidebar .view { - border: none; - background-color: #fbfbfc; } - .sidebar:selected, .sidebar .view:selected { - background-color: #268bd2; } - -GtkPlacesSidebar.sidebar .view { - color: #5c616c; - background-color: transparent; } - GtkPlacesSidebar.sidebar .view:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.sidebar-item { - padding: 10px 4px; } - .sidebar-item > GtkLabel { - padding-left: 6px; - padding-right: 6px; } - .sidebar-item.needs-attention > GtkLabel { - background-size: 6px 6px, 0 0; } - -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: #dcdfe3; } - -GtkPaned.wide { - -GtkPaned-handle-size: 5; - margin: 0; } - GtkPaned.wide .pane-separator { - background-color: transparent; - border-style: none solid; - border-color: #dcdfe3; - border-width: 1px; } - GtkPaned.wide.vertical .pane-separator { - border-style: solid none; } - -GtkInfoBar { - border-style: none; } - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: #268bd2; - color: #fdf6e3; } - -.list-row:selected .button, GtkInfoBar .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - .list-row:selected .flat.button, GtkInfoBar .flat.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .list-row:selected .button:hover, GtkInfoBar .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.2); } - .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.2); } - -.tooltip { - color: #657b83; - border-radius: 2px; } - .tooltip.background { - background-color: #0c5c70; - background-clip: padding-box; } - .tooltip.window-frame.csd { - background-color: transparent; } - -.tooltip * { - padding: 4px; - background-color: transparent; - color: inherit; } - -:selected GtkColorSwatch { - box-shadow: none; } - :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { - border-color: #fdf6e3; } - -GtkColorSwatch.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -GtkColorSwatch.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { - border-radius: 3px; } - -GtkColorSwatch:hover, GtkColorSwatch:hover:selected { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } - -GtkColorEditor GtkColorSwatch { - border-radius: 3px; } - GtkColorEditor GtkColorSwatch:hover { - background-image: none; } - -GtkColorSwatch.color-dark { - color: white; - outline-color: rgba(0, 0, 0, 0.3); } - -GtkColorSwatch.color-light { - color: black; - outline-color: rgba(255, 255, 255, 0.5); } - -GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { - border: 1px solid rgba(0, 0, 0, 0.15); } - GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { - border-color: rgba(0, 0, 0, 0.25); } - -GtkColorSwatch#add-color-button { - border-style: solid; - border-width: 1px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - GtkColorSwatch#add-color-button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - GtkColorSwatch#add-color-button .overlay { - border-color: transparent; - background-color: transparent; - background-image: none; } - -GtkColorButton.button { - padding: 5px; } - GtkColorButton.button GtkColorSwatch { - border-radius: 0; } - -.scale-popup .button { - padding: 6px; } - .scale-popup .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - -GtkVolumeButton.button { - padding: 8px; } - -.touch-selection, -.context-menu { - font: initial; } - -.monospace { - font: Monospace; } - -.overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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; } - -.window-frame { - border-radius: 4px 4px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 8px 8px 0 rgba(0, 0, 0, 0.2); - margin: 10px; } - .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } - .window-frame.tiled { - border-radius: 0; } - .window-frame.popup { - box-shadow: none; - border-radius: 0; } - .window-frame.ssd { - border-radius: 4px 4px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); } - .window-frame.ssd.maximized { - border-radius: 0; } - .window-frame.csd.popup { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.message-dialog { - border-radius: 3px; } - .window-frame.solid-csd { - border-radius: 0; - margin: 1px; - background-color: #eee8d5; - box-shadow: none; } - -.header-bar.default-decoration .button.titlebutton, -.titlebar.default-decoration .button.titlebutton { - padding-top: 0px; - padding-bottom: 0px; } - -.header-bar .button.titlebutton, -.titlebar .button.titlebutton { - padding-left: 4px; - padding-right: 4px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(238, 232, 213, 0); } - .header-bar .button.titlebutton:not(GtkMenuButton), - .titlebar .button.titlebutton:not(GtkMenuButton) { - padding-top: 8px; - padding-bottom: 8px; } - .header-bar .button.titlebutton:hover, - .titlebar .button.titlebutton:hover { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, - .titlebar .button.titlebutton:active, - .titlebar .button.titlebutton:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.close, - .titlebar .button.titlebutton.maximize, - .titlebar .button.titlebutton.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; } - .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - opacity: 1; } - .header-bar .button.titlebutton.close, - .titlebar .button.titlebutton.close { - background-image: -gtk-scaled(url("assets/titlebutton-close.png"), url("assets/titlebutton-close@2.png")); } - .header-bar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.close:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop.png"), url("assets/titlebutton-close-backdrop@2.png")); } - .header-bar .button.titlebutton.close:hover, - .titlebar .button.titlebutton.close:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover.png"), url("assets/titlebutton-close-hover@2.png")); } - .header-bar .button.titlebutton.close:active, - .titlebar .button.titlebutton.close:active { - background-image: -gtk-scaled(url("assets/titlebutton-close-active.png"), url("assets/titlebutton-close-active@2.png")); } - .header-bar .button.titlebutton.maximize, - .titlebar .button.titlebutton.maximize { - background-image: -gtk-scaled(url("assets/titlebutton-maximize.png"), url("assets/titlebutton-maximize@2.png")); } - .header-bar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.maximize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop.png"), url("assets/titlebutton-maximize-backdrop@2.png")); } - .header-bar .button.titlebutton.maximize:hover, - .titlebar .button.titlebutton.maximize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover.png"), url("assets/titlebutton-maximize-hover@2.png")); } - .header-bar .button.titlebutton.maximize:active, - .titlebar .button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active.png"), url("assets/titlebutton-maximize-active@2.png")); } - .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.minimize { - background-image: -gtk-scaled(url("assets/titlebutton-minimize.png"), url("assets/titlebutton-minimize@2.png")); } - .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop.png"), url("assets/titlebutton-minimize-backdrop@2.png")); } - .header-bar .button.titlebutton.minimize:hover, - .titlebar .button.titlebutton.minimize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover.png"), url("assets/titlebutton-minimize-hover@2.png")); } - .header-bar .button.titlebutton.minimize:active, - .titlebar .button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active.png"), url("assets/titlebutton-minimize-active@2.png")); } - -.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.button.flat:selected, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, -GtkEntry.gb-command-bar-entry.entry.flat:focus:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); } - -GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, -ScratchMainWindow .notebook tab.reorderable-page.top:active, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, -ScratchMainWindow .notebook tab.top:active, -ScratchMainWindow .notebook tab.top.active-page, -ScratchMainWindow .notebook tab.top.active-page:hover, -EphyNotebook.notebook tab.reorderable-page.top:active, -EphyNotebook.notebook tab.reorderable-page.top.active-page, -EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, -EphyNotebook.notebook tab.top:active, -EphyNotebook.notebook tab.top.active-page, -EphyNotebook.notebook tab.top.active-page:hover, -MidoriNotebook .notebook tab.reorderable-page.top:active, -MidoriNotebook .notebook tab.reorderable-page.top.active-page, -MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, -MidoriNotebook .notebook tab.top:active, -MidoriNotebook .notebook tab.top.active-page, -MidoriNotebook .notebook tab.top.active-page:hover, -TerminalWindow .notebook tab.reorderable-page.top:active, -TerminalWindow .notebook tab.reorderable-page.top.active-page, -TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -TerminalWindow .notebook tab.top:active, -TerminalWindow .notebook tab.top.active-page, -TerminalWindow .notebook tab.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - -TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.top { - padding-top: 7px; - border-top-width: 3px; } - -TerminalWindow .notebook.header.top, -PantheonTerminalPantheonTerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #e4dabc, inset 0 -1px #dcdfe3; } - -GtkHTML { - background-color: #fdf6e3; - color: #5c616c; } - GtkHTML:active { - color: #fdf6e3; - background-color: #268bd2; } - -SushiFontWidget { - padding: 6px 12px; } - -TerminalWindow .background { - background-color: transparent; } - -TerminalWindow .scrollbar.vertical .slider { - margin-left: 3px; } - -TerminalWindow .scrollbar.trough { - border-width: 0; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { - color: #5c616c; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { - color: #fdf6e3; } - -.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, GtkPlacesSidebar.sidebar .nautilus-canvas-item.label.view.separator, .header-bar .nautilus-canvas-item.subtitle, -.nautilus-list-dim-label { - color: #a9acb2; } - .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, - .nautilus-list-dim-label:selected, - .nautilus-list-dim-label:selected:focus { - color: #d2e1e0; } - -NautilusNotebook.notebook { - background-color: #fdf6e3; } - NautilusNotebook.notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; } - -NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { - padding: 5px; - box-shadow: none; - background-color: #fdf6e3; } - -.nautilus-circular-button { - border-radius: 50%; - outline-radius: 50%; } - -.disk-space-display { - border-style: solid; - border-width: 1px; } - .disk-space-display.unknown { - background-color: rgba(92, 97, 108, 0.5); - border-color: rgba(69, 72, 80, 0.5); } - .disk-space-display.used { - background-color: rgba(38, 139, 210, 0.8); - border-color: rgba(30, 110, 167, 0.8); } - .disk-space-display.free { - background-color: #edeef0; - border-color: #d0d5da; } - -NemoWindow EelEditableLabel.entry { - transition: none; } - -NemoWindow .sidebar .frame { - border-width: 0; } - -NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #dcdfe3; } - -NemoWindow .primary-toolbar NemoPathBar.linked > .button { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - background-color: rgba(255, 255, 255, 0.9); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:insensitive { - color: rgba(82, 93, 118, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1), inset -1px 0 rgba(82, 93, 118, 0.1); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.gedit-headerbar-paned { - color: #e4dabc; } - -.open-document-selector-treeview.view { - padding: 3px 6px 3px 6px; - border-color: #fdf6e3; } - .open-document-selector-treeview.view:prelight { - background-color: #f2ecdb; } - .open-document-selector-treeview.view:prelight:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.open-document-selector-name-label { - color: #5c616c; } - -.open-document-selector-path-label { - color: #adaca8; - font-size: smaller; } - .open-document-selector-path-label:selected { - color: rgba(253, 246, 227, 0.9); } - -.gedit-document-panel .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; } - .gedit-document-panel .list-row .button GtkImage { - color: inherit; } - -.gedit-document-panel .prelight-row .button { - color: #92959d; } - -.gedit-document-panel .list-row .button:hover, -.gedit-document-panel .prelight-row .button:hover { - color: #ff4d4d; } - -.gedit-document-panel .prelight-row:selected .button:hover { - color: #ff6666; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; } - .gedit-document-panel .prelight-row:selected .button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel .prelight-row .button:active { - color: #5c616c; } - -.gedit-document-panel-dragged-row { - border: 1px solid #dcdfe3; - background-color: #d9dde0; - color: #5c616c; } - -GeditStatusbar { - border-top: 1px solid #dcdfe3; - background-color: #F5F6F7; } - -GeditStatusMenuButton.button.flat, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton:checked.button.flat { - border-bottom-style: none; - border-radius: 0; } - -GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #dcdfe3; } - -.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { - color: rgba(92, 97, 108, 0.6); - margin: 2px; - padding: 2px; } - -GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { - background-color: #fbfbfc; - padding: 6px; - border-color: #dcdfe3; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image:hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image:hover { - color: inherit; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):insensitive, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { - box-shadow: -1px 0 #268bd2; } - -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; } - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - box-shadow: 1px 0 #268bd2; } - -GbEditorFrame .gb-search-slider { - padding: 2px; } - -GdTaggedEntry { - color: #5c616c; } - -.preferences.sidebar GtkViewport { - border: none; } - -.preferences.sidebar GtkListBox { - background-color: #F5F6F7; } - -.preferences.sidebar GtkListBoxRow { - padding: 10px; } - -GbPreferencesPageLanguage GtkSearchEntry { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - -GbPreferencesPageLanguage GtkScrolledWindow { - border-top-width: 0; } - -GtkBox.gb-command-bar-box { - border: none; - background-color: #073642; } - GtkBox.gb-command-bar-box GtkLabel { - color: #657b83; } - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: #657b83; - background-image: none; - background-color: #073642; - padding: 6px 6px 6px 6px; - border: none; } - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; } - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; } - -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; } - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbViewStack.focused GtkBox.header.notebook { - background-color: #fdf6e3; } - GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { - opacity: 1; } - -EphyWindow .floating-bar { - color: #5c616c; } - -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon { - background-color: rgba(92, 97, 108, 0.3); - border-radius: 2px; } - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: #78b9e6; } - -.documents-entry-tag { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover { - color: #fdf6e3; - background-color: #3295da; } - .documents-entry-tag:active { - color: #fdf6e3; - background-color: #2380c1; } - .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; } - .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { - color: rgba(253, 246, 227, 0.7); } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -TotemGrilo.vertical GdMainView.frame { - border-width: 0; } - -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { - background-color: #268bd2; } - -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; } - -.gnome-panel-menu-bar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: #657b83; - background-image: linear-gradient(to bottom, #05242c); } - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: #657b83; } - -PanelApplet .button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); - border-color: rgba(0, 0, 0, 0.17); } - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: rgba(0, 0, 0, 0.25); - border-radius: 0; - border-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -PanelApplet:hover { - color: white; } - -PanelApplet:active, -PanelApplet:hover:active { - color: #268bd2; } - -WnckPager { - color: #333e42; } - WnckPager:selected { - color: #268bd2; } - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; } - -ClockBox { - color: #657b83; } - -.xfce4-panel.panel { - background-color: #05242c; - text-shadow: none; - icon-shadow: none; } - .xfce4-panel.panel .button.flat { - color: #657b83; - background-color: rgba(5, 36, 44, 0); - border-radius: 0; - border: none; } - .xfce4-panel.panel .button.flat:hover { - border: none; - background-color: #0a4a5a; } - .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - -.floating-bar { - background-color: #268bd2; - color: #fdf6e3; } - .floating-bar.top { - border-radius: 0 0 2px 2px; } - .floating-bar.right { - border-radius: 2px 0 0 2px; } - .floating-bar.bottom { - border-radius: 2px 2px 0 0; } - .floating-bar.left { - border-radius: 0 2px 2px 0; } - .floating-bar .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - background-color: transparent; - box-shadow: none; - border: none; } - -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; } - -MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { - color: #fdf6e3; - background-color: #268bd2; - outline-color: transparent; } - -MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { - background-color: transparent; } - -MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { - outline-color: transparent; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); } - .marlin-pathbar.pathbar:insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; - border: solid transparent; - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { - padding: 0 3px; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { - background-color: rgba(0, 0, 0, 0.04); - border: solid rgba(0, 0, 0, 0.08); - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { - color: rgba(92, 97, 108, 0.55); } - -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; } - -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: #5c616c; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration.top { - border: 1px solid rgba(0, 0, 0, 0.1); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #eee8d5); - color: rgba(82, 93, 118, 0.8); - box-shadow: inset 0 1px #f2eee0; } - UnityDecoration.top:backdrop { - border-bottom-width: 0; - color: rgba(82, 93, 118, 0.5); } - UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: #faf8f2; - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; } - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar GtkLabel { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #dcdfe3; - border-right: 1px solid #dcdfe3; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #dcdfe3; } - .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { - padding: 0 3px 0 3px; } - -.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #dcdfe3; - background-color: #F5F6F7; } - .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view { - background-color: #F5F6F7; - color: #5c616c; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:prelight { - background-color: white; } - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: #F5F6F7; - background-image: none; } - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #5c616c; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GraniteWidgetsWelcome { - background-color: #fdf6e3; } - -GraniteWidgetsWelcome GtkLabel { - color: #a9acb2; - font: open sans 11; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(92, 97, 108, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #fdf6e3); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry.entry { - padding: 4px; } - -.h1 { - font: open sans 24px; } - -.h2 { - font: open sans light 18px; } - -.h3 { - font: open sans 11px; } - -.h4, -.category-label { - color: #8a8e96; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: #05242c; - color: #657b83; - font: bold; - box-shadow: inset 0 -1px #010a0c; } - #panel_window .menubar { - padding-left: 5px; } - #panel_window .menubar, #panel_window .menubar > .menuitem { - background-color: transparent; - color: #657b83; - font: bold; } - #panel_window .menubar .menuitem:insensitive { - color: rgba(101, 123, 131, 0.5); } - #panel_window .menubar .menuitem:insensitive GtkLabel { - color: inherit; } - #panel_window .menubar .menu .menuitem { - font: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: #5c616c; } - -#content_frame { - padding-bottom: 14px; - background-color: #F5F6F7; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - #content_frame .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - #content_frame .button:active, #content_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - #content_frame .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - #content_frame .button:insensitive > GtkLabel { - color: inherit; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: #073642; - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px #073642; } - -#buttonbox_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - #buttonbox_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - #buttonbox_frame .button:active, #buttonbox_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - #buttonbox_frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -#login_window #user_combobox { - color: #5c616c; - font: 13px; } - #login_window #user_combobox .menu { - font: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font: bold; } - -.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { - color: #e4dabc; } - -NemoWindow GtkEventBox { - background-color: #F5F6F7; } - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; } - -GtkFileChooserDialog.csd.background, -GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, -NautilusWindow.csd.background, -NautilusWindow .source-list, -NautilusWindow .source-list.view, -NautilusWindow .source-list.view:prelight, -NemoWindow.csd.background, -NemoWindow .source-list, -NemoWindow .source-list.view, -NemoWindow .source-list.view:prelight, -MarlinViewWindow.csd.background, -MarlinViewWindow .source-list, -MarlinViewWindow .source-list.view, -MarlinViewWindow .source-list.view:prelight { - background-color: transparent; } - -GtkFileChooserDialog .sidebar, GtkFileChooserDialog .source-list.sidebar.view, -NautilusWindow .sidebar, -NautilusWindow .source-list.sidebar.view, -NemoWindow .sidebar, -NemoWindow .source-list.sidebar.view, -MarlinViewWindow .sidebar, -MarlinViewWindow .source-list.sidebar.view { - background-color: #073642; } - GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar row, GtkFileChooserDialog .source-list.sidebar.view .view, GtkFileChooserDialog .source-list.sidebar.view row, - NautilusWindow .sidebar .view, - NautilusWindow .sidebar row, - NautilusWindow .source-list.sidebar.view .view, - NautilusWindow .source-list.sidebar.view row, - NemoWindow .sidebar .view, - NemoWindow .sidebar row, - NemoWindow .source-list.sidebar.view .view, - NemoWindow .source-list.sidebar.view row, - MarlinViewWindow .sidebar .view, - MarlinViewWindow .sidebar row, - MarlinViewWindow .source-list.sidebar.view .view, - MarlinViewWindow .source-list.sidebar.view row { - background-color: transparent; - color: #657b83; } - GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar row.image, GtkFileChooserDialog .source-list.sidebar.view .view.image, GtkFileChooserDialog .source-list.sidebar.view row.image, - NautilusWindow .sidebar .view.image, - NautilusWindow .sidebar row.image, - NautilusWindow .source-list.sidebar.view .view.image, - NautilusWindow .source-list.sidebar.view row.image, - NemoWindow .sidebar .view.image, - NemoWindow .sidebar row.image, - NemoWindow .source-list.sidebar.view .view.image, - NemoWindow .source-list.sidebar.view row.image, - MarlinViewWindow .sidebar .view.image, - MarlinViewWindow .sidebar row.image, - MarlinViewWindow .source-list.sidebar.view .view.image, - MarlinViewWindow .source-list.sidebar.view row.image { - color: rgba(101, 123, 131, 0.7); } - GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar row.cell:selected, GtkFileChooserDialog .source-list.sidebar.view .view.cell:selected, GtkFileChooserDialog .source-list.sidebar.view row.cell:selected, - NautilusWindow .sidebar .view.cell:selected, - NautilusWindow .sidebar row.cell:selected, - NautilusWindow .source-list.sidebar.view .view.cell:selected, - NautilusWindow .source-list.sidebar.view row.cell:selected, - NemoWindow .sidebar .view.cell:selected, - NemoWindow .sidebar row.cell:selected, - NemoWindow .source-list.sidebar.view .view.cell:selected, - NemoWindow .source-list.sidebar.view row.cell:selected, - MarlinViewWindow .sidebar .view.cell:selected, - MarlinViewWindow .sidebar row.cell:selected, - MarlinViewWindow .source-list.sidebar.view .view.cell:selected, - MarlinViewWindow .source-list.sidebar.view row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog .source-list.sidebar.view.frame, - NautilusWindow .sidebar.frame, - NautilusWindow .source-list.sidebar.view.frame, - NemoWindow .sidebar.frame, - NemoWindow .source-list.sidebar.view.frame, - MarlinViewWindow .sidebar.frame, - MarlinViewWindow .source-list.sidebar.view.frame { - color: #657b83; } - GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog .source-list.sidebar.view .separator, - NautilusWindow .sidebar .separator, - NautilusWindow GtkPlacesSidebar.sidebar .view.separator, - NautilusWindow .source-list.sidebar.view .separator, - NemoWindow .sidebar .separator, - NemoWindow GtkPlacesSidebar.sidebar .view.separator, - NemoWindow .source-list.sidebar.view .separator, - MarlinViewWindow .sidebar .separator, - MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, - MarlinViewWindow .source-list.sidebar.view .separator { - color: transparent; } - -GtkFileChooserDialog.maximized .sidebar, -NautilusWindow.maximized .sidebar, -NemoWindow.maximized .sidebar, -MarlinViewWindow.maximized .sidebar { - background-color: #073642; } - -GtkFileChooserDialog .pane-separator, -NautilusWindow .pane-separator, -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { - background-color: #073642; } - -NautilusWindow NautilusWindowSlot { - background-color: #fdf6e3; } - -NautilusDesktopWindow NautilusWindowSlot { - background-color: transparent; } - -GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { - background-color: #073642; } - -GtkFileChooserDialog .sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-action-box { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-vbox > .frame { - color: #657b83; - border-color: transparent; } - -GtkFileChooserDialog .action-bar.frame { - background-color: transparent; - border-color: #05232b; } - -GtkFileChooserDialog .action-bar.frame GtkLabel, GtkFileChooserDialog .action-bar.frame GtkComboBox, -GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, -GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { - color: #657b83; } - -FeedReaderreaderUI.background.csd > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd > .titlebar .pane-separator, -GeditWindow.background.csd.maximized > .titlebar .pane-separator, -GeditWindow.background.csd > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { - background-color: #e4dabc; } - -FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #eee8d5; } - FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #f2eee0; } - -FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #eee8d5; } - FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #f2eee0; } - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; } - -GeditWindow.background.csd { - background-color: transparent; } - -GeditWindow.background .gedit-side-panel-paned .pane-separator { - background-color: #073642; } - -GeditWindow.background .gedit-bottom-panel-paned .pane-separator { - background-color: #dcdfe3; } - -.gedit-bottom-panel-paned { - background-color: #fdf6e3; } - -.gedit-document-panel { - background-color: #073642; } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel .list-row { - color: #657b83; } - .gedit-document-panel .list-row { - background-color: rgba(101, 123, 131, 0); - border: solid rgba(101, 123, 131, 0); - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:hover { - border: solid rgba(101, 123, 131, 0.15); - border-width: 3px 2px 3px 2px; - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel .list-row:active { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:active .button { - color: #fdf6e3; } - .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -GeditFileBrowserWidget { - background-color: #073642; } - .maximized GeditFileBrowserWidget { - background-color: #073642; } - GeditFileBrowserWidget .horizontal { - background-color: transparent; - border-color: #041c22; } - GeditFileBrowserWidget .horizontal GtkComboBox { - color: #657b83; } - -GeditWindow.background.csd GeditFileBrowserView.view { - background-color: transparent; - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander { - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { - color: #268bd2; } - -GtkFileChooserDialog .action-bar.frame .button, -GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - GtkFileChooserDialog .action-bar.frame .button:hover, - GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - GtkFileChooserDialog .action-bar.frame .button:active, - GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog .action-bar.frame .button:checked, - GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - GtkFileChooserDialog .action-bar.frame .button:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -GtkFileChooserDialog .action-bar.frame .entry, -GtkFileChooserDialog .dialog-vbox > .frame .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.4)); - background-color: transparent; } - GtkFileChooserDialog .action-bar.frame .image.entry, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog .action-bar.frame .image.entry:hover, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { - color: inherit; } - GtkFileChooserDialog .action-bar.frame .entry:focus, - GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, #268bd2); } - GtkFileChooserDialog .action-bar.frame .entry:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.25)); } - -GtkFileChooserDialog .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -NautilusWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { - background-color: #8da0a7; - border: 1px solid rgba(0, 0, 0, 0.3); } - -GtkFileChooserDialog .sidebar .scrollbar .trough, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .trough, -NautilusWindow .sidebar .scrollbar .trough, -NautilusWindow .source-list.sidebar.view .scrollbar .trough, -NemoWindow .sidebar .scrollbar .trough, -NemoWindow .source-list.sidebar.view .scrollbar .trough, -MarlinViewWindow .sidebar .scrollbar .trough, -MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { - background-color: rgba(0, 0, 0, 0.2); - border: none; } - -GtkFileChooserDialog .sidebar .scrollbar .slider, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider, -NautilusWindow .sidebar .scrollbar .slider, -NautilusWindow .source-list.sidebar.view .scrollbar .slider, -NemoWindow .sidebar .scrollbar .slider, -NemoWindow .source-list.sidebar.view .scrollbar .slider, -MarlinViewWindow .sidebar .scrollbar .slider, -MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { - background-color: rgba(141, 160, 167, 0.7); } - GtkFileChooserDialog .sidebar .scrollbar .slider:hover, - NautilusWindow .sidebar .scrollbar .slider:hover, - NemoWindow .sidebar .scrollbar .slider:hover, - MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { - background-color: #9cacb2; } - GtkFileChooserDialog .sidebar .scrollbar .slider:prelight:active, - NautilusWindow .sidebar .scrollbar .slider:prelight:active, - NemoWindow .sidebar .scrollbar .slider:prelight:active, - MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog .sidebar .scrollbar .slider:insensitive, - NautilusWindow .sidebar .scrollbar .slider:insensitive, - NemoWindow .sidebar .scrollbar .slider:insensitive, - MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { - background-color: transparent; } - -@define-color theme_fg_color #5c616c; -@define-color theme_text_color #5c616c; -@define-color theme_bg_color #F5F6F7; -@define-color theme_base_color #fdf6e3; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #5c616c; -@define-color text_color #5c616c; -@define-color bg_color #F5F6F7; -@define-color base_color #fdf6e3; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #faf6eb; -@define-color insensitive_fg_color alpha(#5c616c, 0.5); -@define-color insensitive_base_color #fdf6e3; -@define-color theme_unfocused_fg_color #5c616c; -@define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #F5F6F7; -@define-color theme_unfocused_base_color #fdf6e3; -@define-color borders #dcdfe3; -@define-color unfocused_borders #dcdfe3; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #1e6ea7; -@define-color content_view_bg #fdf6e3; -@define-color wm_title alpha(#525d76, 0.8); -@define-color wm_unfocused_title alpha(#525d76, 0.5); -@define-color wm_bg #eee8d5; -@define-color wm_bg_unfocused #f2eee0; -@define-color wm_highlight #f2eee0; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #f46067; -@define-color wm_button_close_hover_bg #f68086; -@define-color wm_button_close_active_bg #f13039; -@define-color wm_icon_close_bg #657b83; -@define-color wm_button_hover_bg #fdfdfd; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #D1D3DA; -@define-color wm_icon_bg #90949E; -@define-color wm_icon_unfocused_bg #B6B8C0; -@define-color wm_icon_hover_bg #7A7F8B; -@define-color wm_icon_active_bg #fdf6e3; diff --git a/common/gtk-3.0/3.16/gtk.css b/common/gtk-3.0/3.16/gtk.css deleted file mode 100644 index 458088c..0000000 --- a/common/gtk-3.0/3.16/gtk.css +++ /dev/null @@ -1,3896 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -GtkPaned-handle-size: 1; - -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: #1e6ea7; - -GtkWidget-visited-link-color: #16527c; - -GtkWidget-focus-padding: 2; - -GtkWidget-focus-line-width: 1; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - -GtkStatusbar-shadow-type: none; - outline-color: rgba(92, 97, 108, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; } - -.background { - color: #5c616c; - background-color: rgba(245, 246, 247, 0.999); } - -*:insensitive { - -gtk-image-effect: dim; } - -.gtkstyle-fallback { - background-color: #F5F6F7; - color: #5c616c; } - .gtkstyle-fallback:prelight { - background-color: white; - color: #5c616c; } - .gtkstyle-fallback:active { - background-color: #d9dde0; - color: #5c616c; } - .gtkstyle-fallback:insensitive { - background-color: #faf6eb; - color: rgba(92, 97, 108, 0.55); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view { - color: #5c616c; - background-color: #fdf6e3; } - .view.dim-label, .view.label.separator, GtkPlacesSidebar.sidebar .view.label.separator, .header-bar .view.subtitle { - color: rgba(92, 97, 108, 0.55); } - .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { - color: rgba(253, 246, 227, 0.65); - text-shadow: none; } - -.rubberband { - border: 1px solid #268bd2; - background-color: rgba(38, 139, 210, 0.2); } - -.label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator { - color: #5c616c; } - -.label:insensitive { - color: rgba(92, 97, 108, 0.55); } - -.dim-label, .label.separator, .popover .label.separator, GtkPlacesSidebar.sidebar .label.view.separator, .header-bar .subtitle { - opacity: 0.55; } - -GtkAssistant .sidebar { - background-color: #fdf6e3; - border-top: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #dcdfe3; } - -GtkAssistant.csd .sidebar { - border-top-style: none; } - -GtkAssistant .sidebar .label { - padding: 6px 12px; } - -GtkAssistant .sidebar .label.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -GtkTextView { - background-color: #f9f6ed; } - -.grid-child { - padding: 3px; - border-radius: 3px; } - .grid-child:selected { - outline-offset: -2px; } - -.popover.osd, .osd { - color: #657b83; - border: none; - background-color: rgba(7, 54, 66, 0.95); - background-clip: padding-box; - outline-color: rgba(101, 123, 131, 0.3); - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - .spinner:active { - opacity: 1; - animation: spin 1s linear infinite; } - .spinner:active:insensitive { - opacity: 0.5; } - -.entry { - border: 1px solid; - padding: 5px 8px; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry.image.left { - padding-left: 0; } - .entry.image.right { - padding-right: 0; } - .entry.flat, .entry.flat:focus { - padding: 2px; - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); - border: none; - border-radius: 0; } - .entry:focus { - background-clip: border-box; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(253, 246, 227, 0.55); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.55)); } - .entry:selected, .entry:selected:focus { - background-color: #268bd2; - color: #fdf6e3; } - .entry.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - .linked > .entry:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - .linked > .entry:first-child:dir(rtl) { - border-right-style: none; } - .linked > .entry:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; } - .linked > .entry:last-child:dir(rtl) { - border-left-style: solid; } - .entry.warning { - color: #fdf6e3; - border-color: #cb4b16; - background-image: linear-gradient(to bottom, #df8f68); } - .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); - box-shadow: none; } - .entry.warning:selected, .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .entry.error { - color: #fdf6e3; - border-color: #dc322f; - background-image: linear-gradient(to bottom, #e98077); } - .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); - box-shadow: none; } - .entry.error:selected, .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - .entry.image { - color: #7c7f84; } - .linked.vertical > .entry { - border-bottom-color: #f3efe3; - box-shadow: none; } - .linked.vertical > .entry:focus { - border-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:insensitive { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:first-child { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:first-child:focus { - border-bottom-color: #268bd2; - box-shadow: none; } - .linked.vertical > .entry:first-child:insensitive { - border-bottom-color: #f3efe3; } - .linked.vertical > .entry:last-child { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .linked.vertical > .entry:last-child:focus { - border-bottom-color: #268bd2; - box-shadow: 0 -1px 0 0 #268bd2; } - .linked.vertical > .entry:last-child:insensitive { - border-bottom-color: rgba(0, 0, 0, 0.14); } - .osd .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.35)); - background-color: transparent; } - .osd .entry.image, .osd .entry.image:hover { - color: inherit; } - .osd .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, #268bd2); } - .osd .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.2)); } - -GtkSearchEntry.entry { - border-radius: 20px; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -.button { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 5px 8px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(251, 251, 252, 0); - border-color: rgba(101, 123, 131, 0); - transition: none; } - .button.flat:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - .button.flat:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; - -gtk-image-effect: highlight; } - .button:active, .button:checked { - background-clip: border-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; - transition-duration: 50ms; } - .button:active { - color: #5c616c; } - .button:active:hover, .button:checked { - color: #fdf6e3; } - .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; } - .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button:insensitive > GtkLabel { - color: inherit; } - .button:insensitive:active, .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { - color: inherit; } - .button.osd { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(3, 24, 29, 0.95); } - .button.osd.image-button, .header-bar .button.osd.titlebutton, - .titlebar .button.osd.titlebutton { - padding: 10px; } - .button.osd:hover { - color: #268bd2; } - .button.osd:active, .button.osd:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .button.osd:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .osd .button:dir(rtl) { - border-radius: 0; - border-right-style: none; - border-left-style: none; } - .osd .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:dir(rtl) { - border-left-style: solid; } - .osd .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd .button:hover, .osd .button:hover:first-child, .osd .button:hover:last-child { - box-shadow: none; } - .osd .button:active, .osd .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd .button.flat:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd .button.flat:hover, .osd .button.flat:hover:first-child, .osd .button.flat:hover:last-child { - box-shadow: none; } - .osd .button.flat:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); - background-image: none; } - .osd .button.flat:active, .osd .button.flat:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .button.suggested-action:active, .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .button.suggested-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.suggested-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .button.destructive-action:active, .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .button.destructive-action.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.destructive-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - .button.image-button, .header-bar .button.titlebutton, - .titlebar .button.titlebutton { - padding: 7px; } - .header-bar .button.image-button, .header-bar .button.titlebutton { - padding: 7px 10px; } - .button.text-button { - padding-left: 16px; - padding-right: 16px; } - .button.text-button.image-button, .header-bar .button.text-button.titlebutton, - .titlebar .button.text-button.titlebutton { - padding: 5px 8px; } - .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, - .titlebar .button.text-button.titlebutton GtkLabel:first-child { - padding-left: 8px; } - .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, - .titlebar .button.text-button.titlebutton GtkLabel:last-child { - padding-right: 8px; } - .stack-switcher > .button { - outline-offset: -3px; } - .stack-switcher > .button > GtkLabel { - 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 { - padding: 5px 10px; } - .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, - .titlebar .stack-switcher > .button.titlebutton { - padding: 2px 4px; } - .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; } - .stack-switcher > .button.needs-attention > .label, - .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 4px; } - .stack-switcher > .button.needs-attention > .label:dir(rtl), - .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { - background-position: left 3px, left 4px; } - .inline-toolbar .button, .inline-toolbar .button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar GtkToolButton > .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .inline-toolbar GtkToolButton > .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { - color: inherit; } - .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { - color: inherit; } - -.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked > .button, -.linked > .button:hover, -.linked > .button:active, -.linked > .button:checked, GtkComboBox.combobox-entry .entry, GtkComboBox.combobox-entry .button, .primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button, NemoWindow .primary-toolbar NemoPathBar.linked > .button, .linked > GtkComboBox > .button:dir(ltr) { - border-radius: 0; - border-left-style: none; - border-right-style: none; } - .inline-toolbar GtkToolButton > .button.flat:hover, .osd .button:hover, .inline-toolbar .button:hover, .linked > .button:hover, GtkComboBox.combobox-entry .entry:hover, GtkComboBox.combobox-entry .button:hover, .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover, .linked > GtkComboBox > .button:hover:dir(ltr) { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4), inset -1px 0 rgba(101, 123, 131, 0.4); } - .inline-toolbar GtkToolButton > .button.flat:active, .osd .button:active, .inline-toolbar .button:active, .linked > .button:active, GtkComboBox.combobox-entry .entry:active, GtkComboBox.combobox-entry .button:active, .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, .linked > GtkComboBox > .button:active:dir(ltr), .inline-toolbar GtkToolButton > .button.flat:checked, .osd .button:checked, .inline-toolbar .button:checked, .linked > .button:checked, GtkComboBox.combobox-entry .entry:checked, GtkComboBox.combobox-entry .button:checked, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked, .linked > GtkComboBox > .button:checked:dir(ltr) { - box-shadow: none; } - .inline-toolbar.toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar GtkToolButton > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:dir(rtl) > .button.flat, .osd .button:dir(rtl):hover, .osd .button:dir(rtl):active, .osd .button:dir(rtl):checked, .osd .button:dir(rtl):insensitive, .inline-toolbar .button:dir(rtl), .inline-toolbar .button:dir(rtl):backdrop, .linked > .button:dir(rtl), - .linked > .button:dir(rtl):hover, - .linked > .button:dir(rtl):active, - .linked > .button:dir(rtl):checked, GtkComboBox.combobox-entry .entry:dir(rtl), GtkComboBox.combobox-entry .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:dir(rtl), .header-bar .linked.stack-switcher > .button:dir(rtl), .primary-toolbar .linked.path-bar > .button:dir(rtl), .header-bar .linked.path-bar > .button:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:dir(rtl), .linked > GtkComboBox > .button:dir(rtl) { - border-radius: 0; } - -.osd .button:first-child:hover, .osd .button:first-child:active, .osd .button:first-child:checked, .osd .button:first-child:insensitive, .inline-toolbar .button:first-child, .linked > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, GtkComboBox.combobox-entry .entry:first-child, GtkComboBox.combobox-entry .button:first-child, .linked > GtkComboBox:first-child > .button, .primary-toolbar .linked.stack-switcher > .button:first-child, .header-bar .linked.stack-switcher > .button:first-child, .primary-toolbar .linked.path-bar > .button:first-child, .header-bar .linked.path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; } - .osd .button:first-child:hover, .inline-toolbar .button:first-child:hover, .linked > .button:first-child:hover, .inline-toolbar GtkToolButton:first-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:first-child:hover, GtkComboBox.combobox-entry .button:first-child:hover, .linked > GtkComboBox:first-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.4); } - .osd .button:first-child:active, .inline-toolbar .button:first-child:active, .linked > .button:first-child:active, .inline-toolbar GtkToolButton:first-child > .button.flat:active, GtkComboBox.combobox-entry .entry:first-child:active, GtkComboBox.combobox-entry .button:first-child:active, .linked > GtkComboBox:first-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, .osd .button:first-child:checked, .inline-toolbar .button:first-child:checked, .linked > .button:first-child:checked, .inline-toolbar GtkToolButton:first-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:first-child:checked, GtkComboBox.combobox-entry .button:first-child:checked, .linked > GtkComboBox:first-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - -.osd .button:last-child:hover, .osd .button:last-child:active, .osd .button:last-child:checked, .osd .button:last-child:insensitive, .inline-toolbar .button:last-child, .linked > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, GtkComboBox.combobox-entry .entry:last-child, GtkComboBox.combobox-entry .button:last-child, .linked > GtkComboBox:last-child > .button, .primary-toolbar .linked.stack-switcher > .button:last-child, .header-bar .linked.stack-switcher > .button:last-child, .primary-toolbar .linked.path-bar > .button:last-child, .header-bar .linked.path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; } - .osd .button:last-child:hover, .inline-toolbar .button:last-child:hover, .linked > .button:last-child:hover, .inline-toolbar GtkToolButton:last-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:last-child:hover, GtkComboBox.combobox-entry .button:last-child:hover, .linked > GtkComboBox:last-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4); } - .osd .button:last-child:active, .inline-toolbar .button:last-child:active, .linked > .button:last-child:active, .inline-toolbar GtkToolButton:last-child > .button.flat:active, GtkComboBox.combobox-entry .entry:last-child:active, GtkComboBox.combobox-entry .button:last-child:active, .linked > GtkComboBox:last-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, .osd .button:last-child:checked, .inline-toolbar .button:last-child:checked, .linked > .button:last-child:checked, .inline-toolbar GtkToolButton:last-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:last-child:checked, GtkComboBox.combobox-entry .button:last-child:checked, .linked > GtkComboBox:last-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - .osd .button:last-child:dir(rtl):hover, .osd .button:last-child:dir(rtl):active, .osd .button:last-child:dir(rtl):checked, .osd .button:last-child:dir(rtl):insensitive, .inline-toolbar .button:last-child:dir(rtl), .linked > .button:last-child:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar GtkToolButton:last-child > .button.flat:dir(rtl), .inline-toolbar.toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, .inline-toolbar GtkToolButton:last-child:dir(rtl) > .button.flat, GtkComboBox.combobox-entry .entry:last-child:dir(rtl), GtkComboBox.combobox-entry .button:last-child:dir(rtl), .linked > GtkComboBox:last-child > .button:dir(rtl), .primary-toolbar .linked.stack-switcher > .button:last-child:dir(rtl), .header-bar .linked.stack-switcher > .button:last-child:dir(rtl), .primary-toolbar .linked.path-bar > .button:last-child:dir(rtl), .header-bar .linked.path-bar > .button:last-child:dir(rtl), NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:dir(rtl) { - border-bottom-left-radius: 0; } - -.osd .button:only-child:hover, .osd .button:only-child:active, .osd .button:only-child:checked, .osd .button:only-child:insensitive, .inline-toolbar .button:only-child, .linked > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, GtkComboBox.combobox-entry .entry:only-child, GtkComboBox.combobox-entry .button:only-child, .linked > GtkComboBox:only-child > .button, .primary-toolbar .linked.stack-switcher > .button:only-child, .header-bar .linked.stack-switcher > .button:only-child, .primary-toolbar .linked.path-bar > .button:only-child, .header-bar .linked.path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child { - border-radius: 3px; - border-style: solid; } - .osd .button:only-child:hover, .inline-toolbar .button:only-child:hover, .linked > .button:only-child:hover, .inline-toolbar GtkToolButton:only-child > .button.flat:hover, GtkComboBox.combobox-entry .entry:only-child:hover, GtkComboBox.combobox-entry .button:only-child:hover, .linked > GtkComboBox:only-child > .button:hover, .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - .osd .button:only-child:active, .inline-toolbar .button:only-child:active, .linked > .button:only-child:active, .inline-toolbar GtkToolButton:only-child > .button.flat:active, GtkComboBox.combobox-entry .entry:only-child:active, GtkComboBox.combobox-entry .button:only-child:active, .linked > GtkComboBox:only-child > .button:active, .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, .osd .button:only-child:checked, .inline-toolbar .button:only-child:checked, .linked > .button:only-child:checked, .inline-toolbar GtkToolButton:only-child > .button.flat:checked, GtkComboBox.combobox-entry .entry:only-child:checked, GtkComboBox.combobox-entry .button:only-child:checked, .linked > GtkComboBox:only-child > .button:checked, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.linked.vertical > .entry, .linked.vertical > .entry:focus, .linked.vertical > .entry:insensitive, .linked.vertical > .button, -.linked.vertical > .button:hover, -.linked.vertical > .button:active, -.linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button, -.linked.vertical > GtkComboBox > .button { - border-style: solid; - border-bottom-style: none; - border-top-style: none; - border-radius: 0; } - .linked.vertical > .entry:hover, .linked.vertical > .button:hover, .linked.vertical > GtkComboBoxText > .button:hover, - .linked.vertical > GtkComboBox > .button:hover { - box-shadow: inset 0 -1px rgba(101, 123, 131, 0.4), inset 0 1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:active, .linked.vertical > .button:active, .linked.vertical > GtkComboBoxText > .button:active, - .linked.vertical > GtkComboBox > .button:active, .linked.vertical > .entry:checked, .linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .button:checked, - .linked.vertical > GtkComboBox > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .button, -.linked.vertical > GtkComboBox:first-child > .button { - border-radius: 3px 3px 0 0; - border-top-style: solid; } - .linked.vertical > .entry:first-child:hover, .linked.vertical > .button:first-child:hover, .linked.vertical > GtkComboBoxText:first-child > .button:hover, - .linked.vertical > GtkComboBox:first-child > .button:hover { - box-shadow: inset 0 -1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:first-child:active, .linked.vertical > .button:first-child:active, .linked.vertical > GtkComboBoxText:first-child > .button:active, - .linked.vertical > GtkComboBox:first-child > .button:active, .linked.vertical > .entry:first-child:checked, .linked.vertical > .button:first-child:checked, .linked.vertical > GtkComboBoxText:first-child > .button:checked, - .linked.vertical > GtkComboBox:first-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .button, -.linked.vertical > GtkComboBox:last-child > .button { - border-radius: 0 0 3px 3px; - border-bottom-style: solid; } - .linked.vertical > .entry:last-child:hover, .linked.vertical > .button:last-child:hover, .linked.vertical > GtkComboBoxText:last-child > .button:hover, - .linked.vertical > GtkComboBox:last-child > .button:hover { - box-shadow: inset 0 1px rgba(101, 123, 131, 0.4); } - .linked.vertical > .entry:last-child:active, .linked.vertical > .button:last-child:active, .linked.vertical > GtkComboBoxText:last-child > .button:active, - .linked.vertical > GtkComboBox:last-child > .button:active, .linked.vertical > .entry:last-child:checked, .linked.vertical > .button:last-child:checked, .linked.vertical > GtkComboBoxText:last-child > .button:checked, - .linked.vertical > GtkComboBox:last-child > .button:checked { - box-shadow: none; } - -.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .button, -.linked.vertical > GtkComboBox:only-child > .button { - border-radius: 3px; - border-style: solid; } - .linked.vertical > .entry:only-child:hover, .linked.vertical > .button:only-child:hover, .linked.vertical > GtkComboBoxText:only-child > .button:hover, - .linked.vertical > GtkComboBox:only-child > .button:hover { - box-shadow: none; } - .linked.vertical > .entry:only-child:active, .linked.vertical > .button:only-child:active, .linked.vertical > GtkComboBoxText:only-child > .button:active, - .linked.vertical > GtkComboBox:only-child > .button:active, .linked.vertical > .entry:only-child:checked, .linked.vertical > .button:only-child:checked, .linked.vertical > GtkComboBoxText:only-child > .button:checked, - .linked.vertical > GtkComboBox:only-child > .button:checked { - box-shadow: none; } - -.menuitem.button.flat, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .list-row.button, .app-notification .button.flat, -.app-notification.frame .button.flat, .app-notification .button.flat:insensitive, -.app-notification.frame .button.flat:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -/* menu buttons */ -.menuitem.button.flat { - transition: none; - outline-offset: -1px; - border-radius: 2px; } - .menuitem.button.flat:hover { - background-color: #edeff0; } - .menuitem.button.flat:checked { - color: #5c616c; } - -*:link, .button:link, .button:visited { - color: #1e6ea7; } - *:link:visited, .button:visited { - color: #16527c; } - *:selected *:link:visited, *:selected .button:visited:link, *:selected .button:visited { - color: #a7cbdc; } - *:link:hover, .button:hover:link, .button:hover:visited { - color: #268bd2; } - *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { - color: #e8ebe1; } - *:link:active, .button:active:link, .button:active:visited { - color: #1e6ea7; } - *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { - color: #d2e1e0; } - *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { - color: #d2e1e0; } - -.spinbutton { - border-radius: 3px; } - .spinbutton .button { - background-image: none; - border: 1px solid rgba(220, 223, 227, 0.6); - border-style: none none none solid; - color: #646872; - border-radius: 0; - box-shadow: none; } - .spinbutton .button:dir(rtl) { - border-style: none solid none none; } - .spinbutton .button:first-child { - color: red; } - .spinbutton .button:insensitive { - color: rgba(92, 97, 108, 0.55); } - .spinbutton .button:active { - background-color: #268bd2; - color: #fdf6e3; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - border-radius: 2px 2px 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:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; } - GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: #268bd2; - border-radius: 0; - box-shadow: none; } - -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; } - GtkComboBox > .the-button-in-the-combobox { - padding-top: 3px; - padding-bottom: 3px; } - GtkComboBox:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkComboBox .separator.vertical, GtkComboBox GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar GtkComboBox .vertical.view.separator { - -GtkWidget-wide-separators: true; } - GtkComboBox.combobox-entry .entry:dir(ltr) { - border-right-style: none; } - GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: 1px 0 #268bd2; } - GtkComboBox.combobox-entry .entry:dir(rtl) { - border-left-style: none; } - GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: -1px 0 #268bd2; } - GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 #657b83; } - GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.55); } - GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 #657b83; } - GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.55); } - -.toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #F5F6F7; } - .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.85); } - -.primary-toolbar { - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #eee8d5, rgba(228, 218, 188, 0.95)) 1 0 1 0; } - -.inline-toolbar { - background-color: #edeef0; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -.search-bar { - background-color: #F5F6F7; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 0 1px; - padding: 3px; } - -.action-bar { - background-color: #edeef0; } - -.header-bar { - padding: 5px 5px 4px 5px; - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: #e4dabc; - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; } - .csd .header-bar { - background-color: rgba(238, 232, 213, 0.95); - border-color: rgba(228, 218, 188, 0.95); } - .header-bar:backdrop { - color: rgba(82, 93, 118, 0.5); } - .header-bar .title { - padding-left: 12px; - padding-right: 12px; } - .header-bar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .header-bar.selection-mode, .header-bar.titlebar.selection-mode { - color: #fdf6e3; - background-color: rgba(38, 139, 210, 0.95); - border-color: rgba(35, 128, 193, 0.95); - box-shadow: none; } - .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { - background-color: rgba(38, 139, 210, 0.95); - color: rgba(253, 246, 227, 0.6); } - .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .button.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.05); - border-color: rgba(253, 246, 227, 0.5); } - .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { - color: rgba(38, 139, 210, 0.95); - outline-color: rgba(38, 139, 210, 0.25); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { - color: rgba(38, 139, 210, 0.35); - background-color: rgba(253, 246, 227, 0.15); - border-color: rgba(253, 246, 227, 0.15); } - .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { - background-color: #268bd2; } - .tiled .header-bar, .tiled .header-bar:backdrop, - .maximized .header-bar, .maximized .header-bar:backdrop { - border-radius: 0; } - .maximized .header-bar { - background-color: #eee8d5; - border-color: #e4dabc; } - .header-bar.default-decoration, - .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, - .csd .header-bar.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: #eee8d5; - border-bottom-width: 0; } - .maximized .header-bar.default-decoration, .maximized - .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized - .csd .header-bar.default-decoration:backdrop { - background-color: #eee8d5; } - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: 4px 4px 0 0; - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; - box-shadow: inset 0 1px rgba(242, 238, 224, 0.95); } - .csd .titlebar { - background-color: rgba(238, 232, 213, 0.95); } - .titlebar:backdrop { - color: rgba(82, 93, 118, 0.5); - background-color: #f2eee0; } - .csd .titlebar:backdrop { - background-color: rgba(242, 238, 224, 0.95); } - .maximized .titlebar { - background-color: #eee8d5; } - .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { - background-color: #f2eee0; } - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { - background-color: transparent; } - -.primary-toolbar .separator, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, -.header-bar > GtkBox > .separator.vertical, GtkPlacesSidebar.sidebar -.header-bar > GtkBox > .vertical.view.separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(82, 93, 118, 0) 25%, rgba(82, 93, 118, 0.15) 25%, rgba(82, 93, 118, 0.15) 75%, rgba(82, 93, 118, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar .separator:backdrop, .primary-toolbar GtkPlacesSidebar.sidebar .view.separator:backdrop, GtkPlacesSidebar.sidebar .primary-toolbar .view.separator:backdrop, .header-bar .header-bar-separator:backdrop, - .header-bar > GtkBox > .separator.vertical:backdrop, GtkPlacesSidebar.sidebar - .header-bar > GtkBox > .vertical.view.separator:backdrop { - opacity: 0.6; } - -.primary-toolbar .entry, .header-bar .entry { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { - color: inherit; } - .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { - opacity: 0.85; } - .primary-toolbar .entry:focus, .header-bar .entry:focus { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); - background-clip: border-box; } - .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { - color: #fdf6e3; } - .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar .entry.warning, .header-bar .entry.warning { - color: white; - border-color: #cb4b16; - background-image: linear-gradient(to bottom, rgba(216, 134, 94, 0.98)); } - .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); } - .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar .entry.error, .header-bar .entry.error { - color: white; - border-color: #dc322f; - background-image: linear-gradient(to bottom, rgba(227, 118, 109, 0.98)); } - .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); } - .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar .button, .header-bar .button { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - outline-offset: -3px; - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button:backdrop, .header-bar .button:backdrop { - opacity: 0.7; } - .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; - background-clip: border-box; } - .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(82, 93, 118, 0.35); - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { - color: inherit; } - .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.primary-toolbar .linked > .button, .header-bar .linked > .button { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked > .button:hover, .header-bar .linked > .button:hover { - box-shadow: none; } - -.primary-toolbar .linked.stack-switcher > .button, .header-bar .linked.stack-switcher > .button, .primary-toolbar .linked.path-bar > .button, .header-bar .linked.path-bar > .button { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - background-color: rgba(255, 255, 255, 0.9); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .primary-toolbar .linked.stack-switcher > .button:insensitive, .header-bar .linked.stack-switcher > .button:insensitive, .primary-toolbar .linked.path-bar > .button:insensitive, .header-bar .linked.path-bar > .button:insensitive { - color: rgba(82, 93, 118, 0.4); } - .primary-toolbar .linked.stack-switcher > .button:hover, .header-bar .linked.stack-switcher > .button:hover, .primary-toolbar .linked.path-bar > .button:hover, .header-bar .linked.path-bar > .button:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1), inset -1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar .linked.stack-switcher > .button:active, .header-bar .linked.stack-switcher > .button:active, .primary-toolbar .linked.stack-switcher > .button:checked, .header-bar .linked.stack-switcher > .button:checked, .primary-toolbar .linked.path-bar > .button:active, .header-bar .linked.path-bar > .button:active, .primary-toolbar .linked.path-bar > .button:checked, .header-bar .linked.path-bar > .button:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:first-child:hover, .header-bar .linked.stack-switcher > .button:first-child:hover, .primary-toolbar .linked.path-bar > .button:first-child:hover, .header-bar .linked.path-bar > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar .linked.stack-switcher > .button:first-child:active, .header-bar .linked.stack-switcher > .button:first-child:active, .primary-toolbar .linked.stack-switcher > .button:first-child:checked, .header-bar .linked.stack-switcher > .button:first-child:checked, .primary-toolbar .linked.path-bar > .button:first-child:active, .header-bar .linked.path-bar > .button:first-child:active, .primary-toolbar .linked.path-bar > .button:first-child:checked, .header-bar .linked.path-bar > .button:first-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:last-child:hover, .header-bar .linked.stack-switcher > .button:last-child:hover, .primary-toolbar .linked.path-bar > .button:last-child:hover, .header-bar .linked.path-bar > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar .linked.stack-switcher > .button:last-child:active, .header-bar .linked.stack-switcher > .button:last-child:active, .primary-toolbar .linked.stack-switcher > .button:last-child:checked, .header-bar .linked.stack-switcher > .button:last-child:checked, .primary-toolbar .linked.path-bar > .button:last-child:active, .header-bar .linked.path-bar > .button:last-child:active, .primary-toolbar .linked.path-bar > .button:last-child:checked, .header-bar .linked.path-bar > .button:last-child:checked { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:hover, .header-bar .linked.stack-switcher > .button:only-child:hover, .primary-toolbar .linked.path-bar > .button:only-child:hover, .header-bar .linked.path-bar > .button:only-child:hover { - box-shadow: none; } - .primary-toolbar .linked.stack-switcher > .button:only-child:active, .header-bar .linked.stack-switcher > .button:only-child:active, .primary-toolbar .linked.stack-switcher > .button:only-child:checked, .header-bar .linked.stack-switcher > .button:only-child:checked, .primary-toolbar .linked.path-bar > .button:only-child:active, .header-bar .linked.path-bar > .button:only-child:active, .primary-toolbar .linked.path-bar > .button:only-child:checked, .header-bar .linked.path-bar > .button:only-child:checked { - box-shadow: none; } - -.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { - color: rgba(82, 93, 118, 0.35); - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, .primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { - color: rgba(82, 93, 118, 0.35); - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, .primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { - color: #fdf6e3; } - .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { - background-color: rgba(253, 246, 227, 0.1); - border-color: transparent; } - .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { - color: rgba(253, 246, 227, 0.4); } - -.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(82, 93, 118, 0.8); } - .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { - background-color: rgba(82, 93, 118, 0.05); - border-color: transparent; } - .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(82, 93, 118, 0.5); } - .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { - background-color: rgba(0, 0, 0, 0.1); } - -.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(82, 93, 118, 0.2); } - -.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { - color: inherit; } - .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr), .header-bar GtkComboBox.combobox-entry .button:dir(ltr) { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(ltr):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(ltr):insensitive { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0); } - -.primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl), .header-bar GtkComboBox.combobox-entry .button:dir(rtl) { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - .primary-toolbar GtkComboBox.combobox-entry .button:dir(rtl):insensitive, .header-bar GtkComboBox.combobox-entry .button:dir(rtl):insensitive { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0); } - -.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { - opacity: 0.75; } - -.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(82, 93, 118, 0.15); } - -.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(82, 93, 118, 0.15)); } - .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(82, 93, 118, 0.1)); } - -.primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, #fbfbfc); - border-color: rgba(82, 93, 118, 0.3); } - .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { - background-image: linear-gradient(to bottom, white); - border-color: rgba(82, 93, 118, 0.3); } - .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, rgba(247, 246, 241, 0.985)); - border-color: rgba(82, 93, 118, 0.3); } - -.path-bar .button { - padding: 5px 10px; } - .path-bar .button:first-child { - padding-left: 10px; } - .path-bar .button:last-child { - padding-right: 10px; } - .path-bar .button:only-child { - padding-left: 14px; - padding-right: 14px; } - .path-bar .button GtkLabel:last-child { - padding-left: 4px; } - .path-bar .button GtkLabel:first-child { - padding-right: 4px; } - .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { - padding-right: 0; - padding-left: 0; } - .path-bar .button GtkImage { - padding-top: 2px; - padding-bottom: 1px; } - -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: rgba(92, 97, 108, 0.15); - border-top-color: rgba(0, 0, 0, 0.1); } - GtkTreeView.view:selected { - border-radius: 0; - border-left-color: #92c1db; - border-top-color: rgba(92, 97, 108, 0.1); } - GtkTreeView.view:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkTreeView.view:insensitive:selected { - color: #7cb6d9; } - GtkTreeView.view.dnd { - border-style: solid none; - border-width: 1px; - border-color: #41769f; } - GtkTreeView.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #adaca8; } - GtkTreeView.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - GtkTreeView.view.expander:hover { - color: #5c616c; } - GtkTreeView.view.expander:selected { - color: #bdd6de; } - GtkTreeView.view.expander:selected:hover { - color: #fdf6e3; } - GtkTreeView.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - GtkTreeView.view.progressbar, GtkTreeView.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-image: linear-gradient(to bottom, #268bd2); } - GtkTreeView.view.progressbar:selected, GtkTreeView.view.progressbar:selected:focus, GtkTreeView.view.progressbar:focus:selected, GtkTreeView.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-image: linear-gradient(to bottom, #fdf6e3); } - GtkTreeView.view.trough { - color: #5c616c; - background-image: linear-gradient(to bottom, #657b83); - border-radius: 3px; - border-width: 0; } - GtkTreeView.view.trough:selected, GtkTreeView.view.trough:selected:focus { - color: #fdf6e3; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); - border-radius: 3px; - border-width: 0; } - -column-header .button { - color: #7c7f84; - background-color: #fdf6e3; } - column-header .button:hover { - color: #268bd2; - box-shadow: none; - transition: none; } - column-header .button:active { - color: #5c616c; - transition: none; } - -column-header:last-child .button, column-header:last-child.button { - border-right-style: none; - border-image: none; } - -column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { - transition: none; - color: #268bd2; - box-shadow: inset 1px 1px 0 1px #268bd2, inset -1px 0 0 1px #268bd2, inset 1px 1px #fdf6e3, inset -1px 0 #fdf6e3; } - -column-header .button, column-header .button:hover, column-header .button:active { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; } - column-header .button:active, column-header .button:hover { - background-color: #fdf6e3; } - column-header .button:active:hover { - color: #5c616c; } - column-header .button:insensitive { - border-color: #F5F6F7; - background-image: none; } - -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #eee8d5; - color: rgba(82, 93, 118, 0.8); } - .menubar:backdrop { - color: rgba(82, 93, 118, 0.5); } - .menubar > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - .menubar > .menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - .menubar > .menuitem:insensitive { - color: rgba(82, 93, 118, 0.2); - border-color: transparent; } - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; } - .csd .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - .menu .menuitem { - padding: 5px; } - .menu .menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - .menu .menuitem:insensitive { - color: rgba(92, 97, 108, 0.55); } - .menu .menuitem.separator, .menu GtkPlacesSidebar.sidebar .menuitem.view.separator, GtkPlacesSidebar.sidebar .menu .menuitem.view.separator { - color: rgba(253, 246, 227, 0); } - .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 #ede7d7; } - .menu.button.bottom { - border-top: 1px solid #ede7d7; } - .menu.button:hover { - background-color: #ede7d7; } - .menu.button:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent; } - -.csd .popup { - border-radius: 2px; } - -.menuitem .accelerator { - color: alpha(currentColor,0.55); } - -.popover { - padding: 2px; - border: 1px solid #cdd2d7; - border-radius: 3px; - background-clip: border-box; - background-color: #fdf6e3; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } - .popover .separator, .popover GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .popover .view.separator { - color: rgba(253, 246, 227, 0); } - .popover > .list, - .popover > .view, - .popover > .toolbar, - .popover > .inline-toolbar, - .popover.osd > .toolbar, - .popover.osd > .inline-toolbar { - border-style: none; - background-color: transparent; } - -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - .entry.cursor-handle.top, - .cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - .entry.cursor-handle.bottom, - .cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -.notebook { - padding: 0; - background-color: #fdf6e3; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -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.frame { - border: 1px solid #dcdfe3; } - .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.header { - background-color: #F5F6F7; } - .notebook.header.frame { - border: 0px solid #dcdfe3; } - .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.top { - box-shadow: inset 0 -1px #dcdfe3; } - .notebook.header.bottom { - box-shadow: inset 0 1px #dcdfe3; } - .notebook.header.right { - box-shadow: inset 1px 0 #dcdfe3; } - .notebook.header.left { - box-shadow: inset -1px 0 #dcdfe3; } - .notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - outline-offset: 0; } - .notebook tab.top, .notebook tab.bottom { - padding: 4px 15px; } - .notebook tab.left, .notebook tab.right { - padding: 4px 15px; } - .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { - padding-left: 12px; - padding-right: 12px; } - .notebook tab.reorderable-page.top, .notebook tab.top { - padding-top: 6px; - border-radius: 3.5px 2px 0 0; - border-width: 0; - border-top-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #fdf6e3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom, .notebook tab.bottom { - padding-bottom: 6px; - border-radius: 0 0 2px 3.5px; - border-width: 0; - border-bottom-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 -1px #fdf6e3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right, .notebook tab.right { - padding-right: 17px; - border-radius: 0 3.5px 3.5px 0; - border-width: 0; - border-right-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #fdf6e3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left, .notebook tab.left { - padding-left: 17px; - border-radius: 3.5px 0 0 3.5px; - border-width: 0; - border-left-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #fdf6e3; } - .notebook tab GtkLabel { - padding: 0 2px; - color: rgba(92, 97, 108, 0.55); } - .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(92, 97, 108, 0.775); } - .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { - color: #5c616c; } - .notebook tab .button { - padding: 0; - color: #92959d; } - .notebook tab .button:hover { - color: #ff4d4d; } - .notebook tab .button:active { - color: #268bd2; } - .notebook tab .button > GtkImage { - padding: 2px; } - .notebook.arrow { - color: rgba(92, 97, 108, 0.55); } - .notebook.arrow:hover { - color: rgba(92, 97, 108, 0.775); } - .notebook.arrow:active { - color: #5c616c; } - .notebook.arrow:insensitive { - color: rgba(92, 97, 108, 0.25); } - -.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: 6px; } - .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { - margin: 0; - background-color: #8a8e96; - border: 1px solid rgba(255, 255, 255, 0.6); - 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.99; } - .scrollbar .trough { - background-color: #fdf4de; - border: 1px none #dcdfe3; } - .scrollbar .slider { - background-color: #b8babf; } - .scrollbar .slider:hover { - background-color: #c7c9cd; } - .scrollbar .slider:prelight:active, .scrollbar .slider:active { - background-color: #268bd2; } - .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, #dcdfe3 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #fdf4de; } - .scrollbars-junction:dir(rtl), - .scrollbars-junction.frame:dir(rtl) { - border-image-slice: 0 1 0 0; } - -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 41; - outline-color: transparent; } - GtkSwitch.trough, GtkSwitch.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; } - GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { - background-position: left center; } - -GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough, -.list-row:selected GtkSwitch.trough, -GtkInfoBar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -.header-bar GtkSwitch.trough, -.primary-toolbar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } - -GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active, -.list-row:selected GtkSwitch.trough:active, -GtkInfoBar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -.header-bar GtkSwitch.trough:active, -.primary-toolbar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } - -GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:insensitive, -.list-row:selected GtkSwitch.trough:insensitive, -GtkInfoBar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:insensitive, -.primary-toolbar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } - -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } - -.menu .menuitem:hover GtkSwitch.trough:active:insensitive, -.list-row:selected GtkSwitch.trough:active:insensitive, -GtkInfoBar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:active:insensitive, -.primary-toolbar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } - -.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check, -GtkFileChooserDialog .dialog-vbox > .frame .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -.menu .menuitem.check:hover, -GtkTreeView.view.check:selected, -.list-row:selected .check, -GtkInfoBar .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.check:insensitive:hover, -GtkTreeView.view.check:insensitive:selected, -.list-row:selected .check:insensitive, -GtkInfoBar .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -.menu .menuitem.check:inconsistent:hover, -GtkTreeView.view.check:inconsistent:selected, -.list-row:selected .check:inconsistent, -GtkInfoBar .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.check:inconsistent:insensitive:hover, -GtkTreeView.view.check:inconsistent:insensitive:selected, -.list-row:selected .check:inconsistent:insensitive, -GtkInfoBar .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -.menu .menuitem.check:checked:hover, -GtkTreeView.view.check:checked:selected, -.list-row:selected .check:checked, -GtkInfoBar .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .check:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -.menu .menuitem.check:checked:insensitive:hover, -GtkTreeView.view.check:checked:insensitive:selected, -.list-row:selected .check:checked:insensitive, -GtkInfoBar .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio, -GtkFileChooserDialog .dialog-vbox > .frame .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -.menu .menuitem.radio:hover, -GtkTreeView.view.radio:selected, -.list-row:selected .radio, -GtkInfoBar .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:insensitive:hover, -GtkTreeView.view.radio:insensitive:selected, -.list-row:selected .radio:insensitive, -GtkInfoBar .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:hover, -GtkTreeView.view.radio:inconsistent:selected, -.list-row:selected .radio:inconsistent, -GtkInfoBar .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -.menu .menuitem.radio:inconsistent:insensitive:hover, -GtkTreeView.view.radio:inconsistent:insensitive:selected, -.list-row:selected .radio:inconsistent:insensitive, -GtkInfoBar .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -.menu .menuitem.radio:checked:hover, -GtkTreeView.view.radio:checked:selected, -.list-row:selected .radio:checked, -GtkInfoBar .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } - -GtkFileChooserDialog .action-bar.frame .radio:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -.menu .menuitem.radio:checked:insensitive:hover, -GtkTreeView.view.radio:checked:insensitive:selected, -.list-row:selected .radio:checked:insensitive, -GtkInfoBar .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -GtkIconView.view.check, -GtkFlowBox.view.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); - background-color: transparent; } - -GtkIconView.view.check:checked, -GtkFlowBox.view.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-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: rgba(92, 97, 108, 0.55); } - -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; } - .scale.trough { - margin: 5px; } - .scale.fine-tune.trough { - border-radius: 5px; - margin: 3px; } - .scale.slider { - background-clip: border-box; - background-image: linear-gradient(to bottom, #fbfbfc); - border: 1px solid rgba(45, 55, 59, 0.5); - border-radius: 50%; - box-shadow: none; } - .scale.slider:hover { - background-image: linear-gradient(to bottom, white); - border-color: rgba(45, 55, 59, 0.5); } - .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #f9f6ec); - border-color: rgba(45, 55, 59, 0.3); } - .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .osd .scale.slider { - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.95)); - border-color: #268bd2; } - .osd .scale.slider:hover { - background-image: linear-gradient(to bottom, #268bd2); } - .osd .scale.slider:active { - background-image: linear-gradient(to bottom, #1e6ea7); - border-color: #1e6ea7; } - .menu .menuitem:hover .scale.slider, - .list-row:selected .scale.slider, - GtkInfoBar .scale.slider { - background-image: linear-gradient(to bottom, #fdf6e3); - border-color: #fdf6e3; } - .menu .menuitem:hover .scale.slider:hover, - .list-row:selected .scale.slider:hover, - GtkInfoBar .scale.slider:hover { - background-image: linear-gradient(to bottom, #dde6e0); - border-color: #dde6e0; } - .menu .menuitem:hover .scale.slider:active, - .list-row:selected .scale.slider:active, - GtkInfoBar .scale.slider:active { - background-image: linear-gradient(to bottom, #92c1db); - border-color: #92c1db; } - .menu .menuitem:hover .scale.slider:insensitive, - .list-row:selected .scale.slider:insensitive, - GtkInfoBar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); - border-color: #9cc6db; } - .scale.trough { - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, #657b83); } - .scale.trough.highlight { - background-image: linear-gradient(to bottom, #268bd2); } - .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, rgba(38, 139, 210, 0.55)); } - .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(101, 123, 131, 0.55)); } - .osd .scale.trough { - background-image: linear-gradient(to bottom, rgba(10, 80, 98, 0.95)); - outline-color: rgba(101, 123, 131, 0.2); } - .osd .scale.trough.highlight { - background-image: none; - background-image: linear-gradient(to bottom, #268bd2); } - .menu .menuitem:hover .scale.trough, - .list-row:selected .scale.trough, - GtkInfoBar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } - .menu .menuitem:hover .scale.trough.highlight, - .list-row:selected .scale.trough.highlight, - GtkInfoBar .scale.trough.highlight { - background-image: linear-gradient(to bottom, #fdf6e3); } - .menu .menuitem:hover .scale.trough.highlight:insensitive, - .list-row:selected .scale.trough.highlight:insensitive, - GtkInfoBar .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); } - .menu .menuitem:hover .scale.trough:insensitive, - .list-row:selected .scale.trough:insensitive, - GtkInfoBar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -GtkProgressBar { - padding: 0; - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - GtkProgressBar.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; } - -.progressbar { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - .progressbar.osd { - background-color: #268bd2; } - .list-row:selected .progressbar, - GtkInfoBar .progressbar { - background-color: #fdf6e3; } - -.osd .scale.progressbar { - background-color: #268bd2; } - -GtkProgressBar.trough, .level-bar.trough { - border: none; - border-radius: 3px; - background-color: #657b83; } - GtkProgressBar.trough.osd, .osd.level-bar.trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, - GtkInfoBar GtkProgressBar.trough, - GtkInfoBar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.2); } - -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; } - GtkLevelBar.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; } - -.level-bar.trough { - padding: 3px; - border-radius: 4px; } - -.level-bar.fill-block { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - .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 { - border-color: #859900; - background-color: #859900; } - .level-bar.fill-block.level-low { - border-color: #cb4b16; - background-color: #cb4b16; } - .level-bar.fill-block.empty-fill-block { - background-color: rgba(92, 97, 108, 0.2); - border-color: rgba(92, 97, 108, 0.2); } - -.frame { - border: 1px solid #dcdfe3; - padding: 0; } - .frame.flat { - border-style: none; } - .frame.action-bar { - padding: 6px; - border-width: 1px 0 0; } - -GtkScrolledWindow GtkViewport.frame { - border-style: none; } - -.separator, GtkPlacesSidebar.sidebar .view.separator { - color: rgba(0, 0, 0, 0.1); } - GtkFileChooserButton .separator, GtkFileChooserButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar GtkFileChooserButton .view.separator, - GtkFontButton .separator, - GtkFontButton GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .view.separator, - GtkFileChooserButton .separator.vertical, - GtkFileChooserButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFileChooserButton .vertical.view.separator, - GtkFontButton .separator.vertical, - GtkFontButton GtkPlacesSidebar.sidebar .vertical.view.separator, GtkPlacesSidebar.sidebar - GtkFontButton .vertical.view.separator { - -GtkWidget-wide-separators: true; } - -.list, .list-row { - background-color: #fdf6e3; - border-color: #dcdfe3; } - -.list-row, -.grid-child { - padding: 2px; } - -.list-row.button { - background-color: transparent; - border-style: none; - border-radius: 0; - box-shadow: none; } - .list-row.button:hover { - background-color: rgba(0, 0, 0, 0.05); } - .list-row.button:active { - color: #5c616c; } - .list-row.button:selected:active { - color: #fdf6e3; } - .list-row.button:selected:hover { - background-color: #227dbd; } - .list-row.button:selected:insensitive { - color: rgba(253, 246, 227, 0.7); - background-color: rgba(38, 139, 210, 0.7); } - .list-row.button:selected:insensitive .label { - color: inherit; } - -.list-row, list-row.button { - transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .list-row:hover, list-row.button:hover { - transition: none; } - -.app-notification, -.app-notification.frame { - padding: 10px; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: rgba(2, 16, 20, 0.95); } - .app-notification .button, - .app-notification.frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .app-notification .button.flat, - .app-notification.frame .button.flat { - border-color: rgba(38, 139, 210, 0); } - .app-notification .button:hover, - .app-notification.frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .app-notification .button:active, .app-notification .button:checked, - .app-notification.frame .button:active, - .app-notification.frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification .button:insensitive, - .app-notification.frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - .expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - .expander:hover { - color: #aaaeb7; } - .expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GtkCalendar { - color: #5c616c; - border: 1px solid #dcdfe3; - border-radius: 3px; - padding: 2px; } - GtkCalendar:selected { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 1.5px; } - GtkCalendar.header { - color: #5c616c; - border: none; - border-radius: 0; } - GtkCalendar.button, GtkCalendar.button:focus { - color: rgba(92, 97, 108, 0.45); - border-color: transparent; - background-color: transparent; - background-image: none; } - GtkCalendar.button:hover, GtkCalendar.button:focus:hover { - color: #5c616c; } - GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { - color: rgba(92, 97, 108, 0.55); - background-color: transparent; - background-image: none; } - GtkCalendar.highlight { - color: alpha(currentColor,0.55); } - -.message-dialog .dialog-action-area .button { - padding: 8px; } - -.message-dialog { - -GtkDialog-button-spacing: 0; } - .message-dialog .titlebar { - background-color: rgba(238, 232, 213, 0.95); - border-bottom: 1px solid rgba(228, 218, 188, 0.95); } - .message-dialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - .message-dialog.csd .dialog-action-area .button { - padding: 8px; - border-radius: 0; } - .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 { - border-right-style: none; - border-bottom-style: none; } - .message-dialog.csd .dialog-action-area .button:last-child { - border-bottom-right-radius: 3px; } - .message-dialog.csd .dialog-action-area .button:first-child { - border-left-style: none; - border-bottom-left-radius: 3px; } - -GtkFileChooserDialog .search-bar { - background-color: #F5F6F7; - border-color: #dcdfe3; - box-shadow: none; } - -GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #dcdfe3; } - -.sidebar, .sidebar .view { - border: none; - background-color: #fbfbfc; } - .sidebar:selected, .sidebar .view:selected { - background-color: #268bd2; } - -GtkPlacesSidebar.sidebar .view { - color: #5c616c; - background-color: transparent; } - GtkPlacesSidebar.sidebar .view:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.sidebar-item { - padding: 10px 4px; } - .sidebar-item > GtkLabel { - padding-left: 6px; - padding-right: 6px; } - .sidebar-item.needs-attention > GtkLabel { - background-size: 6px 6px, 0 0; } - -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: #dcdfe3; } - -GtkPaned.wide { - -GtkPaned-handle-size: 5; - margin: 0; } - GtkPaned.wide .pane-separator { - background-color: transparent; - border-style: none solid; - border-color: #dcdfe3; - border-width: 1px; } - GtkPaned.wide.vertical .pane-separator { - border-style: solid none; } - -GtkInfoBar { - border-style: none; } - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: #268bd2; - color: #fdf6e3; } - -.list-row:selected .button, GtkInfoBar .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - .list-row:selected .flat.button, GtkInfoBar .flat.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .list-row:selected .button:hover, GtkInfoBar .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.2); } - .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.2); } - -.tooltip { - color: #657b83; - border-radius: 2px; } - .tooltip.background { - background-color: rgba(12, 92, 112, 0.95); - background-clip: padding-box; } - .tooltip.window-frame.csd { - background-color: transparent; } - -.tooltip * { - padding: 4px; - background-color: transparent; - color: inherit; } - -:selected GtkColorSwatch { - box-shadow: none; } - :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { - border-color: #fdf6e3; } - -GtkColorSwatch.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -GtkColorSwatch.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { - border-radius: 3px; } - -GtkColorSwatch:hover, GtkColorSwatch:hover:selected { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } - -GtkColorEditor GtkColorSwatch { - border-radius: 3px; } - GtkColorEditor GtkColorSwatch:hover { - background-image: none; } - -GtkColorSwatch.color-dark { - color: white; - outline-color: rgba(0, 0, 0, 0.3); } - -GtkColorSwatch.color-light { - color: black; - outline-color: rgba(255, 255, 255, 0.5); } - -GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { - border: 1px solid rgba(0, 0, 0, 0.15); } - GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { - border-color: rgba(0, 0, 0, 0.25); } - -GtkColorSwatch#add-color-button { - border-style: solid; - border-width: 1px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - GtkColorSwatch#add-color-button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - GtkColorSwatch#add-color-button .overlay { - border-color: transparent; - background-color: transparent; - background-image: none; } - -GtkColorButton.button { - padding: 5px; } - GtkColorButton.button GtkColorSwatch { - border-radius: 0; } - -.scale-popup .button { - padding: 6px; } - .scale-popup .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - -GtkVolumeButton.button { - padding: 8px; } - -.touch-selection, -.context-menu { - font: initial; } - -.monospace { - font: Monospace; } - -.overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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; } - -.window-frame { - border-radius: 4px 4px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 8px 8px 0 rgba(0, 0, 0, 0.2); - margin: 10px; } - .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } - .window-frame.tiled { - border-radius: 0; } - .window-frame.popup { - box-shadow: none; - border-radius: 0; } - .window-frame.ssd { - border-radius: 4px 4px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); } - .window-frame.ssd.maximized { - border-radius: 0; } - .window-frame.csd.popup { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.message-dialog { - border-radius: 3px; } - .window-frame.solid-csd { - border-radius: 0; - margin: 1px; - background-color: rgba(238, 232, 213, 0.95); - box-shadow: none; } - -.header-bar.default-decoration .button.titlebutton, -.titlebar.default-decoration .button.titlebutton { - padding-top: 0px; - padding-bottom: 0px; } - -.header-bar .button.titlebutton, -.titlebar .button.titlebutton { - padding-left: 4px; - padding-right: 4px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(238, 232, 213, 0); } - .header-bar .button.titlebutton:not(GtkMenuButton), - .titlebar .button.titlebutton:not(GtkMenuButton) { - padding-top: 8px; - padding-bottom: 8px; } - .header-bar .button.titlebutton:hover, - .titlebar .button.titlebutton:hover { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, - .titlebar .button.titlebutton:active, - .titlebar .button.titlebutton:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.close, - .titlebar .button.titlebutton.maximize, - .titlebar .button.titlebutton.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; } - .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - opacity: 1; } - .header-bar .button.titlebutton.close, - .titlebar .button.titlebutton.close { - background-image: -gtk-scaled(url("assets/titlebutton-close.png"), url("assets/titlebutton-close@2.png")); } - .header-bar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.close:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop.png"), url("assets/titlebutton-close-backdrop@2.png")); } - .header-bar .button.titlebutton.close:hover, - .titlebar .button.titlebutton.close:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover.png"), url("assets/titlebutton-close-hover@2.png")); } - .header-bar .button.titlebutton.close:active, - .titlebar .button.titlebutton.close:active { - background-image: -gtk-scaled(url("assets/titlebutton-close-active.png"), url("assets/titlebutton-close-active@2.png")); } - .header-bar .button.titlebutton.maximize, - .titlebar .button.titlebutton.maximize { - background-image: -gtk-scaled(url("assets/titlebutton-maximize.png"), url("assets/titlebutton-maximize@2.png")); } - .header-bar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.maximize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop.png"), url("assets/titlebutton-maximize-backdrop@2.png")); } - .header-bar .button.titlebutton.maximize:hover, - .titlebar .button.titlebutton.maximize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover.png"), url("assets/titlebutton-maximize-hover@2.png")); } - .header-bar .button.titlebutton.maximize:active, - .titlebar .button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active.png"), url("assets/titlebutton-maximize-active@2.png")); } - .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.minimize { - background-image: -gtk-scaled(url("assets/titlebutton-minimize.png"), url("assets/titlebutton-minimize@2.png")); } - .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop.png"), url("assets/titlebutton-minimize-backdrop@2.png")); } - .header-bar .button.titlebutton.minimize:hover, - .titlebar .button.titlebutton.minimize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover.png"), url("assets/titlebutton-minimize-hover@2.png")); } - .header-bar .button.titlebutton.minimize:active, - .titlebar .button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active.png"), url("assets/titlebutton-minimize-active@2.png")); } - -.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.button.flat:selected, .list-row:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, -GtkEntry.gb-command-bar-entry.entry.flat:focus:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); } - -GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, -ScratchMainWindow .notebook tab.reorderable-page.top:active, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, -ScratchMainWindow .notebook tab.top:active, -ScratchMainWindow .notebook tab.top.active-page, -ScratchMainWindow .notebook tab.top.active-page:hover, -EphyNotebook.notebook tab.reorderable-page.top:active, -EphyNotebook.notebook tab.reorderable-page.top.active-page, -EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, -EphyNotebook.notebook tab.top:active, -EphyNotebook.notebook tab.top.active-page, -EphyNotebook.notebook tab.top.active-page:hover, -MidoriNotebook .notebook tab.reorderable-page.top:active, -MidoriNotebook .notebook tab.reorderable-page.top.active-page, -MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, -MidoriNotebook .notebook tab.top:active, -MidoriNotebook .notebook tab.top.active-page, -MidoriNotebook .notebook tab.top.active-page:hover, -TerminalWindow .notebook tab.reorderable-page.top:active, -TerminalWindow .notebook tab.reorderable-page.top.active-page, -TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -TerminalWindow .notebook tab.top:active, -TerminalWindow .notebook tab.top.active-page, -TerminalWindow .notebook tab.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -PantheonTerminalPantheonTerminalWindow .notebook tab.top:active, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page, -PantheonTerminalPantheonTerminalWindow .notebook tab.top.active-page:hover { - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - -TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.reorderable-page.top, -PantheonTerminalPantheonTerminalWindow .notebook tab.top { - padding-top: 7px; - border-top-width: 3px; } - -TerminalWindow .notebook.header.top, -PantheonTerminalPantheonTerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #e4dabc, inset 0 -1px #dcdfe3; } - -GtkHTML { - background-color: #fdf6e3; - color: #5c616c; } - GtkHTML:active { - color: #fdf6e3; - background-color: #268bd2; } - -SushiFontWidget { - padding: 6px 12px; } - -TerminalWindow .background { - background-color: transparent; } - -TerminalWindow .scrollbar.vertical .slider { - margin-left: 3px; } - -TerminalWindow .scrollbar.trough { - border-width: 0; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { - color: #5c616c; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { - color: #fdf6e3; } - -.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, GtkPlacesSidebar.sidebar .nautilus-canvas-item.label.view.separator, .header-bar .nautilus-canvas-item.subtitle, -.nautilus-list-dim-label { - color: #a9acb2; } - .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, - .nautilus-list-dim-label:selected, - .nautilus-list-dim-label:selected:focus { - color: #d2e1e0; } - -NautilusNotebook.notebook { - background-color: #fdf6e3; } - NautilusNotebook.notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; } - -NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { - padding: 5px; - box-shadow: none; - background-color: #fdf6e3; } - -.nautilus-circular-button { - border-radius: 50%; - outline-radius: 50%; } - -.disk-space-display { - border-style: solid; - border-width: 1px; } - .disk-space-display.unknown { - background-color: rgba(92, 97, 108, 0.5); - border-color: rgba(69, 72, 80, 0.5); } - .disk-space-display.used { - background-color: rgba(38, 139, 210, 0.8); - border-color: rgba(30, 110, 167, 0.8); } - .disk-space-display.free { - background-color: #edeef0; - border-color: #d0d5da; } - -NemoWindow EelEditableLabel.entry { - transition: none; } - -NemoWindow .sidebar .frame { - border-width: 0; } - -NemoWindow GtkSeparator.separator.horizontal, NemoWindow GtkPlacesSidebar.sidebar GtkSeparator.horizontal.view.separator, GtkPlacesSidebar.sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #dcdfe3; } - -NemoWindow .primary-toolbar NemoPathBar.linked > .button { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - background-color: rgba(255, 255, 255, 0.9); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:insensitive { - color: rgba(82, 93, 118, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1), inset -1px 0 rgba(82, 93, 118, 0.1); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:hover { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:first-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:last-child:checked { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:hover { - box-shadow: none; } - NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:active, NemoWindow .primary-toolbar NemoPathBar.linked > .button:only-child:checked { - box-shadow: none; } - -.gedit-headerbar-paned { - color: rgba(228, 218, 188, 0.95); } - -.open-document-selector-treeview.view { - padding: 3px 6px 3px 6px; - border-color: #fdf6e3; } - .open-document-selector-treeview.view:prelight { - background-color: #f2ecdb; } - .open-document-selector-treeview.view:prelight:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.open-document-selector-name-label { - color: #5c616c; } - -.open-document-selector-path-label { - color: #adaca8; - font-size: smaller; } - .open-document-selector-path-label:selected { - color: rgba(253, 246, 227, 0.9); } - -.gedit-document-panel .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; } - .gedit-document-panel .list-row .button GtkImage { - color: inherit; } - -.gedit-document-panel .prelight-row .button { - color: #92959d; } - -.gedit-document-panel .list-row .button:hover, -.gedit-document-panel .prelight-row .button:hover { - color: #ff4d4d; } - -.gedit-document-panel .prelight-row:selected .button:hover { - color: #ff6666; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; } - .gedit-document-panel .prelight-row:selected .button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel .prelight-row .button:active { - color: #5c616c; } - -.gedit-document-panel-dragged-row { - border: 1px solid #dcdfe3; - background-color: #d9dde0; - color: #5c616c; } - -GeditStatusbar { - border-top: 1px solid #dcdfe3; - background-color: #F5F6F7; } - -GeditStatusMenuButton.button.flat, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton:checked.button.flat { - border-bottom-style: none; - border-radius: 0; } - -GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #dcdfe3; } - -.gedit-search-entry-occurrences-tag, .gb-search-entry-occurrences-tag { - color: rgba(92, 97, 108, 0.6); - margin: 2px; - padding: 2px; } - -GeditViewFrame .gedit-search-slider, GbEditorFrame .gb-search-slider { - background-color: #fbfbfc; - padding: 6px; - border-color: #dcdfe3; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr).image:hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl).image:hover { - color: inherit; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):checked, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):active, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):checked { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):insensitive, - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - -GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr) { - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; } - GbSearchBox.linked > GtkMenuButton.button:last-child:dir(ltr):hover { - box-shadow: -1px 0 #268bd2; } - -GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl) { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; } - GbSearchBox.linked > GtkMenuButton.button:first-child:dir(rtl):hover { - box-shadow: 1px 0 #268bd2; } - -GbEditorFrame .gb-search-slider { - padding: 2px; } - -GdTaggedEntry { - color: #5c616c; } - -.preferences.sidebar GtkViewport { - border: none; } - -.preferences.sidebar GtkListBox { - background-color: #F5F6F7; } - -.preferences.sidebar GtkListBoxRow { - padding: 10px; } - -GbPreferencesPageLanguage GtkSearchEntry { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; } - -GbPreferencesPageLanguage GtkScrolledWindow { - border-top-width: 0; } - -GtkBox.gb-command-bar-box { - border: none; - background-color: #073642; } - GtkBox.gb-command-bar-box GtkLabel { - color: #657b83; } - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: #657b83; - background-image: none; - background-color: #073642; - padding: 6px 6px 6px 6px; - border: none; } - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; } - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; } - -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; } - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbViewStack.focused GtkBox.header.notebook { - background-color: #fdf6e3; } - GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { - opacity: 1; } - -EphyWindow .floating-bar { - color: #5c616c; } - -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon { - background-color: rgba(92, 97, 108, 0.3); - border-radius: 2px; } - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: #78b9e6; } - -.documents-entry-tag { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover { - color: #fdf6e3; - background-color: #3295da; } - .documents-entry-tag:active { - color: #fdf6e3; - background-color: #2380c1; } - .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; } - .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { - color: rgba(253, 246, 227, 0.7); } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -TotemGrilo.vertical GdMainView.frame { - border-width: 0; } - -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { - background-color: #268bd2; } - -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; } - -.gnome-panel-menu-bar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: #657b83; - background-image: linear-gradient(to bottom, rgba(5, 36, 44, 0.95)); } - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: #657b83; } - -PanelApplet .button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); - border-color: rgba(0, 0, 0, 0.17); } - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: rgba(0, 0, 0, 0.25); - border-radius: 0; - border-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -PanelApplet:hover { - color: white; } - -PanelApplet:active, -PanelApplet:hover:active { - color: #268bd2; } - -WnckPager { - color: #333e42; } - WnckPager:selected { - color: #268bd2; } - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; } - -ClockBox { - color: #657b83; } - -.xfce4-panel.panel { - background-color: rgba(5, 36, 44, 0.95); - text-shadow: none; - icon-shadow: none; } - .xfce4-panel.panel .button.flat { - color: #657b83; - background-color: rgba(5, 36, 44, 0); - border-radius: 0; - border: none; } - .xfce4-panel.panel .button.flat:hover { - border: none; - background-color: rgba(10, 74, 90, 0.95); } - .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .button.flat:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - -.floating-bar { - background-color: #268bd2; - color: #fdf6e3; } - .floating-bar.top { - border-radius: 0 0 2px 2px; } - .floating-bar.right { - border-radius: 2px 0 0 2px; } - .floating-bar.bottom { - border-radius: 2px 2px 0 0; } - .floating-bar.left { - border-radius: 0 2px 2px 0; } - .floating-bar .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - background-color: transparent; - box-shadow: none; - border: none; } - -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; } - -MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { - color: #fdf6e3; - background-color: #268bd2; - outline-color: transparent; } - -MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { - background-color: transparent; } - -MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { - outline-color: transparent; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); } - .marlin-pathbar.pathbar:insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; - border: solid transparent; - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { - padding: 0 3px; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { - background-color: rgba(0, 0, 0, 0.04); - border: solid rgba(0, 0, 0, 0.08); - border-width: 1px 0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { - color: rgba(92, 97, 108, 0.55); } - -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; } - -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: #5c616c; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration.top { - border: 1px solid rgba(0, 0, 0, 0.1); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #eee8d5); - color: rgba(82, 93, 118, 0.8); - box-shadow: inset 0 1px rgba(242, 238, 224, 0.95); } - UnityDecoration.top:backdrop { - border-bottom-width: 0; - color: rgba(82, 93, 118, 0.5); } - UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: rgba(250, 248, 242, 0.95); - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; } - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar GtkLabel { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #dcdfe3; - border-right: 1px solid #dcdfe3; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #dcdfe3; } - .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { - padding: 0 3px 0 3px; } - -.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #dcdfe3; - background-color: #F5F6F7; } - .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view { - background-color: #F5F6F7; - color: #5c616c; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:prelight { - background-color: white; } - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: #F5F6F7; - background-image: none; } - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #5c616c; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GraniteWidgetsWelcome { - background-color: #fdf6e3; } - -GraniteWidgetsWelcome GtkLabel { - color: #a9acb2; - font: open sans 11; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(92, 97, 108, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #fdf6e3); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry.entry { - padding: 4px; } - -.h1 { - font: open sans 24px; } - -.h2 { - font: open sans light 18px; } - -.h3 { - font: open sans 11px; } - -.h4, -.category-label { - color: #8a8e96; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: rgba(5, 36, 44, 0.95); - color: #657b83; - font: bold; - box-shadow: inset 0 -1px rgba(1, 10, 12, 0.95); } - #panel_window .menubar { - padding-left: 5px; } - #panel_window .menubar, #panel_window .menubar > .menuitem { - background-color: transparent; - color: #657b83; - font: bold; } - #panel_window .menubar .menuitem:insensitive { - color: rgba(101, 123, 131, 0.5); } - #panel_window .menubar .menuitem:insensitive GtkLabel { - color: inherit; } - #panel_window .menubar .menu .menuitem { - font: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: #5c616c; } - -#content_frame { - padding-bottom: 14px; - background-color: #F5F6F7; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - #content_frame .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - #content_frame .button:active, #content_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - #content_frame .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - #content_frame .button:insensitive > GtkLabel { - color: inherit; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: rgba(7, 54, 66, 0.95); - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px rgba(7, 54, 66, 0.95); } - -#buttonbox_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - #buttonbox_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - #buttonbox_frame .button:active, #buttonbox_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - #buttonbox_frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -#login_window #user_combobox { - color: #5c616c; - font: 13px; } - #login_window #user_combobox .menu { - font: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font: bold; } - -.titlebar .separator, .titlebar GtkPlacesSidebar.sidebar .view.separator, GtkPlacesSidebar.sidebar .titlebar .view.separator { - color: rgba(228, 218, 188, 0.95); } - -NemoWindow GtkEventBox { - background-color: #F5F6F7; } - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; } - -GtkFileChooserDialog.csd.background, -GtkFileChooserDialog .source-list, GtkFileChooserDialog .source-list.view, GtkFileChooserDialog .source-list.view:prelight, -NautilusWindow.csd.background, -NautilusWindow .source-list, -NautilusWindow .source-list.view, -NautilusWindow .source-list.view:prelight, -NemoWindow.csd.background, -NemoWindow .source-list, -NemoWindow .source-list.view, -NemoWindow .source-list.view:prelight, -MarlinViewWindow.csd.background, -MarlinViewWindow .source-list, -MarlinViewWindow .source-list.view, -MarlinViewWindow .source-list.view:prelight { - background-color: transparent; } - -GtkFileChooserDialog .sidebar, GtkFileChooserDialog .source-list.sidebar.view, -NautilusWindow .sidebar, -NautilusWindow .source-list.sidebar.view, -NemoWindow .sidebar, -NemoWindow .source-list.sidebar.view, -MarlinViewWindow .sidebar, -MarlinViewWindow .source-list.sidebar.view { - background-color: rgba(7, 54, 66, 0.95); } - GtkFileChooserDialog .sidebar .view, GtkFileChooserDialog .sidebar row, GtkFileChooserDialog .source-list.sidebar.view .view, GtkFileChooserDialog .source-list.sidebar.view row, - NautilusWindow .sidebar .view, - NautilusWindow .sidebar row, - NautilusWindow .source-list.sidebar.view .view, - NautilusWindow .source-list.sidebar.view row, - NemoWindow .sidebar .view, - NemoWindow .sidebar row, - NemoWindow .source-list.sidebar.view .view, - NemoWindow .source-list.sidebar.view row, - MarlinViewWindow .sidebar .view, - MarlinViewWindow .sidebar row, - MarlinViewWindow .source-list.sidebar.view .view, - MarlinViewWindow .source-list.sidebar.view row { - background-color: transparent; - color: #657b83; } - GtkFileChooserDialog .sidebar .view.image, GtkFileChooserDialog .sidebar row.image, GtkFileChooserDialog .source-list.sidebar.view .view.image, GtkFileChooserDialog .source-list.sidebar.view row.image, - NautilusWindow .sidebar .view.image, - NautilusWindow .sidebar row.image, - NautilusWindow .source-list.sidebar.view .view.image, - NautilusWindow .source-list.sidebar.view row.image, - NemoWindow .sidebar .view.image, - NemoWindow .sidebar row.image, - NemoWindow .source-list.sidebar.view .view.image, - NemoWindow .source-list.sidebar.view row.image, - MarlinViewWindow .sidebar .view.image, - MarlinViewWindow .sidebar row.image, - MarlinViewWindow .source-list.sidebar.view .view.image, - MarlinViewWindow .source-list.sidebar.view row.image { - color: rgba(101, 123, 131, 0.7); } - GtkFileChooserDialog .sidebar .view.cell:selected, GtkFileChooserDialog .sidebar row.cell:selected, GtkFileChooserDialog .source-list.sidebar.view .view.cell:selected, GtkFileChooserDialog .source-list.sidebar.view row.cell:selected, - NautilusWindow .sidebar .view.cell:selected, - NautilusWindow .sidebar row.cell:selected, - NautilusWindow .source-list.sidebar.view .view.cell:selected, - NautilusWindow .source-list.sidebar.view row.cell:selected, - NemoWindow .sidebar .view.cell:selected, - NemoWindow .sidebar row.cell:selected, - NemoWindow .source-list.sidebar.view .view.cell:selected, - NemoWindow .source-list.sidebar.view row.cell:selected, - MarlinViewWindow .sidebar .view.cell:selected, - MarlinViewWindow .sidebar row.cell:selected, - MarlinViewWindow .source-list.sidebar.view .view.cell:selected, - MarlinViewWindow .source-list.sidebar.view row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - GtkFileChooserDialog .sidebar.frame, GtkFileChooserDialog .source-list.sidebar.view.frame, - NautilusWindow .sidebar.frame, - NautilusWindow .source-list.sidebar.view.frame, - NemoWindow .sidebar.frame, - NemoWindow .source-list.sidebar.view.frame, - MarlinViewWindow .sidebar.frame, - MarlinViewWindow .source-list.sidebar.view.frame { - color: #657b83; } - GtkFileChooserDialog .sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, GtkFileChooserDialog .source-list.sidebar.view .separator, - NautilusWindow .sidebar .separator, - NautilusWindow GtkPlacesSidebar.sidebar .view.separator, - NautilusWindow .source-list.sidebar.view .separator, - NemoWindow .sidebar .separator, - NemoWindow GtkPlacesSidebar.sidebar .view.separator, - NemoWindow .source-list.sidebar.view .separator, - MarlinViewWindow .sidebar .separator, - MarlinViewWindow GtkPlacesSidebar.sidebar .view.separator, - MarlinViewWindow .source-list.sidebar.view .separator { - color: transparent; } - -GtkFileChooserDialog.maximized .sidebar, -NautilusWindow.maximized .sidebar, -NemoWindow.maximized .sidebar, -MarlinViewWindow.maximized .sidebar { - background-color: #073642; } - -GtkFileChooserDialog .pane-separator, -NautilusWindow .pane-separator, -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { - background-color: rgba(7, 54, 66, 0.95); } - -NautilusWindow NautilusWindowSlot { - background-color: #fdf6e3; } - -NautilusDesktopWindow NautilusWindowSlot { - background-color: transparent; } - -GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { - background-color: rgba(7, 54, 66, 0.95); } - -GtkFileChooserDialog .sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-action-box { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-vbox > .frame { - color: #657b83; - border-color: transparent; } - -GtkFileChooserDialog .action-bar.frame { - background-color: transparent; - border-color: rgba(5, 35, 43, 0.95); } - -GtkFileChooserDialog .action-bar.frame GtkLabel, GtkFileChooserDialog .action-bar.frame GtkComboBox, -GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, -GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { - color: #657b83; } - -FeedReaderreaderUI.background.csd > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd > .titlebar .pane-separator, -GeditWindow.background.csd.maximized > .titlebar .pane-separator, -GeditWindow.background.csd > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { - background-color: rgba(228, 218, 188, 0.95); } - -FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: rgba(238, 232, 213, 0.95); } - FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: rgba(242, 238, 224, 0.95); } - -FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #eee8d5; } - FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #f2eee0; } - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; } - -GeditWindow.background.csd { - background-color: transparent; } - -GeditWindow.background .gedit-side-panel-paned .pane-separator { - background-color: rgba(7, 54, 66, 0.95); } - -GeditWindow.background .gedit-bottom-panel-paned .pane-separator { - background-color: #dcdfe3; } - -.gedit-bottom-panel-paned { - background-color: #fdf6e3; } - -.gedit-document-panel { - background-color: rgba(7, 54, 66, 0.95); } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel .list-row { - color: #657b83; } - .gedit-document-panel .list-row { - background-color: rgba(101, 123, 131, 0); - border: solid rgba(101, 123, 131, 0); - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:hover { - border: solid rgba(101, 123, 131, 0.15); - border-width: 3px 2px 3px 2px; - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel .list-row:active { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:active .button { - color: #fdf6e3; } - .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -GeditFileBrowserWidget { - background-color: rgba(7, 54, 66, 0.95); } - .maximized GeditFileBrowserWidget { - background-color: #073642; } - GeditFileBrowserWidget .horizontal { - background-color: transparent; - border-color: rgba(4, 28, 34, 0.95); } - GeditFileBrowserWidget .horizontal GtkComboBox { - color: #657b83; } - -GeditWindow.background.csd GeditFileBrowserView.view { - background-color: transparent; - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander { - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { - color: #268bd2; } - -GtkFileChooserDialog .action-bar.frame .button, -GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - GtkFileChooserDialog .action-bar.frame .button:hover, - GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - GtkFileChooserDialog .action-bar.frame .button:active, - GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog .action-bar.frame .button:checked, - GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - GtkFileChooserDialog .action-bar.frame .button:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -GtkFileChooserDialog .action-bar.frame .entry, -GtkFileChooserDialog .dialog-vbox > .frame .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.35)); - background-color: transparent; } - GtkFileChooserDialog .action-bar.frame .image.entry, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog .action-bar.frame .image.entry:hover, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { - color: inherit; } - GtkFileChooserDialog .action-bar.frame .entry:focus, - GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, #268bd2); } - GtkFileChooserDialog .action-bar.frame .entry:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.2)); } - -GtkFileChooserDialog .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -NautilusWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { - background-color: #8da0a7; - border: 1px solid rgba(0, 0, 0, 0.3); } - -GtkFileChooserDialog .sidebar .scrollbar .trough, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .trough, -NautilusWindow .sidebar .scrollbar .trough, -NautilusWindow .source-list.sidebar.view .scrollbar .trough, -NemoWindow .sidebar .scrollbar .trough, -NemoWindow .source-list.sidebar.view .scrollbar .trough, -MarlinViewWindow .sidebar .scrollbar .trough, -MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { - background-color: rgba(0, 0, 0, 0.2); - border: none; } - -GtkFileChooserDialog .sidebar .scrollbar .slider, GtkFileChooserDialog .source-list.sidebar.view .scrollbar .slider, -NautilusWindow .sidebar .scrollbar .slider, -NautilusWindow .source-list.sidebar.view .scrollbar .slider, -NemoWindow .sidebar .scrollbar .slider, -NemoWindow .source-list.sidebar.view .scrollbar .slider, -MarlinViewWindow .sidebar .scrollbar .slider, -MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { - background-color: rgba(141, 160, 167, 0.7); } - GtkFileChooserDialog .sidebar .scrollbar .slider:hover, - NautilusWindow .sidebar .scrollbar .slider:hover, - NemoWindow .sidebar .scrollbar .slider:hover, - MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { - background-color: #9cacb2; } - GtkFileChooserDialog .sidebar .scrollbar .slider:prelight:active, - NautilusWindow .sidebar .scrollbar .slider:prelight:active, - NemoWindow .sidebar .scrollbar .slider:prelight:active, - MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog .sidebar .scrollbar .slider:insensitive, - NautilusWindow .sidebar .scrollbar .slider:insensitive, - NemoWindow .sidebar .scrollbar .slider:insensitive, - MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { - background-color: transparent; } - -@define-color theme_fg_color #5c616c; -@define-color theme_text_color #5c616c; -@define-color theme_bg_color #F5F6F7; -@define-color theme_base_color #fdf6e3; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #5c616c; -@define-color text_color #5c616c; -@define-color bg_color #F5F6F7; -@define-color base_color #fdf6e3; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #faf6eb; -@define-color insensitive_fg_color alpha(#5c616c, 0.5); -@define-color insensitive_base_color #fdf6e3; -@define-color theme_unfocused_fg_color #5c616c; -@define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #F5F6F7; -@define-color theme_unfocused_base_color #fdf6e3; -@define-color borders #dcdfe3; -@define-color unfocused_borders #dcdfe3; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #1e6ea7; -@define-color content_view_bg #fdf6e3; -@define-color wm_title alpha(#525d76, 0.8); -@define-color wm_unfocused_title alpha(#525d76, 0.5); -@define-color wm_bg #eee8d5; -@define-color wm_bg_unfocused #f2eee0; -@define-color wm_highlight #f2eee0; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #f46067; -@define-color wm_button_close_hover_bg #f68086; -@define-color wm_button_close_active_bg #f13039; -@define-color wm_icon_close_bg #657b83; -@define-color wm_button_hover_bg #fdfdfd; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #D1D3DA; -@define-color wm_icon_bg #90949E; -@define-color wm_icon_unfocused_bg #B6B8C0; -@define-color wm_icon_hover_bg #7A7F8B; -@define-color wm_icon_active_bg #fdf6e3; diff --git a/common/gtk-3.0/3.16/render-assets.sh b/common/gtk-3.0/3.16/render-assets.sh deleted file mode 100755 index d31fbb8..0000000 --- a/common/gtk-3.0/3.16/render-assets.sh +++ /dev/null @@ -1,34 +0,0 @@ -#! /bin/bash - -INKSCAPE="/usr/bin/inkscape" -OPTIPNG="/usr/bin/optipng" - -SRC_FILE="assets.svg" -ASSETS_DIR="assets" -INDEX="assets.txt" - -for i in `cat $INDEX` -do -if [ -f $ASSETS_DIR/$i.png ]; then - echo $ASSETS_DIR/$i.png exists. -else - echo - echo Rendering $ASSETS_DIR/$i.png - $INKSCAPE --export-id=$i \ - --export-id-only \ - --export-png=$ASSETS_DIR/$i.png $SRC_FILE >/dev/null \ - && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i.png -fi -if [ -f $ASSETS_DIR/$i@2.png ]; then - echo $ASSETS_DIR/$i@2.png exists. -else - echo - echo Rendering $ASSETS_DIR/$i@2.png - $INKSCAPE --export-id=$i \ - --export-dpi=180 \ - --export-id-only \ - --export-png=$ASSETS_DIR/$i@2.png $SRC_FILE >/dev/null \ - && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i@2.png -fi -done -exit 0 diff --git a/common/gtk-3.0/3.16/sass/_applications.scss b/common/gtk-3.0/3.16/sass/_applications.scss deleted file mode 100644 index f76b269..0000000 --- a/common/gtk-3.0/3.16/sass/_applications.scss +++ /dev/null @@ -1,750 +0,0 @@ -// -// Tab overrides -// -GeditNotebook.notebook, -ScratchMainWindow .notebook, -EphyNotebook.notebook, -MidoriNotebook .notebook, -TerminalWindow .notebook, -PantheonTerminalPantheonTerminalWindow .notebook { - - tab.reorderable-page.top, tab.top { - &:active, &.active-page, &.active-page:hover { - box-shadow: inset 0 1px $borders_color, - inset 0 -1px $borders_color, - inset 1px 0 $borders_color, - inset -1px 0 $borders_color; - } - } -} - -TerminalWindow .notebook, -PantheonTerminalPantheonTerminalWindow .notebook { - - tab.reorderable-page.top, tab.top { - padding-top: 7px; - border-top-width: 3px; - } - - &.header.top { - box-shadow: inset 0 1px opacify($header_border, 1), - inset 0 -1px $borders_color; - } -} - -// -// Evolution -// -// needed for webkit/GtkStyle/Evolution compatibility -GtkHTML { - background-color: $base_color; - color: $text_color; - - &:active { - color: $selected_fg_color; - background-color: $selected_bg_color; - } -} - -// -// Sushi -// -// used by gnome-font-viewer and sushi -SushiFontWidget { - padding: 6px 12px; -} - -// -// GNOME Terminal -// -TerminalWindow { - .background { - background-color: transparent; - } - - .scrollbar { - &.vertical .slider { margin-left: 3px; } - &.trough { border-width: 0; } - } -} - -// -// Nautilus -// -.nautilus-canvas-item { - border-radius: 2px; -} - -.nautilus-desktop.nautilus-canvas-item { - color: white; - text-shadow: 1px 1px transparentize(black, 0.4); - - &:active { color: $fg_color; } - &:selected { color: $selected_fg_color; } -} - -.nautilus-canvas-item.dim-label, -.nautilus-list-dim-label { - color: mix($fg_color, $bg_color, 50%); - - &:selected, &:selected:focus { color: mix($selected_fg_color, $selected_bg_color, 80%); } -} - -NautilusNotebook.notebook { - background-color: $base_color; - - tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - } -} - -NautilusQueryEditor .search-bar.toolbar { - padding: 5px; - box-shadow: none; - background-color: $base_color; -} - -.nautilus-circular-button { - border-radius: 50%; - outline-radius: 50%; -} - -$disk_space_unknown: transparentize($fg_color, 0.5); -$disk_space_used: transparentize($selected_bg_color, 0.2); -$disk_space_free: darken($bg_color, 3%); - -.disk-space-display { - border-style: solid; - border-width: 1px; - - &.unknown { - background-color: $disk_space_unknown; - border-color: darken($disk_space_unknown, 10%); - } - &.used { - background-color: $disk_space_used; - border-color: darken($disk_space_used, 10%); - } - &.free { - background-color: $disk_space_free; - border-color: darken($disk_space_free, 10%); - } -} - -// -// Nemo -// -.nemo-desktop.nemo-canvas-item { - @extend .nautilus-desktop.nautilus-canvas-item; -} - -NemoWindow { - - EelEditableLabel.entry { transition: none; } // Workaround for invisible text in rename entry - - .sidebar .frame { border-width: 0; } - - GtkSeparator.separator.horizontal { color: $borders_color; } - - .primary-toolbar NemoPathBar.linked > .button { - $_linked_separator_color: $header_button_border; - - @include button(header-hover); - - &:hover { background-color: lighten($header_button_bg, 15%); } - &:active, &:checked { @include button(header-active); } - &:insensitive { color: transparentize($header_fg, 0.4); } - - @extend %linked; - - &:hover { - box-shadow: inset 1px 0 $_linked_separator_color, - inset -1px 0 $_linked_separator_color; - } - &:active, &:checked { box-shadow: none; } - - &:first-child { - &:hover { box-shadow: inset -1px 0 $_linked_separator_color; } - &:active, &:checked { box-shadow: none; } - } - &:last-child { - &:hover { box-shadow: inset 1px 0 $_linked_separator_color; } - &:active, &:checked { box-shadow: none; } - } - &:only-child { - &:hover { box-shadow: none; } - &:active, &:checked { box-shadow: none; } - } - } -} - -// -// Gedit -// -.gedit-headerbar-paned { color: $header_border; } - -.open-document-selector-treeview.view { - padding: 3px 6px 3px 6px; - border-color: $base_color; // disable borders, making them transparent doesn't work for some reason - - &:prelight { - background-color: mix($fg_color, $base_color, 7%); - - &:selected { - color: $selected_fg_color; - background-color: $selected_bg_color; - } - } -} - -.open-document-selector-name-label { - color: $fg_color; -} - -.open-document-selector-path-label { - color: mix($fg_color, $base_color, 50%); - font-size: smaller; - - &:selected { color: transparentize($selected_fg_color, 0.1); } -} - -.gedit-document-panel { - - .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; - & GtkImage { color: inherit; } - } - .prelight-row .button { - color: mix($bg_color, $fg_color, 35%); - } - .list-row .button:hover, - .prelight-row .button:hover { - color: lighten(red, 15%); - } - .prelight-row:selected .button:hover { - color: lighten(red, 20%); - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - &:active { color: $selected_fg_color; } - } - .prelight-row .button:active { - color: $fg_color; - } -} - -.gedit-document-panel-dragged-row { - border: 1px solid $borders_color; - background-color: darken($bg_color, 10%); - color: $fg_color; -} - -//.gedit-document-panel-placeholder-row { -//} - -GeditStatusbar { - border-top: 1px solid $borders_color; - background-color: $bg_color; -} - -GeditStatusMenuButton.button.flat, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton:checked.button.flat { - border-bottom-style: none; - border-radius: 0; -} - - -GeditViewFrame .gedit-search-slider { @extend %search_slider } - -GeditFileBrowserWidget .toolbar { - border-bottom: 1px solid $borders_color; -} - -.gedit-search-entry-occurrences-tag { - color: transparentize($fg_color, 0.4); - margin: 2px; - padding: 2px; -} - -%search_slider { - background-color: lighten($bg_color, 2%); - padding: 6px; - border-color: $borders_color; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; -} - -// -// Gnome Builder -// - -GbSearchBox.linked { - - > GtkMenuButton.button:last-child:dir(ltr), - > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - - @include entry(header-normal); - - &:hover { @include entry(header-focus); } - &:active, &:checked { @include entry(header-focus); } - &:insensitive { @include entry(header-insensitive); } - } - - > GtkMenuButton.button:last-child:dir(ltr) { - - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; - - &:hover { box-shadow: -1px 0 $selected_bg_color; } - } - > GtkMenuButton.button:first-child:dir(rtl) { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; - - &:hover { box-shadow: 1px 0 $selected_bg_color; } - } -} - -//Search entry that slides down from top of editor -GbEditorFrame .gb-search-slider { @extend %search_slider; padding: 2px; } - -.gb-search-entry-occurrences-tag { @extend .gedit-search-entry-occurrences-tag } - -GdTaggedEntry { color: $fg_color; } - -// Preferences sidebar style -.preferences.sidebar { - - GtkViewport { border: none; } - GtkListBox { background-color: $bg_color; } - GtkListBoxRow { padding: 10px; } -} - -// Preference page language style -GbPreferencesPageLanguage { - - GtkSearchEntry { - border-bottom-left-radius: 0; - border-bottom-right-radius: 0; - } - GtkScrolledWindow { border-top-width: 0; } -} - -// Command Bar styling -GtkBox.gb-command-bar-box { - border: none; - background-color: opacify($osd_bg_color, 1); - - GtkLabel { color: $osd_fg_color; } -} - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: $osd_fg_color; - background-image: none; - background-color: opacify($osd_bg_color, 1); - padding: 6px 6px 6px 6px; - border: none; - - &:selected, - &:selected:focus { - @extend %selected_items; - } -} - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; -} - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; -} - -// Disable various animatinos that are enabled by default and really annoying -// to the overall flow of Builder. -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; -} - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid $borders_color; -} - -GbViewStack.focused GtkBox.header.notebook { - background-color: $base_color; - - .button.dim-label { opacity: 1; } -} - -// -// Epiphany -// -EphyWindow .floating-bar { // Epiphany overrides the floating-bar style, so reset it - color: $fg_color; -} - -// -// Gnome Documents -// -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; -} - -.documents-icon-bg { - background-color: $selected_bg_color; - color: $selected_fg_color; - border-radius: 2px; -} - -.documents-collection-icon { - background-color: transparentize($fg_color, 0.7); - border-radius: 2px; -} - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: lighten($selected_bg_color, 20%); -} - -.documents-entry-tag { - background-color: $selected_bg_color; - color: $selected_fg_color; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; - - &:hover { - color: $selected_fg_color; - background-color: lighten($selected_bg_color, 4%); - } - &:active { - color: $selected_fg_color; - background-color: darken($selected_bg_color, 4%); - } - - .toolbar .linked &.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; - - &:hover { color: transparentize($selected_fg_color, 0.3) } - } -} - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; -} - -// -// Totem -// -TotemGrilo.vertical GdMainView.frame { - border-width: 0; -} - -// -// Synapse -// -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { background-color: $selected_bg_color; } - -// -// Transmission -// -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; // Remove black border on over- and undershoot -} - -// -// Fallback Mode/Budgie Panel -// -.gnome-panel-menu-bar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: $panel_fg; - background-image: linear-gradient(to bottom, $panel_bg); -} - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: $panel_fg; -} - -PanelApplet .button:hover { - color: lighten($panel_fg, 10%); - background-color: transparentize(black, 0.83); - border-color: transparentize(black, 0.83); -} - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: transparentize(black, 0.75); - border-radius: 0; - border-color: transparentize(black, 0.75); - box-shadow: inset 0 -2px $selected_bg_color; -} - -PanelApplet:hover { - color: white; -} - -PanelApplet:active, -PanelApplet:hover:active { - color: $selected_bg_color; -} - -WnckPager { - color: mix($panel_fg, black, 50%); - &:selected { color: $selected_bg_color } -} - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; -} - -ClockBox { - color: $panel_fg; -} - -// Xfce Panel -.xfce4-panel.panel { - background-color: $panel_bg; - - text-shadow: none; - icon-shadow: none; - - .button.flat { - color: $panel_fg; - background-color: transparentize($panel_bg, 1); - border-radius: 0; - border: none; - - &:hover { - border: none; - background-color: lighten($panel_bg, 10%); - } - &:active, &:checked { - color: $selected_fg_color; - border: none; - background-color: $selected_bg_color; - } - } -} - -// -// Floating Bar -// -.floating-bar { - background-color: $selected_bg_color; - color: $selected_fg_color; - - &.top { border-radius: 0 0 2px 2px; } - &.right { border-radius: 2px 0 0 2px; } - &.bottom { border-radius: 2px 2px 0 0; } - &.left { border-radius: 0 2px 2px 0; } - - .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - - background-color: transparent; - box-shadow: none; - border: none; - } -} - -// Elementary Apps - -// -// Birdie -// -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; -} - -// -// Marlin / Pantheon Files -// -MarlinViewWindow { - - *:selected, *:selected:focus { - color: $selected_fg_color; - background-color: $selected_bg_color; - outline-color: transparent; - } - GtkIconView.view:selected { - &, &:focus, &:hover, &:focus:hover { background-color: transparent; } - } - FMListView, FMColumnView { outline-color: transparent; } -} - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - - @include entry(header-normal); - - &:focus { @include entry(header-focus) } - - &:insensitive { @include entry(header-insensitive) } - - &:active, &:checked { - color: $selected_bg_color; - } -} - -// -// Gala -// -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; - - .title, .label { - color: #5c616c; - } -} - -// -// Wingpanel -// -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px transparentize(black, 0.4); - icon-shadow: 0 1px 2px transparentize(black, 0.4); - - &-shadow { - background-image: none; - background-color: transparent; - } - .menu { - box-shadow: none; - - .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; - } - - .window-frame.menu.csd, - .window-frame.popup.csd { - box-shadow: 0 0 0 1px transparentize(black, 0.8), - 0 10px 20px transparentize(black, 0.81), - 0 6px 6px transparentize(black, 0.77); - } - } - .menubar > .menuitem { - padding: 3px 6px; - &:hover { background-color: transparent; } - } - .window-frame.menu.csd, - .window-frame.popup.csd { box-shadow: none; } -} - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px transparentize(black, 0.4); - icon-shadow: 0 1px 2px transparentize(black, 0.4); - - > GtkWidget > GtkWidget:first-child { padding: 0 2px; } - - .menuitem:active, .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; - } - > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; - } -} - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; -} - -.panel .menu .spinner, -.menu .spinner { opacity: 1 } // Fixes sound indicator buttons - -// -// Wingpanel Popover -// -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - - text-shadow: none; - icon-shadow: none; - - .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; - border: solid transparent; - border-width: 1px 0; - - GtkLabel, GtkImage { padding: 0 3px; } - - &:hover, &:active { - background-color: if($variant == 'light', transparentize(black, 0.96), transparentize(white, 0.95)); - border: solid if($variant == 'light', transparentize(black, 0.92), transparentize(white, 0.93)); - border-width: 1px 0; - } - *:insensitive { color: $insensitive_fg_color; } - } -} - -// -// Pantheon Terminal -// -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; -} - -// -// Switchboard -// -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: $fg_color; -} diff --git a/common/gtk-3.0/3.16/sass/_colors-public.scss b/common/gtk-3.0/3.16/sass/_colors-public.scss deleted file mode 100644 index 7d0abba..0000000 --- a/common/gtk-3.0/3.16/sass/_colors-public.scss +++ /dev/null @@ -1,67 +0,0 @@ -//apps rely on some named colors to be exported - -// Sass thinks we're using the colors in the variables as strings and may shoot -// warning, it's innocuous and can be defeated by using "" + $var -@define-color theme_fg_color #{"" + $fg_color}; -@define-color theme_text_color #{"" + $text_color}; -@define-color theme_bg_color #{"" + $bg_color}; -@define-color theme_base_color #{"" + $base_color}; -@define-color theme_selected_bg_color #{"" + $selected_bg_color}; -@define-color theme_selected_fg_color #{"" + $selected_fg_color}; -@define-color fg_color #{"" + $fg_color}; -@define-color text_color #{"" + $text_color}; -@define-color bg_color #{"" + $bg_color}; -@define-color base_color #{"" + $base_color}; -@define-color selected_bg_color #{"" + $selected_bg_color}; -@define-color selected_fg_color #{"" + $selected_fg_color}; -@define-color insensitive_bg_color #{"" + $insensitive_bg_color}; -@define-color insensitive_fg_color alpha(#{"" + opacify($insensitive_fg_color, 1)}, 0.5); -@define-color insensitive_base_color #{"" + $base_color}; -@define-color theme_unfocused_fg_color #{"" + $fg_color}; -@define-color theme_unfocused_text_color #{"" + $text_color}; -@define-color theme_unfocused_bg_color #{"" + $bg_color}; -@define-color theme_unfocused_base_color #{"" + $base_color}; -@define-color borders #{"" + $borders_color}; -@define-color unfocused_borders #{"" + $borders_color}; - -@define-color warning_color #{"" + $warning_color}; -@define-color error_color #{"" + $error_color}; -@define-color success_color #{"" + $success_color}; -@define-color placeholder_text_color #{#A8A8A8}; -@define-color link_color #{"" + $link_color}; - -@define-color content_view_bg #{"" + $base_color}; - -//WM -$wm_highlight: lighten(opacify($header_bg, 1), 3%); -$wm_bg_unfocused: opacify($header_bg_backdrop, 1); - -@define-color wm_title alpha(#{"" + opacify($header_fg, 1)}, 0.8); -@define-color wm_unfocused_title alpha(#{"" + opacify($header_fg, 1)}, 0.5); - -@define-color wm_bg #{"" + opacify($header_bg, 1)}; -@define-color wm_bg_unfocused #{"" + $wm_bg_unfocused}; - -@define-color wm_highlight #{"" + $wm_highlight}; -@define-color wm_shadow alpha(#{black}, 0.35); - -//WM Buttons - -// Close -@define-color wm_button_close_bg #{"" + $wm_button_close_bg}; -@define-color wm_button_close_hover_bg #{"" + $wm_button_close_hover_bg}; -@define-color wm_button_close_active_bg #{"" + $wm_button_close_active_bg}; - -@define-color wm_icon_close_bg #{"" + $wm_icon_close_bg}; - -// Minimize, Maximize -@define-color wm_button_hover_bg #{"" + $wm_button_hover_bg}; -@define-color wm_button_active_bg #{"" + $wm_button_active_bg}; - -@define-color wm_button_hover_border #{"" + $wm_button_hover_border}; - -@define-color wm_icon_bg #{"" + $wm_icon_bg}; -@define-color wm_icon_unfocused_bg #{"" + $wm_icon_unfocused_bg}; -@define-color wm_icon_hover_bg #{"" + $wm_icon_hover_bg}; -@define-color wm_icon_active_bg #{"" + $wm_icon_active_bg}; - diff --git a/common/gtk-3.0/3.16/sass/_colors.scss b/common/gtk-3.0/3.16/sass/_colors.scss deleted file mode 100644 index fac334a..0000000 --- a/common/gtk-3.0/3.16/sass/_colors.scss +++ /dev/null @@ -1,101 +0,0 @@ -// When color definition differs for dark and light variant, -// it gets @if ed depending on $variant - - -$base_color: if($variant =='light', #fdf6e3, #073642); -$text_color: if($variant == 'light', #5c616c, #657b83); -$bg_color: if($variant =='light', #F5F6F7, #002b36); -$fg_color: if($variant =='light', #5c616c, #657b83); - -$selected_fg_color: #fdf6e3; -$selected_bg_color: #268bd2; -$selected_borders_color: darken($selected_bg_color, 20%); -$borders_color: if($variant =='light', darken($bg_color,9%), darken($bg_color,6%)); - -$link_color: if($variant == 'light', darken($selected_bg_color,10%), - lighten($selected_bg_color,20%)); -$link_visited_color: if($variant == 'light', darken($selected_bg_color,20%), - lighten($selected_bg_color,10%)); - -$selection_mode_bg: if($transparency == 'true', transparentize($selected_bg_color, 0.05), $selected_bg_color); -$selection_mode_fg: $selected_fg_color; -$warning_color: #cb4b16; -$error_color: #dc322f; -$warning_fg_color: white; -$error_fg_color: white; -$success_color: #859900; -$destructive_color: #dc322f; -$suggested_color: #2aa198; -$destructive_fg_color: white; -$suggested_fg_color: white; - -$drop_target_color: #b58900; - -//insensitive state derived colors -$insensitive_fg_color: if($variant == 'light', transparentize($fg_color, 0.45), transparentize($fg_color, 0.55)); -$insensitive_bg_color: if($variant == 'light', mix($bg_color, $base_color, 40%), lighten($bg_color, 2%)); - -$header_bg: red; -@if $transparency=='true' and $variant=='light' { $header_bg: transparentize(#eee8d5, 0.05); } -@if $transparency=='false' and $variant=='light' { $header_bg: #eee8d5; } -@if $transparency=='true' and ($variant=='dark' or $darker=='true') { $header_bg: transparentize(#002b36, 0.03); } -@if $transparency=='false' and ($variant=='dark' or $darker=='true') { $header_bg: #002b36; } - -$header_bg_backdrop: if($darker == 'true' or $variant == 'dark', lighten($header_bg, 1.5%), lighten($header_bg, 3%)); - -$header_border: if($variant == 'light' and $darker=='false', darken($header_bg, 7%), darken($header_bg, 4%)); - -$header_fg: if($variant == 'light', saturate(transparentize($fg_color, 0.2), 10%), saturate(transparentize($fg_color, 0.2), 10%)); -$header_fg: if($darker == 'true', saturate(transparentize(#657b83, 0.2), 10%), $header_fg); - -$dark_sidebar_bg: if($transparency == 'true', transparentize(#073642, 0.05), #073642); -$dark_sidebar_fg: #657b83; -$dark_sidebar_border: if($variant == 'light', $dark_sidebar_bg, darken($dark_sidebar_bg, 5%)); - -$osd_fg_color: $dark_sidebar_fg; -$osd_bg_color: $dark_sidebar_bg; - -$osd_button_bg: transparentize(lighten($osd_bg_color, 22%), 0.6); -$osd_button_border: transparentize(darken($osd_bg_color, 12%), 0.6); - -$osd_entry_bg: transparentize(lighten($osd_bg_color, 22%), 0.6); -$osd_entry_border: transparentize(darken($osd_bg_color, 12%), 0.6); - -$osd_insensitive_bg_color: darken($osd_bg_color, 3%); -$osd_insensitive_fg_color: mix($osd_fg_color, opacify($osd_bg_color, 1), 30%); -$osd_borders_color: transparentize(black, 0.3); - -$panel_bg: darken($dark_sidebar_bg, 4.7%); -$panel_fg: $dark_sidebar_fg; - -$entry_bg: if($variant=='light', $base_color, lighten($base_color, 0%)); -$entry_border: if($variant == 'light', #657b83, darken($borders_color, 0%)); - -$header_entry_bg: if($darker == 'true' or $variant == 'dark', transparentize(lighten($header_bg, 22%), 0.6), transparentize($base_color, 0.1)); -$header_entry_border: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 12%), 0.6), transparentize($header_fg, 0.7)); - -$button_bg: if($variant == 'light', lighten($bg_color, 2%), lighten($base_color, 2%)); -$button_border: $entry_border; - -$header_button_bg: if($darker == 'true' or $variant == 'dark', transparentize(lighten($header_bg, 22%), 0.6), transparentize($button_bg, 0.1)); -$header_button_border: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 12%), 0.6), transparentize($header_fg, 0.7)); - -//WM Buttons - -// Close -$wm_button_close_bg: if($variant == 'light' and $darker == 'false', #f46067, #dc322f); -$wm_button_close_hover_bg: if($variant == 'light' and $darker == 'false', #f68086, #cb4b16); -$wm_button_close_active_bg: if($variant == 'light' and $darker == 'false', #f13039, #dc322f); - -$wm_icon_close_bg: if($variant == 'light' and $darker == 'false',#657b83 , #002b36); - -// Minimize, Maximize -$wm_button_hover_bg: if($variant == 'light' and $darker == 'false', #fdfdfd, #657b83); -$wm_button_active_bg: $selected_bg_color; - -$wm_button_hover_border: if($variant == 'light' and $darker == 'false', #D1D3DA, #002b36); - -$wm_icon_bg: if($variant == 'light' and $darker == 'false', #90949E, #93a1a1); -$wm_icon_unfocused_bg: if($variant == 'light' and $darker == 'false', #B6B8C0, #657b83); -$wm_icon_hover_bg: if($variant == 'light' and $darker == 'false', #7A7F8B, #93a1a1); -$wm_icon_active_bg: $selected_fg_color; diff --git a/common/gtk-3.0/3.16/sass/_common.scss b/common/gtk-3.0/3.16/sass/_common.scss deleted file mode 100644 index 200adc0..0000000 --- a/common/gtk-3.0/3.16/sass/_common.scss +++ /dev/null @@ -1,2860 +0,0 @@ -@function gtkalpha($c,$a) { - @return unquote("alpha(#{$c},#{$a})"); -} - -$ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94); -$asset_suffix: if($variant=='dark', '-dark', ''); // use dark assets in dark variant -$darker_asset_suffix: if($darker=='true', '-dark', $asset_suffix); - -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: $error_color; - -GtkPaned-handle-size: 1; - - -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: $link_color; - -GtkWidget-visited-link-color: $link_visited_color; - - -GtkWidget-focus-padding: 2; // FIXME: do we still need these? - -GtkWidget-focus-line-width: 1; // - - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - - -GtkStatusbar-shadow-type: none; - - // We use the outline properties to signal the focus properties - outline-color: transparentize($fg_color, 0.7); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; -} - - -// -// Base States -// -.background { - color: $fg_color; - background-color: if($transparency == 'true', transparentize($bg_color, 0.001), $bg_color); // without this headerbar transparency doesn't seem to work -} - -*:insensitive { - -gtk-image-effect: dim; -} - -.gtkstyle-fallback { - background-color: $bg_color; - color: $fg_color; - &:prelight { - background-color: lighten($bg_color, 10%); - color: $fg_color; - } - &:active { - background-color: darken($bg_color, 10%); - color: $fg_color; - } - &:insensitive { - background-color: $insensitive_bg_color; - color: $insensitive_fg_color; - } - &:selected { - background-color: $selected_bg_color; - color: $selected_fg_color; - } -} - -.view { - color: $text_color; - background-color: $base_color; - - &:selected, - &:selected:focus, - &:selected:hover { - @extend %selected_items; - } - &.dim-label { - color: transparentize($text_color, 0.45); - - &:selected, &:selected:focus { - color: transparentize($selected_fg_color, 0.35); - text-shadow: none; - } - } -} - -.rubberband { - border: 1px solid $selected_bg_color; - background-color: transparentize($selected_bg_color,0.8); -} - -.label { - &.separator { - color: $fg_color; - @extend .dim-label; - } - &:selected, - &:selected:focus, - &:selected:hover { - @extend %selected_items; - } - &:insensitive { - color: $insensitive_fg_color; - } -} - -.dim-label { - opacity: 0.55; -} - -GtkAssistant { - .sidebar { - background-color: $base_color; - border-top: 1px solid $borders_color; - &:dir(ltr) { border-right: 1px solid $borders_color; } - &:dir(rtl) { border-left: 1px solid $borders_color; } - } - &.csd .sidebar { border-top-style: none; } - .sidebar .label { - padding: 6px 12px; - } - .sidebar .label.highlight { - background-color: $selected_bg_color; - color: $selected_fg_color; - } -} - -GtkTextView { // This will get overridden by .view, needed by gedit line numbers - background-color: mix($bg_color, $base_color, 50%); -} - -.grid-child { - padding: 3px; - border-radius: 3px; - &:selected { - @extend %selected_items; - outline-offset: -2px; - } -} - -%osd, .osd { - color: $osd_fg_color; - border: none; - background-color: $osd_bg_color; - background-clip: padding-box; - outline-color: transparentize($osd_fg_color, 0.7); - box-shadow: none; -} - -// -// Spinner Animations -// -@keyframes spin { - to { -gtk-icon-transform: rotate(1turn); } -} - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; // non spinning spinner makes no sense - -gtk-icon-source: -gtk-icontheme('process-working-symbolic'); - - &:active { - opacity: 1; - animation: spin 1s linear infinite; - - &:insensitive { - opacity: 0.5; - } - } -} - -$vert_padding: 5px; -// -// Text Entries -// -.entry { - border: 1px solid; - padding: $vert_padding 8px; - - border-radius: 3px; - transition: all 200ms $ease-out-quad; - @include entry(normal); - - &.image { // icons inside the entry - &.left { padding-left: 0; } - &.right { padding-right: 0; } - } - - &.flat, &.flat:focus { - padding: 2px; - @include entry(normal); - border: none; - border-radius: 0; - } - - &:focus { - background-clip: border-box; - @include entry(focus); - } - - &:insensitive { @include entry(insensitive); } - - &:selected, - &:selected:focus { - background-color: $selected_bg_color; - color: $selected_fg_color; - } - - &.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: $selected_bg_color; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; - } - - .linked > & { //FIXME: use same buttons linking logic and template - &:first-child { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - &:dir(rtl) { border-right-style: none;} - } - &:last-child { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; - &:dir(rtl) { border-left-style: solid; } - } - } - - @each $e_type, $e_color, $e_fg_color in (warning, $warning_color, $warning_fg_color), - (error, $error_color, $error_fg_color) { - &.#{$e_type} { - color: $selected_fg_color; - border-color: if($variant=='light', $e_color, $entry_border); - background-image: linear-gradient(to bottom, mix($e_color, $base_color, 60%)); - - &:focus { - color: $e_fg_color; - background-image: linear-gradient(to bottom, $e_color); - box-shadow: none; - } - &:selected, &:selected:focus { - background-color: $e_fg_color; - color: $e_color; - } - } - } - - &.image { // entry icons colors - color: mix($fg_color,$base_color,80%); - } - - .linked.vertical > & { //FIXME comment stuff and make the whole thing smarter. - border-bottom-color: mix($borders_color, $base_color, 30%); - box-shadow: none; - @extend %linked_vertical; - - &:focus { - border-color: $selected_bg_color; - box-shadow: 0 -1px 0 0 $selected_bg_color; - @extend %linked_vertical; - } - - &:insensitive { - border-bottom-color: mix($borders_color, $base_color, 30%); - @extend %linked_vertical; - } - - &:first-child { - border-bottom-color: mix($borders_color, $base_color, 30%); - - &:focus { - border-bottom-color: $selected_bg_color; - box-shadow: none; - } - - &:insensitive { - border-bottom-color: mix($borders_color, $base_color, 30%); - @extend %linked_vertical:first-child; - } - } - - &:last-child { - border-bottom-color: rgba(0,0,0,0.14); - &:focus { - border-bottom-color: $selected_bg_color; - box-shadow: 0 -1px 0 0 $selected_bg_color; - @extend %linked_vertical:last-child; - } - - &:insensitive { - border-bottom-color: rgba(0,0,0,0.14); - @extend %linked_vertical:last-child; - - } - } - } - - .osd & { - @include entry(osd); - &:focus { @include entry(osd-focus); } - &:insensitive { @include entry(osd-insensitive); } - } -} - -GtkSearchEntry.entry { border-radius: 20px; } - -// -// Buttons -// -// stuff for .needs-attention -$_dot_color: $selected_bg_color; - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, - center center, 0, - center center, 0.01, - to($_dot_color), - to(transparent)); - } - to { - background-image: -gtk-gradient(radial, - center center, 0, - center center, 0.5, - to($selected_bg_color), - to(transparent)); - } -} - -.button { - $_button_transition: all 200ms $ease-out-quad; - - transition: $_button_transition; - border: 1px solid; - border-radius: 3px; - padding: $vert_padding 8px; - - @include button(normal); - - &.flat { - @include button(undecorated); - background-color: transparentize($button_bg, 1); - border-color: transparentize($button_border, 1); - // to avoid adiacent buttons borders clashing when transitioning, the transition on the normal state is set - // to none, while it's added back in the hover state, so the button decoration will fade in on hover, but - // it won't fade out when the pointer leave the button allocation area. To make the transition more evident - // in this case the duration is increased. - transition: none; - &:hover { - transition: $_button_transition; - transition-duration: 350ms; - &:active { transition: $_button_transition; } - } - } - &:hover { - @include button(hover); - -gtk-image-effect: highlight; - } - &:active, &:checked { - background-clip: if($variant=='light', border-box, padding-box); - @include button(active); - transition-duration: 50ms; - } - - //Webkitgtk workaround start - &:active { color: $fg_color; } - &:active:hover, &:checked { color: $selected_fg_color; } - //Webkitgtk workaround end - - &.flat:insensitive { - @include button(undecorated); - } - &:insensitive { - @include button(insensitive); - &:active, &:checked { - @include button(insensitive-active); - } - } - // big standalone buttons like in Documents pager - &.osd { - color: $osd_fg_color; - outline-color: transparentize($osd_fg_color, 0.7); - background-color: $osd_bg_color; - border-color: darken($osd_bg_color, 8%); - - &.image-button { padding: 10px; } - - &:hover { color: $selected_bg_color; } - &:active, &:checked { @include button(osd-active); } - &:insensitive { @include button(osd-insensitive); } - } - - //overlay / OSD style - .osd & { - @include button(osd); - // there's a problem with sass which prevents it to extend the linked - // placeholder as expected, it should just be "@extend %linked;", the - // placeholder is basically replicated here - // - // Workaround START - border-radius: 0; - border-left-style: none; - border-right-style: none; - - &:dir(rtl) { - border-radius: 0; - border-right-style: none; - border-left-style: none - } - &:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; - } - &:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; - - &:dir(rtl) { border-left-style: solid; } - } - &:only-child { - border-radius: 3px; - border-style: solid; - } - // Workaround END - &:hover { - @include button(osd-hover); - @extend %linked; - &, &:first-child, &:last-child { box-shadow: none; } - } - &:active, &:checked { - background-clip: padding-box; - @include button(osd-active); - @extend %linked; - } - &:insensitive { - @include button(osd-insensitive); - @extend %linked; - } - - &.flat { - @include button(undecorated); - box-shadow: none; - &:hover { - @include button(osd-hover); - &, &:first-child, &:last-child { box-shadow: none; } - } - &:insensitive { - @include button(osd-insensitive); - background-image: none; - } - &:active, &:checked { - @include button(osd-active); - } - } - } - // Suggested and Destructive Action buttons - @each $b_type, $b_color, $b_fg in (suggested-action, $suggested_color, $suggested_fg_color), - (destructive-action, $destructive_color, $destructive_fg_color) { - &.#{$b_type} { - @include button(suggested_destructive, $b_color, $b_fg); - - &.flat { - @include button(undecorated); - color: $b_color; - outline-color: transparentize($b_color, 0.7); - } - &:hover { - @include button(suggested_destructive, lighten($b_color, 10%), $b_fg); - } - &:active, &:checked { - @include button(suggested_destructive, darken($b_color, 10%), $b_fg); - } - &.flat:insensitive { - @include button(undecorated); - color: $insensitive_fg_color; - } - &:insensitive { @include button(insensitive); } - } - } - - &.image-button { padding: 2px + $vert_padding; } - .header-bar &.image-button { padding: 2px + $vert_padding 10px; } - - &.text-button { - padding-left: 16px; - padding-right: 16px; - } - - &.text-button.image-button { - // those buttons needs uneven horizontal padding, we want the icon side - // to have the image-button padding, while the text side the text-button - // one, so we're adding the missing padding to the label depending on - // its position inside the button - padding: $vert_padding 8px; // same as .button - GtkLabel:first-child { padding-left: 8px; } - GtkLabel:last-child { padding-right: 8px; } - } - - .stack-switcher > & { - // to position the needs attention dot, padding is added to the button - // child, a label needs just lateral padding while an icon needs vertical - // padding added too. - - outline-offset: -3px; // needs to be set or it gets overridden by GtkRadioButton outline-offset - - > GtkLabel { - padding-left: 6px; // label padding - padding-right: 6px; // - } - > GtkImage { - padding-left: 6px; - padding-right: 6px; - padding-top: $vert_padding - 2px; - padding-bottom: $vert_padding - 2px; - } - - &.text-button { padding: $vert_padding 10px; } // needed or it will get overridden - - &.image-button { padding: $vert_padding - 3px 4px; } - - &.needs-attention > .label, - &.needs-attention > GtkImage { @extend %needs_attention; } - &.needs-attention:active > .label, - &.needs-attention:active > GtkImage, - &.needs-attention:checked > .label, - &.needs-attention:checked > GtkImage { - animation: none; - background-image: none; - } - } - - %needs_attention { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, - center center, 0, - center center, 0.5, - to($_dot_color), - to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - @if $variant == 'light' { background-position: right 3px, right 4px; } - @else { background-position: right 3px, right 2px; } - &:dir(rtl) { - @if $variant == 'light' { background-position: left 3px, left 4px; } - @else { background-position: left 3px, left 2px; } - } - } - - //inline-toolbar buttons - .inline-toolbar &, .inline-toolbar &:backdrop { - border-radius: 2px; - border-width: 1px; - @extend %linked; - } - - .linked > &, - .linked > &:hover, - .linked > &:active, - .linked > &:checked { @extend %linked; } - - .linked.vertical > &, - .linked.vertical > &:hover, - .linked.vertical > &:active, - .linked.vertical > &:checked { @extend %linked_vertical; } -} - -// all the following is for the +|- buttons on inline toolbars, that way -// should really be deprecated... -.inline-toolbar GtkToolButton > .button { // redefining the button look is - // needed since those are flat... - @include button(normal); - &:hover { @include button(hover); } - &:active, - &:checked{ @include button(active); } - &:insensitive { @include button(insensitive); } - &:insensitive:active, - &:insensitive:checked { @include button(insensitive-active); } -} - -// More inline toolbar buttons -.inline-toolbar.toolbar GtkToolButton { - & > .button.flat { @extend %linked_middle; } - &:dir(rtl) > .button.flat { @extend %linked_middle:dir(rtl); } - &:first-child > .button.flat { @extend %linked:first-child; } - &:last-child > .button.flat { @extend %linked:last-child; } - &:last-child:dir(rtl) > .button.flat { @extend %linked:last-child:dir(rtl); } - &:only-child > .button.flat { @extend %linked:only-child; } -} - -$_linked_separator_color: if($variant=='light', transparentize($button_border, 0.6), transparentize($button_border, 0.5)); - -%linked_middle { - border-radius: 0; - border-left-style: none; - border-right-style: none; - - &:hover { - box-shadow: inset 1px 0 $_linked_separator_color, - inset -1px 0 $_linked_separator_color; - } - &:active, &:checked { box-shadow: none; } - - &:dir(rtl) { - border-radius: 0; // needed when including %linked_middle:dir(rtl) - } -} - -%linked { - @extend %linked_middle; - - &:first-child { - border-radius: 3px 0 0 3px; - border-left-style: solid; - - &:hover { box-shadow: inset -1px 0 $_linked_separator_color; } - &:active, &:checked { box-shadow: none; } - } - &:last-child { - border-radius: 0 3px 3px 0; - border-right-style: solid; - - &:hover { box-shadow: inset 1px 0 $_linked_separator_color; } - &:active, &:checked { box-shadow: none; } - - &:dir(rtl) { border-bottom-left-radius: 0; } - - } - &:only-child { - border-radius: 3px; - border-style: solid; - - &:hover { box-shadow: none; } - &:active, &:checked { box-shadow: none; } - } -} - -%linked_vertical_middle { - border-style: solid; - border-bottom-style: none; - border-top-style: none; - border-radius: 0; - - &:hover { - box-shadow: inset 0 -1px $_linked_separator_color, - inset 0 1px $_linked_separator_color; - } - &:active, &:checked { box-shadow: none; } -} - -%linked_vertical{ - @extend %linked_vertical_middle; - - &:first-child { - border-radius: 3px 3px 0 0; - border-top-style: solid; - - &:hover { box-shadow: inset 0 -1px $_linked_separator_color; } - &:active, &:checked { box-shadow: none; } - } - &:last-child { - border-radius: 0 0 3px 3px; - border-bottom-style: solid; - - &:hover { box-shadow: inset 0 1px $_linked_separator_color; } - &:active, &:checked { box-shadow: none; } - } - &:only-child { - border-radius: 3px; - border-style: solid; - - &:hover { box-shadow: none; } - &:active, &:checked { box-shadow: none; } - } -} - -%undecorated_button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; -} - -/* menu buttons */ -.menuitem.button.flat { - transition: none; - @extend %undecorated_button; - outline-offset: -1px; - border-radius: 2px; - - &:hover { background-color: if($variant=='light', mix($fg_color,$bg_color,5%), mix($fg_color,$bg_color,10%)); } - &:active, &:selected { - @extend %selected_items; - } - &:checked { color: $fg_color; } -} - -// -// Links -// -*:link { - color: $link_color; - &:visited { - color: $link_visited_color; - *:selected & { color: mix($selected_fg_color, $selected_bg_color, 60%); } - } - &:hover { - color: lighten($link_color,10%); - *:selected & { color: mix($selected_fg_color, $selected_bg_color, 90%); } - } - &:active { - color: $link_color; - *:selected & { color: mix($selected_fg_color, $selected_bg_color, 80%); } - } - &:selected, *:selected & { - color: mix($selected_fg_color, $selected_bg_color, 80%); - } -} - -.button:link, .button:visited { - @extend %undecorated_button; - @extend *:link; - &:hover, &:active, &:checked { - @extend %undecorated_button; - } -} - -// -// Spinbuttons -// -.spinbutton { - border-radius: 3px; - - .button { - background-image: none; - border: 1px solid transparentize($borders_color,0.4); - border-style: none none none solid; - color: mix($fg_color,$base_color,95%); - border-radius: 0; - box-shadow: none; - - &:dir(rtl) { border-style: none solid none none; } - &:first-child { color: red; } - - &:insensitive { - color: $insensitive_fg_color; - } - &:active { - background-color: $selected_bg_color; - color: $selected_fg_color; - } - } - -// .osd & { -// .button { -// @include button(undecorated); -// color: $osd_fg_color; -// border-style: none none none solid; -// border-color: transparentize($osd_borders_color, 0.3); -// border-radius: 0; -// box-shadow: none; -// &:dir(rtl) { border-style: none solid none none; } -// &:hover { -// @include button(undecorated); -// color: $osd_fg_color; -// border-color: transparentize(opacify($osd_borders_color, 1), 0.5); -// background-color: transparentize($osd_fg_color, 0.9); -// box-shadow: none; -// } -// &:insensitive { -// @include button(undecorated); -// color: $osd_insensitive_fg_color; -// border-color: transparentize(opacify($osd_borders_color, 1), 0.5); -// box-shadow: none; -// } -// &:last-child { border-radius: 0 2px 2px 0; } -// &:dir(rtl):first-child { border-radius: 2px 0 0 2px; } -// } -// } - - &.vertical, &.vertical:dir(rtl) { - .button { - &:first-child { - @extend %top_button; - @include button(normal); - &:active { - @extend %top_button; - @include button(active); - } - &:hover { - @extend %top_button; - @include button(hover); - } - &:insensitive { - @extend %top_button; - @include button(insensitive); - } - } - &:last-child { - @extend %bottom_button; - @include button(normal); - &:active { - @extend %bottom_button; - @include button(active); - } - &:hover { - @extend %bottom_button; - @include button(hover); - } - &:insensitive { - @extend %bottom_button; - @include button(insensitive); - } - } - } - &.entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; - } - %top_button { - border-radius: 2px 2px 0 0; - border-style: solid solid none solid; - } - %bottom_button { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; - } - } - GtkTreeView & { - &.entry, &.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: $selected_bg_color; - border-radius: 0; - box-shadow: none; - } - } -} - -// -// Comboboxes -// -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; - - > .the-button-in-the-combobox { // Otherwise combos - padding-top: $vert_padding - 2px; // are bigger than - padding-bottom: $vert_padding - 2px; // buttons - } - - &:insensitive { - color: $insensitive_fg_color; - } - - .separator.vertical { - // always disable separators - -GtkWidget-wide-separators: true; - } - - &.combobox-entry .entry { - @extend %linked; - - &:dir(ltr) { - border-right-style: none; - - @if $variant=='light' { &:focus { box-shadow: 1px 0 $selected_bg_color; } } - } - &:dir(rtl) { - border-left-style: none; - - @if $variant=='light' { &:focus { box-shadow: -1px 0 $selected_bg_color; } } - } - } - - &.combobox-entry .button { - @extend %linked; - - &:dir(ltr) { - box-shadow: inset 1px 0 $button_border; - - &:insensitive { box-shadow: inset 1px 0 transparentize($button_border, 0.45); } - } - &:dir(rtl) { - box-shadow: inset -1px 0 $button_border; - - &:insensitive { box-shadow: inset -1px 0 transparentize($button_border, 0.45); } - } - } -} - -.linked > GtkComboBox > .button { - // the combo is a composite widget so the way we do button linking doesn't - // work, special case needed. See - // https://bugzilla.gnome.org/show_bug.cgi?id=733979 - &:dir(ltr) { @extend %linked_middle; } // specificity bump - &:dir(rtl) { @extend %linked_middle:dir(rtl); } -} -.linked > GtkComboBox:first-child > .button { - @extend %linked:first-child; -} -.linked > GtkComboBox:last-child > .button { - @extend %linked:last-child; -} -.linked > GtkComboBox:only-child > .button { - @extend %linked:only-child; -} -.linked.vertical > GtkComboBoxText > .button, -.linked.vertical > GtkComboBox > .button { @extend %linked_vertical_middle; } -.linked.vertical > GtkComboBoxText:first-child > .button, -.linked.vertical > GtkComboBox:first-child > .button { @extend %linked_vertical:first-child; } -.linked.vertical > GtkComboBoxText:last-child > .button, -.linked.vertical > GtkComboBox:last-child > .button { @extend %linked_vertical:last-child; } -.linked.vertical > GtkComboBoxText:only-child > .button, -.linked.vertical > GtkComboBox:only-child > .button { @extend %linked_vertical:only-child; } - -// -// Toolbars -// -.toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: $bg_color; - .osd &, &.osd { - padding: 7px; - border: 1px solid transparentize(black, 0.5); - border-radius: 3px; - background-color: transparentize($osd_bg_color, 0.1); - } -} - -.primary-toolbar { - color: $header_fg; - background-color: opacify($header_bg, 1); - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, opacify($header_bg, 1), - darken($header_bg, 7%)) 1 0 1 0; //temporary hack for rhythmbox 3.1 - - //&:backdrop { background-color: opacify($header_bg_backdrop, 1); } - - .separator { @extend %header_separator; } - - @extend %header_widgets; -} - -.inline-toolbar { - @extend .toolbar; - background-color: darken($bg_color, 3%); - border-style: solid; - border-color: $borders_color; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; -} - -.search-bar { - background-color: $bg_color; - border-style: solid; - border-color: $borders_color; - border-width: 0 0 1px; - padding: 3px; - //box-shadow: inset 0 1px 2px rgba(0,0,0,0.25); -} - -.action-bar { background-color: darken($bg_color, 3%) } - -// -// Headerbars -// -.header-bar { - padding: 5px 5px 4px 5px; - - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: opacify($header_border, 1); - - color: $header_fg; - background-color: opacify($header_bg, 1); - - .csd & { // Transparent header-bars only in csd windows - background-color: $header_bg; - border-color: $header_border; - } - - &:backdrop { color: transparentize($header_fg, 0.3); } - - .title { - padding-left: 12px; - padding-right: 12px; - } - - .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; - @extend .dim-label; - } - - // Selectionmode - &.selection-mode, - &.titlebar.selection-mode { - color: $selection_mode_fg; - background-color: $selection_mode_bg; - border-color: darken($selection_mode_bg, 4%); - box-shadow: none; - - &:backdrop { - background-color: $selection_mode_bg; - color: transparentize($selection_mode_fg, 0.4); - } - - .subtitle:link { @extend *:link:selected; } - - .button { - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - background-color: transparentize($selected_fg_color, 1); - border-color: transparentize($selected_fg_color, 1); - - &.flat { - @include button(undecorated); - color: $selected_fg_color; - background-color: transparentize($selected_fg_color, 1); - } - &:hover { - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - background-color: transparentize($selected_fg_color, 0.95); - border-color: transparentize($selected_fg_color, 0.5); - } - &:active, &:checked { - color: $selection_mode_bg; - outline-color: transparentize($selection_mode_bg, 0.7); - background-color: $selected_fg_color; - border-color: $selected_fg_color; - } - &:insensitive { - color: transparentize($selected_fg_color, 0.6); - background-color: transparentize($selected_fg_color, 1); - border-color: transparentize($selected_fg_color, 1); - - &:active, &:checked { - color: transparentize($selection_mode_bg, 0.6); - background-color: transparentize($selected_fg_color, 0.85); - border-color: transparentize($selected_fg_color, 0.85); - } - } - } - - .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; - GtkArrow { -GtkArrow-arrow-scaling: 1; } - .arrow { - -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); - } - } - .maximized & { background-color: opacify($selection_mode_bg, 1); } - } - - .tiled &, .tiled &:backdrop, - .maximized &, .maximized &:backdrop { - border-radius: 0; // squared corners when the window is max'd or tiled - } - - .maximized & { - background-color: opacify($header_bg, 1); - border-color: opacify($header_border, 1); - } - - &.default-decoration, - .csd &.default-decoration, // needed under wayland, since all gtk3 windows are csd windows - &.default-decoration:backdrop, - .csd &.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: opacify($header_bg, 1); - border-bottom-width: 0; - - .maximized & { background-color: opacify($header_bg, 1); } - } -} - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: if($darker=='false' and $variant=='light', 4px 4px 0 0, 3px 3px 0 0); - color: $header_fg; - background-color: opacify($header_bg, 1); - box-shadow: inset 0 1px lighten($header_bg, 3%); - - .csd & { background-color: $header_bg; } - - &:backdrop { - color: transparentize($header_fg, 0.3); - background-color: opacify($header_bg_backdrop, 1); - - .csd & { background-color: $header_bg_backdrop; } - } - - .maximized & { - background-color: opacify($header_bg, 1); - - &:backdrop, .csd &:backdrop { background-color: opacify($header_bg_backdrop, 1); } - } -} - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { background-color: transparent; } - -// Only extending .header-bar avoids some problems (Gnome Documents searchbar) -.header-bar { - .header-bar-separator, - & > GtkBox > .separator.vertical { @extend %header_separator; } - - @extend %header_widgets; -} - -%header_separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, - transparentize($header_fg, 1) 25%, - transparentize($header_fg, 0.65) 25%, - transparentize($header_fg, 0.65) 75%, - transparentize($header_fg, 1) 75%) 0 1/0 1px stretch; - - &:backdrop { opacity: 0.6; } -} - -%header_widgets { - // Headerbar Entries - .entry { - @include entry(header-normal); - - &:backdrop { opacity: 0.85; } - - &:focus { - @include entry(header-focus); - background-clip: if($darker=='false' and $variant=='light', border-box, padding-box); - - &.image { color: $selected_fg_color; } - } - &:insensitive { @include entry(header-insensitive); } - - &:selected:focus { - background-color: $selected_fg_color; - color: $selected_bg_color; - } - - &.progressbar { - border-color: $selected_bg_color; - background-image: none; - background-color: transparent; - } - - @each $e_type, $e_color, $e_fg_color in (warning, $warning_color, $warning_fg_color), - (error, $error_color, $error_fg_color) { - &.#{$e_type} { - color: $e_fg_color; - border-color: if($darker=='false' and $variant=='light', $e_color, $header_entry_border); - background-image: linear-gradient(to bottom, mix($e_color, $header_bg, 60%)); - - &:focus { - color: $e_fg_color; - background-image: linear-gradient(to bottom, $e_color); - } - &:selected, &:selected:focus { - background-color: $e_fg_color; - color: $e_color; - } - } - } - } - - // Headerbar Buttons - .button { - - @include button(header-normal); - - &:backdrop { opacity: 0.7; } - - &:hover { @include button(header-hover); } - &:active, &:checked { - @include button(header-active); - background-clip: if($darker=='false' and $variant=='light', border-box, padding-box); - } - &:insensitive { @include button(header-insensitive); } - &:insensitive:active, &:insensitive:checked { @include button(header-insensitive-active); } - } - - .linked > .button { border-radius: 3px; border-style: solid} - - .linked > .button:hover { box-shadow: none; } - - .linked.stack-switcher > .button, - .linked.path-bar > .button { - - $_linked_separator_color: $header_button_border; - - @include button(header-hover); - - &:hover { background-color: lighten($header_button_bg, 15%); } - &:active, &:checked { @include button(header-active); } - &:insensitive { color: transparentize($header_fg, 0.4); } - - @extend %linked; - - &:hover { - box-shadow: inset 1px 0 $_linked_separator_color, - inset -1px 0 $_linked_separator_color; - } - &:active, &:checked { box-shadow: none; } - - &:first-child { - &:hover { box-shadow: inset -1px 0 $_linked_separator_color; } - &:active, &:checked { box-shadow: none; } - } - &:last-child { - &:hover { box-shadow: inset 1px 0 $_linked_separator_color; } - &:active, &:checked { box-shadow: none; } - } - &:only-child { - &:hover { box-shadow: none; } - &:active, &:checked { box-shadow: none; } - } - } - - // Headerbar Suggested and Destructive Action buttons - @each $b_type, $b_color, $b_fg in (suggested-action, $suggested_color, $suggested_fg_color), - (destructive-action, $destructive_color, $destructive_fg_color) { - .button.#{$b_type} { - @include button(suggested_destructive, $b_color, $b_fg); - - &.flat { - @include button(undecorated); - color: $b_color; - outline-color: transparentize($b_color, 0.7); - } - &:hover { - @include button(suggested_destructive, lighten($b_color, 10%), $b_fg); - } - &:active, &:checked { - @include button(suggested_destructive, darken($b_color, 10%), $b_fg); - } - &.flat:insensitive, - &:insensitive { @include button(header-insensitive); } - } - .button.#{$b_type}:backdrop, - .button.#{$b_type}:backdrop { - opacity: 0.8; - } - } - - // Headerbar Spinbuttons - & .spinbutton { - - &:focus .button { - color: $selected_fg_color; - - &:hover { background-color: transparentize($selected_fg_color, 0.9); border-color: transparent; } - &:insensitive { color: transparentize($selected_fg_color, 0.6); } - } - .button { - color: $header_fg; - - &:hover { background-color: transparentize($header_fg, 0.75); border-color: transparent; } - &:insensitive { color: transparentize($header_fg, 0.3); } - &:active { background-color: rgba(0,0,0,0.1); } - } - } - - // Headerbar ComboBoxes - & GtkComboBox{ - &:insensitive { color: transparentize($header_fg, 0.6); } - - &.combobox-entry .button { - @include entry(header-normal); - - &:hover { @include entry(header-focus); box-shadow: none; } - &:insensitive { @include entry(header-insensitive); } - } - &.combobox-entry .entry { - &:dir(ltr) { - &:focus { box-shadow: none; } - } - &:dir(rtl) { - &:focus { box-shadow: none; } - } - } - &.combobox-entry .button { - - &:dir(ltr) { - box-shadow: inset 1px 0 $header_button_border; - - &:insensitive { box-shadow: inset 1px 0 transparentize($header_button_border, 0.45); } - } - &:dir(rtl) { - box-shadow: inset -1px 0 $header_button_border; - - &:insensitive { box-shadow: inset -1px 0 transparentize($header_button_border, 0.45); } - } - } - } - - // Headerbar Switches - GtkSwitch { - &:backdrop { opacity: 0.75; } - } - - GtkProgressBar { - - &.trough { background-color: if($variant=='light' and $darker=='false', opacify($header_button_border, 0.05), $header_button_border); } - - &:backdrop { opacity: 0.75; } - } - - // Headerbar Scale - .scale { - - &:backdrop { opacity: 0.75; } - - &.trough { - $_trough_bg: if($variant=='light' and $darker=='false', opacify($header_button_border, 0.05), $header_button_border); - background-image: linear-gradient(to bottom, $_trough_bg); - - &:insensitive { background-image: linear-gradient(to bottom, if($variant=='light' and $darker=='false', transparentize($_trough_bg, 0.05), transparentize($_trough_bg, 0.1))); } - } - &.slider { - $_slider_border: if($variant=='light' and $darker=='false', opacify($header_button_border, 0.2), opacify($header_button_border, 0.3)); - $_slider_bg: if($variant=='light' and $darker=='false', opacify($header_button_bg,1), lighten(opacify($header_bg,1), 10%)); - - background-image: linear-gradient(to bottom, $_slider_bg); - border-color: $_slider_border; - - &:hover { - background-image: linear-gradient(to bottom, lighten($_slider_bg, 5%)); - border-color: $_slider_border; - } - &:active { - background-image: linear-gradient(to bottom, $selected_bg_color); - border-color: $selected_bg_color; - } - &:insensitive { - background-image: linear-gradient(to bottom, mix($_slider_bg, $header_bg, 70%)); - border-color: $_slider_border; - } - } - } -} - -// -// Pathbars -// -.path-bar .button { - padding: 5px 10px; - - &:first-child { padding-left: 10px; } - &:last-child { padding-right: 10px; } - &:only-child { - padding-left: 14px; - padding-right: 14px; - } - - // the following is for spacing the icon and the label inside the home button - GtkLabel:last-child { padding-left: 4px; } - GtkLabel:first-child { padding-right: 4px; } - GtkLabel:only-child, GtkLabel { padding-right: 0; padding-left: 0; } - GtkImage { padding-top: 2px; padding-bottom: 1px; } -} - -// -// Tree Views -// -GtkTreeView.view { // treeview grid lines and expanders, unfortunatelly - // the tree lines color can't be set - -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: transparentize($fg_color, 0.85); // this is actually the tree lines color, - border-top-color: transparentize(black, 0.9); // while this is the grid lines color, better then nothing - - &:selected { - border-radius: 0; - border-left-color: mix($selected_fg_color, $selected_bg_color, 50%); - border-top-color: transparentize($fg_color, 0.9); // doesn't work unfortunatelly - } - - &:insensitive { - color: $insensitive_fg_color; - &:selected { - color: mix($selected_fg_color, $selected_bg_color, 40%); - } - } - - &.dnd { - border-style: solid none; - border-width: 1px; - border-color: mix($fg_color, $selected_bg_color, 50%); - } - - &.expander { - -gtk-icon-source: -gtk-icontheme('pan-end-symbolic'); - &:dir(rtl) { -gtk-icon-source: -gtk-icontheme('pan-end-symbolic-rtl'); } - - color: mix($fg_color, $base_color, 50%); - - &:hover { color: $fg_color; } - - &:selected { - color: mix($selected_fg_color, $selected_bg_color, 70%); - &:hover { color: $selected_fg_color; } - } - - &:checked { - -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); - } - } - - &.progressbar, &.progressbar:focus { // progress bar in treeviews - color: $selected_fg_color; - border-radius: 3px; - background-image: linear-gradient(to bottom, $selected_bg_color); - - &:selected, &:selected:focus { - color: $selected_bg_color; - box-shadow: none; - background-image: linear-gradient(to bottom, $selected_fg_color); - } - } - &.trough { // progress bar trough in treeviews - color: $fg_color; - background-image: linear-gradient(to bottom, $button_border); - border-radius: 3px; - border-width: 0; - - &:selected, &:selected:focus { - color: $selected_fg_color; - background-image: linear-gradient(to bottom, transparentize(black, 0.8)); - border-radius: 3px; - border-width: 0; - } - } -} - -column-header { - .button { - @extend %column_header_button; - $_column_header_color: mix($fg_color,$base_color,80%); - color: $_column_header_color; - background-color: $base_color; - &:hover { - @extend %column_header_button; - color: $selected_bg_color; - box-shadow: none; - transition: none; //I shouldn't need this - } - &:active { - @extend %column_header_button; - color: $fg_color; - transition: none; //I shouldn't need this - } - &.dnd { - @extend column-header.button.dnd; - } - } - &:last-child .button, - &:last-child.button { //treeview-like derived widgets in Banshee and Evolution - border-right-style: none; - border-image: none; - } -} - -column-header.button.dnd { // for treeview-like derive widgets - transition: none; - color: $selected_bg_color; - box-shadow: inset 1px 1px 0 1px $selected_bg_color, - inset -1px 0 0 1px $selected_bg_color, - inset 1px 1px $base_color, inset -1px 0 $base_color;; - &:active { @extend column-header.button.dnd; } - &:selected { @extend column-header.button.dnd; } - &:hover { @extend column-header.button.dnd; } -} - -%column_header_button { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, - transparentize(if($variant == 'light', black, white), 1) 20%, - transparentize(if($variant == 'light', black, white), 0.89) 20%, - transparentize(if($variant == 'light', black, white), 0.89) 80%, - transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch; - - &:active, &:hover { background-color: $base_color; } - &:active:hover { color: $fg_color; } - &:insensitive { - border-color: $bg_color; - background-image: none; - } -} - -// -// Menus -// -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: opacify($header_bg, 1); - color: $header_fg; - - &:backdrop { - color: transparentize($header_fg, 0.3); - //background-color: opacify($header_bg_backdrop, 1); - } - - & > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; - - &:hover { //Seems like it :hover even with keyboard focus - background-color: $selected_bg_color; - color: $selected_fg_color; - } - &:insensitive { - color: transparentize($header_fg, 0.6); - border-color: transparent; - } - } -} - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: if($variant=='light', $base_color, $bg_color); - border: 1px solid $borders_color; - - .csd & { - padding: 4px 0px; - border-radius: 2px; - border: none; - } - - .menuitem { - padding: 5px; - &:hover { - color: $selected_fg_color; - background-color: $selected_bg_color; - } - &:insensitive { - color: $insensitive_fg_color; - } - - &.separator { color: transparentize($base_color, 1); } - - //submenu indicators - &.arrow { -gtk-icon-source: -gtk-icontheme('pan-end-symbolic'); } - &.arrow:dir(rtl) {-gtk-icon-source:-gtk-icontheme('pan-end-symbolic-rtl'); } - } - &.button { // overlow buttons - @extend %undecorated_button; - border-style: none; - border-radius: 0; - &.top { border-bottom: 1px solid mix($fg_color, $base_color, 10%); } - &.bottom { border-top: 1px solid mix($fg_color, $base_color, 10%); } - &:hover { background-color: mix($fg_color, $base_color, 10%); } - &:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent ; - } - } -} - -.csd .popup { border-radius: 2px; } - -.menuitem .accelerator { color: gtkalpha(currentColor,0.55); } - -// -// Popovers -// -.popover { - padding: 2px; - border: 1px solid darken($borders_color, 5%); - border-radius: 3px; - background-clip: border-box; - background-color: if($variant=='light', $base_color, $bg_color); - - box-shadow: 0 2px 6px 1px if($variant=='light', transparentize(black, 0.93), transparentize(black, 0.65)); - - & .separator { color: transparentize($base_color, 1); } - .label.separator { @extend .label.separator; } // Noice - - > .list, - > .view, - > .toolbar, - &.osd > .toolbar { - border-style: none; - background-color: transparent; - } - &.osd { @extend %osd; } -} - -//touch selection handlebars for the Popover.osd above -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; - &.top { -gtk-icon-source: -gtk-icontheme('selection-start-symbolic'); } - &.bottom { -gtk-icon-source: -gtk-icontheme('selection-end-symbolic'); } -} - -// -// Notebooks and Tabs -// -.notebook { - padding: 0; - background-color: $base_color; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -GtkNotebook-has-tab-gap: false; - -GtkWidget-focus-padding: 0; - -GtkWidget-focus-line-width: 0; - transition: all 200ms $ease-out-quad; - - &.frame { - border: 1px solid $borders_color; - - &.top { border-top-width: 0; } - &.bottom { border-bottom-width: 0; } - &.right { border-right-width: 0; } - &.left { border-left-width: 0; } - } - &.header { - background-color: $bg_color; - - // this is the shading of the header behind the tabs - &.frame { - border: 0px solid $borders_color; - &.top { border-bottom-width: 0; } - &.bottom { border-top-width: 0; } - &.right { border-left-width: 0; } - &.left { border-right-width: 0; } - } - - $_header_border: $borders_color; - &.top { box-shadow: inset 0 -1px $_header_border; } - &.bottom { box-shadow: inset 0 1px $_header_border; } - &.right { box-shadow: inset 1px 0 $_header_border; } - &.left { box-shadow: inset -1px 0 $_header_border; } - } - tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - - outline-offset: 0; - - // tab sizing - $vpadding: 4px; - $hpadding: 15px; - - //FIXME: we get double border in some cases, not considering the broken - //notebook content frame... - &.top, &.bottom { padding: $vpadding $hpadding; } - &.left, &.right { padding: $vpadding $hpadding; } - - &.reorderable-page { - &.top, &.bottom { - padding-left: 12px; // for a nicer close button - padding-right: 12px; // placement - } - } - @each $_tab in (top, bottom, right, left) { - &.reorderable-page.#{$_tab}, &.#{$_tab} { - - @if $_tab==top or $_tab==bottom { - padding-#{$_tab}: $vpadding + 2; - } - @else if $_tab==left or $_tab==right { - padding-#{$_tab}: $hpadding + 2; - } - - @if $_tab==top { border-radius: 3.5px 2px 0 0; } - @else if $_tab==bottom { border-radius: 0 0 2px 3.5px; } - @else if $_tab==left { border-radius: 3.5px 0 0 3.5px; } - @else if $_tab==right { border-radius: 0 3.5px 3.5px 0; } - - border-width: 0; - border-#{$_tab}-width: 2px; - border-color: transparent; - background-color: transparentize($base_color, 1); - - &:hover, &.prelight-page { - background-color: transparentize($base_color, 0.5); - box-shadow: inset 0 1px $borders_color, - inset 0 -1px $borders_color, - inset 1px 0 $borders_color, - inset -1px 0 $borders_color; - } - &:active, &.active-page, &.active-page:hover { - background-color: $base_color; - - @if $_tab==top { - box-shadow: inset 0 1px $borders_color, - inset 0 -1px $base_color, - inset 1px 0 $borders_color, - inset -1px 0 $borders_color; - } - @else if $_tab==bottom { - box-shadow: inset 0 -1px $base_color, - inset 0 -1px $borders_color, - inset 1px 0 $borders_color, - inset -1px 0 $borders_color; - } - @else if $_tab==left { - box-shadow: inset 0 1px $borders_color, - inset 0 -1px $borders_color, - inset 1px 0 $borders_color, - inset -1px 0 $base_color; - } - @else if $_tab==right { - box-shadow: inset 0 1px $borders_color, - inset 0 -1px $borders_color, - inset 1px 0 $base_color, - inset -1px 0 $borders_color; - } - } - } - } - GtkLabel { //tab text - padding: 0 2px; // needed for a nicer focus ring - color: $insensitive_fg_color; - } - .prelight-page GtkLabel, GtkLabel.prelight-page { - // prelight tab text - color: mix($fg_color, $insensitive_fg_color, 50%); - } - .active-page GtkLabel, GtkLabel.active-page { - // active tab text - color: $fg_color; - } - .button { //tab close button - padding: 0; - @extend %undecorated_button; - color: mix($bg_color, $fg_color, 35%); - - &:hover { - color: lighten(red, 15%); - } - &:active { - color: $selected_bg_color; - } - & > GtkImage { // this is a hack which makes tabs grow - padding: 2px; - } - } - } - &.arrow { - color: $insensitive_fg_color; - &:hover { color: mix($fg_color, $insensitive_fg_color, 50%); } - &:active { color: $fg_color; } - &:insensitive { - color: transparentize($insensitive_fg_color,0.3); - } - } -} - -// -// Scrollbars -// -$_scrollbar_bg_color: darken($base_color, 1%); - -.scrollbar { - -GtkRange-slider-width: 13; - -GtkRange-trough-border: 0; - -GtkScrollbar-has-backward-stepper: false; - -GtkScrollbar-has-forward-stepper: false; - -GtkScrollbar-min-slider-length: 42; // minimum size for the slider. - // sadly can't be in '.slider' - // where it belongs - -GtkRange-stepper-spacing: 0; - -GtkRange-trough-under-steppers: 1; - - $_slider_margin: 3px; - $_slider_fine_tune_margin: 4px; - - .button { - border: none; - } - - &.overlay-indicator { - &:not(.dragging):not(.hovering) { // Overlay scrolling indicator - opacity: 0.4; - - -GtkRange-slider-width: 6px; - - .slider { - margin: 0; - background-color: mix($fg_color, $bg_color, 70%); - border: 1px solid if($variant == 'light', transparentize(white, 0.4), transparentize(black, 0.7)); - background-clip: padding-box; - } - - .trough { - border-style: none; - background-color: transparent; - } - - // w/o the following margin tweaks the slider shrinks when hovering/dragging - &.vertical .slider { - margin-top: $_slider_margin - 1px; - margin-bottom: $_slider_margin - 1px; - } - - &.horizontal .slider { - margin-left: $_slider_margin - 1px; - margin-right: $_slider_margin - 1px; - } - - } - - &.dragging, - &.hovering { opacity: 0.99; } - } - - // trough coloring - .trough { - background-color: $_scrollbar_bg_color; - border: 1px none $borders_color; - } - - // slider coloring - .slider { - background-color: mix($fg_color, $bg_color, 40%); - - &:hover { background-color: mix($fg_color, $bg_color, 30%); } - - &:prelight:active, - &:active { background-color: $selected_bg_color;} - - &:insensitive { - background-color: transparent; - } - } - - // sizing - .slider { - border-radius: 100px; - margin: $_slider_margin; - } - - &.fine-tune .slider { margin: $_slider_fine_tune_margin; } - - &.vertical { - - .slider { - margin-left: 1px + $_slider_margin; - - &:dir(rtl) { - margin-left: $_slider_margin; - margin-right: 1px + $_slider_margin; - } - } - - &.fine-tune .slider { - margin-left: 1px + $_slider_fine_tune_margin; - - &:dir(rtl) { - margin-left: $_slider_fine_tune_margin; - margin-right: 1px + $_slider_fine_tune_margin; - } - } - - .trough { - border-left-style: solid; - - &:dir(rtl) { - border-left-style: none; - border-right-style: solid; - } - } - } - - &.horizontal { - - .slider { margin-top: 1px + $_slider_margin; } - - &.fine-tune .slider { margin-top: 1px + $_slider_fine_tune_margin; } - - .trough { border-top-style: solid; } - } -} - -.scrollbars-junction, -.scrollbars-junction.frame { // the small square between two scrollbars - border-color: transparent; - // the border image is used to add the missing dot between the borders, details, details, details... - border-image: linear-gradient(to bottom, $borders_color 1px, transparent 1px) 0 0 0 1 / 0 1px stretch; - background-color: $_scrollbar_bg_color; - - &:dir(rtl) { border-image-slice: 0 1 0 0; } -} - - -// -// Switches -// -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 41; - outline-color: transparent; - - &.trough, &.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; - - &:dir(rtl) { background-position: left center; } - } -} - -@each $k,$l in ('',''), - (':active','-active'), - (':insensitive','-insensitive'), - (':active:insensitive','-active-insensitive') { - - // load switch troughs from .png files in assets directory - - GtkSwitch.trough#{$k} { - background-image: -gtk-scaled(url("assets/switch#{$l}#{$asset_suffix}.png"),url("assets/switch#{$l}#{$asset_suffix}@2.png")); - } - - .menu .menuitem:hover GtkSwitch.trough#{$k}, - .list-row:selected GtkSwitch.trough#{$k}, - GtkInfoBar GtkSwitch.trough#{$k} { - background-image: -gtk-scaled(url("assets/switch#{$l}-selected.png"),url("assets/switch#{$l}-selected@2.png")); - } - - .header-bar GtkSwitch.trough#{$k}, - .primary-toolbar GtkSwitch.trough#{$k} { - background-image: -gtk-scaled(url("assets/switch#{$l}-header#{$darker_asset_suffix}.png"),url("assets/switch#{$l}-header#{$darker_asset_suffix}@2.png")); - } -} - -// -// Check and Radio items * -// -@each $w,$a in ('check', 'checkbox'), - ('radio','radio') { - - //standard checks and radios - @each $s,$as in ('','-unchecked'), - (':insensitive','-unchecked-insensitive'), - (':inconsistent', '-mixed'), - (':inconsistent:insensitive', '-mixed-insensitive'), - (':checked', '-checked'), - (':checked:insensitive','-checked-insensitive') { - .#{$w}#{$s} { - -gtk-icon-source: -gtk-scaled(url("assets/#{$a}#{$as}#{$asset_suffix}.png"), - url("assets/#{$a}#{$as}#{$asset_suffix}@2.png")); - } - - %osd_check_radio { - .#{$w}#{$s} { - -gtk-icon-source: -gtk-scaled(url("assets/#{$a}#{$as}-dark.png"), - url("assets/#{$a}#{$as}-dark@2.png")); - } - } - // the borders of checks and radios are - // too similar in luminosity to the selected background color, hence - // we need special casing. - .menu .menuitem.#{$w}#{$s}:hover, - GtkTreeView.view.#{$w}#{$s}:selected, - .list-row:selected .#{$w}#{$s}, - GtkInfoBar .#{$w}#{$s} { - -gtk-icon-source: -gtk-scaled(url("assets/#{$a}#{$as}-selected.png"), - url("assets/#{$a}#{$as}-selected@2.png")); - } - } -} - -// Selectionmode -@each $s,$as in ('','-selectionmode'), - (':checked', '-checked-selectionmode') { - GtkIconView.view.check#{$s}, - GtkFlowBox.view.check#{$s} { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox#{$as}#{$asset_suffix}.png"), - url("assets/checkbox#{$as}#{$asset_suffix}@2.png")); - background-color: transparent; - } -} - -GtkCheckButton.text-button, GtkRadioButton.text-button { - // this is for a nice focus on check and radios text - padding: 1px 2px 4px; - outline-offset: 0; - &:insensitive, - &:insensitive:active, - &:insensitive:inconsistent { - // set insensitive color, which is overriden otherwise - color: $insensitive_fg_color; - } -} - -// -// GtkScale -// -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; - - &.trough { margin: 5px; } - &.fine-tune { - &.trough { border-radius: 5px; margin: 3px; } - } - &.slider { - $_slider_border: if($variant=='light', transparentize(darken($button_border,25%), 0.5), darken($button_border,2%)); - - background-clip: border-box; - background-image: linear-gradient(to bottom, $button_bg); - border: 1px solid $_slider_border; - border-radius: 50%; - box-shadow: none; - - &:hover { - background-image: linear-gradient(to bottom, lighten($button_bg, 5%)); - border-color: $_slider_border; - } - &:insensitive { - background-image: linear-gradient(to bottom, mix($entry_bg, $bg_color, 55%)); - border-color: transparentize($_slider_border, 0.2); - } - &:active { - background-image: linear-gradient(to bottom, $selected_bg_color); - border-color: $selected_bg_color; - } - //OSD sliders - .osd & { - background-image: linear-gradient(to bottom, $osd_bg_color); - border-color: $selected_bg_color; - - &:hover { background-image: linear-gradient(to bottom, $selected_bg_color); } - &:active { - background-image: linear-gradient(to bottom, darken($selected_bg_color, 10%)); - border-color: darken($selected_bg_color, 10%); - } - } - //selected list-row and infobar sliders - .menu .menuitem:hover &, - .list-row:selected &, - GtkInfoBar & { - background-image: linear-gradient(to bottom, $selected_fg_color); - border-color: $selected_fg_color; - - &:hover { - background-image: linear-gradient(to bottom, mix($selected_fg_color, $selected_bg_color, 85%)); - border-color: mix($selected_fg_color, $selected_bg_color, 85%); - } - &:active { - background-image: linear-gradient(to bottom, mix($selected_fg_color, $selected_bg_color, 50%)); - border-color: mix($selected_fg_color, $selected_bg_color, 50%); - } - &:insensitive{ - background-image: linear-gradient(to bottom, mix($selected_fg_color, $selected_bg_color, 55%)); - border-color: mix($selected_fg_color, $selected_bg_color, 55%); - } - } - } - &.trough { - - $_scale_trough_bg: if($variant == 'light', $button_border, darken($bg_color, 5%)); - - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, $_scale_trough_bg); - &.highlight { - background-image: linear-gradient(to bottom, $selected_bg_color); - - &:insensitive { - background-image: linear-gradient(to bottom, transparentize($selected_bg_color, 0.45)); - } - } - &:insensitive { - background-image: linear-gradient(to bottom, transparentize($_scale_trough_bg, 0.45)); - } - - //OSD troughs - .osd & { - background-image: linear-gradient(to bottom, lighten($osd_bg_color, 7%)); - outline-color: transparentize($osd_fg_color, 0.8); - &.highlight { - background-image: none; - background-image: linear-gradient(to bottom, $selected_bg_color); - } - &:insensitive { } - } - // troughs in selected list-rows and infobars - .menu .menuitem:hover &, - .list-row:selected &, - GtkInfoBar & { - background-image: linear-gradient(to bottom, transparentize(black, 0.8)); - - &.highlight { - background-image: linear-gradient(to bottom, $selected_fg_color); - - &:insensitive { background-image: linear-gradient(to bottom, mix($selected_fg_color, $selected_bg_color, 55%)); } - } - &:insensitive { background-image: linear-gradient(to bottom, transparentize(black, 0.9)); } - } - } -} - -// -// Progress bars -// -GtkProgressBar { - padding: 0; - font-size: smaller; - color: transparentize($fg_color, 0.3); - - &.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; - } -} - -// moving bit -.progressbar { - background-color: $selected_bg_color; - border: none; - border-radius: 3px; - box-shadow: none; //needed for clipping - &.left.right { - - } - &.osd { - background-color: $selected_bg_color; - } - .list-row:selected &, - GtkInfoBar & { background-color: $selected_fg_color; } -} - -.osd .scale.progressbar { - background-color: $selected_bg_color; -} - -// background -GtkProgressBar.trough { - border: none; - border-radius: 3px; - background-color: if($variant == 'light', $button_border, darken($bg_color, 5%)); - - &.osd { - border-style: none; - background-color: transparent; - box-shadow: none; - } - .list-row:selected &, - GtkInfoBar & { background-color: transparentize(black, 0.8); } -} - -// -// Level Bar -// -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; - - &.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; - } -} - -.level-bar { - &.trough { - @extend GtkProgressBar.trough; - padding: 3px; - border-radius: 4px; - } - &.fill-block { - // FIXME: it would be nice to set make fill blocks bigger, but we'd need - // :nth-child working on discrete indicators - border: 1px solid $selected_bg_color; - background-color: $selected_bg_color; - border-radius: 2px; - - &.indicator-discrete { - &.horizontal { margin: 0 1px; } - &.vertical { margin: 1px 0; } - } - &.level-high { - border-color: $success_color; - background-color: $success_color; - } - &.level-low { - border-color: $warning_color; - background-color: $warning_color; - } - &.empty-fill-block { - background-color: if($variant=='light', transparentize($fg_color,0.8), $base_color); - border-color: if($variant=='light', transparentize($fg_color,0.8), $base_color); - } - } -} - - -// -// Frames -// -.frame { - border: 1px solid $borders_color; - &.flat { border-style: none; } - padding: 0; - &.action-bar { - padding: 6px; - border-width: 1px 0 0; - } -} - -GtkScrolledWindow { - GtkViewport.frame { // avoid double borders when viewport inside - // scrolled window - border-style: none; - } -} - -//vbox and hbox separators -.separator { - // always disable separators - // -GtkWidget-wide-separators: true; - color: transparentize(black, 0.9); - - // Font and File button separators - GtkFileChooserButton &, - GtkFontButton &, - GtkFileChooserButton &.vertical, - GtkFontButton &.vertical { - // always disable separators - -GtkWidget-wide-separators: true; - } -} - -// -// Lists -// -.list, .list-row { - background-color: $base_color; - border-color: $borders_color; -} - -.list-row, -.grid-child { - padding: 2px; -} - -.list-row.button { - @extend %undecorated_button; - background-color: transparentize(black, 1); // for the transition - border-style: none; // I need no borders here - border-radius: 0; // and no rounded corners - box-shadow: none; // and no box-shadow - &:hover { - background-color: if($variant == 'light', transparentize(black, 0.95), transparentize(white, 0.97)); - } - &:active { - color: $fg_color; - } - &:selected { - &:active { color: $selected_fg_color; } - &:hover { background-color: mix(black, $selected_bg_color, 10%); } - &:insensitive { - color: transparentize($selected_fg_color, 0.3); - background-color: transparentize($selected_bg_color, 0.3); - .label { color: inherit; } - } - } -} - -.list-row:selected { - @extend %selected_items; - .button { @extend %selected-button } -} - -// transition -.list-row, list-row.button { - transition: all 300ms $ease-out-quad; - &:hover { transition: none; } -} - -// -// App Notifications -// -.app-notification, -.app-notification.frame { - padding: 10px; - color: $dark_sidebar_fg; - background-color: $dark_sidebar_bg; - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: darken($dark_sidebar_bg, 10%); - - .button { - @include button(osd); - &.flat { - @extend %undecorated_button; - border-color: transparentize($selected_bg_color, 1); - &:insensitive { @extend %undecorated_button; } - } - &:hover { @include button(osd-hover); } - &:active, &:checked { @include button(osd-active); background-clip: padding-box; } - &:insensitive { @include button(osd-insensitive); - } - } -} - -// -// Expanders -// -.expander { - -gtk-icon-source: -gtk-icontheme('pan-end-symbolic'); - &:dir(rtl) { -gtk-icon-source: -gtk-icontheme('pan-end-symbolic-rtl'); } - &:hover { color: lighten($fg_color,30%); } //only lightens the arrow - &:checked { -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); } -} - -// -// Calendar -// -GtkCalendar { - color: $fg_color; - border: 1px solid $borders_color; - border-radius: 3px; - padding: 2px; - - &:selected { - background-color: $selected_bg_color; - color: $selected_fg_color; - border-radius: 1.5px; - } - &.header { - color: $fg_color; - border: none; - border-radius: 0; - } - &.button, &.button:focus { - color: transparentize($fg_color,0.55); - @include button(undecorated); - - &:hover { - color: $fg_color; - } - &:insensitive { - color: $insensitive_fg_color; - background-color: transparent; - background-image: none; - } - } - &.highlight { color: gtkalpha(currentColor,0.55); } -} - -// -// Dialogs -// -.message-dialog .dialog-action-area .button { - padding: 8px; -} - -.message-dialog { // Message Dialog styling - -GtkDialog-button-spacing: 0; - - .titlebar { background-color: $header_bg; border-bottom: 1px solid darken($header_bg, 7%) } - - &.csd { // rounded bottom border styling for csd version - &.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; - } - .dialog-action-area .button { - padding: 8px; - border-radius: 0; - - @extend %middle_button; - - &:hover, &:active, &:insensitive { - @extend %middle_button; - } - - &:first-child{ @extend %first_button; } - &:last-child { @extend %last_button; } - } - %middle_button { - border-right-style: none; - border-bottom-style: none; - } - %last_button { - border-bottom-right-radius: 3px; - } - %first_button { - border-left-style: none; - border-bottom-left-radius: 3px; - } - } -} - -GtkFileChooserDialog { - .search-bar { - background-color: $bg_color; - border-color: $borders_color; - box-shadow: none; - } - .dialog-action-box { - border-top: 1px solid $borders_color; - } -} - -// -// Sidebar -// -.sidebar, .sidebar .view { - border: none; - background-color: lighten($bg_color, 2%); - - &:selected { - background-color: $selected_bg_color; - } -} - -// Places sidebar is a special case, since the view here have to look like chrome not content, so we override text color -GtkPlacesSidebar.sidebar .view { - - color: $fg_color; - background-color: transparent; - - &:selected { - color: $selected_fg_color; - background-color: $selected_bg_color; - } - - &.separator { @extend .separator; } -} - -.sidebar-item { - padding: 10px 4px; - > GtkLabel { - padding-left: 6px; - padding-right: 6px; - } - &.needs-attention > GtkLabel { - @extend %needs_attention; - background-size: 6px 6px, 0 0; - } -} - -// -// Paned -// -GtkPaned { // this is for the standard paned separator - - -GtkPaned-handle-size: 1; // sets separator width - - -gtk-icon-source: none; // removes handle decoration - margin: 0 8px 8px 0; // drag area of the separator, not a real margin - - &:dir(rtl) { - margin-right: 0; - margin-left: 8px; - } - .pane-separator { - background-color: $borders_color; - } -} - -GtkPaned.wide { // this is for the paned with wide separator - -GtkPaned-handle-size: 5; // wider separator here - margin: 0; // no need of the invisible drag area so, reset margin - .pane-separator { - background-color: transparent; - border-style: none solid; - border-color: $borders_color; - border-width: 1px; - } - &.vertical .pane-separator { border-style: solid none;} -} - -// -// GtkInfoBar -// -GtkInfoBar { - border-style: none; - - .button { @extend %selected-button } -} - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: $selected_bg_color; - color: $selected_fg_color; -} - - -// -// Buttons on selected backgrounds -// -%selected-button { - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - background-color: transparentize($selected_fg_color, 1); - border-color: transparentize($selected_fg_color, 0.5); - - &.flat { - @include button(undecorated); - color: $selected_fg_color; - background-color: transparentize($selected_fg_color, 1); - } - &:hover { - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - background-color: transparentize($selected_fg_color, 0.8); - border-color: transparentize($selected_fg_color, 0.2); - } - &:active, &:active:hover, &:checked { - color: $selected_bg_color; - outline-color: transparentize($selected_bg_color, 0.7); - background-color: $selected_fg_color; - border-color: $selected_fg_color; - } - &:insensitive { - color: transparentize($selected_fg_color, 0.6); - background-color: transparentize($selected_fg_color, 1); - border-color: transparentize($selected_fg_color, 0.8); - - &:active, &:checked { - color: transparentize($selected_bg_color, 0.6); - background-color: transparentize($selected_fg_color, 0.8); - border-color: transparentize($selected_fg_color, 0.8); - } - } -} - -// -// Tooltips -// -.tooltip { - &.background { - // background-color needs to be set this way otherwise it gets drawn twice - // see https://bugzilla.gnome.org/show_bug.cgi?id=736155 for details. - background-color: lighten($osd_bg_color, 10%); - background-clip: padding-box; - } - - color: $osd_fg_color; - border-radius: 2px; - - &.window-frame.csd { - background-color: transparent; - } -} - -.tooltip * { //Yeah this is ugly - padding: 4px; - background-color: transparent; - color: inherit; // just to be sure -} - -// -// Color Chooser -// - -GtkColorSwatch { - // This widget is made of two boxes one on top of the other, the lower box is GtkColorSwatch {} the other one - // is GtkColorSwatch .overlay {}, GtkColorSwatch has the programmatically set background, so most of the style - // is applied to the overlay box. - - // take care of colorswatches on selected elements - :selected & { - box-shadow: none; - &.overlay, &.overlay:hover { - border-color: $selected_fg_color; - } - } - - // border rounding - &.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - } - &.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - } - &.left, &:first-child, &:first-child .overlay { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - } - &.right, &:last-child, &:last-child .overlay { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - } - &:only-child, &:only-child .overlay { - border-radius: 3px; - } - // nth-child works just on the custom colors row - - // hover effect - &:hover, - &:hover:selected { - background-image: linear-gradient(to bottom, transparentize(white, 0.8)); - } - - // no hover effect for the colorswatch in the color editor - GtkColorEditor & { - border-radius: 3px; // same radius as the entry - &:hover { - background-image: none; - } - } - - // indicator and keynav outline colors, color-dark is a color with luminosity lower then 50% - &.color-dark { - color: white; - outline-color: transparentize(black, 0.7); - } - &.color-light { - color: black; - outline-color: transparentize(white, 0.5); - } - - // border color - &.overlay, - &.overlay:selected { - border: 1px solid transparentize(black, 0.85); - &:hover { border-color: transparentize(black, 0.75); } - } - - // make the add color button looks like, well, a button - &#add-color-button { - border-style: solid; // the borders are drawn by the overlay for standard colorswatches to have them semi - border-width: 1px; // translucent on the colored background, here it's not necessary so they need to be set - @include button(normal); - &:hover { @include button(hover); } - .overlay { @include button(undecorated); } // reset the overlay to not cover the button style underneath - } -} - -GtkColorButton.button { - padding: 5px; // Uniform padding on the GtkColorButton - - GtkColorSwatch { border-radius: 0; } -} - -// -// Misc -// -.scale-popup .button { // +/- buttons on GtkVolumeButton popup - padding: 6px; - &:hover { - @include button(hover); - } -} - -GtkVolumeButton.button { padding: 8px; } - -// Decouple the font of context menus from their entry/textview -.touch-selection, -.context-menu { font: initial;} - -.monospace { font: Monospace; } - -// -// Overshoot -// -// This is used by GtkScrolledWindow, when content is touch-dragged past boundaries. -// This draws a box on top of the content, the size changes programmatically. -.overshoot { - &.top { @include overshoot(top); } - &.bottom { @include overshoot(bottom); } - &.left { @include overshoot(left); } - &.right { @include overshoot(right); } -} - -// -// Undershoot -// -// Overflow indication, works similarly to the overshoot, the size if fixed tho. -.undershoot { - &.top { @include undershoot(top); } - &.bottom { @include undershoot(bottom); } - &.left { @include undershoot(left); } - &.right { @include undershoot(right); } -} - -// -// Window Decorations -// - -.window-frame { - border-radius: if($darker=='false' and $variant=='light', 4px 4px 0 0, 3px 3px 0 0); - border-width: 0px; - - $_wm_border: if($variant=='light', transparentize(black, 0.9), transparentize(black, 0.45)); - - box-shadow: 0 0 0 1px if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), $_wm_border), - 0 8px 8px 0 if($variant == 'light', opacify($_wm_border, 0.1), transparentize($_wm_border, 0.2)); - - // this is used for the resize cursor area - margin: 10px; - - &:backdrop { - box-shadow: 0 0 0 1px if($darker=='true' or $variant == 'dark', transparentize(darken($header_bg, 7%), 0.1), $_wm_border), - 0 5px 5px 0 if($variant == 'light', opacify($_wm_border, 0.1), transparentize($_wm_border, 0.2)); - } - &.tiled { - border-radius: 0; - } - &.popup { - box-shadow: none; - border-radius: 0; - } - // server-side decorations as used by mutter - &.ssd { - border-radius: if($darker=='false' and $variant=='light', 4px 4px 0 0, 3px 3px 0 0); - box-shadow: 0 0 0 1px if($darker=='true' or $variant == 'dark', transparentize(black, 0.35), $_wm_border); - - &.maximized { border-radius: 0; } - } - &.csd { - &.popup { - border-radius: 2px; - box-shadow: 0 3px 6px if($variant == 'light', $_wm_border, transparentize($_wm_border, 0.1)), - 0 0 0 1px if($variant == 'light', $_wm_border, darken($bg_color, 10%)); - } - &.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px if($variant == 'light', $_wm_border, transparentize($_wm_border, 0.3)); - } - &.message-dialog { border-radius: 3px; } - } - &.solid-csd { - border-radius: 0; - margin: 1px; - background-color: $header_bg; - box-shadow: none; - } -} - -// -// Titlebuttons -// -.header-bar, -.titlebar { - - &.default-decoration .button.titlebutton { // no vertical padding for ssd buttons - padding-top: 0px; // already handled by the titlebar-padding - padding-bottom: 0px; - } - - .button.titlebutton { - @extend .image-button; - - &:not(GtkMenuButton) { - padding-top: 8px; - padding-bottom: 8px; - } - padding-left: 4px; - padding-right: 4px; - - @include button(undecorated); - background-color: transparentize($header_bg, 1); - - &:hover { - @include button(header-hover); - } - &:active, &:checked { - @include button(header-active); - } - &.close, &.maximize, &.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; - - &:backdrop { opacity: 1; } - } - // Load png assets for each button - @each $k in ('close','maximize', 'minimize') { - @each $l, $m in ('',''), (':backdrop','-backdrop'), (':hover','-hover'), (':active','-active') { - - &.#{$k}#{$l} { background-image: -gtk-scaled(url('assets/titlebutton-#{$k}#{$m}#{$darker_asset_suffix}.png'), - url('assets/titlebutton-#{$k}#{$m}#{$darker_asset_suffix}@2.png')); } - } - } - } -} - -// catch all extend -%selected_items { - background-image: none; - background-color: $selected_bg_color; - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); -} diff --git a/common/gtk-3.0/3.16/sass/_drawing.scss b/common/gtk-3.0/3.16/sass/_drawing.scss deleted file mode 100644 index 36a5f36..0000000 --- a/common/gtk-3.0/3.16/sass/_drawing.scss +++ /dev/null @@ -1,366 +0,0 @@ -// Drawing mixins - -// Entries - -@mixin entry($t) { -// -// Entries drawing function -// -// $t: entry type -// - - @if $t==normal { - // - // normal entry - // - color: $text_color; - border-color: $entry_border; - background-color: $entry_bg; - background-image: linear-gradient(to bottom, $entry_bg); - } - - @if $t==focus { - // - // focused entry - // - color: $text_color; - border-color: if($variant=='light', $selected_bg_color, $button_border); - background-color: $entry_bg; - background-image: linear-gradient(to bottom, $entry_bg); - - @if $variant == 'dark' { - box-shadow: inset 1px 0 $selected_bg_color, - inset -1px 0 $selected_bg_color, - inset 0 1px $selected_bg_color, - inset 0 -1px $selected_bg_color; - } - } - - @if $t==insensitive { - // - // insensitive entry - // - color: $insensitive_fg_color; - border-color: transparentize($entry_border, 0.45); - background-color: transparentize($entry_bg, 0.45); - background-image: linear-gradient(to bottom, transparentize($entry_bg, 0.45)); - } - - @if $t==header-normal { - // - // normal header-bar entry - // - - color: $header_fg; - border-color: $header_entry_border; - background-image: linear-gradient(to bottom, $header_entry_bg); - background-color: transparent; - - &.image, &.image:hover { color: inherit; } - } - - @if $t==header-focus { - // - // focused header-bar entry - // - color: $selected_fg_color; - border-color: if($darker=='false' and $variant=='light', $selected_bg_color, transparent); - background-image: linear-gradient(to bottom, $selected_bg_color); - } - - @if $t==header-insensitive { - // - // insensitive header-bar entry - // - color: transparentize($header_fg, 0.45); - background-image: linear-gradient(to bottom, transparentize($header_entry_bg, 0.15)); - } - - @else if $t==osd { - // - // normal osd entry - // - color: $osd_fg_color; - border-color: $osd_entry_border; - background-image: linear-gradient(to bottom, $osd_entry_bg); - background-color: transparent; - - &.image, &.image:hover { color: inherit; } - } - - @else if $t==osd-focus { - // - // active osd entry - // - color: $selected_fg_color; - border-color: $osd_entry_border; - background-image: linear-gradient(to bottom, $selected_bg_color); - } - - @else if $t==osd-insensitive { - // - // insensitive osd entry - // - color: transparentize($osd_fg_color, 0.45); - background-image: linear-gradient(to bottom, transparentize($osd_entry_bg, 0.15)); - } -} - -// Buttons - -@mixin button($t, $actionb_bg:red, $actionb_fg: green) { -// -// Button drawing function -// -// $t: button type, -// $actionb_bg, $actionb_fg: used for destructive and suggested action buttons - - @if $t==normal { - // - // normal button - // - color: $fg_color; - outline-color: transparentize($fg_color, 0.7); - border-color: $button_border; - background-color: $button_bg; - } - - @else if $t==hover { - // - // hovered button - // - color: $fg_color; - outline-color: transparentize($fg_color, 0.7); - border-color: $button_border; - background-color: lighten($button_bg, 5%); - } - - @else if $t==active { - // - // pushed button - // - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - - border-color: if($variant=='light', $selected_bg_color, $button_border); - background-color: $selected_bg_color; - } - - @else if $t==insensitive { - // - // insensitive button - // - color: $insensitive_fg_color; - border-color: transparentize($button_border, 0.45); - background-color: transparentize($button_bg, 0.45); - - > GtkLabel { color: inherit; } - } - - @else if $t==insensitive-active { - // - // insensitive pushed button - // - color: transparentize($selected_fg_color, 0.2); - border-color: transparentize($selected_bg_color, 0.25); - background-color: transparentize($selected_bg_color, 0.25); - - opacity: 0.6; - - > GtkLabel { color: inherit; } - } - - @if $t==header-normal { - // - // normal header-bar button - // - color: $header_fg; - outline-color: transparentize($header_fg, 0.7); - outline-offset: -3px; - background-color: transparentize($header_bg, 1); - border-color: transparentize($header_bg, 1); - } - - @else if $t==header-hover { - // - // hovered header-bar button - // - color: $header_fg; - outline-color: transparentize($header_fg, 0.7); - border-color: $header_button_border; - background-color: $header_button_bg; - } - - @else if $t==header-active { - // - // pushed header-bar button - // - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - border-color: if($darker=='false' and $variant=='light', $selected_bg_color, transparent); - background-color: $selected_bg_color; - } - - @else if $t==header-insensitive { - // - // insensitive header-bar button - // - color: transparentize($header_fg, 0.45); - background-color: transparentize($header_bg, 1); - border-color: transparentize($header_bg, 1); - - > GtkLabel { color: inherit; } - } - - @else if $t==header-insensitive-active { - // - // header-bar insensitive pushed button - // - color: transparentize($selected_fg_color, 0.25); - border-color: transparentize($selected_bg_color, 0.35); - background-color: transparentize($selected_bg_color, 0.35); - } - - @else if $t==osd { - // - // normal osd button - // - color: $osd_fg_color; - outline-color: transparentize($osd_fg_color, 0.7); - border-color: $osd_button_border; - background-color: $osd_button_bg; - } - - @else if $t==osd-hover { - // - // active osd button - // - color: $osd_fg_color; - outline-color: transparentize($osd_fg_color, 0.7); - border-color: $osd_button_border; - background-color: opacify(lighten($osd_button_bg, 7%), 0.1); - } - - @else if $t==osd-active { - // - // active osd button - // - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - border-color: $osd_button_border; - background-color: $selected_bg_color; - } - - @else if $t==osd-insensitive { - // - // insensitive osd button - // - color: $osd_insensitive_fg_color; - border-color: $osd_button_border; - background-color: transparentize($osd_button_bg, 0.15); - } - - @else if $t==suggested_destructive { - // - // suggested or destructive action buttons - // - background-clip: border-box; - - color: $actionb_fg; - outline-color: transparentize($actionb_fg, 0.7); - background-color: $actionb_bg; - border-color: $actionb_bg; - } - - @else if $t==undecorated { - // - // reset - // - border-color: transparent; - background-color: transparent; - background-image: none; - } -} - -// -// Overshoot -// -@mixin overshoot($p, $c:$selected_bg_color) { -// $p: position -// $c: base color -// -// possible $p values: -// top, bottom, right, left -// - - $_big_gradient_length: 60%; - - $_position: center top; - $_big_gradient_size: 100% $_big_gradient_length; - - @if $p==bottom { - $_position: center bottom; - } - - @else if $p==right { - $_position: right center; - $_big_gradient_size: $_big_gradient_length 100%; - } - - @else if $p==left { - $_position: left center; - $_big_gradient_size: $_big_gradient_length 100%; - } - - background-image: -gtk-gradient(radial, - $_position, 0, - $_position, 0.6, - from(transparentize($c, 0.8)), - to(transparentize($c, 1))); - - background-size: $_big_gradient_size; - background-repeat: no-repeat; - background-position: $_position; - - background-color: transparent; // reset some properties to be sure to not inherit them somehow - border: none; // - box-shadow: none; // -} - -// -// Undershoot -// -@mixin undershoot($p) { -// $p: position -// -// possible $p values: -// top, bottom, right, left -// - - $_undershoot_color_dark: transparentize(black, 0.8); - $_undershoot_color_light: transparentize(white, 0.8); - - $_gradient_dir: left; - $_dash_bg_size: 10px 1px; - $_gradient_repeat: repeat-x; - $_bg_pos: center $p; - - background-color: transparent; // shouldn't be needed, but better to be sure; - - @if ($p == left) or ($p == right) { - $_gradient_dir: top; - $_dash_bg_size: 1px 10px; - $_gradient_repeat: repeat-y; - $_bg_pos: $p center; - } - - background-image: linear-gradient(to $_gradient_dir, // this is the dashed line - $_undershoot_color_light 50%, - $_undershoot_color_dark 50%); - - padding-#{$p}: 1px; - background-size: $_dash_bg_size; - background-repeat: $_gradient_repeat; - background-origin: content-box; - background-position: $_bg_pos; -} diff --git a/common/gtk-3.0/3.16/sass/_granite.scss b/common/gtk-3.0/3.16/sass/_granite.scss deleted file mode 100644 index 8e3b35d..0000000 --- a/common/gtk-3.0/3.16/sass/_granite.scss +++ /dev/null @@ -1,218 +0,0 @@ -// Granite Widgets - -// -// Overlay Bar -// -.overlay-bar { - background-color: $selected_bg_color; - border-color: $selected_bg_color; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; - - GtkLabel { color: $selected_fg_color; } -} - -// -// Thin Pane Separator -// -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid $borders_color; - border-right: 1px solid $borders_color; - -} - -// avoid borders when a viewport is -// packed into a Static Notebook, or Popover -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; -} - -// -// Help Button -// -.help_button { - border-radius: 100px; - padding: 3px 9px; -} - -// -// Secondary Toolbars -// -.secondary-toolbar.toolbar { - padding: 3px; - border-bottom: 1px solid $borders_color; - - .button { padding: 0 3px 0 3px; } -} - -// -// Bottom Toolbars -// -.bottom-toolbar.toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: $borders_color; - background-color: $bg_color; - - .button { padding: 2px 3px 2px 3px; } -} - -// -// Sidebar & Source List -// -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; -} - -.source-list, -.source-list.view { - background-color: $bg_color; - color: $fg_color; - -gtk-icon-style: regular; -} - -.source-list.category-expander { - color: transparent; -} - -.source-list.view:prelight { - background-color: lighten($bg_color, 5%); -} - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: $selected_fg_color; - background-color: $selected_bg_color; -} - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: $bg_color; - background-image: none; -} - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: $selected_bg_color; - color: $selected_fg_color; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; -} - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: $selected_fg_color; - color: $selected_bg_color; -} - -// -// Expander -// -.source-list.category-expander { - color: $fg_color; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; -} - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; -} - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); -} - -// -// Welcome -// -GraniteWidgetsWelcome { - background-color: $base_color; -} - -GraniteWidgetsWelcome GtkLabel { - color: mix($fg_color, $bg_color, 50%); - font: open sans 11; - text-shadow: none; -} - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: transparentize($fg_color, 0.2); -} - -// -// Help Button -// -.help_button { - border-radius: 0; -} - -// -// Popover -// -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - - border: 1px solid transparentize(black, 0.7); - margin: 0; -} - -.popover_bg { - background-image: linear-gradient(to bottom, $base_color); - border: 1px solid transparentize(black, 0.7); -} - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; -} - -// -// Xs Entry -// -GraniteWidgetsXsEntry.entry { padding: 4px; } - -// -// Text Styles -// -.h1 { font: open sans 24px; } -.h2 { font: open sans light 18px; } -.h3 { font: open sans 11px; } -.h4, -.category-label { - color: mix($bg_color, $text_color, 30%); - font-weight: 600; -} - -.h4 { - padding-bottom: 6px; - padding-top: 6px; -} - -GtkListBox .h4{ - padding-left: 6px; -} diff --git a/common/gtk-3.0/3.16/sass/_lightdm.scss b/common/gtk-3.0/3.16/sass/_lightdm.scss deleted file mode 100644 index bb7214a..0000000 --- a/common/gtk-3.0/3.16/sass/_lightdm.scss +++ /dev/null @@ -1,113 +0,0 @@ -// the panel widget at the top -#panel_window { - background-color: $panel_bg; - color: $panel_fg; - font: bold; - box-shadow: inset 0 -1px darken($panel_bg, 7%); - - // the menubars/menus of the panel, i.e. indicators - .menubar { - padding-left: 5px; - - &, > .menuitem { - background-color: transparent; - color: $panel_fg; - font: bold; - } - } - - .menubar .menuitem:insensitive { - color: transparentize($panel_fg, 0.5); - - GtkLabel { color: inherit; } - } - .menubar .menu .menuitem { font: normal; } -} - -// the login window -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: $fg_color; -} - -// the top half of the login-window, in GtkDialog terms, the content -#content_frame { - padding-bottom: 14px; - background-color: $bg_color; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid transparentize(black, 0.9); - border-width: 1px 1px 0 1px; -} - -#content_frame .button { - @include button(normal); - - &:hover { @include button(hover); } - &:active, &:checked { @include button(active); } - &:insensitive { @include button(insensitive); } -} - -// the lower half of the login-window, in GtkDialog terms the buttonbox or action area -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: if($variant=='light', $osd_bg_color, $header_bg); - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid transparentize(black, 0.9); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px if($variant=="light", $dark_sidebar_border, $header_border); -} - -#buttonbox_frame .button{ - @include button(osd); - - &:hover { @include button(osd-hover); } - &:active, &:checked { @include button(osd-active); } - &:insensitive { @include button(osd-insensitive); } -} - -#login_window #user_combobox { - color: $fg_color; - font: 13px; - - .menu { font: normal; } - .arrow {} -} - -// the user's avatar box -#user_image { - padding: 3px; - border-radius: 2px; -} - -// the border around the user's avatar box -#user_image_border {} - -// the shutdown button -#shutdown_button.button { - @include button(suggested_destructive, $destructive_color); - - &:hover { @include button(suggested_destructive, lighten($destructive_color, 10%)); } - &:active, &:checked { @include button(suggested_destructive, darken($destructive_color, 10%)); } -} - -// the restart button -#restart_button.button { - @include button(suggested_destructive, $suggested_color); - - &:hover { @include button(suggested_destructive, lighten($suggested_color, 10%)); } - &:active, &:checked { @include button(suggested_destructive, darken($suggested_color, 10%)); } -} - -// the warning, in case a wrong password is entered or something else goes wrong according to PAM -#greeter_infobar { - border-bottom-width: 0; - font: bold; -} diff --git a/common/gtk-3.0/3.16/sass/_transparent_widgets.scss b/common/gtk-3.0/3.16/sass/_transparent_widgets.scss deleted file mode 100644 index 7d1e0c9..0000000 --- a/common/gtk-3.0/3.16/sass/_transparent_widgets.scss +++ /dev/null @@ -1,239 +0,0 @@ -.titlebar .separator { - color: $header_border; //fixes separator in gnome-tweak-tool -} - -NemoWindow GtkEventBox { background-color: $bg_color; } // fixes nemo statusbar - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; -} - -@if $variant==dark { - GtkFileChooserDialog, - NautilusWindow , - NemoWindow { - .sidebar { border-right: 1px solid $dark_sidebar_border; } - - .sidebar:dir(rtl) { border-left: 1px solid $dark_sidebar_border; } - } -} - -// Dark transparent sidebars -GtkFileChooserDialog, -NautilusWindow, -NemoWindow, -MarlinViewWindow { - - &.csd.background, - .source-list, .source-list.view, .source-list.view:prelight { background-color: transparent; } - - .sidebar, .source-list.sidebar.view { - background-color: $dark_sidebar_bg; - - .view, row { - background-color: transparent; - color: $dark_sidebar_fg; - - &.image { color: transparentize($dark_sidebar_fg, 0.3); } - - &.cell:selected { - background-color: $selected_bg_color; - color: $selected_fg_color; - } - } - - &.frame { color: $dark_sidebar_fg; } - - .separator { color: transparent; } - - .scrollbar { @extend %dark_sidebar_scrollbar } - } - &.maximized .sidebar { background-color: opacify($dark_sidebar_bg, 1); } -} - -GtkFileChooserDialog .pane-separator, -NautilusWindow .pane-separator, -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator {background-color: $dark_sidebar_border} - -// Fix Nautilus transparency issues -NautilusWindow NautilusWindowSlot { background-color: $base_color; } -NautilusDesktopWindow NautilusWindowSlot { background-color: transparent; } - -GtkFileChooserDialog { - - &.background.csd, &.background { background-color: $dark_sidebar_bg } - .sidebar { background-color: transparent } - - // Yeah, this is ugly, but prevents a transparent background in the image preview box - GtkPaned > .vertical > .horizontal { background-color: $bg_color; } - - // fix for non gnome environments - .dialog-action-box { background-color: $bg_color } - - .dialog-vbox > .frame { - color: $dark_sidebar_fg; - border-color: transparent; - } - .action-bar.frame { - background-color: transparent; - border-color: if($variant =='light', darken($dark_sidebar_bg, 5%), darken($dark_sidebar_bg, 10%)); - } - - .action-bar.frame, - .dialog-vbox > .frame { - - .button { @extend %dark_sidebar_button; } - .entry { @extend %dark_sidebar_entry; } - - @extend %osd_check_radio; - - GtkLabel, GtkComboBox { color: $dark_sidebar_fg; } - } -} - -// -// Paned Headerbars -// -FeedReaderreaderUI.background.csd, -GeditWindow.background.csd { - - > .titlebar .pane-separator, - &.maximized > .titlebar .pane-separator, - > .titlebar .pane-separator:backdrop, - &.maximized > .titlebar .pane-separator:backdrop { background-color: $header_border; } - - > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: $header_bg; - - &:backdrop { background-color: $header_bg_backdrop; } - } - - &.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: opacify($header_bg, 1); - - &:backdrop { background-color: opacify($header_bg_backdrop, 1); } - } -} - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; -} - -// Gedit -GeditWindow.background { - &.csd { background-color: transparent; } - - .gedit-side-panel-paned .pane-separator { background-color: $dark_sidebar_border; } - .gedit-bottom-panel-paned .pane-separator { background-color: $borders_color; } -} - -.gedit-bottom-panel-paned { background-color: $base_color; } - -.gedit-document-panel { - background-color: $dark_sidebar_bg; - - .maximized & { background-color: opacify($dark_sidebar_bg, 1); } - - .list-row { color: $dark_sidebar_fg; } - - .list-row { - background-color: transparentize($dark_sidebar_fg, 1); - border: solid transparentize($dark_sidebar_fg, 1); - border-width: 3px 2px 3px 2px; - } - .list-row:hover { - border: solid transparentize($dark_sidebar_fg, 0.85); - border-width: 3px 2px 3px 2px; - background-color: transparentize($dark_sidebar_fg, 0.85); - } - .list-row:active { - color: $selected_fg_color; - background-color: $selected_bg_color; - border: solid $selected_bg_color; - border-width: 3px 2px 3px 2px; - - .button { color: $selected_fg_color; } - } - .list-row:selected, .list-row:selected:hover { - color: $selected_fg_color; - background-color: $selected_bg_color; - border: solid $selected_bg_color; - border-width: 3px 2px 3px 2px; - } - .prelight-row .button:active { - color: $dark_sidebar_fg; - } -} - -GeditFileBrowserWidget { - background-color: $dark_sidebar_bg; - - .maximized & { background-color: opacify($dark_sidebar_bg, 1); } - - .scrollbar { @extend %dark_sidebar_scrollbar; } - - .horizontal { - background-color: transparent; - border-color: darken($dark_sidebar_bg, 7%); - - .button { @extend %dark_sidebar_button; } - GtkComboBox { color: $dark_sidebar_fg; } - } -} - -GeditWindow.background.csd GeditFileBrowserView.view { - - background-color: transparent; - color: $dark_sidebar_fg; - - &.expander { - color: $dark_sidebar_fg; - &:hover { color: $selected_bg_color; } - } -} - -%dark_sidebar_button { - @include button(osd); - - &:hover { @include button(osd-hover); } - &:active, &:checked { @include button(osd-active); } - &:insensitive { @include button(osd-insensitive); } -} - -%dark_sidebar_entry { - @include entry(osd); - - &:focus { @include entry(osd-focus); } - &:insensitive { @include entry(osd-insensitive); } -} - -%dark_sidebar_scrollbar { - - &.overlay-indicator:not(.dragging):not(.hovering) .slider { - background-color: lighten($dark_sidebar_fg, 15%); - border: 1px solid transparentize(black, 0.7); - } - - // trough coloring - .trough { - background-color: transparentize(black, 0.8); - border: none; - } - - // slider coloring - .slider { - background-color: transparentize(lighten($dark_sidebar_fg, 15%), 0.3); - - &:hover { background-color: lighten($dark_sidebar_fg, 20%); } - - &:prelight:active { background-color: $selected_bg_color; } - - &:insensitive { - background-color: transparent; - } - } -} diff --git a/common/gtk-3.0/3.16/sass/_unity.scss b/common/gtk-3.0/3.16/sass/_unity.scss deleted file mode 100644 index 501d480..0000000 --- a/common/gtk-3.0/3.16/sass/_unity.scss +++ /dev/null @@ -1,159 +0,0 @@ -// Decorations -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: $selected_bg_color; - - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; - - &.top { - border: 1px solid if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), transparentize(black, 0.9)); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - - background-image: linear-gradient(to bottom, opacify($header_bg, 1)); - color: $header_fg; // The foreground color will be used to paint the text - - box-shadow: inset 0 1px lighten($header_bg, 3%); - - &:backdrop { - border-bottom-width: 0; - //background-image: linear-gradient(to bottom, opacify($header_bg_backdrop, 1)); - color: transparentize($header_fg, 0.3); - } - } - &.left, &.right, &.bottom, - &.left:backdrop, &.right:backdrop, &.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), transparentize(black, 0.9))); - } -} - -// Panel Style -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: lighten($panel_fg, 20%); - box-shadow: none; - - &:backdrop { color: lighten($panel_fg, 1%); } -} - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: $selected_fg_color; - background-image: linear-gradient(to bottom, $selected_bg_color); - border-bottom: none; -} - -// Unity Greeter -.lightdm.menu { - background-image: none; - background-color: transparentize(black, 0.6); - border-color: transparentize(white, 0.2); - border-radius: 4px; - padding: 1px; - color: white; -} - -.lightdm-combo .menu { - background-color: lighten($header_bg, 8); - border-radius: 0px; - padding: 0px; - color: white; -} - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; -} - -.lightdm.menubar { - color: transparentize(white, 0.2); - background-image: none; - background-color: transparentize(black, 0.5); - - & > .menuitem { - padding: 2px 6px; - } -} - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: transparentize(black, 0.7); - border-color: transparentize(white, 0.6); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; -} - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; -} - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: transparentize(white, 0.9); - border-width: 1px; - border-style: solid; - color: white; -} - -.lightdm.entry:selected { - background-color: transparentize(white, 0.2); -} - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; -} - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; -} - -.lightdm.toggle-button { - background: none; - border-width: 0; - - &.selected { - background-color: transparentize(black, 0.3); - border-width: 1px; - } -} - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); - } -} diff --git a/common/gtk-3.0/3.16/sass/gtk-dark.scss b/common/gtk-3.0/3.16/sass/gtk-dark.scss deleted file mode 100644 index 529ee3d..0000000 --- a/common/gtk-3.0/3.16/sass/gtk-dark.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'dark'; -$darker: 'false'; -$transparency: 'true'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.16/sass/gtk-darker.scss b/common/gtk-3.0/3.16/sass/gtk-darker.scss deleted file mode 100644 index 34b8f81..0000000 --- a/common/gtk-3.0/3.16/sass/gtk-darker.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'light'; -$darker: 'true'; -$transparency: 'true'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.16/sass/gtk-solid-dark.scss b/common/gtk-3.0/3.16/sass/gtk-solid-dark.scss deleted file mode 100644 index 959d8b1..0000000 --- a/common/gtk-3.0/3.16/sass/gtk-solid-dark.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'dark'; -$darker: 'false'; -$transparency: 'false'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.16/sass/gtk-solid-darker.scss b/common/gtk-3.0/3.16/sass/gtk-solid-darker.scss deleted file mode 100644 index 45b7dbe..0000000 --- a/common/gtk-3.0/3.16/sass/gtk-solid-darker.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'light'; -$darker: 'true'; -$transparency: 'false'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.16/sass/gtk-solid.scss b/common/gtk-3.0/3.16/sass/gtk-solid.scss deleted file mode 100644 index 28ff2b6..0000000 --- a/common/gtk-3.0/3.16/sass/gtk-solid.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'light'; -$darker: 'false'; -$transparency: 'false'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.16/sass/gtk.scss b/common/gtk-3.0/3.16/sass/gtk.scss deleted file mode 100644 index 9bb0348..0000000 --- a/common/gtk-3.0/3.16/sass/gtk.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'light'; -$darker: 'false'; -$transparency: 'true'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.18/assets.svg b/common/gtk-3.0/3.18/assets.svg deleted file mode 100644 index 7c8db61..0000000 --- a/common/gtk-3.0/3.18/assets.svg +++ /dev/null @@ -1,5965 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gtk-3.0/3.18/assets.txt b/common/gtk-3.0/3.18/assets.txt deleted file mode 100644 index a11af04..0000000 --- a/common/gtk-3.0/3.18/assets.txt +++ /dev/null @@ -1,84 +0,0 @@ -checkbox-checked -checkbox-checked-insensitive -checkbox-unchecked -checkbox-unchecked-insensitive -checkbox-mixed -checkbox-mixed-insensitive -radio-checked -radio-checked-insensitive -radio-unchecked -radio-unchecked-insensitive -radio-mixed -radio-mixed-insensitive -checkbox-checked-selected -checkbox-checked-insensitive-selected -checkbox-unchecked-selected -checkbox-unchecked-insensitive-selected -checkbox-mixed-selected -checkbox-mixed-insensitive-selected -checkbox-checked-selectionmode -checkbox-selectionmode -radio-checked-selected -radio-checked-insensitive-selected -radio-unchecked-selected -radio-unchecked-insensitive-selected -radio-mixed-selected -radio-mixed-insensitive-selected -switch -switch-active -switch-insensitive -switch-active-insensitive -switch-header -switch-active-header -switch-insensitive-header -switch-active-insensitive-header -switch-selected -switch-active-selected -switch-insensitive-selected -switch-active-insensitive-selected -titlebutton-close -titlebutton-close-backdrop -titlebutton-close-hover -titlebutton-close-active -titlebutton-maximize -titlebutton-maximize-backdrop -titlebutton-maximize-hover -titlebutton-maximize-active -titlebutton-minimize -titlebutton-minimize-backdrop -titlebutton-minimize-hover -titlebutton-minimize-active -checkbox-checked-dark -checkbox-checked-insensitive-dark -checkbox-unchecked-dark -checkbox-unchecked-insensitive-dark -checkbox-mixed-dark -checkbox-mixed-insensitive-dark -checkbox-checked-selectionmode-dark -checkbox-selectionmode-dark -radio-checked-dark -radio-checked-insensitive-dark -radio-unchecked-dark -radio-unchecked-insensitive-dark -radio-mixed-dark -radio-mixed-insensitive-dark -switch-dark -switch-active-dark -switch-insensitive-dark -switch-active-insensitive-dark -switch-header-dark -switch-active-header-dark -switch-insensitive-header-dark -switch-active-insensitive-header-dark -titlebutton-close-dark -titlebutton-close-backdrop-dark -titlebutton-close-hover-dark -titlebutton-close-active-dark -titlebutton-maximize-dark -titlebutton-maximize-backdrop-dark -titlebutton-maximize-hover-dark -titlebutton-maximize-active-dark -titlebutton-minimize-dark -titlebutton-minimize-backdrop-dark -titlebutton-minimize-hover-dark -titlebutton-minimize-active-dark diff --git a/common/gtk-3.0/3.18/assets/checkbox-checked-dark.png b/common/gtk-3.0/3.18/assets/checkbox-checked-dark.png deleted file mode 100644 index a2fd5a91697a611ad6ad03e9a8a1600527a87038..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 360 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(T7XZ8 zE09*}xun*0Nwxd3TK6R=YB{dfdP1%3lv?{4wa#-uLG_&Z>P0KmE4QduZBwt^tzNfB zz44HG#~Cd{8!bayEh}#=D<3V}04>`kACCBE&ER_dRAYQ$`F%1g7)Et^_rs#ov))!4Ko mclAWB^Y>rs7}#{quV<_g=89tV-`EGVjKR~@&t;ucLK6VHk8`&G diff --git a/common/gtk-3.0/3.18/assets/checkbox-checked-dark@2.png b/common/gtk-3.0/3.18/assets/checkbox-checked-dark@2.png deleted file mode 100644 index 949c3696e63efaa6c6272bba30f74e7834a2f84c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 487 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ET>(BJ zu0Wb$)hdUE{c3#|R5~wew4Yb&zogoINxkc`diQ0uo{MVTm%!+yZu~BeoN0Rzp?sNv18lxoQpYsj~?99f7s^s1(`hzn{s!|Kh(>=0 zWfw$T&Yx$~6?%XAk>84TBAb`Zd=WP1+S+$PIj7yq_vn3jljb9l&o7wXW|zPDo5kY2 TrE}*4J;31U>gTe~DWM4fh1tK6 diff --git a/common/gtk-3.0/3.18/assets/checkbox-checked-insensitive-dark.png b/common/gtk-3.0/3.18/assets/checkbox-checked-insensitive-dark.png deleted file mode 100644 index 423046a6a0639ace67bf9c4d0ac1abfc9cf371fb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 369 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(RDe&2 zE09*}xun{8R<-}Kde0^G?n`Rf^VEu0s8wuHtJRhIVEXmh1$YE>{xd7tElc zsaaFog9E&)Hqr;GjQ4bL43P-W?f2wsP~c(EZc@_92)y&*|NSoxiUM?83(oF@gQ^^n-V{bvv%_IQ_WXHSyNDnKmqM{}i$=pLntI(~gjRWg6$TI#WIV h*v?IDHUIkD{{L-WjW0QF^+2l_JYD@<);T3K0RZb6gDU_4 diff --git a/common/gtk-3.0/3.18/assets/checkbox-checked-insensitive-dark@2.png b/common/gtk-3.0/3.18/assets/checkbox-checked-insensitive-dark@2.png deleted file mode 100644 index 2a982990ce17180cbdd274d916ebfea9e65b9502..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 502 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Ebpbvh zu0Wch0SNvpb(~S^xU1c8Or!0jTF(`=&I@XNS5><&s)5jDwXQ2_xeL^aSE$wPQLEdl z*05i#^@Ljc8MUs98u9HKNs~0vrfOu(*2tc#k-to%bhVbDjh2sWZ3741*}IzX!=$S;_IiHV-DpW0v#Bi&o}Wc0|#I~!Wh>dZS@dHa>%QOD~q5^Y)vFZ6SYe-q$5cc+q3d5VqNucs?`f$nGUboFyt I=akR{0P+#RTL1t6 diff --git a/common/gtk-3.0/3.18/assets/checkbox-checked-insensitive-selected.png b/common/gtk-3.0/3.18/assets/checkbox-checked-insensitive-selected.png deleted file mode 100644 index 36f2199386b77b3af29730bd2b2a5d6a3591f59c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 386 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(T7XZ8 zE0F&G>DkZE5B~pr_V@dvzh55#Nwuzv8a)@adM@kqT(p^b*=G7>yXlvmXI^%lec5l` z)qn+8BbQx`UUoHh#q}*0?;N~&@8Y8emml4``sBf#XAkZ@fAsA2qxbJ0efsd|%ZEol zK0W#S?TOg=%;i9vluCm9f*CY4HEU{XdvJqG=ezxYsuMh29780+bI(WeH7M|~1h{N? z_q(rQ?|)TQMoyRK`Ei%Fs6Lr&;wQp8nHueV+8O2cOHWcw1EOKbN0yKy(vp*A!i#T@0SCelF{r5}E)( C0Io;? diff --git a/common/gtk-3.0/3.18/assets/checkbox-checked-insensitive-selected@2.png b/common/gtk-3.0/3.18/assets/checkbox-checked-insensitive-selected@2.png deleted file mode 100644 index 55cc55f4cd47d14b2a6b69df0b16087ab41db77f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 490 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)E)d4;s zu0Z-f5WKq!#Q#5D{r~Cu|6h-OeS7@>*JB|0_d5uwbzRixxv151S*P!!{)CH$lP=p# zz3epeviIDpAq%dCEV`Pw^6I36w-=naz3kMT^%w4Jyl`jR#XEbh-Z^;l-tpV_?mT;N z@7aS#&mTQ{`RM)oNAEv8`tsq?-)~Q5UW;o0TCZ6WUoih&CeAsLgiB}kF8vHUPWq|#SzOtovUAqT(2xUw)0f$2|bDHUPnKfJqUlS z@gQxphEM9^hVNNhB{Uv1U&zyb@Z9hBt)Pl6_jI@FUCXo9-MGvytjoXR{8ahn^Oo%W z|JYHny6vQKm&!qlSM0Wa?%&<+`yaXEe?;TsbKX_K35=oYp^QLxGkCiCxvXPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE09*}xun{8R<-}Kde0^G?n`Q27j^nB>QA_AIO($Kq{}u_FT2jZ>^}FZ@4Tx43$7-u zyq>%M=JDJ2PTaY7@zI0Jj~?86{^;4uN6%hA`tjw-uWyfjeS7lv+mk&qy>oy@%a#QB z1v6-9YSz^DUIt@7wZEU{1Fd54boFyt=akR{0H<`8D*ylh diff --git a/common/gtk-3.0/3.18/assets/checkbox-checked-insensitive@2.png b/common/gtk-3.0/3.18/assets/checkbox-checked-insensitive@2.png deleted file mode 100644 index 89045dee464b3a946cf4f3e7178e4f8c02e6778e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 502 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EjR8I( zu0Wch0SNvpb(~S^xU1c8Or!0jTF(`=&I@XNS5><&s)5jDwXQ2_T^IEyTsEC_*=hP^ zrsXJ3t7b~S0`^^DawbJyQ2-gvWg^UazqH=B3ep0NM+;hXm^+`D(-!GoJm9z1&f z=-KN>&tE_K@Zr&?50Acldi3MdlV9H+{r>jk@3$w}2U-<@ZqP0X@(X5QV&dl)5;iq6 zGjC{U?7;`PI*+#kwQcZpaSYKozxMJ?p(X_pwge7eUB#*2Y;V8W^Pib*7H@}p+N^)K z^V^>4wEQsUI_Af8>s3qlybn(nGkLC=TGSIG_Z#H1Jk9>QJNtg)5w`2PTy;gbXK~tv$6NR>uZR^sbw@R6%8$=%0#o%uH!3_g P2Zg(*tDnm{r-UW|q9^Cz diff --git a/common/gtk-3.0/3.18/assets/checkbox-checked-selected.png b/common/gtk-3.0/3.18/assets/checkbox-checked-selected.png deleted file mode 100644 index 82e8ca00f493b364db3c63cae0b327f18b562911..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 363 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(W`IwK zE0F&4^)VPd`TOlL1gUjj(&)LQ*>hRD_mb_jE4I_G*iFCUJoAd{tSkQWuLdr-8nyIV z^s;NQ%dc;}bobzmdzT(Qxcu<`wZ{+cJbQ5O`NL7XgpFTYL^6}A+&md## zGxLFVF|d~e`2{n0dU-#3{3P0Z%?hAUqNj^vh(vg9|4F_E1s<2xO*`IOYu)(&--BOa z;lc9R(|wk)a(D!le2`$Us4`%1Xwv`U)GGJ+r|>JsE0b3&6%D_6-%NU8)J0yk+ox`F t1bWt|YHyl*PEI@M;SX!uZ#>Zuoc5!lIL8@MUQTpt6Hc~)Ey#YQU zu0Z-f1bln^|J#%Q-|zqb@$k?0M_}~$&)3I)zd?~&_a*i2OBy|wG(Afac;W80OLzBN zyL<4)y<@lT-+lJr-m?dfUOasC^5OgUkKTWH^yT9tphe}jg-?JE;wuUA3ua(uk(Nj%TBQrACso-%0re!S{+J)}BfTd39k z;Q6!kitH}d&(nK&(yEr+qAXP8FD1G)j8!4co>Hwb* zS0Js{b4ji1l4|#5weCw$RJ%v5VZU0(IknESYF!u9x-J66)$^CAm#$N<+OA%^OTBKN zdc#5W#slgdXVg2+YJ^s5WX#aWTd3)oqUoKX8CpG2FlSpgK<;_2cTVsZNJm779M z3L%r3aaa1>-Om2B^+(L+ xrp$N8BiEmlkiTw!;rC>&wMMgep8l?5?)+(cy5U#&QlR@8JYD@<);T3K0RVLgx?TVP diff --git a/common/gtk-3.0/3.18/assets/checkbox-checked-selectionmode-dark@2.png b/common/gtk-3.0/3.18/assets/checkbox-checked-selectionmode-dark@2.png deleted file mode 100644 index f1a962347af325beb7948daf93369417bd9963d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 680 zcmeAS@N?(olHy`uVBq!ia0vp^-XP4u3?%s{blm__%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Es{?#O zT!FMo+d1X#i>f`BRk|*#bzf5Jxun{C3CL9kvb%vI7u7)|gndb^dWTxWezm5qG}<&muAm8xxEt!?h6 zZRw?L7ua=Y$~T~M1xkYaf*C}`T-{RB(lg5I8(KPEzuD^G=fJ?g80_id7!q;#?Ty^v zLk2wTAAFy?9MII#=vv?t_>uGIs{8*Zzszfo4W2z^%k!T~|G)o^-IW(PU1g$2%*~9q z1(&>XwQfs)3Q7qJjd>;AJT;g9=gG#ad>d{Zc*PPSyYa}c`Cj zU|ndSKys8RtHC_e2#wTaoz?$W)D_95#p;=qT61lR5y_k?>>+EL`RZ{^Z>`Ss`Rof; ziMxkR3DuiwWY}_OZI_W@kJH*&SxLb?ht`NLHJo#3jdtzBzlt#nb~Z1$I{UTv>Ql?s zXN3OvYh*a-(D%Zc>k(=j9X|cc3Udo}wfnw5QLn2;KKG30#agDMyi<#x&yaBX`DOjH zJgc$``^8_K%5yt-|E*|S@I2dH$I^ZWo)Z=|v+gZ1dwKT0=BfYICU%pH7e*xg-6;CG z-a3VE1M72P*F8U7CKYZ>x-55SNo9HY-;&QEZizza`xs_CZ(yEr+qAXP8FD1G)j8!4comH?j+ zS0Js{b4ji1l4|#5weCxBq~3i=qvw)N-zDAtOM3m6^(S1mpMJ$*#udkzSDa^FahrYB zW6o8dxmTl>UQ1tnJ!jpGiY+%Pw%%BJ>dw;BcUGLav--^4z1QyTyMFJ`&3lJ$-am5l z-qBn49=&+@_~pabZy)~n{P^dW$G^Tj`u+9s-*1m?Zrt_-x`VwW$S;_|)64tO<0sMP zYgPb-c6z!vhFF}wd*!B3lY$6af-$eAZtmr8M@>HO`TzUs!GoR(3Cpx?!_Ry;Tc09$ z{H15Fx=ZlB+fMT{PG>6`USUYsvZXmNZe4D|4CaEB%`fbV@|qsX%F3*i%1eHicjhf~ z>FX_8LS{4K_I*~F5ys%t<=4=ye$Fn*Xm{DKQ=O5$pO3!Md2;gpj^t0O&osmCrgT-V zs(rHQb%^x65_^_sx0`3GXBD5_6jfw@uFARnNAX|gwep(b+Is`z=e;+d_Er1Cd+D@R QpeGnSUHx3vIVCg!0CD}``v3p{ diff --git a/common/gtk-3.0/3.18/assets/checkbox-checked-selectionmode@2.png b/common/gtk-3.0/3.18/assets/checkbox-checked-selectionmode@2.png deleted file mode 100644 index 42f89c171574822708d8c79751dfb2b2895e8c27..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 685 zcmV;e0#f~nP)002t}0{{R350Hx300003b3#c}2nYz< z;ZNWI000SaNLh0L02{9W02{9XUK)`c0000PbVXQnQ*UN;cVTj60C#tHE@^ISb7Ns} zWiD@WXPfRk8UO$Qu24)=MF0Q*B!9aSIF!^ml+-$v(>#{c zK$z4+nbb#|)k>YzOP$qBoz+dA)vL|juFl-T+1|w2-p=3O&)?tB;Na2V;L_pW(&6CL z;^5ch;M?Wk-R9uo=;7n(;pgk&>Fwg`?cwX~;q30={r2P4gq}tK000nlQchC<6&6KC zWoBn+cYlC{i0kaNKu$ma00C7=L_t(o!|mAHQo=A02H;j}MZk&{5f31ELc}8~nD>7% z?Q|f`#_X0&#_?kR`+l?OwrRRiB$2qX)!5^t5!+O9(BUOZtg5)w4+bmS?eLQVtLb4i zfz|S`T4IUyKdt^@FzfW??kJGedr}HuT&tiU#-4d(jNqO$HiS`~i3OpK)PJ`Ue2%bem1B%iNpWmHw3pbyL5-yf)+e4T*ZSQZMb{fklOybNpq#Po7 TLvG}T00000NkvXXu0mjf)PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(a)3{W zE09*}xun*0Nwxd3TK6S5((b#YKjE_B#LFg=E}KreY&-3W>#Qs8bFTW%zZ$sUYSPN< zdFyW+yLIpQ?fWP1+`shj!Iei3?md5a|HZ?nuO2>o{qV<^$G^Tl`t|kk-*1o48a4R> ztzj<-@(X70^zwf6_(`<+niW8yL{AsT5Q*^I^O1ZF3OpjT zU+H;y+64bkPD=`2HF66)b6nss!IsT3_AvLVFSRA@eF3+ZcG))Ex?|NY=RWJMZuoc5!lIL8@MUQTpt6Hc~)ET>(BJ zu0Wb$)hdUE{c3#|R5~wew4Yb&zogoINxkc`diQ0uo{MVTm%!*Ukkp@W*<|8nlS!8y zXIycddBt`1Rkzt!W0ze^T6sNv^^M&1H;OjiDA{zQX6w!7owp_&xP9ox{qy(lUwH7~ z=932xUp##F`r-4}4?li*^y%ZHFP|R$`26_S*GIp23;GAHI?2J$lF3=Zi+)>cH=sWv?B-H<|I=N%NI3pWb1- a+Ft)~yT1FQri*EyaQ1Zdb6Mw<&;$S~MB%mo diff --git a/common/gtk-3.0/3.18/assets/checkbox-mixed-dark.png b/common/gtk-3.0/3.18/assets/checkbox-mixed-dark.png deleted file mode 100644 index 8759a900058d7cfab50ecd5cb3ef68b2d9b245a1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF%Ig>+6LAMTGmZKY4(yJzhDMWFYiZ>pG2FlSpgK%_jGX#;fPL7 zXkdKyrAR>|G$BEkotd4jjAJo_{bFX00LhlpgKHDG*e|Lw6@)V|^y}*!WsTXR0MyFh M>FVdQ&MBb@05EAp0{{R3 diff --git a/common/gtk-3.0/3.18/assets/checkbox-mixed-dark@2.png b/common/gtk-3.0/3.18/assets/checkbox-mixed-dark@2.png deleted file mode 100644 index 795faee14060c26a064d217756abc82e699a59eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Wb$)hdUE{c3#|R5~wew4Yb&zogoINxkc`diQ0uo{MVTm%!*Ukkm+?pc&h)ZD6f! z?dNT-R|3?_R}$nG%)rbdEu)~6n3SCI^405AlQw?`%A|X`IEHAPzdPAls6l~;HJ*n< z!+!7oMBOP&ip|?{b{lIN{cbSqj*=D;-Q9XaamR5tMs5ZXmA9M>?t*L!QrD_qc)7+y ze{O%*AAkNn{~uQzeTurQ85<^V+3CD}-|UT=#)^6FN4_N1ivLklXMc1r#~0)iPgg&e IbxsLQ0J14>S^xk5 diff --git a/common/gtk-3.0/3.18/assets/checkbox-mixed-insensitive-dark.png b/common/gtk-3.0/3.18/assets/checkbox-mixed-insensitive-dark.png deleted file mode 100644 index a8e008bc6d521e5077b93dd5677054e2884502a3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF}RWL_sGpd3d@kY6x^hNfmsZBNfi`vbdxVtSq~ zjv*Y;$q5aN&o-DSc!VY-_%buIvzc)yGukhf;RujyDLuG0fhl^H5<@vF!$nKAnS4qa Rhk!a6JYD@<);T3K0RWuxK&Joz diff --git a/common/gtk-3.0/3.18/assets/checkbox-mixed-insensitive-dark@2.png b/common/gtk-3.0/3.18/assets/checkbox-mixed-insensitive-dark@2.png deleted file mode 100644 index c220ca88e4e396793d60316db94d08ea7ac97c1b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Wch0SNvpb(~S^xU1c8Or!0jTF(`=&I@XNS5><&s)5jDwXQ2_T^BWyCTPXB>*!nQ zSoyinY}*agD_j!f7tFxK#Lq7zY-(m^-q6t40|H0Rx>f?E(>+}rLp09coop@Cpuoc# z&%>c%zxRKl?i41)=50BTUlMD@|EQ_6Kf0IW3-XSq LtDnm{r-UW|e1mXd diff --git a/common/gtk-3.0/3.18/assets/checkbox-mixed-insensitive-selected.png b/common/gtk-3.0/3.18/assets/checkbox-mixed-insensitive-selected.png deleted file mode 100644 index 793f169fbfec7e071901ed8c8bf8eae3eb4d8a40..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFZuoc5!lIL8@MUQTpt6Hc~)E#sNMd zu0Z-f5WKq!#Q#5D{r~Cu|6h-OeS7@>*JB|0_d5uwbzO9retFWt+w+d!{`>98Uao=_ zKy890L4LsuO#J*p!lq_s<_(QKARzSnSRha`#nZ(xMC1J3$=-Yo3Op{$Ss5K0f6u?x zI-h0X%Dl?k)6XrM$yjniN470*_cAMm*3)5({0vi6WH}ka1=$i(bJZ`T=4 z;uyjaot)6X_-uoTf=6gVf-f^OJDVAYGNb)s8IAzSmePZ36PTiBDKV6@GF-G&o5`n? RaR{iB!PC{xWt~$(69DH{L?!?L diff --git a/common/gtk-3.0/3.18/assets/checkbox-mixed-insensitive@2.png b/common/gtk-3.0/3.18/assets/checkbox-mixed-insensitive@2.png deleted file mode 100644 index 44d6c7e1f503d4ccae37b03b887eca6669cd1863..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Wch0SNvpb(~S^xU1c8Or!0jTF(`=&I@XNS5><&s)5jDwXQ2_T^E~o-JZ1n_LG;7 z{(gJ%j?dN-s8_fo$S;_IiHVoOP`PN~e3eIEHAPzdPAls6l~; zHJ*n?t*L!QrD_q zc)7wufA0CNKmPoE{y(lb`V@6pGd4`#veS9{zS$c!jTQ6Uk9Bm!WkHTxEWsjB(2Q~)XL!L L>gTe~DWM4fwZTuW diff --git a/common/gtk-3.0/3.18/assets/checkbox-mixed-selected@2.png b/common/gtk-3.0/3.18/assets/checkbox-mixed-selected@2.png deleted file mode 100644 index 37cf7f00ead03d5f5766fdcd638953de1ec62034..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Z-f1bln^|J#%Q-|zqb@$k?0M_}~$&)3I)zd?~&_a%oJS0*03HUIc+px~#j@~=S6 zd?i7C!3@kS(lQE4iAl*RFJHZ0HEHvApiH`_i(`n!`MZ-1g&GuiSoGOgL_~i4Pu88n zq}aSIXScDYQT2ftu4{R_y6!r?6S$MSxq+2|YtlEChRqzz7dBlJeo+#(WO|>w>!0Q9 z$JJ|IDX3WU64g0v4Z_{7i6KZ-JXeEQEtDnm{r-UW| DpEQj$ diff --git a/common/gtk-3.0/3.18/assets/checkbox-mixed.png b/common/gtk-3.0/3.18/assets/checkbox-mixed.png deleted file mode 100644 index feb67c4361557a4169b675777dc2e8cc4855ae12..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF%Ig>f4@Ec(-xrzlx8mp@(X70^zwf6_(`<+niW7HeNPw15RT~N zga*cEUy2koLK6~n*_qkd$~YD?*e_=02#{zopr08i#e1ONa4 diff --git a/common/gtk-3.0/3.18/assets/checkbox-mixed@2.png b/common/gtk-3.0/3.18/assets/checkbox-mixed@2.png deleted file mode 100644 index f2557d08c2bb28f3597d6c5b69f91d0884eb862a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Wb$)hdUE{c3#|R5~wew4Yb&zogoINxkc`diQ0uo{MVTm%!*UkZjp?Ytn(+k6%9g z`|YtE1MfkgUcQnbzhDMt7HJs;rNpG+xN}hsA;U2=YHf%Vy*ZeHFfq4pEo&zeB$Zq K=d#Wzp$P!C^mXw7 diff --git a/common/gtk-3.0/3.18/assets/checkbox-selectionmode-dark.png b/common/gtk-3.0/3.18/assets/checkbox-selectionmode-dark.png deleted file mode 100644 index ea0568fae1ead991fa4c4bf1c654cfda23f92ecd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 493 zcmeAS@N?(olHy`uVBq!ia0vp^8X(NU3?z3ec*FxK=3*z$5DpHG+YkL80J)q69+AZi z417mGm~pB$pEOWVvcxr_Bsf2(yEr+qAXP8FD1G)j8!4comH?j+ zS0J5S-I7t!5MNdwS6UZWRv%wlXA~5jQrT<}7;O*~!=P=(sAJ9qLKaNA7RdhTHc9^uAbk;Yz8CP3sJm0I2Gt|BA=bO(1ykY6x^yu$GlCr|zP^Y`!B_ixyN z!bdz^978NlU%hf$s7XP9Ex}h;=*p?SsK}YBzy7@scM-hgbf#o-^=Wha=cRMzT~TmY zyKTaIE(;m;h-l9j+#Ni8k2!@l96grxU;G%iwZ!!4Q+a#5yyjoxn7RA(OY;-5cZDVL zF0H$rb#2Dgt8;cQp7Nb@^Q=qlA#=FW!_BJv3QHzEXBGO~)*F7>*_=N@d3wmn=CZ%j zg5)at^luhEXe{2jxx&^*?8vj3PkUdLlZuoc5!lIL8@MUQTpt6Hc~)Ey8?Vd zT!D0M?xeKJwv?LY^vbrh>Za71=CtaT)T-u`s^&Bh8zcghO$9Q5B0#bl$Zn1)sbSDI zW708a*0EsLwO|1uOBOu~Ry|8rJu7y7AhPDrx8XDZB3n*FTP|ZDvQx14RkZh2a|%>* z4p8$9*6Z3DR^4)&e5eU~RV$9S{oD10we@eUC7G&u{||Ac`;uj5Y+KpcoUc zD4+vcCtAD*x?ZFt$S;_IT|-kVCpWLWzM-|Fr?;>F&)G{ygGk%L_-?}ez#QHvQ< zd3o0?+&m}s{H&wb)^vYgeq++q97Pp_+SLm@d~R!LGF{%P#dX|d?M>-F=bLAi?pwQZ z{?ds@mx-+Tv8iyK!K>fPj@lhteLj2Ds_?YXBJDUwkE9r{G*OYxkD8sKK^D_;c1*dk zYK4?=VAAW2bsrvg#VPD-=DJoBZXXpgZ4bw)Nq^&1)E1`v-tptmw4H*w0S{{)PVHPB zWbs|6$5(Stzi*H8$}gN!j|07I+mGy+67~O3`Q)9=xmAg=k=soE-Ct)Qxb)6qZ=Ky+ zi{@)=(AipIKJ$HDaQ62(uCLy;o-3Nxl=^wMnL~B<{o8EC4V(3BLpTI)WS>#zW9Xe- xJh}7Pos>6*%M4=cOD>ry?|;sgsQ2d&qmXN7>zgGx9l%Ip@O1TaS?83{1OVA*C8YoW diff --git a/common/gtk-3.0/3.18/assets/checkbox-selectionmode.png b/common/gtk-3.0/3.18/assets/checkbox-selectionmode.png deleted file mode 100644 index 8cc926316963a71f9858967342a2bebb95ab11eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 522 zcmeAS@N?(olHy`uVBq!ia0vp^8X(NU3?z3ec*FxK=3*z$5DpHG+YkL80J)q69+AZi z417mGm~pB$pEOWVvcxr_Bsf2(yEr+qAXP8FD1G)j8!4co$pJng zu0T4ux+SBcA-}l`i1L7_r7ORwE4`*Ay{2{Zt}Q^cb@$fP>gEGS_Z&R7_Yer}J9=XO ziPHy9oIZ5%(y@z|j$gcd{1OPAxOC;j_3Njv-#Byg=Gmu@uRMEv<>j;Muby9j|N7Ra zcXvL&zx(Cgy)WxX;aKHU5H>EX}M4}X6FqDQ~KKKk?Z(cf>6KTlii~^?UVuwy$xHquBQoT$Q(02u%LbF)4%#I z>9!qDXIQUh} z<|EJNzKMT-ns4vS_yuL&FL$p}GuZuoc5!lIL8@MUQTpt6Hc~)Ey8?Vd zT!D0M?xeKJwv?LY^vbrh>Za71=CtaT)T-u`s^&Bh8zcghO$9Q5B0#bl$Zjrd?I~*O z0Wvo4+PVdZc5gj!bkC9F`;VU3f9&Le6Q>WJIDP2knM0?}9y)#Y@R@T!bmYwWBWKSa zJqJV=j$XWU?BeC)*RP+xasBkWSGV53zV+$toloz8=ay2h(_jWzkjN1R#Um5TSJ8hdh z;q;&HHN{R31pHQ~CLi{_ZXJF;a=M~rT|aT>!}!mdtd)Fqbxj@f>U`bonVToYCx;b%|C4^g%I=6^>eLco2XR63Cmnk=@j*8!tTfv$)_1E>fM*Xwe-t$>PPreiH^whX%_byNC zbWFDxN5#HXQ#)5P*?iaO@nyW{F7-HIf?eS83Xv7hCrC_h`nvvAo>6(gQt?NpeuOsu z&g$&cDCpPQ@Uwm5XP3US_Pld_zj1Re{Um#<_GaE6%#Ei`b_8x+$_|Vp22WQ% Jmvv4FO#oyvX*d7? diff --git a/common/gtk-3.0/3.18/assets/checkbox-unchecked-dark.png b/common/gtk-3.0/3.18/assets/checkbox-unchecked-dark.png deleted file mode 100644 index fca122668c47bfbcb14d76825d404da4c777f8a5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF3MnTajmCXi$(FQ>=4BBQ)x)#j3mZ{av-_PiL0&3tc z3GxeOkXJZ<;^e76fBybG`~D3(P}s`T#W92Zuoc5!lIL8@MUQTpt6Hc~)Eu>n3I zu0T31ZDwdgLvHS*q_WQ3hK7`ehQ#WYjEaV&iiWhR=G5vIFltJzZc3>Fl0cE>__8_% zZ8J7~Yc>Nbx1?;hq#U>8Y_HTjpY#IXjKa9GI-mlevb}u~p+F0SOM?7@8CcoadHG~y z6_ln-oqqGy?Jr;d9kBfT9w^=H>EaloasKUOYoR6s23C1RrehsHHD}Ez|DPOmAYg(; zkagbfw|WH)+w9-Jxa~V{OKRiQqOIopE@!)+kr7}2bI0!{gO5xMhju;CZpo2ike$4K z(hWuliPu&|KVILz9AET9VzTksNsmH4KJ;W|n4lahSafR7x`p1Ur+9lN-Bw>T$3tdj aKHCyri_cTvs^14Xhr!d;&t;ucLK6UyfR)?; diff --git a/common/gtk-3.0/3.18/assets/checkbox-unchecked-insensitive-dark.png b/common/gtk-3.0/3.18/assets/checkbox-unchecked-insensitive-dark.png deleted file mode 100644 index 75dc9bc30c0cce890592332ee758ac0ea9fdeda4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF3=bSnfu=Bcy85}Sb4q9e E03wG|5dZ)H diff --git a/common/gtk-3.0/3.18/assets/checkbox-unchecked-insensitive-dark@2.png b/common/gtk-3.0/3.18/assets/checkbox-unchecked-insensitive-dark@2.png deleted file mode 100644 index 15efb6c8fb887bfd1c5b8d68ff695aa25d34095a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 394 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EApt%i zu0T38bd^H`2qb{X%!-Q4iuUZvwzP(ZlXx*c=G5w@R1n#cP~O0xZOX21#cp8b zmXz(5l;fF}=bK*On_d`ORv%whpH|&s_FlmnXs%32kY6wZGYbm`hoGRaNMv+V^Q6f$ zW+K4pRowDGbq$^_jv*T7-%hp`YF1!io$qzU;fEXZ!@K|IX%^_Ps9&3zv-_=HL1W@B z`5A4o_ok$_h9+&E_5O>MfN|-^uG5#pTc!#zRK0G>7ufWYp~q*R=Od1Uw4B!`ey*?g zuRr diff --git a/common/gtk-3.0/3.18/assets/checkbox-unchecked-insensitive-selected.png b/common/gtk-3.0/3.18/assets/checkbox-unchecked-insensitive-selected.png deleted file mode 100644 index 7cdc8ee502e3ab61d45722b15b784cb65891bbb9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFZuoc5!lIL8@MUQTpt6Hc~)EP60k4 zu0Z<#|Azk{u>b%6`~Uwx{{R2#|DO;3|9tlI^TYpNpZ)s!=-0Q$K=dDoem(yE{o(KL zPyT;@0wjNbdHDawvx)j2b%3Ubl?3?(GcYl+aB%WyYHAsqn3G$jVm(?xj9QmSqboU|k qCwE$GaupA^UCIk++G}=^(ckNdD1Yxpmf1kt89ZJ6T-G@yGywo!6r8{S diff --git a/common/gtk-3.0/3.18/assets/checkbox-unchecked-insensitive.png b/common/gtk-3.0/3.18/assets/checkbox-unchecked-insensitive.png deleted file mode 100644 index 36ee76b78351fe78e57d112112671b0a646330f4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF2=NNb*-CsZ{4zc%eLLyQfiuieR}lw+mlY$uhW4V z_)CKPf*Ayba`W=?ySlo%yL)=2-I;J~);vI2LC z5+3YePui24@Su{Nja?)40B=exchVh`goG~)k+*ah%2^qBCk0tB*xWq;G=;&_)z4*} HQ$iB}r!Zc) diff --git a/common/gtk-3.0/3.18/assets/checkbox-unchecked-insensitive@2.png b/common/gtk-3.0/3.18/assets/checkbox-unchecked-insensitive@2.png deleted file mode 100644 index 142d61872336fb6e643ca7783b224ccb6f8937cc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 406 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Eu>n3I zu0T38bXDl8RSgXdxw(@P8XD3%I)G$yVMAPHWomUxN=-A6Os#27t8PjIGg7LX@|wDU z;<=5Txy_xO(`R6hv4>CB;)jD%L3<{@edD zitUqbudemmE!G@)0;)F~Rc<|X&#K5cX&${O?>BR9YtmPt!}lw1F#gP$X?9KUhF9z4 zzKa%<*gh@^F4^*K!oFXXzm(c9&p0D=d5+Sn@eoM<`SRq?mxuqqKm7CM(ciB?^!V79-G_l1 z_)CKPf*JS)1cZcKTwUYh;}dEdPIPTG1xi_Yx;Tb#L?rZ9NA`njxg HN@xNAxVUNZ diff --git a/common/gtk-3.0/3.18/assets/checkbox-unchecked-selected@2.png b/common/gtk-3.0/3.18/assets/checkbox-unchecked-selected@2.png deleted file mode 100644 index b01c60a92fa85ad359257f5e4f9f7fc9b944eec9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 395 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)E;Q>A& zu0Z<#|5g7%VE_OBxBvft`~ThD|NnvL{{R0E|Nnpf`SYFsKOX=2`sB~ohkw35`TzaN zpYIR*GJ)f#M+Y@3+T)f#mlmAoTUo->;8z=dF1OG+MSK$S;_InVE&1kDp&a zP*lvz+b1?QE-57?H8r=QvZ}ga;fmERK!vrQE{-7@=ig4=E!3{a* b%y+iueG2KnU03u29m3%0>gTe~DWM4f8Q#9i diff --git a/common/gtk-3.0/3.18/assets/checkbox-unchecked.png b/common/gtk-3.0/3.18/assets/checkbox-unchecked.png deleted file mode 100644 index 43ca15f878639e5a6dad3702c08747f560cc692f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkaez;V zE09jEZpo-<$ZzffqC6mK>B?{FO0Q{2uW8-9YYPx<-Muxny7}j)hd)0*{QK>()r}v2 zf!cUWg8YIRK+4A3f$%eh_zieh$^ljc|B^9|ViCmvP T`9*&P8pq)2>gTe~DWM4firj4o diff --git a/common/gtk-3.0/3.18/assets/checkbox-unchecked@2.png b/common/gtk-3.0/3.18/assets/checkbox-unchecked@2.png deleted file mode 100644 index e7a1da3702ba588b688a0c35521c59da22984778..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 408 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EX#qYV zt{^&XW@tl0ZtkR{vd-LwhLnbe#OjueiiV_$hP0~Y)an*6YD%ktuz_TAZgXc|a~Fuw z)RET&WOsJXnAtURR`;ygy>sSHTCia9f(26+F8K2P-q-i{{(gJ>#Y|8iXp=}ukY6wZ zD;qm6pNy=6(v+#wZ{E87}m%28Zi8DJOK#d%w74v9r;* h>aWYm&MWhN-aG6Ppnh-%Zz0e<44$rjF6*2UngBb`rMLh9 diff --git a/common/gtk-3.0/3.18/assets/radio-checked-dark.png b/common/gtk-3.0/3.18/assets/radio-checked-dark.png deleted file mode 100644 index b9fd269e7740506f0090e992be057056f056e00f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 373 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE09)cJEz=zQE|d$^`49BU6<6mFROK3R_(q7XRCEzQtQ45CV>oeq+Ym8y>Pik!BQE!kd~~TF;%oaPi}(&tLw%bb2ubs370d z#W6%elJ%e`-ys7527`39+zAc;|8Ev*Hag+q&ZcjE26gMP!7 zT~Omxp~|pzrB;e&@?tK|iG>Fg85&f5B(nKutg1^YU%>sHVZr@NacddAZB^NPo#C&P iNXNA0>34tu^Kb5I4TJW&i7$XwGkCiCxvXZuoc5!lIL8@MUQTpt6Hc~)E>jHd2 zT!A#h|NjgP{~1=TGM;%xyWy&K-&Kva>uNn`RNBsI^j=W!yr|Z5Nu%e2dKZYH)^$m> z`?6}+W%aI0>fM*sx-Y7BUsCJ2tOk|^OI=h4igaC41Cc;+FuMmV2o!-!0gdWL5(J4~ z02$JKNh58VMmi8p*T|Tz>7AkJlcD94spXTUZD9R*jlwISgY`;+{DK)6nV4DGgoH&z z)zmfIJv_aSs>y)It@~8L`@LI5M6Xy#?EBxXdDKng>7nB9-)rJCE;*dAj|iK1akus}#)_Pq z7mI^l-)@+*EOq4zIiojcw&YqU9DHS;eQUzw0MTt**jc0Bu0FmX<;U9-f!Wi(TyJK& z6|>$jKF_gWe?m;b*$cnc^V?OOdR{8_@!umGmv4`DM@Q&*lytCveBl%6UXgI*Xza=# z!71UvF}f$>dUfi1Z4bSuJZkZHSFp*nG^3DZ+safWe|fBBf8zu6{1- HoD!MPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(NPtg> zE0ET1*sneHs(R-U_3q1R9p}_~uc&riRq45+-gQyE@2XnQCAF?gYTXyqx-Y5qTmY%* zx~SH5S*`mbh+Vi$t#AcUL?eHhmX)`bm9LJz)sb?M`9O1JN`m}?8F+Yj_4M@(+&w%z z3yX@1TUuM&x_cnNY`Xkypt=H27sn6@N!Ejoe9a013<%gSAFgAVGrho}Gp2xpQ*f!1D8m6EwVu84GY&P( z*nB`BihY4;=6Yj>&%0HMQ<}cjY6^tU`*qulf#DBhUbUuNP7hBv&~64#S3j3^P6Zuoc5!lIL8@MUQTpt6Hc~)E^8#9ocRgIoY>Ye9QdM~Q>TvqM6sL^{xz2~BO*Cn;CORC+MfP(71 zmw{}x?u%;OK*mKipfaGDJwTBQY9Iwbl^1~G8fjBCGJt5hmUo7hFA!zv=v#Sp=YIvd z(6l7TFPMRmiJ6&;iEaloaenIL>tam?JPzGPBBI~f+%>g4rab&#KRZYzAya-&{=<38Jf%2( zvY!r;tbMeRLm}y1M80S4Gv=b(B`r(Re>_Yvd#k{}n0EczmxV`{wtt`Jcqs7qD^ZWg z8f&g6v!?#_b!MTnvu;zL#shzF*MMz`)(DCpQH>|FKYF z?#gR!6Kz6N`At1DZ{}wnSu5@RN#;CL&Q7`2$BcB^Pd&NzewuUqsjqvgE=)cnw~Aer zE%)|9;e%y|}gBB!JK&W;DWu61<0d-F1VpW@x#UH|{P1l^mU8UO9f{*~RJ OSoL)Eb6Mw<&;$Tr$^3@^ diff --git a/common/gtk-3.0/3.18/assets/radio-checked-insensitive-selected.png b/common/gtk-3.0/3.18/assets/radio-checked-insensitive-selected.png deleted file mode 100644 index 2ccd53f23dfd646cd8beb182f61e6d2a7190e22e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 383 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE0F&G>gxahul~Qj@&C)?Utga5|Mle8m;3*JJp29SF_8T8_3__tkHF{&i2VBG?^hW4 zgySZ{Y6X;aONz zRNT_q+Sc6z1?tv&jsg`Hdb&7bP0l+XkK DKYX%2 diff --git a/common/gtk-3.0/3.18/assets/radio-checked-insensitive-selected@2.png b/common/gtk-3.0/3.18/assets/radio-checked-insensitive-selected@2.png deleted file mode 100644 index decbba7801478f48bf6621d1031614ccae98cda8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 602 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EivoN? zT!Hj|C|CuepFIQO|1Vzre|7c$=jZ?bKmY&v#g9)`ts!e zF9>@2|Le0~UmyMY_5>*P=iB4|KOg`3_TKmPj#NIv=d6-<7A z^!w|hzuz7Mky_Wql$F=hR$tEmp_?nt+*t`k=kEOe_T=xkCv$JFpA2-RSxJyzFaskK zGcy+#H;<^On7W3Brlyv@zJZ~!iA7Lwa7buqT6#uiMP+4GRdr2AXAd0M{gXTbG~tD( zi(`n!`KgnSi!~VtxH@Wf?fu@QxS}KE`Tu%fVU-pYor>KjZJ(#ETDEm!uDM`x)geZQ zhJIn^reAlMmp$L6JmcO1wd;>w9$-{!od4H zQYOoOoO$FwOXX#ID|?sW;`bkxcNDsOuA7=D74$S!X2PA^v}qz1Y5Yq{!;H;3D-~v> zn-=SB?YOXH-mJ1UT&Evftme8MXp@xw(on58yp<@vX3 zl-F{<`g}SqmNh*%Cgol8akuH`6KWiu@LZ_7l3VZMRm*sLdd|tK)3;9t`kBGg)z4*} HQ$iB}$FM%4 diff --git a/common/gtk-3.0/3.18/assets/radio-checked-insensitive.png b/common/gtk-3.0/3.18/assets/radio-checked-insensitive.png deleted file mode 100644 index f1f7c1e3c5773c3504b7da6ff08503ce608bd806..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 378 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(NPtg> zE0ET1*sneHs(R-U_3q1R9p}_~uc&riRq45+-gQyE@2XnQCAF?gYTXyqx-Y5qTmY%* zx~SH5S*`mbgq^hVddkY{PhLKH21KtP{r&dj*xQNp{mpCPe{;1B;}^g}?s)Z*uc6&xHt9h6Rpx zpC8`4?sm9BHR8Yd$sa5N$H4hL z%J1_qis6j6m8sN&8t+Z%{095G*$h9O-@6VNkoF?>+8T0a6xx7xGkCiCxvXZuoc5!lIL8@MUQTpt6Hc~)EivoN? zT!A#h|NjgP4WX-6g|7N<+;GOY;hA3dMeT#9ocRgIoY>Ye9QdM~Q>TvqM6sL^{xz2~BO*Cn;CORC+MfP(71 zmw{}x?u%;OK*mKipfaGDJwTBQY9Iwbl@~R7E>>*0S+(V6&6b;cuHM;m_1<0}x_C7tFxO#LUda#myrsDyFWXp{c2*uWw*zY+?}<92^pwmY$JWQCV44 zRbA83(b)qB7Rx-1fhN52ba4!kkeqt(ZB&y11M7p$EMZ|$-{#&=4!JOs>Db@D5B-Gfrl8_tsxf+MaWh#iCGpqjUd74ySoPceSZ*d$Uo@ zqAGQL`jtH$d$+WoQfBuFh`eN&Ic;g%IT=yk(|<&lHZNQnAhdtWrA6D8Pvu~kPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE0F&G`T76PFaCeI_vhOa7<%;g>k}Ay^!M9i1p11^{`Od{`;zUnD|XYb*iXN*@A|#{ z*Y6#;aSy0i>ie~1pwXfwL4LsuqGIA9p<&@o%`L6x&R@9r@zduo|6V%1m;zK#=;`7Z zA`zb3|5~g;K%gbCBy`P^?(g;I)~xV5{yqKd99cF+)m4c`Zr?($@&4!#^VGN7_+bbC zKgZ1pJpY`Zuoc5!lIL8@MUQTpt6Hc~)E8v}eo zT!Hj|1UU2m|JDB=AOHXK=y|e1f-QPf~!P-0QPs9QptydD{7tFxO#LUVjBrGDTrmo@c z;pye=6B-r~6&sf}ZTgIvvu5wwv+uy|J9qEhfAH}8kDp&!rp*EBeDCSv7$PA#_2Ap6 zCIbf62gbq?k(oEkqw0Dh6PHNrI`=m|qCvV};m?QKLLtqIhjv$9_AXj^oSDBgNn+EN zuQhF4mgz@z4m6%-%`V|zs_sj_8!z~(=SoWZu;|2pJmIwH3U}mU zy#j?9o01+acH$BBp6}088dtwW$tY<3_1G;FgqHtcXS`o#VQQ^e2lP6Fr>mdKI;Vst E0IrBhu>b%7 diff --git a/common/gtk-3.0/3.18/assets/radio-checked.png b/common/gtk-3.0/3.18/assets/radio-checked.png deleted file mode 100644 index 6b3b2e13aaa07d05fbb04c6680255876fdf8d11a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 373 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE09)cJEz=zQE|d$^`49BU6<6mFROK3R_(q7XRCEzQtQ45CV>oel)UnK%Bt(BtFAwJ z_3-JdhtFO={QK?ktSS7yK%+%Vg8YIRM8(8ILc_wFnp;}WoxgDLZuoc5!lIL8@MUQTpt6Hc~)E8v}eo zT!A#h|NjgP{~1=TGM;%xyWy&K-&Kva>uNn`RNBsI^j=W!yr|Z5Nu%e2dKZYH)^$m> z`?6}+W%aI0>fM*sx-Y7BUsCJ2tOk|^OI=h4igaC41Cc;+FuMmV2o!-!0gdWL5(G;D zHEQ%+s@!^`YRk>)tv747-rRll-kxiB_guTT_u9RE*YExP_P8*7dJ)jgdL==A!3>N{ z%&cre!Xlz->Kg7Io?hNQp1QE5}Uq!t!d-3Oh2k~pz$KmrRK&$D7Nc3yZZ4g9gTe~DWM4fFc%I{ diff --git a/common/gtk-3.0/3.18/assets/radio-mixed-dark.png b/common/gtk-3.0/3.18/assets/radio-mixed-dark.png deleted file mode 100644 index 08a8f5c771e22b06a1e84013d7ebddfe3aca69b0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 342 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE09)cJEz=zQE|d$^`49BU6<6mFROK3R_(q7XRCEzQtQ45CV>oeq-|h*vLUDhXpm@0 zkY6x^sF-+2Xjphtb4%;F^A|3D{Pg+Dzn4xgrT`TrdAc};NJ!=$jOJ@m5O6)X_(zyq z#?E*3E0aBre@GOaf9T)tbvsz^Zuoc5!lIL8@MUQTpt6Hc~)EGXs1= zT!A#h|NjgP{~1=TGM;%xyWy&K-&Kva>uNn`RNBsI^j=W!yr|Z5Nu%e2dKZYH)^$m> z`?6}+W%aI0>fM*sx-Y7BUsCJ2tOk|^OI=h4igaC41Cc;+FuMmV2o!-!0gdWL5(G~NiX_+<$sPnR?i(`m{W$rTY5Nq1ak z5*qE#{r`XAGp5zuQ=T;LEfh?iut0uajPJEPyNfS^FE`D-|6QBqOj~1VpYV3o>N^~B z_dJ;SK3j&@tS3TKW{=S;$?9DxQ!Wei`$#zJ%rIy!@Y(R;iu~R*@r)N&xf&K`Y;T;V z#6BT-%WVhmiHrfFV2Mz!dC5(!GmIZHCmm|B=6EX+%CqtNp%v;fJlA?6v}97JrF%7> zTanPe_h4tu(E~=#4!*k9_W4}3RW_SNBX6GnttixUQ1u^UhF6kc(iBI3P^@{n`njxg HN@xNAiVx%6 diff --git a/common/gtk-3.0/3.18/assets/radio-mixed-insensitive-dark.png b/common/gtk-3.0/3.18/assets/radio-mixed-insensitive-dark.png deleted file mode 100644 index fed746c85272f8f6f4661ac008df90803f15d817..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 344 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE0ET1*sneHs(R-U_3q1R9p}_~uc&riRq45+-gQyE@2XnQCAF?gYTXyqx-Y5qTmY%* zx~SH5S*`mbgsr1*HSLv?HqapPk|4ie1|A+>J$-!xcMlKG!lI($me$s`?w+1GaRIDA zB}twxjv*3~xd)^9S`-9a4=(-@=9aPZUH!^rkK-Q_Mdu&-w|m_V);l??KDn5R?=A2q+^kn}UIyC6;OXk;vd$@?2>{fRdtCqk diff --git a/common/gtk-3.0/3.18/assets/radio-mixed-insensitive-dark@2.png b/common/gtk-3.0/3.18/assets/radio-mixed-insensitive-dark@2.png deleted file mode 100644 index 2658ab5f7b7afac319ff5c6a026cb6067ab672d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 558 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ElLLH0 zT!A#h|NjgP4WX-6g|7N<+;GOY;hA3dMeT#9ocRgIoY>Ye9QdM~Q>TvqM6sL^{xz2~BO*Cn;CORC+MfP(71 zmw{}x?u%;OK*mKipfaGDJwTBQY9Iwbl@~RVCTPXB>*!nQSozg2UT6q(m0?McUoZnB z6Eiax7dMZnsF=EjhNh;LzP^E>v57@caBxUyT6#uiMP+4GRdr2AM`sTR^n2@00cyVB z>Eak7AvyKn&9FlTBCHpRRdWSI1=43;4#~0A{qz6&Oor9nQ=T;LEfiimaltb0=*e4S zeMEkxgl+izyRyCEp3#Prg%1~|^vf=sEWYQH@sXK1k{iY5>@j{N>b@#vO6Z4qGY#6d zryP=*m)g{*TwgNFdBMV9ZU*1=ciE$=EF0#;?dIR|#fTy3VkTc>o1bcdjxf(2R^fdQ zd}n;%@Q-v8WtQ1%_=;71Q{oY?f@zX*nxUd_WeQ?jf~zRAvX-t4Y5 hXTD!%;EZ}K_P@9_cH^#B9IHX`<>~6@vd$@?2>_ca+GYR% diff --git a/common/gtk-3.0/3.18/assets/radio-mixed-insensitive-selected.png b/common/gtk-3.0/3.18/assets/radio-mixed-insensitive-selected.png deleted file mode 100644 index 8714335ace22f7c45427d8a1ad7ccd626714c911..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 344 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE0F&G>gxahul~Qj@&C)?Utga5|Mle8m;3*JJp29SF_8T8_3__tkHF{&i2VBG?^hW4 zbZEDL|v z7~3mqakZntbNgf-gO_DNOn#n diff --git a/common/gtk-3.0/3.18/assets/radio-mixed-insensitive-selected@2.png b/common/gtk-3.0/3.18/assets/radio-mixed-insensitive-selected@2.png deleted file mode 100644 index 67afea7fd6292f75c7f42889ae04fc11ddc0eaf6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 558 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ElLLH0 zT!Hj|C|CuepFIQO|1Vzre|7c$=jZ?bKmY&v#g9)`ts!e zF9>@2|Le0~UmyMY_5>*P=iB4|KOg`3_TKmPj#NIv=d6-<7A z^!w|hzuz7Mky_V9hv}Cm9lSm7`0c;np5$+LNCi5}uq4PYn1PXrnVE}=n@3bsOkG1m zQ&US{-@wq=#3Cp-I3zSQEj=T%qO!88s=B75vj+q!U(S30)O^9y#W6%ea_YgGVTTMv zST7W-=8A|4q&rGp66v`x@Be=*;e^tOlWaDauUlklbmhryt4lY3MlAGSCThK3-n`?5 zsq$)}^mp0cZYWx%9_5}LJ?F$MPVa*kr67-)o{1F;uf5>W{x-vUj^^|p9WIxYtQ$A?asRrKktXx<%=O0%l2MPP{%>zdezt6i Rmk!Wx44$rjF6*2UngEhr9@_u_ diff --git a/common/gtk-3.0/3.18/assets/radio-mixed-insensitive.png b/common/gtk-3.0/3.18/assets/radio-mixed-insensitive.png deleted file mode 100644 index 06d4d8da9890ec27a7f4e0416ed01021920ea8be..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 344 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE0ET1*sneHs(R-U_3q1R9p}_~uc&riRq45+-gQyE@2XnQCAF?gYTXyqx-Y5qTmY%* zx~SH5S*`mbg#Gv16K#VzD}e@ymjw9*Gw|^6>gnqnxO;eb78Vs1x3splb@%kli3?x_ zDoOHmaSV}=%sm***PZuoc5!lIL8@MUQTpt6Hc~)ElLLH0 zT!A#h|NjgP4WX-6g|7N<+;GOY;hA3dMeT#9ocRgIoY>Ye9QdM~Q>TvqM6sL^{xz2~BO*Cn;CORC+MfP(71 zmw{}x?u%;OK*mKipfaGDJwTBQY9Iwbl^2_L-JZ1n_LG;7{(gIM%|vQ5&{c*dL4Lsu zj7-eTTwL5dqM~Bz8XB6KTKf71hQ=lqLBYWxp=s$EnH80lRaMnB9UYxLAkgovI|Zou zf~SjPh=koXZvcTaiJxVKPv?ZgGkyrU;? zjr9@vl@hk$^Y6;`hI>XEP8L2~n9?u1aI*NGPsT@P=16W7o3qFGm8kowlqsPf=FK!{ z+n#brW?pJjqjG)8tl9+&gSi=e*W0p0RarL7iL2(=^2LZD=wjx##x_6I0v%zVJ*>j} z9{A4qz~LY1Cdw?c*YFjq`liGqUIo)6<1|gJ7B|^GlN0}B%DkF~ai(NhnS7I->Acxp iYtDSX%)lA-SnPjsYwX605qm(9%i!ti=d#Wzp$Py2ci@Bo diff --git a/common/gtk-3.0/3.18/assets/radio-mixed-selected.png b/common/gtk-3.0/3.18/assets/radio-mixed-selected.png deleted file mode 100644 index 83243896bdad9bcd894e88b9db5eccc60761dcf6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 342 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE0F&G`T76PFaCeI_vhOa7<%;g>k}Ay^!M9i1p11^{`Od{`w~!U)kT2_ph2P~L4Lsu zqGIA9p<&@o%`L6x&R@9r@zduo|6V%1m;zLg}vle6lRi>dfdqfZ>m!rwK<_KI3u?P&1aKAFehWmyoDpQ+M@ zl^YopUr)7?3!bRWe04_XQpW4++iz|xsrkvguZU-!xcT1=K-(BRUHx3vIVCg!0RBmy ATmS$7 diff --git a/common/gtk-3.0/3.18/assets/radio-mixed-selected@2.png b/common/gtk-3.0/3.18/assets/radio-mixed-selected@2.png deleted file mode 100644 index 0088a2bd7fc3cc9f248dedcb0d8118e3dd53d5df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 564 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EGXs1= zT!Hj|1UU2m|JDB=AOHXK6HZe1v4-*F|)D>35$rTscX1^pG#&fR))&FMGN;hDbVIkTZvGfjo%NgP?zDk))S#6lR7QktNGlDg#Nt; zJ8O;}FmiVA)wQPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE09)cJEz=zQE|d$^`49BU6<6mFROK3R_(q7XRCEzQtQ45CV>oe^!MB2P#wb?K!Zd} zg8YIRM8(8ILc_wFnp;}WoxgDL1%d#LQ zKU1X*D>pJIzMg6&7d%m$`Ra_&rHt3tx8K}YQuC9!e-n?J^-9jmK-(BRUHx3vIVCg! E09O5i#Q*>R diff --git a/common/gtk-3.0/3.18/assets/radio-mixed@2.png b/common/gtk-3.0/3.18/assets/radio-mixed@2.png deleted file mode 100644 index 62350cc5b7258aabbac222059f1d69c96642cc24..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 564 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EGXs1= zT!A#h|NjgP{~1=TGM;%xyWy&K-&Kva>uNn`RNBsI^j=W!yr|Z5Nu%e2dKZYH)^$m> z`?6}+W%aI0>fM*sx-Y7BUsCJ2tOk|^OI=h4igaC41Cc;+FuMmV2o!-!0gdWL5(G=N z?7B7S!0pE`AO8LJxLiXAC~usm z#6BT-%WenniHrfFV2Mz!dC5(!GmIZHCmm|B=6EX+%CqtNp%v;fJlA?6v}97JrF%7> zTanPe_h4tu(E~=#4!*k9_W4}3RW_SNBX6GnttixUQ1u^UhF6l{`o*eqL9yoP>gTe~ HDWM4f`@iaU diff --git a/common/gtk-3.0/3.18/assets/radio-unchecked-dark.png b/common/gtk-3.0/3.18/assets/radio-unchecked-dark.png deleted file mode 100644 index ec5fac5e771d552604d45502e30b21b0808d256e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 445 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(OMp*^ zE09jCZb>U|$f#&YscBBCXh;T<)lJFOO-WUaKr*4cF215Zp{zckydklyA-=ROuBo*Wg*~NDNsJPD4#W6%eGWVdTP?Ld(!$I~%Mp}y;+1hK8T^|1XK6z14 zr SVTBmTB@CXfelF{r5}E*{M5ado diff --git a/common/gtk-3.0/3.18/assets/radio-unchecked-dark@2.png b/common/gtk-3.0/3.18/assets/radio-unchecked-dark@2.png deleted file mode 100644 index b9b8a2f07b7b0ff37db2c489b1f71d9c29922044..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 933 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc|`>jI{wi zA+A8h3=IDp8X7`FSEZ%R%*~yY(9n?9(2&*8kW|*0S<#-{(2!W!mR8l8QQeZ#(2!Bl zkW$l}T+xtT)0_$vuWSQyQ!1O%t6Neln}F=ps-_em8%(A_7%;&!5Th9=2vm>;WB|F< z%^)q+Ao0}dCLozo-INC8LP;Q_B^9g-q!J_!l1c$9gD8e*1d4#PLlr=jH78d#C0Bt2 z8MMt9w9OfH%$am7m~<_e^(4DMoTMGRWE{O^oqS}SedL^c<(z%> z1EP#WVoiW3G|n|h=8sFIqdL@t-pc6?^6=w7tFxO z#LUXh!NtQXC?qN=Eu)~QqN=8$X=`Wi5EdR08K01tR8Ux6QB}Qo$$Y-;I{PWeJ>K!%VuR5djj*>oG2xE-p2w>zULIN#wj#I8MrOkNH+K);i@Wek zHKw9N;r8G)E_;Q6yZfsxvjwu_IOFUiuT-G@yGywqCLx_n0 diff --git a/common/gtk-3.0/3.18/assets/radio-unchecked-insensitive-dark.png b/common/gtk-3.0/3.18/assets/radio-unchecked-insensitive-dark.png deleted file mode 100644 index a37d47225cb040b0106a2efe536f45ca94edc210..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 423 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(et=Ji zE0E5tXiqL|$gXTlYiLNWZb_+WNUCZ~D6dT@Z-_6ei?3)*EN_S_sfz=$%j*+>WNCeL zQB`6^ePTsJLS;j8Rg-CGyjf^`a%H1QNUTXnd`eXlgSIKNt|ha+C9kPHuc@PurL&Nw zi;$H|-{*f}^xL_|l&baZrfbx)c+dCJsj)22$jGbR z18S)Bba4!kkjy=JTc}Av#Np!FO8w0SS9+Qw{`@z8X29dW?&!)#-%Oqr>UL!9{kP`t zx?O53rc6Gtvdh`ds`Jha=C?X0?=Y3?cfM~t>9xuCz!uM>`ws6_KiXcVzZbRtRo99aY{_l!4$ZVbn<>!!>fwe*Ku0imy85}Sb4q9e0G(u? AqW}N^ diff --git a/common/gtk-3.0/3.18/assets/radio-unchecked-insensitive-dark@2.png b/common/gtk-3.0/3.18/assets/radio-unchecked-insensitive-dark@2.png deleted file mode 100644 index 704bd30e78e2b20637f3fb51a53e0dad3bc11404..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 915 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc|`>i~#{Y zA+A8h3=IE)prN55G;|e^OiN1(ZD`1yG${edZfJ-tDM>2pOe^mwXlTf+sK~Bt0}D1} zG&H1CwPuxerB$^ils2c=G^bWJq&BoARW~G6x1?4yrPj8m*EXeAH>6g#Bv&>iSGA@B z)l{{DR93a7R07GSl$z!=APHnw168&FxhYl6DK(90RbY|YmK2~-Rn2KYEg%I=Kz2%H zQwoFuA{(K)z_Q6eE?6;xwkdrS{DK)68JU<_SlQS)xVU-w1q6jf z#KgoUBvn<_)J#lFO)aggtesulJv_aVl2bCXva;(Nnwp#2JG#1i`}+GQOq?`z+Vtr& zX3UsLEO?bzlm?7fOHUWa5RLOwFNX&o3J_s=pyBIqv~6!Qt9C-O$3~ZRjIII#qOQGN zZq2{{-&bK&Q87QfWBq-fXMSb;hyN(2O+TIEaIST20Fy_{Hu1SuTh<<7@LUt(!r8I@ z)~&01nb%G6o)k6d`gfVKyIFHP9{ue4qx!e$MT$3jDChThDNRxOVkin6b-rp5wPf=ef-c_|y^EdVRw3Lb=ym?>)s$_Wijxee3TCl`A## zW@X*!=C|6vc)fACtYl4$jbUk>)MMwyW2`?!<{c95Jv}3EhkDG}SEkXt*Xy+&A6&g} zl6i$xZ{(jHSBnJyr7b+ekjgi4;kB4!e2Oc)e7QS%Rv$N$Y56k2|Kzk&Q!QBBZ!OP? zoz(s(RK6(Z=Bnsj$$5_-_}Dd{t!%$2_*Gg?&~*RdlS^9OrSoxv@`R_WpUXO@geCwr CBX*ns diff --git a/common/gtk-3.0/3.18/assets/radio-unchecked-insensitive-selected.png b/common/gtk-3.0/3.18/assets/radio-unchecked-insensitive-selected.png deleted file mode 100644 index 077be10014c8136b93f8bdd71b4e82a0c59af0ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 395 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(Y=BRQ zE0F&G|Negvc>MqWvllNeg1PTMe0caDi2gtM^y%jRPtU%6d-5NM-ah^R?dks?uYY`c z`v22?p!olv&whS>@cY}t-`}48{{Ha)_h-MqKl%Ut$?q=@|9^QX?as`??nPKV9pt~?`Jd-J=Q+>W&S@?#$_wE} zaWM=FQRd4_(7ew#I4tDB_Og3uVl~Q?Y7U3p}Nza8HHg1yyD|(92J94O620^B4xDA+_0n@)6`^td9(GCmH zOJ17rIYXfS2rpyxZkW9r=tjh{Kkza(U~GN|_mbC10K!dpomQ{g3T~=anL3G{L!&P# zQegpsfvjz8_VyhdPEZh+%L@(-3)_Vh8Oi7KqmTrG=;)Xjp(rlyP(p%4au_KwF)1lo zDosgAO-nzTk&&5sEGru+Cnq;oCX?ehu23kl$YT-c?cV{C)N)RaC&*VYp3&Cr|`IatLn2u&bj)wzN1>2 zp2`?)sy>pftP%=GKe!p@ZI ry!QB%tg(gU^S?yZd%u1&#-62FRC-QPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(X@F0N zE09iTXeelCNG@zhZfJ8AJXv=Tv$ZKxTYwpZ# z>Bwp9tmy0q%4XEJtlqkQ?Y52SbMxH6AxG7&`zb9iUJ$JkY4spSbtAJurDvV6L9OaXVS_c3)-Yc< zH|dP-giQ5|(dju}PgM$5sjT>VwkrSqE;X%R7iVm=-|(EjQCN8E^)8{gKvyt$y85}S Ib4q9e0Ku@gy#N3J diff --git a/common/gtk-3.0/3.18/assets/radio-unchecked-insensitive@2.png b/common/gtk-3.0/3.18/assets/radio-unchecked-insensitive@2.png deleted file mode 100644 index 95d1ff7f9d0695f73e20c4a2959b166204b3f47d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 904 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc|`>j9vjg zA+A8h3=IE)prN55G;|e^Oq)3~7X&617WSn91+yBWfr8~7X&oKOg$>C-c5wqxJh8GZ zqog~fsx_siIkTcYt+Y9Hm={XdE1_C7cL&Z2t=2UU%q_e z*^|r9pIm+Z?COsX4}N@l@axl~-`{}f$=`2J`YtR{1%_o_NswPK10y37GYcy_J0}+p zA3wj4kcfz=n7E>nva-H`p^2%fnXR3ple0@?RCGdOVp2(Ic|}D{ZC!nRV^ec;OKWRq zS64R>^biSb7#Dv7#;2L5i(`n!`Kg!FgAX}KusjInVA3*MbK^i4>jowvm!mooti4D2 zA~Lw{{r{iEyOHYpYC z$jJ`{xkee@Om8f3s49uIE-)pT0H~mA^WLdy&KKPfZHn zPurdNTDI==2h%HZzTqnrr(RwWo67%AQ<;B8*v)>W?(Pq(_bAtG`0=^syZdh8$Wv#Y zZghPZ7qjuFRPEfIr@uUQpLTA)TiAzVkIL7qvT3#cwz(qYUFVWhZo12rd)-yzp7cz8 z^57~LuLQTQ!U9n*Hi_a6Ueo7BWekzwS*~t5G4|UY3Y?SMs%gi`(YwWOYV?Dtit!#n zZjwg(PfYw~k#_By-xT8;@$*Y($Oi6zDQNhaS5WMd;sep8ZJ>FVdQ&MBb@05Z#% A4gdfE diff --git a/common/gtk-3.0/3.18/assets/radio-unchecked-selected.png b/common/gtk-3.0/3.18/assets/radio-unchecked-selected.png deleted file mode 100644 index d66b77bb282b32ee00b1979a0c43efc74d22f17a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 428 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(QGic~ zE0F&G?(YBpK=kha|NH+xJpBLv;ipg6|NnpT>C?^c-|zna{_Okrd;fvx$D{KBc`M*XN@>FX{Ee@+eD<0VZv5)h;&#)=<5#1BIA)l7zJr>wZarpqme|N z8btz8<0~ozHR@n)6SFK!oG~CF3xhIB@4Zls0|ajGwYROuUkN?=&Ue0Z@}2X?@7JQr z&k=@-LNN>zDtBdTP)+cqAP8~TOvyP^f`}}oP9P9i?FAF44XNK%OkmjR2fhp_5uIOy zhVf=aky*R1(rhU+=`oANl3ZO^LsXR2>y!7Hsyb#eL>Ly3tIE?UkQtVu6X3aDqiO|; z0-)f{8+i9GOj`k_0sfnvwE@`Ry&b?lH}?-R%+C+QJPm*_1q)W-rZ{dKd_ckmJ~#jz z;BvSYNN|xZhH^3EE*Hf!<2*wHPxFjzNjN8fp9Ge6BXD+f0m03YZpQ9$Qt$yCAw4Vw zEahjrhowCWK1N#}771h^ft_4r5;)q!**!j9)K1F#f##iduaoqFrTn11ENXr1W{_CY zUUt%Npu8OAWoR$A2(*g?x`u{+e%aV3M6X$A*5qrkfWV;O;AP8KgoJ!13=dx!5fK>~ z6%`#F9TS@%7K_)R*qoHKB{^9plcl7jq^72SnUS$=d$v+ppwVcxIvtMV-xd}X6&LR< z`M$JNUs?4-jiI)#-e@!t1YtJsKVUi7&~WJR;ije|N19{fwzs1Hlq<7$=%fRehTh5p z)p5(-SL4@fVnSQ~->vCM8nGN#uRqbgX)62*Kv#RNmY|G%AN$4}R~JlUUzZzy+p_jW z?9&&QkD5N3{?cc<8$(p48*O+qC;YLC7iV&gj9XCyhGXR5gJEO*@J(8hSa?p-J}N8g zko?Njw(kB@`19=uNo`A_zMBXOwDteqT(oEH1<{6+!T8_T=VI~&i8*b9=|?wyE-Npf zPLmaL6FEJdoA|u820pFum(`r1Z|8u`pm}8Izgsz7&GgjYed%a5iN}XBqIKFiz?Ao&?ynkZ)(8$Q!Q;qV3$S-X82Ccle>6I9L OAf{C0XW!2%J@yG+%@id7 diff --git a/common/gtk-3.0/3.18/assets/radio-unchecked.png b/common/gtk-3.0/3.18/assets/radio-unchecked.png deleted file mode 100644 index 0e1275cb07590f330b41cf773d5850b248a15d32..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 463 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 XU0JD%3U79mgNk8KS3j3^P6n$ diff --git a/common/gtk-3.0/3.18/assets/switch-active-header-dark.png b/common/gtk-3.0/3.18/assets/switch-active-header-dark.png deleted file mode 100644 index 5f33bac36986d12daba88036d6067ff021de6bfb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 807 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42=2# zJ|V6^#SH)dtMy$_>Aa}aaaFVDnrhcomEH>~T^Ch*E~|81*66vQ)^$m>`?6}+W%b^R zs$Cb=doBXGKvJ#el3F(q0aadtu^}Q*QoS3f5ksmADyvwxSFvsn*aUdUi7>c5@dFa~Do44^AsjPHQhtTVF0~A1)goF8d%ZhhQG3FdpX!9_L6N zmqEEnm7F4SAPg82Z)|DQGKfpb}S^&1RsNBw%K&8_DV zz|9o#FkW}ANi%DukjQj~BR9VkmK_H1U9~u`STx9**)D(SrGEB-oEB%_c1E4g+jpBx zOeQ`~$rY&fS?S})|= z`9$H?AI)i%XC~^F8}N1K&rOXxcQWYamxIrE-fr?)92RiZDOca3!EfD451&L%Rk4{R c5BJwHZckCqOKiCN9+Xf$UHx3vIVCg!0O8_EDF6Tf diff --git a/common/gtk-3.0/3.18/assets/switch-active-header-dark@2.png b/common/gtk-3.0/3.18/assets/switch-active-header-dark@2.png deleted file mode 100644 index 7690f3fa6adfaa3fd61a1fe5d404232697d00542..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1529 zcmeAS@N?(olHy`uVBq!ia0vp^NkFX2!3<)R`n3Wn=3*z$5DpHG+YkL80J)q69+AZi z4ASdCm@!Ujq6|<_vcxr_Bsf2(yEr+qAXP8FD1G)j8z}|`rrZFZ z5LcjLhX4N=8vZk^TIJBN-+1O3?S`u=lWyyEU(}v@RlV~Dkge2lMxp<_Zu=$ezN^|@ zS2g>usdt`J>${-Rc~QCdvReNo<-V($UFS7=FR1lgQt7&=(Q`?y=ZaeA1@*2gYCRWJ zx-MySUsmtDqTYQ`ts5wHNww#)YS%^eo{Q>Tm(;s2t94yg>%OQ8k^-_X0%g^^E~<51 z0xDJoN`XwfqzY69RMP`g4-!`calve$vL3LpATCG{s1jrpOc@dzVhC6YXlD0Cm{Cy0 zXk3^HAX#=ZCw4Puc5`QT3pWmP7fvfrPHQht8*ffqUrt*;E^8ky8y_zFATEbsZif(V z#}IC(P;RGi9;Yx~*Jxh1SU#_0KJQdM?=*f8O6T`U=l9Lx_sbRt$P)yjzPj{ zq2OYnkW!&gASxFM1ELDy@G9Ym8sW%Vk*GS6sCtp829cO%(dY)z*k;k#7SXsCvDg-| zxK^>aHnI42vBWO1#BT9~F7d=3@uXgfl!+3l6C^XHOJ&cJ%9$^nGfz5qzI5&a>D-0V zc?+fU7s=!=mMH+DrLx5LB4#WeB~DTs;vr@n-!|ID^zb&sM(=V zvs1BlmtyU1#X2C`qg20Nso{W9;{oNygUXGEl$(I)uyXSe<+c+lEyq<_PpY(?QfWV} z(tbv@#!jw&#{C6xsE1v4-*F|)9;v2*kA^6?7@3Q0&xNz2G8si>-H z7#W+IS=-n(0IV4<5dJ_2$dhZ{L6Z`u*qcKOTwFqrhZ7!PCVtL_+fI!SC^B3T43H5V`?BJxPg{4r`q=&JzDK<9 zOXqc8J9^qRK2H|DnWHSb=NqH6(ut{#rxjOyeJ58o6e%OO21_B zN-2ulaoTJl>)ZbWrCsN`EOnglRA={;uV%SQmKRim^U=SV!J;c9|T?6O&_u|2C|6#ic!I z*0x_0&(@TDVwL-?vvE@J4DYv2TLeN6aV`0NOYusgnakf3z@SM|`+M11Zjsi_wKl;{ z@|&dR@dSq7=)KFUseHn*g|A8H`HiJ-qVBT1Qt<+YezcJFY13tHLE?+eoI}3ay>qfk z_LB1UW7BKa_`G-Sn-v?xw3$v${qR-bYFOl+_S_}TY|7Vq)y->^!d?R-f9;rrPLHcgzt3k;{466{lb_1)eL8EP|@q@>gTe~ HDWM4f3XG7= diff --git a/common/gtk-3.0/3.18/assets/switch-active-header.png b/common/gtk-3.0/3.18/assets/switch-active-header.png deleted file mode 100644 index f8e9eb1dc66ac434bfc3fbef9eaf747c1e51a831..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 807 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42=2# zJ|V6^#SH)dtMy$_>Aa}aaaFVDnrhcomEH>~T^Ch*E~|81*66vQ)^$m>`?6}+W%b^R zs$Cb=doBXGKvJ#el3F(q0aadtu^}Q*QoS3f5ksmAD(gP`s{5QPU=t9!+-5^XVpm*` zUvVRP$+hUE*MMsDCtS9he#L(J6{ne3oM&Efopr@^_EoppS3?(Fi(GmwYAHxr?DFez z%YnMCC#<-Zv+hRco?DX++@5sk_KYL9mz}<|{LGydXYQ;#duP>|yT@+bJAUi_@!R)L z+_``2$%ETZAKZER;NG(bk6%7~`s(4EcMspafAs$SqmLgRfByLB%g0AQzdZi+<O$_n*IiwHaDEak7A-VTpW;A1>2-|~nry#HH31Ygp zjF&vkn7PGswaGQ1-Z}sOOHW#sxhLlR@psby&pn+V9qj28JNN7Egy(ZSC;6Dg=bCAs z|EPthITnu{1D7TT{& z7D|nr@R5OIqUzH9b0!5|tz0ygR+M8Bxc-eYX@Q&(C wpLIDBPw&JfFqEBJSrDSiX(~0ZN_odZg!p00i_>zopr0J?vUmH+?% diff --git a/common/gtk-3.0/3.18/assets/switch-active-header@2.png b/common/gtk-3.0/3.18/assets/switch-active-header@2.png deleted file mode 100644 index c6e287a3f3653fb5be6acc1b77d65805570f987c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1552 zcmZ9M2~bm46o#V#0V^29Dj;qUUXmfALe*AL1QRu2Sp*`Yf*=7=3bHFzi%Shz1PQwm z1QbPN2`W`w1`Ue{VM+2{60(s5i$DRPY|0{ip>^8n%(?ge=ltLNGk50BrFppRGhA%G z7=b_-lJ*l0!ez72Fz}*?%|&fml_kT?_op(=6bj zSuD{v)+;h3HX$&Yf=Eb6unmhi9djb^48=AwI`r0%gE<1R@Uq7NZz2pM=H?JdbBNN? z-AT3fxjdUB2+fk&GWa%`5QZj!wPiAIU26LVs=y`%vY|t`R1t>O2BdVLX?&~eLLgOO zl>*`D?bz!b08@ab^RY|;zytwW2Zjy;%nmeNfMp0VG!Vn!0}R*_STlvzbUud3$It~B zh7h0&0S4b%Yr&ciyBInjpbKEw8n(1)0&5t9879nY=YY1I*D%JMkJYx?AxvtczGDB; ze}~Lla3+KQHR>Puf9=?!QDBab1t|i7u=Tz?azZqY|w=by0W1IZ0N^)$o)3taa-hB0C^Qc zK1HHKcSOE-MThT-j@%Okl!yaM#6b_l!KLD`GV$qhad?H~r%FjAM;ytKL~$h1Rg#!T zlC#y4i%&bLFFKQ7cBa%yQ{j3oO?x9{y_RKiWjS@SoO)Sqz3e7j4YIsOc|nt`ut{F@ zPJXvpUfd$T&y$z(6lJZ7@-}&8yP~Q?@tCiu7AT&9${JAl98$g%DQhK4uB59`s(dT$ zdMoQ{l6N&Lx}a{A19SzbrA0Yk=QAi$rkpHZ>c3Ga0~( zvd|lT>SAU<{pMsnNhML&el9@CWovy%k>OSb)~e}hN5j;qUFj=yT%LpY zvy8|KO18_t;QuyW^t5=IgT3j{_dT*mP;oIZw8tt3%9W4#8+pEUta?Z{w3%Wtd<}KV zYa%EKYbQ>D;8j08r)zoxp0n!}>!OQXE|8q^pOHSn3;cKK3WBV)!gH@coP*eB#!E`lkM7aW6)9?tNOB!qn!8&XvM~#!4 zT+1ovR-#;s-E=v03@~g{#I_|$qE_wzAO#7 zSlhx|W|HAEkEPWvGSa=yn_*i6p9+|n;VvUqB!@3M6ixAmRE!|9N9yNbdjq$&nc#Pn zPw4D#y)9G1uf0Buvv;IMF1dYJd9LIgfHrH3m`Pj^kog$z+S7de(XAvPo*VjN1O5Z9 zk-yg1JUOx64nMu+Sa0QKRCW2KS1+!3j=4W0NJ``pJo0jNVHluw)g`Bt|fC%2+% zRPeL*HPC9%r~m-X_5EU6n}<$C9}H?DR#H%L16D6MyLi5QsysHw$g|P4dZ4U-Q^>V6 z405G2_?(LgkhD!TW?a#oeaA@Z{UI^gF1&psc6-#i)l;3wS<+s~FwS7RzR>!>niVe1 l3+sH+W_1XqT;zjXPM2{xRi1M^EMEH~lZbAF3g_dO{{nU`AAkS= diff --git a/common/gtk-3.0/3.18/assets/switch-active-insensitive-dark.png b/common/gtk-3.0/3.18/assets/switch-active-insensitive-dark.png deleted file mode 100644 index 85ecc9eed73c04daa9db6c198a7057007cc44e6a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 802 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42*mM zJ|V6^#SH)dD|MVv>bR@We_yx#l6vP2wZ02#eK(bQFDUh1SMR*2+Id#B|FTNYRjs}Y z>fLA6yDzKtTvhA3sM>Q$z3Y;CH&F1hTJL4G?u#Hs*G09SD{5Vr)VeRJc3n{Ix~$QA zSsf?^6afidRO`O1+I>mBb~jXU_eG_;J!;(-fTqb5u8=8QrP_U2wqy;1jyaQ#1(UuF zlc56(2syDBJF%F$vzU9bTKKYB__12~aXQ6vIs;KWe?T#RKq-GvsX%yxP-L@EbhB7| zmsIvV>B1G#g)60tSIQQzmMvW?Te@DhY@=e$9>qE!+N;>GSGi%oa^pdj_ERdIXMir( zZwtB$43MajAirP+Mt*()K`CizH8pijO)YIbJsVrQ(6F%Zh~$)%?3~<^lG3t@%F3qZ zme#h8j?S*GuI?V?detr^|sdL)%@KjP$Nt=;L-&@$a$*jQq%Wf@sqQ;o>n`dr$NyznydpQ@JIP<5pGTUrT$&xMxt}|!W zi|#U;l~@wRu;J*LGv7sxqz*sNW$-8!&tH*b)YcurWN%WdD7 z$LJ8U?&9&t4Q`L?wcZq;O+Quqch>Qz7hmwW9X@${ZzI=IKG$nyxl41tTUd(CxqH;d jPwsn6nxf68{TK9?-Q!HUcu03WD2;l$`njxgN@xNAsRT!i diff --git a/common/gtk-3.0/3.18/assets/switch-active-insensitive-dark@2.png b/common/gtk-3.0/3.18/assets/switch-active-insensitive-dark@2.png deleted file mode 100644 index 135cf60cbe0e26a5f1d4a7185831209b84f37a4c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1488 zcmcK4iBnTY7y$4`I6}}sj4_392{|InS^zWsLh+waZ1*?IEV=nZ%~ ziX8+&c#%*L55_dmy=*PbQGRqa7%X#nq6Ax8+ll8flVFNFAWY7MAZLxaTkN1TxPV2c zyzr#FO*t8Pg{g;jLxqKfY{~xY-1O7~yV*I1_MCVZOo1Q_AvQ8093(>v3y>7Fh0Sek zo7)ybrTv~#Bdopxt0&y0&s^&6aqFfy(h-LI5m;GKJF=qosk`a{Q+A)O7=hJeR8&W= zdko8URHXszGF1;5s18O9)EXnT&bR_GtweRqIz0m&WuOLn?HFA-PD6~a(#TZk8S*h0 z)iY}!Fc4szf$HfBJsmaB6b1&WHRmH*I;fA1(-h+jxt^gk&=p!5s%Ib|7^kCp7}3!c zIy$1KA>fFCfq)n3!PI=pyk(%FI)=F>C<5aD0`pW$Q|M_R-%JOd5X&E81z-SnAjUfw z;~k3e3AHlgS^4m-I6N!g4OadlYqO2k0YDTsI2Ie6fa4|OcquqOuoD-ax+pviFB0QL znfQ%B7Jg$kJ_^|95DnxwL?3jB&2@;+cZe?_BmhN(M4*(grJQIcB_>x8w^b2Ss!1s| zv%}jvI1rYSmXV!ZT;1F~s4z@pd9m5v-m85$Yq^0z zK{2s$@rj9Bl9H0QZBI!}6YrK}W#{D=6c!bilpHRVN-JeGwQ>YOQN{n%5*9ZlfO}ma z5`-lUu5h0$<2oUqgCU z^aU;3(|+vz%`@MItUDYcsrY#S_v$W;lfRl9fXP42zb+0s|9D3Ac5Ao|Ir%c;K0W{E zyT6}WPBDiglW zq`l3M#7^9oH0X6Tt%=L3u3u}sdp)9`yq~r%!&7`?(tY^1Ev5$58;tnI)Y+3uKmD3% zDj%YFJ)bOCs#3^VclCLMb^=$gDCNHb7`dOlsOt7HHFu;rGI^m(5U3YiF(= zIh9Um*_EEtu-?r{+hkhZor{s#B%igfxlhH;wDz`3s=K1eOunDw_OiLi+0U|?t#^+5 z+4gh}{XkqVi2D%t{*aLg^~!wr5hUUz{*eL_{)~ObrO&wDj4_kjZO7t-NnIGn-A<2$f{A)27?P#;S#oWivem-!(T{M>IsaIejn;xM`NC z!^kcCz~a4C{YOW(tF)0Rd(v}ud8nA4pZn(Ac*YT#%ekXbYo`gX=4AECfJZ}RF7BEl z>&tFk7K8P~7|v{%Nkg=M$DP%-)B5U-17Y03nIq~46i=~lF5#i9Bl~^~f>&QW-FfM9 z`2_j+o#s%Jrz!4bV*JWq{z2=FhZ`+@qey$t7bm(^v3k!{elgBY2^PN*g)B;LOu@f= zn?LyS-my`VKrk!`5=VV`{nyt=oYnU8tuGF&A#`&%8iL+#W=)}>F-d%q>m%YdbJ=RL aa2{(B=26PBdcrsVQAOd=f=j$zmHz^b=XRq2 diff --git a/common/gtk-3.0/3.18/assets/switch-active-insensitive-header-dark.png b/common/gtk-3.0/3.18/assets/switch-active-insensitive-header-dark.png deleted file mode 100644 index 1b3ab46fc5e28e36ee8f0f2854b465d27a7ac955..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 788 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42-M+ zJ|V6^#SH)dD|MVv>bR@We_yx#l6vP2wZ02#eK(bQFDUh1SMR*2+Id#B|FTNYRjs}Y z>fLA6yDzKtTvhA3sM>Q$z3Y;CH&F1hTJL4G?u#Hs*G09SD{5Vr)VeRJc3n{Ix~$QA zSsf?^6afidRO`O1+I>l}elJvU_eG_KJ!;(-fTqcntWoX0EMK}ozI+3_xf8p&GpCg& zrUqDbwT3Ss_T~kv_TTjo%)-E(GEIcAPB_%s2x1^-BtfI2Askx=Kt)ru} ztE;=ahX~Mhq00~$=5n4cjv*GO_g=XfcE~`0?LnA>K!J0acz|PBz_O{UrZAN{yPCcI zZO_FSaI0mGWsKqW$?un>8`Z03UVqvhcPCV5iPq20EBY1hU9n|b zw$nIvMSigp6_7gkJeAW+XLkOAj-CVo!=|Ry?~VuTDYN;tNO`*c$K!7|9^0{~U;F1r z(^*+>q~7Ll-C(b`)OOB|Y`J5L4b5^c>$c5xs1z!-X<4?9BeACc?7K*-_T#qG`zp%+ biO*u*n94LiaLTb?pj7GU>gTe~DWM4fP-aGU diff --git a/common/gtk-3.0/3.18/assets/switch-active-insensitive-header-dark@2.png b/common/gtk-3.0/3.18/assets/switch-active-insensitive-header-dark@2.png deleted file mode 100644 index 506f801e90ac924e51f7efea43fd4b21d6a5a46a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1471 zcmcJPi&xTD9KZ=PK{Fg9W+KVs$D?Ih(^Aw@Nm9dCh$xz=gicYXhKQLJKEdA)%-J|@ zxn zzd|)ey3Pz%*(ZKxAw~!`)72Jwt%U|pZ$gahS`!NyVhVrZvWH71tM%+yXY5EBaq#uO7VL9mgj zH8Non0|q5#77R8r0oPh(T{1HeBg@(oGy(Pp!|F~lv?d0~w_*g+&WCH~v)j&>hxH4` z`th-Tk=Ot}HUP*dY>)sOBy<390U`%(ydziS$V+nMCFA%K9AAp#XW;mmxJZBu7nSW4 zlj{_d=Oie=3*~sB0xtp-;YG#x_!4}4DPDYxU`0hpt{^6CQeHDDuZ1jcCCe|87477rPPd{ix8feRk{)XD6>7;< zYAK+XT6&#&4A4hc_0!7$x9DX9^ol{cdKjv>162(}>QP8-fNI9UElIt0D8V!6C=^7+ zqE?~NHa4r**x6yQSbN8HIGoeRg!M#{D|sV@N{1kZ`xXxmPtUE}yu3Mn{{GQ1`vf9U zd_saaX@7E>M4Fx@%Pv$DDT@!6lpHBlsmiO>ni?2J5bggkj%x(q)uR>RA;CiD4bN^Z z2bv39?Oytrx~3krD%iZ1x5WErx$0?U;~SsmibD58Aq^eI^8;|mc4^z#V$;%(X}a9G ziH%K7JDYlfX6GYfMOQ1`V}~So{>;(WePq+p`p}|FG%{isjH}zR>%qSdHZCJ=^L-HP zLG4`I{mv~(#tFNz@UBdLji7twD_uTdDe%1$|82xM49O#Sx`7lhcWzGKn0dO?w!1`F zTex^Z(!w$97=HSwRaTvov`IUH7Ef@h6DRZvf}|HEe!*#(xe2FxX9r3nh4P%}u7(V0 zBDMWHMeD${#rqPfdr#c78LlAo+%C_27tN%a2CoY{(>b;|q295P_nuS*kr$63rS|L) z!p*madrvAZrx7!U((KthXvJpQ_iX10TUiYERERA#_IV)YrGLUgWsnb2tY1yr8?1S; z(I*1+Ar@wb6sJ;Xbnfg{`Fqd5$sGm3tvcSGRH&Iyxwg%)Kk#v?&Ot(UpD!!Z;MZ67 z#%0_bb@^m|a*TFzFFI@QtCarH;2WAyH;1V+m1z5qT2j&@J?B3&pvTx}RJoWp<=-SZ zU0CdRK{gQTB*DE6Pj~;+jwmk9-d$twSIHT2`eB>?ubz2S|&lAN%}|>Pee!j~=Z1{dn@7ho`FZY5L|7j)OS%eXhdw`&q@|{0y(by04D> zwk~U-;(2sa|8i=e{$!Y+KuOfkP{u?DdIrKIBY(DZbR@We_yx#l6vP2wZ02#eK(bQFDUh1SMR*2+Id#B|FTNYRjs}Y z>fLA6yDzKtTvhA3sM>Q$z3Y;CH&F1hTJL4G?u#Hs*G09SD{5Vr)VeRJc3n{Ix~$QA zSsf?^6afidRO`O1+I`7w&J~Y2SD@-af)`xpTmc%W+I=~0#kGVLH=-6_jamw_MSsF& zyXlu5reAiNdD(g9W!Kq2bTw?z)yQR6qnBNcU2#2r#r4D$SF_jO?A&vE(*E0%4&R=B z^!Bn-cUGLavl58T-8p{y-ibT+Za;Z&``Lp#&mP=+_Tb6ON6%h9di(y-`}dDNe0cKd z!=o=B9{u_PL{I*Hd-6%ZQ5zU6F(pBM!3>Q2`~ref($Z>b>YAEb+Io66wsxUmVc`+U zDJj`Gxg{l~Wfhf`P0h_Mt!*70on2jB-Q7LJ0qLusxPkGY=;`7ZVsU!!m78IQ3lH7J6$y=d{#RQ})b%ZP+xu|;+&Xp3nKQF)ZF$U{o7&Cd zX}DSPlVwNwV;1HoEAPE3oBb^EjIrVA-x@pfHza1{Wu`R!Fnr1zZJo8Xq$Q&hNw_{J)e#Xg3XPCP<+v@I|dg1Gq#&Tg^!j0#1d!mf8mNAG{ zynMBHnc0zP6Jr^sJYU)_R~;y2{_7O;t-mWnt9&x=T;DvYVNvrVhXV6Thp{mA>$F=11{ zycdS2crI_sJ#Eu_#-hC3cHXh;wzBb`{r>8I;caSsDA(SyYa1xBdb;|#taD0e0sv@k BiJ1TZ diff --git a/common/gtk-3.0/3.18/assets/switch-active-insensitive-header@2.png b/common/gtk-3.0/3.18/assets/switch-active-insensitive-header@2.png deleted file mode 100644 index e9f7b102c1bc6dd8f83c03c06a95c3fa674a22c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1558 zcmchX|3A}t9KaVB;~qM?x-ye*`=S++dK9`lG_lCHQQOgVQ%7*VT#aJY0n(RqS zrp84kr!o>FP^qb@_E8sNl1?+?Bkbc6&t89h2!lfDxCHnHdm_cC^>tJ>a@Irm{1E=S zTXy%ZYzW8gz;Tt9*;ClUKIg)xPT682YaEGKGsV`-Nz1Dvws`{tju^)swgDuBLIsW` zu_*wNtnF1f5s={6piMqxQwUkJ$94h|+d?T37$O27fjLYlkm1=7t^l&-NQtar93Zu2 zju6=hG9n-)aHIqP#B)F*FsiL*j}nmifDF%(5m{1V0Z8DC;sGgFF?b4<|JRl)zXCgxo`;(z{NAVmf9;w$N`Lsx4%aM>cpnZ|Vz6f+E z0v)*$CoZ_33mzy1UCO{iW#BjEpj$cUQ2`#V0KIq+g$Gi2kPi>^;X%g`svy5AC;*`v z3a*BZ*FYx_Y9V?p6nYanRVQcE$;0dAXX@qAx8*U7@|Y&Y`6fkNi#)DHk+hSY3+3Ze>xol8exzEE6cp5roPLq4K&=$?J!!MapUsTqA;O2jQE8aGe;g z7sI!Q;l^ROX%uc5h3`nR9%p&TcHvtRQ*bo2v!ZkDo8V}&`hhIPpf9t z)3a*ztXlI@{rshRZb7}Us9r=^QZH%IyjfDed!v5;R{efiy{1L;@3LkkCz6d^o`=an zepJ*39UWcW&-C>5(FO*FMw`C)!uZQATfZ{Hn(wf*vcci-yY1}l9US&JI_-0Iadq_% z2n;%Y`~;0g4-GrX2tN}M6&;hDaxwK%T6%g$W_ET?UOtn>W&;4{e>n+Tv-*+uaD_s4 z58iIN(6e$%oPgC|O2ykGM8)@+{Qg9>Gcc?5ugk9*5Oy zAEz=G`AL)SvKIeZ?VK&?W13l<-X}ENV|t^%}1A+*6nHa23DHT01rL#z@N&samwmMvfh35z&1f7lWXy|)pZRYTYz&&T6UK~7W4J( z2Qzl0d6!zgYUx$o^Y@9w2xD`rKgj2)>l^1h5>L0e$()vNG|fNSooJxc4NM(xiu0tG zoO>M2Y&B}W?9j~36KdRKu4C1~8sA%16yubm3_FYFYn3-?)4+$;E$LOQ1Yu-_?sPEExQ#K+jvS*}Z!9L6uTNsn+{#Cj&F5ZtVVrS- zp~mh8zLy(`=B3XSF-+k7j!CXMCF>>alerbxUc2}e@+#AgihAT zPt_kz%u}aUD>v?A({t*)3^V3P<(ox<`3J@+&s;MCR9hlO@D9`i?xkTfT1<$RS^PxaE(( k1ssr{EJo_^#%JbuXe4>^V!vj6}9 diff --git a/common/gtk-3.0/3.18/assets/switch-active-insensitive-selected.png b/common/gtk-3.0/3.18/assets/switch-active-insensitive-selected.png deleted file mode 100644 index f128fe1b2f65a32f348d2d25d68712371936a23f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 826 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42%i^ zJ|V6^#s7ie-CZF5|Ns5}4-fx;ef|I2K0W>U`N996&whS>2tr>T z{|BP)&whV@1Vn$nJ^b_e;s0+>{(pP==i8(I-yi?^4wQZT>+7Sx-yVa}qrX3%LfPLR z|NZjh@AoIafwJG9+EMU9@z zT0NKbCtNn1bkTIuW%DVQ?WSLLn10!H_Eq<}S3T!m_MCe)dfC-jAX))L*DJQ%tlDz3 zX3NdGZ8y92-kh-i_N0TiXCJ-2?ed+&H}4${IISDF5MdvkR|(%px=y03WhSG~xRyAY9I z^?i-;A4k{zM<;qy-zII}bv-2f$a&R;OkH;8Qj(vx|F2K%U-tXD&7Rg(;omc_7$rUu z>v+3x&D$G2H_thibex!3+-dUf&gIU?$vnH{clk;!{vIdP4vZHDPgg&ebxsLQ0DY{` Ap#T5? diff --git a/common/gtk-3.0/3.18/assets/switch-active-insensitive-selected@2.png b/common/gtk-3.0/3.18/assets/switch-active-insensitive-selected@2.png deleted file mode 100644 index 14044f651243a2e8cafb6a285f0141f35d1529b7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1586 zcmciB`BPIz902erA|O|lqk@P*@MuB6qNRwaKu`|LJ&=evAPI_TK_CzX4@8b|s9X+3 zhtjbHIlRK9P?14o)JO$<2KxF!2rnU&JB1t&lG$z?r+-3sKD*!Ve&@UU!<)AS!GXsN zH&|{U5D12TzNAnXPs6!KS4)$n1?Iw_mFndeuB)qyjRy(fR`0woC6z$f@>nz1oU$yn zf<+6451A2`6whGBrqBpXCetw?k)9eCd!FW)lyc_o{6R|sVQoPq7;S zE&$l4d<+PM00@Ct48RPSgT*;8KMKG+SQrC~BVZBM#b9X?Ed34Svp_Ba@(G|A1&T?a z5C91dmht6fA^2ov315*4As`hhr6QmdDWzj@1{J zswG$vsg`h+9QI5=DtL)PLnR$oNpThIgtK)T}am^}ilXGXA-LS-7)sXlL=z?&6`ZixG#LLrx{g-m)Q=GGu=l;#z@xSAiU= zM2=JMI- zveC2_G#zS1FSMeUTG1=*XjVIV?HPKl6TRMvBL0M)=TkpL45cw&KI62~WT(G)I*X7EX94xgIC=N9kBV*$)OiWG9 z%(qx=wI3}n^Y&*pYqUZAGv^9(~2Xp`;M2HS>#Z&=L}Y-Z(?oD84MHq!=8&TSUE zN&*g&x?I?I!pNQ;N6&Z_sBzb`9h}DF?ZqLYea8N?w38~c=}vv}X!NVnu(hU)+s>)U zI^k{Xyp#vq@7o!~AMR2LGF|udk?odQ4=P(%l_QZ*e$4Q>&>F;Ucm&UaYEk~lv=F8(}f7=vDO}aT;T3Dh@4{ato*wbXHm=EG@bv5QYV(uL3ugTM0)#+)* VeS4_GCh&m~{ComQkGx{C{{>Kpnj8QC diff --git a/common/gtk-3.0/3.18/assets/switch-active-insensitive.png b/common/gtk-3.0/3.18/assets/switch-active-insensitive.png deleted file mode 100644 index 59cf2607347acd7edca601cfefca1a6e53b283ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 811 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42&WH zJ|V6^#SH)dD|MVv>bR@We_yx#l6vP2wZ02#eK(bQFDUh1SMR*2+Id#B|FTNYRjs}Y z>fLA6yDzKtTvhA3sM>Q$z3Y;CH&F1hTJL4G?u#Hs*G09SD{5Vr)VeRJc3n{Ix~$QA zSsf?^6afidRO`O1+I`7w&J~Y2SD@-af)`xpTmc%W+I=~0#kGVLH=-6_jamw_MSsF& zyXlu5reAiNdD(g9W!Kq2bTw?z)yQR6qnBNcU2#2r#r4D$SF_jO?A&vE(*E0%4&R=B z^!Bn-cUGLavl58T-8p{y-ibT+Za;Z&``Lp#&mP=+_Tb6ON6%h9di(y-`}dDNe0cKd z!=o=B9{u_PL{I*Hd-6%ZQ5zU6F(pBM!3>Q2`~ref($Z>b>YAEb+Io66wsxUmVc`+U zDJj`Gxg{l~Wfhf`P0h_Mt!*70on2jB-Q7LJ0qLusxPkGY=;`7ZVsU!!m78IQ3lH7J6$y=d{#RQ})b%ZP+xu|;+&Xp3nKQF)ZF$U{o7&Cd zX}DSPlVwNwV;1HoEAPE3oBb^EjIrVA-x@pfHza1{Wu`R!Fnr1zZJo8Xq$Q&hNw_{J)e#Xg3XPCP<+v@I|dg1Gq#&Tg^!j0#1d!mf8mNAG{ zynMBHnc0zP6Jr^sJYU)_R~;y2{_7O;t-mWnt9&x=T;DvYVNvrVhXV6Thp{mA>$F=11{ zycdS2crI_sJ#Eu_#-hC3cHXh;wzBb`{r>8I;caSsDA(SyYa1xBdb;|#taD0e0sv@k BiJ1TZ diff --git a/common/gtk-3.0/3.18/assets/switch-active-insensitive@2.png b/common/gtk-3.0/3.18/assets/switch-active-insensitive@2.png deleted file mode 100644 index e9f7b102c1bc6dd8f83c03c06a95c3fa674a22c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1558 zcmchX|3A}t9KaVB;~qM?x-ye*`=S++dK9`lG_lCHQQOgVQ%7*VT#aJY0n(RqS zrp84kr!o>FP^qb@_E8sNl1?+?Bkbc6&t89h2!lfDxCHnHdm_cC^>tJ>a@Irm{1E=S zTXy%ZYzW8gz;Tt9*;ClUKIg)xPT682YaEGKGsV`-Nz1Dvws`{tju^)swgDuBLIsW` zu_*wNtnF1f5s={6piMqxQwUkJ$94h|+d?T37$O27fjLYlkm1=7t^l&-NQtar93Zu2 zju6=hG9n-)aHIqP#B)F*FsiL*j}nmifDF%(5m{1V0Z8DC;sGgFF?b4<|JRl)zXCgxo`;(z{NAVmf9;w$N`Lsx4%aM>cpnZ|Vz6f+E z0v)*$CoZ_33mzy1UCO{iW#BjEpj$cUQ2`#V0KIq+g$Gi2kPi>^;X%g`svy5AC;*`v z3a*BZ*FYx_Y9V?p6nYanRVQcE$;0dAXX@qAx8*U7@|Y&Y`6fkNi#)DHk+hSY3+3Ze>xol8exzEE6cp5roPLq4K&=$?J!!MapUsTqA;O2jQE8aGe;g z7sI!Q;l^ROX%uc5h3`nR9%p&TcHvtRQ*bo2v!ZkDo8V}&`hhIPpf9t z)3a*ztXlI@{rshRZb7}Us9r=^QZH%IyjfDed!v5;R{efiy{1L;@3LkkCz6d^o`=an zepJ*39UWcW&-C>5(FO*FMw`C)!uZQATfZ{Hn(wf*vcci-yY1}l9US&JI_-0Iadq_% z2n;%Y`~;0g4-GrX2tN}M6&;hDaxwK%T6%g$W_ET?UOtn>W&;4{e>n+Tv-*+uaD_s4 z58iIN(6e$%oPgC|O2ykGM8)@+{Qg9>Gcc?5ugk9*5Oy zAEz=G`AL)SvKIeZ?VK&?W13l<-X}ENV|t^%}1A+*6nHa23DHT01rL#z@N&samwmMvfh35z&1f7lWXy|)pZRYTYz&&T6UK~7W4J( z2Qzl0d6!zgYUx$o^Y@9w2xD`rKgj2)>l^1h5>L0e$()vNG|fNSooJxc4NM(xiu0tG zoO>M2Y&B}W?9j~36KdRKu4C1~8sA%16yubm3_FYFYn3-?)4+$;E$LOQ1Yu-_?sPEExQ#K+jvS*}Z!9L6uTNsn+{#Cj&F5ZtVVrS- zp~mh8zLy(`=B3XSF-+k7j!CXMCF>>alerbxUc2}e@+#AgihAT zPt_kz%u}aUD>v?A({t*)3^V3P<(ox<`3J@+&s;MCR9hlO@D9`i?xkTfT1<$RS^PxaE(( k1ssr{EJo_^#%JbuXe4>^V!vj6}9 diff --git a/common/gtk-3.0/3.18/assets/switch-active-selected.png b/common/gtk-3.0/3.18/assets/switch-active-selected.png deleted file mode 100644 index ee2bfb61596e7f04dfc28268e6492e2d697c2a92..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 814 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42-4$ zJ|V6^#s7ie+vES=p8Ws*41~Ts`TzCl|F6$}|9JTO$D`k09{u_H_|MlTVD#wEx5t0J zJ^B0XF&I7h`~C6XuMqU)@7G8FzCVT_uri>^#~=j|HBc=OjUe*Qvj=ycK0uSb`|Kf5 z>gcU|K=Sa-`zP<*J9YQITK6T5p39m*)O%Tf!exUAmyIS~GMRMQbkb$>$ye;AUvZdm z#dY>o_c>QR=3MohdnJ15wdiHnVt{D*wb&=?2H*2@u?Am*C!hu^8 z58j$}^!E14cY(GXxp@z0C;K6`Kvh@L-u@Z#aa7Z0DjdieC! z!!I8n0Ufq#dD1Lkz?qi>`2{mDO3TQ}8yFh7y19FK`}hTi2Q#gi5=Gb^s84lC z@l^Gm_9lvhz4zFKMQ)qaqK_Fp|No!G(`|3*UisbmU*=pk-z=2edE?WT^PORRD^*U1 zc+Cvas@^HR<*?DFV@6wTOhwJwE2uqi;?AK(yQg~b#^E?-sDf{{6E7gla1R*<%AwXN73EuH+5$N`Q0Ky z8i5SaG2g3Pt^>K{0UiZ=I1?t;-;oyp@=i@qFy~h|z-wNTQ6R1=6ywVz@g%-n|IS%v zPPw}bIh%Es2G2e;hqrW{#p#+k0o-!jYJkYUTRur}n80-w5u6{1-oD!M<>oLe9 diff --git a/common/gtk-3.0/3.18/assets/switch-active-selected@2.png b/common/gtk-3.0/3.18/assets/switch-active-selected@2.png deleted file mode 100644 index 07387dda8f0e8154a79f3aa56e8e43eb0dc682f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1552 zcmaizX;4#F6o4bBAOQuf%H{$kfTL0c5d{PjgBV$4UqwZbC|E@n83wI_NI?)GVw6Rz zAe$l(KtL-ZTScH0laS;kWO?reS&R}a39^LO7duYt^hfV}=bm%VJ?G55bMDRXaCg?y z(AU6VFj}MoL@!hyM`f$Js?v&gzlti=SOUpMU0t0A9ulF;Wzh!$V=)+m8l@~cqMvJs zI`!h50^+>SM#LqA#+<+;BqUgzIujKe78-rR;%p4L@T0vx2BVVV;p*dr1|#2$J_H#= z5FUbzBFH#`yjR*E`N)J2k%Gu1j7$j;nFx_Vh#W@bVnjZSdq}%Gdg+Ay!PIS>KjYmPJ$kRs8>K(@eT)7Tqk9Zk|Qol*QO|ov|gGzAcAgnM=3I zW$ZwqFsvyIo14sCc}$1f%)NJ*_&|9~88*1#KKbJ0R!;1h09*9=@=bFYFTt`-Q>* zk%$h87?6+&iCD0REf#UaB0vms#UkFYXlPg@8U?{o5FP`?T>;Xfy#sYyuo36g(;XJycwOxY&13$HKVeTBZl<8fZ@-k3!ys*9H_ zRl{m(EnlInvr<=2-@tI4u?f!9+|tT=r=7jyUOa*5;pOe)>*pU36msO`si@OAlsszD z-Fx>Rl$4fLRMyrtHMh34cQ9CNfIB1*iomgP$&^e!Ju^EuuUOF3jqgI=K7~ZY`{?R@ zXq!ITcg|2v+EkpCYTOkVh$Bz5kj*!j8np092la3zd0T_Q)5hTuCPg8Qy*ew~RhirdOshGv)OST|7@8XPXTKox2g`4EjXcECO zW;;<8f2m)O!>8WXx3(@};d5l_NqGxIoAjcJl}6(xNx74e@rPngHW?OI*ZT)Y-EJ&3 zg*QI3z20J%y`5=JzsPGmuHLuOo@O|wi7OAF(oAW40L?3A zRF!_k;>6ba0D-TjQQ;=({h!RNMpy*D)tk*b!|O7x+Vxsci;`b>`PHt+lAxO8jv71R zv9LE`ZvxHDLvcqbiga_`m$VFfyz>*+xwuO4%QnvxNSrAF^RaffK3KG`Ev?$P z4*MoTqi86ogW@73DNkflr>8+K&rkf}LKwgMQ#IagXB#Ox!cvk}b1jfci}2M3+=x~a zqIw(j!W-a9eDl)c?;+865lf+7Yt%X@2PusNxIVf zNqf3U4Qo=WoPm<8a&9s+D@fS@15QZx?%ipJr-BxFuGm?R?Etx{FU4iBYkJ+`{^R5& zH@4g5*=Gc4dODt6-yLq(asH-W=F*(CTT4d9jCy7t6u*!N>TO3y_RrkR8qi@t@!DmX tzu4NR<}FFBoSj-b;JkXxUS!!ER%;>c``YLIO!O~cNKWp=YQnLUzW}2gpq2mt diff --git a/common/gtk-3.0/3.18/assets/switch-active.png b/common/gtk-3.0/3.18/assets/switch-active.png deleted file mode 100644 index f8e9eb1dc66ac434bfc3fbef9eaf747c1e51a831..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 807 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42=2# zJ|V6^#SH)dtMy$_>Aa}aaaFVDnrhcomEH>~T^Ch*E~|81*66vQ)^$m>`?6}+W%b^R zs$Cb=doBXGKvJ#el3F(q0aadtu^}Q*QoS3f5ksmAD(gP`s{5QPU=t9!+-5^XVpm*` zUvVRP$+hUE*MMsDCtS9he#L(J6{ne3oM&Efopr@^_EoppS3?(Fi(GmwYAHxr?DFez z%YnMCC#<-Zv+hRco?DX++@5sk_KYL9mz}<|{LGydXYQ;#duP>|yT@+bJAUi_@!R)L z+_``2$%ETZAKZER;NG(bk6%7~`s(4EcMspafAs$SqmLgRfByLB%g0AQzdZi+<O$_n*IiwHaDEak7A-VTpW;A1>2-|~nry#HH31Ygp zjF&vkn7PGswaGQ1-Z}sOOHW#sxhLlR@psby&pn+V9qj28JNN7Egy(ZSC;6Dg=bCAs z|EPthITnu{1D7TT{& z7D|nr@R5OIqUzH9b0!5|tz0ygR+M8Bxc-eYX@Q&(C wpLIDBPw&JfFqEBJSrDSiX(~0ZN_odZg!p00i_>zopr0J?vUmH+?% diff --git a/common/gtk-3.0/3.18/assets/switch-active@2.png b/common/gtk-3.0/3.18/assets/switch-active@2.png deleted file mode 100644 index c6e287a3f3653fb5be6acc1b77d65805570f987c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1552 zcmZ9M2~bm46o#V#0V^29Dj;qUUXmfALe*AL1QRu2Sp*`Yf*=7=3bHFzi%Shz1PQwm z1QbPN2`W`w1`Ue{VM+2{60(s5i$DRPY|0{ip>^8n%(?ge=ltLNGk50BrFppRGhA%G z7=b_-lJ*l0!ez72Fz}*?%|&fml_kT?_op(=6bj zSuD{v)+;h3HX$&Yf=Eb6unmhi9djb^48=AwI`r0%gE<1R@Uq7NZz2pM=H?JdbBNN? z-AT3fxjdUB2+fk&GWa%`5QZj!wPiAIU26LVs=y`%vY|t`R1t>O2BdVLX?&~eLLgOO zl>*`D?bz!b08@ab^RY|;zytwW2Zjy;%nmeNfMp0VG!Vn!0}R*_STlvzbUud3$It~B zh7h0&0S4b%Yr&ciyBInjpbKEw8n(1)0&5t9879nY=YY1I*D%JMkJYx?AxvtczGDB; ze}~Lla3+KQHR>Puf9=?!QDBab1t|i7u=Tz?azZqY|w=by0W1IZ0N^)$o)3taa-hB0C^Qc zK1HHKcSOE-MThT-j@%Okl!yaM#6b_l!KLD`GV$qhad?H~r%FjAM;ytKL~$h1Rg#!T zlC#y4i%&bLFFKQ7cBa%yQ{j3oO?x9{y_RKiWjS@SoO)Sqz3e7j4YIsOc|nt`ut{F@ zPJXvpUfd$T&y$z(6lJZ7@-}&8yP~Q?@tCiu7AT&9${JAl98$g%DQhK4uB59`s(dT$ zdMoQ{l6N&Lx}a{A19SzbrA0Yk=QAi$rkpHZ>c3Ga0~( zvd|lT>SAU<{pMsnNhML&el9@CWovy%k>OSb)~e}hN5j;qUFj=yT%LpY zvy8|KO18_t;QuyW^t5=IgT3j{_dT*mP;oIZw8tt3%9W4#8+pEUta?Z{w3%Wtd<}KV zYa%EKYbQ>D;8j08r)zoxp0n!}>!OQXE|8q^pOHSn3;cKK3WBV)!gH@coP*eB#!E`lkM7aW6)9?tNOB!qn!8&XvM~#!4 zT+1ovR-#;s-E=v03@~g{#I_|$qE_wzAO#7 zSlhx|W|HAEkEPWvGSa=yn_*i6p9+|n;VvUqB!@3M6ixAmRE!|9N9yNbdjq$&nc#Pn zPw4D#y)9G1uf0Buvv;IMF1dYJd9LIgfHrH3m`Pj^kog$z+S7de(XAvPo*VjN1O5Z9 zk-yg1JUOx64nMu+Sa0QKRCW2KS1+!3j=4W0NJ``pJo0jNVHluw)g`Bt|fC%2+% zRPeL*HPC9%r~m-X_5EU6n}<$C9}H?DR#H%L16D6MyLi5QsysHw$g|P4dZ4U-Q^>V6 z405G2_?(LgkhD!TW?a#oeaA@Z{UI^gF1&psc6-#i)l;3wS<+s~FwS7RzR>!>niVe1 l3+sH+W_1XqT;zjXPM2{xRi1M^EMEH~lZbAF3g_dO{{nU`AAkS= diff --git a/common/gtk-3.0/3.18/assets/switch-dark.png b/common/gtk-3.0/3.18/assets/switch-dark.png deleted file mode 100644 index 279c8a007f9e007930798e9ea6f894c26f050f1f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 782 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42%i^ zJ|V6^#Xt}jR~?3MAbk> zRAO~ZGLWo^PO1irR0A2&AVDw#$W8`H0kuQK!EBHeLP1isZ&ZPAL;+k1!tjkO@Q*11 zvYmr7!DNPONESqjLEDT`$DB#Wf=SncMc0x=&yrQoicKGgtl150_>3L-O&rB6+{G;2 z#Vy?>EIpJR0+byBRe;D5h=Np|g4CRX)ty4rokKL7Lp5DOwOqrrUBh(TBAkLVor5!g zHadr7x`t-^MHTu*6#+dCw3kb~#S|DomL)-c!3>PjGIH_;hDNS#?q1$Le!(Gm`GvFQ z%$>hr>$dHOjvl*w6@{Dw83U6X1>XPO-+E@&$(FNc{ymZDiPhM* zZTaS=eY>Uj4{Glyy1Kzjb@kQMsi#92*6my@Wx2|JO_2e&`rHS?`oBG?ii`=zl{$~wt-rEy<-tQ@ z4RaiYn*ZK%@!zlWgkg?^%Fgut{ENi?TeEG*ow($Xo!Qp=D-Iu0Ye;EU(SH-XW#(IJ zv1yDx<(`+4mvS)V{+;L+5}E0IIN-;dMw>H?tDmSV9^q2kdB$#a%=yEDwreIYwo91$ zS0kqJiR{t$WU*0nP^^NKpeRUD zf@o2w?Vy6gGZ~?LJ)-2YSYrvAV^Ef z%}q&>Ls?p}xQNTuLTSZ9p_Y?b0!g$$@Y0klv6jzQaiv<8NW~GC@FXQ1p_-ps$`+RL zL`sfS!xd^c5*1fc$`-5GqEenz%@He8L||6)Bx;US%@eD*z)Dm+v62glNR(WO@{1L# zI3hLI7zu=u3j)MSo|(mH?EeAt4KV@uZ87x=H3J|+&5>c|{$UnI!k73*EC~p=42ZBqq2VaB6)JKmU=wCp zAjUc{$~Gw4b~Dy4IL1CWW<>~oWoYcGFoI(k!6}UB6b>LEBFHZ2xHahbHIWIfk@2pW z1UC%DEsE-np}I#=J+QQOSehp`(K8xA_uk6zF#>JCK^t+&et0G_mgP@i2M{?ZB4-nk z8yv?Ei4%mx3qliwp$Vce07V>OM1rPD(KJaURT@bHq+)1N3@tS(F)f;&9+Q-@H7OIv z$ig$SVxepTltW0)Au@AF%v>^nl^4g#k7MU2a0;m0Z8WYdkta(`k<)o{h+hN=ijoDz z$$}ClKv=>Oma;^p;HR@eCjb_|?GKLKm7veWaylgmW@2h)Zn4C2nYE3roxQ_yCuhWJ zmo*-qUh91VgMvdM&{5dv7#xkB#DJ2SEKUkPBQravs=B7OzTwz+O(*m%t*1K9oxgD9 z+V$SSp$EecM;||V`s~%j>vuE%%)X!hu<-GdwUgo|Xz*`IxM+rx^W?Qz!QDa^%jqrd z>)fRcx;p997qc6?j)_3QiAgsQkI{%%o!qC3bfiCfriPC1g zClJW(lV_%KP=)nfZIdq!9YmM?78rLb`@+Id=(7>qUGhU+%a7h!+fa?k!@@1@>qgnu z;v~Va1EZ(>2>k;QX&AB_ZtX9s>!Oc&Vjt)Q6gOIDSy%0BRXB$--v1HxQ2s|k${;rm zrE#3@z4>UmKV125gyNSer2FPQ4Z3^n`HiE#+uyvUG3W30h{VTdsz`e?@7LCb78caB m23K^-r}RzTUR?(lPELBWyfAAEzYl3K-nt|_1$Q<^xbr_Ot8k_O diff --git a/common/gtk-3.0/3.18/assets/switch-header-dark.png b/common/gtk-3.0/3.18/assets/switch-header-dark.png deleted file mode 100644 index 8d2dde720ac9b2f2f8b6a017b30de578d7ac9f7d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 767 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42&WH zJ|V6^#Xt}jR~?3MAbk> zRAO~ZGLWo^PO1irR0A2&AVDw#$W8`H0kuQK!EBHeLP1isUrdo-R1sVX!T<^e#FhZr zu3YP^>lLl*6{F`Jqwf`K;1lN(mIJiNH9W^XBF{gj z80ascUAPm8S(23aKyg+9Dvbm{l$IL!Oja`M; zH)NTvHcgm%JBDT7QsZ`;zSCOj-5-`{sr@`7xY}lo!;IY~ng>cEm&zQU5w_woOZ!wV zsfJehNjwpnj0)fVCaJZD*w5TAA9;eoVuMFgp-20!+N=#5*cYTsIPzeF*~Q!X+^P)X zY@YKh-*m4y`u`l`n`o7dmP`EK@|8y3V4aXV;YqXeD%)rGgt=ccJY!dp+!VyruO| ojDp6lY5K3$ED-;^I?(5~yuXX+Cdryz+@R#=>FVdQ&MBb@05Gg7VgLXD diff --git a/common/gtk-3.0/3.18/assets/switch-header-dark@2.png b/common/gtk-3.0/3.18/assets/switch-header-dark@2.png deleted file mode 100644 index 2fbc761e1884e2223889b86fa8513e2687779a26..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1515 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 diff --git a/common/gtk-3.0/3.18/assets/switch-insensitive-dark@2.png b/common/gtk-3.0/3.18/assets/switch-insensitive-dark@2.png deleted file mode 100644 index c19fc0b921e38a73c5e11ede9fa1a5e77e8a1249..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1471 zcmb`Hi%(Nm9LFyp78qFN4Z;v9DivD_R!S*_l@=&SDW$L5+vja5ZvpB1F|P)kfanGz zXmqIYS=6ya(G7fzK-^H7iYUG|brV@wbn0RpI(6r|e__9TPR{pt&-Z*!a!ztvg@XK` zfam}Sf`a%3ToIU2Fjo2b;L0p$0h3P?hcEW?^Sk@72(d|l=}4*yPmS5A;{~EaIKgJ%%I-Ce~)391h2jv zTwweZS6cG%bi8!?^Eu2PxQYA0gA}4VVmdD^a&X>rj+C)OxqV;8vkd7`21#2xxUq zrQVL9P7tC*9l(j`oVZ!k+yT8C2SKv0(gXub1;a4Jz;EA%dqfao2- zuLMHpz+>?=mjXB7s|wWdVb^~N;7~V|obHXomFp6~y0m>AhEP;U~L|H-uTWH7;8abj$j<_;cT+IVW zYx1Qvd>Npw2&cXXt}lk`1xS++paPghDzj8$k!ox*fX)WvIACxCsB8I900q3g$0QPz zL0(?oK0fp269|6({sBP?h{S~>Kq4h3ucA<>)RYuj+Ug8uW{I#= zB$dkKau`vnbf}@cs=CHxwpeX;hr{W@uuYpk+tS+B*51DL|E+=VlYWID?~Q!!C*sJc zC&P2u*BfI9&#Y2%5^rjd8vL`>bhzuMm*z9)P>)GdX}Y?P)V8b|rJWo9<4SE!tmcF} zJBywD%5`zWYthV5PyfU>_p+#x$<*{eGgX4R=|pGxl|_WEsW3^(*m_c@oRUoU7M6g)0i8b!F(M6}TRlV_Paom{cT&#R&FD$8mmPzr zE>iz0${uOmK3Eu0aCzO$k=BeHRp#{JoxOYg^T)-}Q70qQVjgLFqk;!E9&fNDuI;wi z-foSo;RMyaNbJLidl&A#=zP$*C-4n+^yKY?(jVkOEo=JZ){W#1e=ou;cVfEzdT8^y z!^s`@eEXhy*@`j~c-)C7tZjSsO*i-KLtE9-&SCbE)z9LZ&p^GYg3VhFq(R+zeeVAJ z=G(*1C%B{Kfw>1;3Z=0^J0T^rs^UPwC{3EXuY-I)&bwPBjn!JNJwCz>dlnz+EuMqK zmM&>*!&hsD605T`Be!p)NbZ#0823BsML#*#b;MM1wRyjh+!44f)wtrv^OOT)B|~!J z^2d<*$>%%l7a~FyM0+mnSb4tow-Ayni>pE&o%S5gt6$==PD)tC@8rMF&GLfBC#PZ3 znv8>I)uhSLLx(2lse;~Xn)cSqJ(J~+3U?<~a3s}wGjy)xE|E-per#KnrVRgm@_7R8*BtGpe*w~OLGJ(n diff --git a/common/gtk-3.0/3.18/assets/switch-insensitive-header-dark.png b/common/gtk-3.0/3.18/assets/switch-insensitive-header-dark.png deleted file mode 100644 index f0bd5856b3c065100060870eb9706af2ff19ea38..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 769 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#T$MgIeQ zLR^6~5QK)7ho*HT6f{I-RzxH9a{bYf*>d~IY(Rb)y- zWKwlZN^MkfbyPxiOj1=$Qf+i1kX;p;`M)H{FPMRmpI<;wN?KY?O6J@_){kbwx> zh4oBIU5}a?9`tF42wquzA!5;{#Y|uK{oj1zh~M%h#y?M5M(lFgR+727u{Q9Ont+)7 zit;;Qr{DVCc(PHzIpKBKB>$?MqP?8)%M>*f(sDlSVNQMP7trzH#*%4A=9KDWHl{32 z=00$YKT|Dd3RA!j72oN~vyz{^7Y{39I2U_qhm7HZhcm3!%wbw#wWQEumH(HIr@cfS zjw<#(SfRg2?*D2Ai(=2q&pHghvYVtlWpUW&Jj>4A#Qn_T@UU-;Yy3ToQx}Ucy#6p( z%)`uTlfm>o^@{}_ZuHC*^@6%)3vc`{H?Rw*x+zRsUw*sq@;kqqPZYN|ZTJzlF=umQ etlqn08*}O(hcGE-NGqNMB|uMCKbLh*2~7acCMfv; diff --git a/common/gtk-3.0/3.18/assets/switch-insensitive-header-dark@2.png b/common/gtk-3.0/3.18/assets/switch-insensitive-header-dark@2.png deleted file mode 100644 index 4af14c49d1b732b211048a2329efede55b1a94ce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1443 zcmb`HiBl6-9LIww1T%1j%cy9Xgxt~E7S`e1O+QIUbMDa5Bk>r3;oUK&HMh|`@Zj+ot=5LVo@5) zo$bzGFj!D}iUiCA7!gcoT3JM^!Q@=Zhh$79vu|MOBhb1nPlrnx4Bun)aLQ#j`hi6s zb83!RT5K>|@e)15YPE8WUlo>W@#T7MaY^2`7l~{J!|A0sOO^`EpvK0=D2kHP)tXET z3M!&YqXF6^H<^S6iXdtc1hiJUp+>Bsa&s$SLn&;aaJ&M;%(=NFqN8$fQf{zn^2;%u zU8%OH4R%ypj%q2D#*S%ih`|BtY_N_}5)PDbs5CZ}-j=I%sB{jDAYq~c97jNllc=@= zAxIE{5;ovOaFRA_9jJ~}5#S=ANffsu8XJn+5W=nkT1$QwBuda)rL}_uL~8?n6bRf# z$I@wb6>Xq*RfO&Hss9qdr4Cmf-<2nD;|V6l0a96jgtRF%(9{HIdLrbRnCX=yWG9Q* ze336-?9Uem@@0VnNsvGmOrr=+RfNzeLjh^Zc{K1m2o8ska0ugOBHTFUcOt@GGn}mo- zgp`Ugiv*yy$kY~vx=f)iSK#GJ8XHVwhrw49_RVjv^n(Ar&nyv18BR{)oSnzJxVkdk z+}v4{r%ajZ;psWU%h%68U{+9Ya7f6U@CYt9GIGI!sF>LJghflm*%F09nUez}D25X{ zy|JLsY$>yrSJ-T%ouaDNtgWf7tE;bH_y5)Jl8-AGjByqyWr@t&=lS_}>TZ*t>nol# zJtb`TD!g$%Z)m?bKDvLs@^O7wUH;AQ8vJ0E(a3QW{_shBbVk47ePv?OVlruHvEy0A z3whzfBPCDw*Q?5|osW6bt57?3=^EpjPQ6ZXUVCoBqUx5b-j;>U^GcwSm^zM6<^6SW z-yZGR-PW^uW7ciF(ztT_yIZ^4_S_r&X4BKPAJU&p%vRoDL&vW%-*32BIuc!{-#XY4 z-~oM6BauFIIbk9%gi4s=JC}w=k<0f6Lihf;vZM8B*VmZ6rk6XmtIa<;>{$Cu(T867 z*_6S*PO#ShbEvQ(tLbHJCroAhG_BrLJ?+!Lmbp>LTlUSiFAt3d7-}A04(Qx_BeXV5 zKi~6$?A`cs!IOi5uYNWBcv1GtD!!}y$To@>dw=pH|DrB^bGJ9u<-uX~Gro^tB;@B^ z_iW5s(=vEq>u*&}r<=Kgl#_RzH?x{w_QdQndobFiWpq`> z?V?W7Ie*fvn@wSlIr;pSYR;ac)amXHR;-Ir%8lB$Y&E}$v!t_6xcmt#S;WLek78s@BQCoH}nr9UGg@~cxBYzfV$1W*XVBnDb1O%p zy}I{qx3B8G?lf|rD>W!p!t`gs7Ws|F{>`>?+tP!Qu^oCsn$xG9edv95K`R#72 z3VB`Cv2HeWeDJ}Bz*>9INGlw%0$yIDMl{x;O{rL#S4Q-N19$&E;$s?qxYWzC9i1C? z#=YUrA9=;fyjP_m8Q7aE?&zRqp#5ZPLc!s~oW8Ad3XJhDKAd8YK8!bx?rc{(_Wx}B Sm_uBmpGYWGl+wo6RQ(IMG*M>& diff --git a/common/gtk-3.0/3.18/assets/switch-insensitive-header.png b/common/gtk-3.0/3.18/assets/switch-insensitive-header.png deleted file mode 100644 index 9beee2f8f79272736cab4900bf40f160d1fe8ab6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 809 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42&WH zJ|V6^#s7ie-CZF5|Ns5}4-fx;ef|I2K0W>U`N996&whS>2tr>T z{|BP)&whV@1Vn$nJ^b_e;s0+>{(pP==i8(I-yi?^4wQZT>+7Sx-yVa}qrX3%LfPLR z|NZjh?{^@2{QK*pXHTv?d35zJQ03PrVDiz^$Jbsyy#Y~t_3FtRH%|Zk_7K8NscFt` zY|n1&%x&zij&l?V53 zJG_6#Q6M_J>o^GQIdOE)iQ_=D_tc5KmoJ~VdKHLH-Mo3``ID=^zX6^7#542mc3`-~ zlmz(&GcfY=3kXU{ORK4=Yiep~>*?9p+J%ONg-0Z(q-5vhmXws1Ra90sHZ`}jw6wN$ zbaZrf0YP^U5n$!%T^zu8koRf;V=X>!Vb*E>BRZ`+NlK zfX@X>S6O|2nLKG{e5-opy`*{De2tcS{!qHvm6 ad;ipIQNG(T{gZ)F!r6!b&WJC&9c%qGYd^qlL|F-^ETBY zgtVGwNC@ki<7%zqg)xFLQUVdbAZFzy%=I=N}pAhZ8zOv%ukUN4W!z@N#$pUuQ4+{n9dBkv*v56QoT&%aE75U=JHrsm(x zC@jt_EY7}LdZV~B{{bnVL?V*NL^8RQN-d+&NL7E3s;kJ*s;ekuGKB)6P-?2FR0_4W zhDM{(YHO;hXjP2bY9_s!$*8HWs$tP<*$hSllgX%MHnLdES{9SeYGSilbT*5@Ze};I z84b-1jSb8uNF%GciS>6ggx$(%ZfkAev^H|OT06NfyG*okd2KyB4v)_f^mg|4b_oR> zp`cSJ?CKM8MZKM(-Y$`-M#Qqeo26pkwUMo0QSj`WRbTt1ZN^=W^fDrO3yMgGn zuSvLSdD$)^xq#Mr#7BwE3SWR_b$aabY_4waPHjne-d(AT#~LiLC5t`F-?d#zUlZ-U zL%*~spd;MkRh1K69vW1)r;ixvKzsDry=22yUFq(UBJ{9F&Nv*MU;Q%h4c zm0`Z&gAWonI31MQA1|F&FUqQXL#6U|bZ8x?E0T|V>$LJkR!H(mK~auntnY?Ys_H;H z7Nvikn~3M2Y+X(uvA0;EpU0d;n9z(U^!STdSBo9Qy^$ibH4|n<1q8HW?Ng$sd;Sf= zFZC5#`Lp>0yVC?{hdYF)^^QOmRG3@7KNmB1tn~9T8@KY@^n0#rz^d9$*~Jr$x#^6q z+Zh<=!w#EU+BvrI6^P$@B=dvcs`??XjU9*iyPw8b*hi@RC9ks)xw~JC;9<_Lp=ILe zPXsPjWLRLvdF)~380g?oG9!(PejcjI)E91j_#?u2Ac%PKO?^MFypJy=aNm4KAtj#r zA;nqq{@(F^ZqakwidrjU8`-61>S=$e$?fh+Z*R8rY9dSi>ufFEQTu|)` zkBVNuu6r^r*l>m{70Xi!avvqV`}t

y64U8UO2aZ;le5N=1p7-M2jb` zTQzIbs(I^I&)>d&@s_m0on-=Zdwru<6C406m+p~4m-fgSz-8^yc=E?gv zkKYH9w~jx$b?W|&6K|hge*f&++hZa#E9l z09%5H$Q4JS?~>nZua`+575)5=U$u!#B_ulTkH6)U)g`-jslL43c|>@Z;{=H+B{@!^ zwfk&h*8g_xT@diu&~kfne-5{X_i6vdf9BrQejXnpc+~XbqVoo2ryi@i$xgYo!J+I& zu;z2;(ql`zR{!31mA+^Q2!41`H1L1{|murT2yGsf&&5olt$bMo;dLF|58vWR9hRQ4THfD2oM4ehZ`G% zj8P~f6bgm5ut1|N?Cj8Xc6J!dUMvQK#bR8XoLpR-2m~C7sL&+B- zD0KR{xELCP5y@agr6$IvCdMTvUuG&WvYCvGj6^1rk;P=>fwGcs-b^gGnQ}Wf`R?tk z!u<5Y!t~O@bXIXDt2np3B)hCEhsDZ!c(35$y~65>;<{?qGxmdq`bth?RZ~M{>+`Bs zPW5X}HMjZktJb>LTy`7xY1_*uyqERu@1F7%o_D@$>}qT1;x%=*H}>&4J^bc=esfP} z%TRBNpqo3~|7LXH?bvYJ2f-WRaNERin{bdP8s-V#^F*VdzeS_`$x;6FSf_%pOCsu; z74=F)-BMAHbh1}E-T!HN0JJC_mPrR?(jn0Dm(k?~;mVgW(6_}2`O<$DMe?PowUsIP zl4yNJF(~%s$+czi`q$}=RmsM8$;RqT(8jS{V6J5`Cy5?_lCp}bn))UPbhCyQOnd7# zogKPxgdS2~U*EvMz|hdp$Oufy*wob2%*-52YL}(uA695<>)pF;z}mAHEL+=s`@r1n z?e`zR96adY=yVwCjKkrMy5jN2{vr?v$BAz4?k7&1^zb_6eTGaXpFQj2nSOzsZ3^OW@gryP0lI+C{yvyhdsUD$qMDyn%Zu;VZP6PGOE8PCt?w8na4PlA>a_`I;@gO2hn2bi3!c<2pPx0RkN& z!HnjN#=W3=dF|HDs+eZ&?jov-vX#D$$=va^mb=@DFUm8vl!j#Cj&v0ARDa-DO(lGp zmz4Gk@+q1%-&pR8*J?1soim#GEpR3WCYX0{BSTCbO^%f2njoyTqv+peBq_PIy({=r zn_R5+D9g5JX%t*cf?e|bcuObpY`%%QvRPllO4|@|q#jPwq2-&f)bRbqFLcGZ>zw%kY=z_cqGw zr^U9$heXZ&OXg5RUB<2a;;m3{2iT*bjSVKcj95?YyEpfDG;puQlALlg;PB zx{Dk4PZb}zv6{%8DGMWc^i9dwj{yq%ZO1<~okHs~S0~4+G#n3o&~P(9-ele*8>cLY xxEe?m@g3X7`ASXIgoAqo(>{y;oU4&c&)Jtm>wH#;n{!uudUzbsxen`>{4Znue_;Rs diff --git a/common/gtk-3.0/3.18/assets/switch-insensitive.png b/common/gtk-3.0/3.18/assets/switch-insensitive.png deleted file mode 100644 index 10ad419b7d17daa257b83883ab3687496c571f53..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 775 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#T$MgIeQ zLR^6~kd;>6k=D^s(9n=s(Vo=M8CTtsQQeYS*^t`MmQ>T6Qq!CWWY;#ORJEoww5COrK0mXrAAS1n|IjyQG4X6glsBTKFX-)-_K*eA#P*-YIb81a1P%x#Y zv9@m#P`s{xGE`+%b5-wzn*K>3*{bHWn&$4AGrMQb?wLEcZ|+>6V0?CIA`lf;B^A~r z71sbw02y1;T+=hD3#e@NT!_m3NB0~&zW4C)y;rZEx_bT8^{c0@Uq5y8=9wptEkMup91_L%|3|j?s0o`H|DIgDp**;p52Ty zY~JzZop=4C-;dYJy}T11)UhVM-@;^z=X0a}fQKg^cU)JTd)=2MEYG&@W6q__RKwIO zY&PjGQKrlXZmDZmEt$$3@N)B^g)EAlDYqBR6l%E4seNpULhF=AbD54a%(Bz2@!GIN zAYWc2gDK<3njec*G+VZ4Two|LN^JG!4D!%aVeMm>@_S8zhNH*nNx9u=WejV+MO;)} zE5q>k!R+Tep06()2>JGGda}*zlBm-hB67BU6|$EqZ#Zbwe?7dg(br16(k19=`th%| w*I!OL7n{jh`0{PmT@~KVad*9vFaBfX)qnjzGB+2Pd>I%#UHx3vIVCg!0N8g~1poj5 diff --git a/common/gtk-3.0/3.18/assets/switch-insensitive@2.png b/common/gtk-3.0/3.18/assets/switch-insensitive@2.png deleted file mode 100644 index 15b7e098f039a92a3e8cadf712e99b32773ac6df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1578 zcmcgs`BPI@6b?m!qyvv8W96X zL0JTiAVX6jLxBd7I#C-bWf8)r0-_ReC@}4fKlD%NneU$ao$s7`?!7bbT`?x)q&31B z0fWJ;gH8p6gBb^grMOs-|4ULD6fe?P-R9qGe=5pIK%o3f8T!DzB z1;)}Ms3aN_dyxoZGMT8<3`!Ordx40eUL=>j_H~BAKJmkxi3|kAFxWr9AP9W1$1Bw zKnOYzIecOcpUmZbBqB0b2y`+KO<5kE!zXb>M6eO4l;5onxNgPu* z;6Vzk`Y&Z#@=*i??2<&GCs7z!3LOi4Is;2(VW}K!CI?4l;egM|#?f8ghX{;Z z0w63NfdgP_Yq~GEW3C_#%A)}A0L1A$F%>`{q322IVktvh$dJfb5*bG-%PlO_U&m)~y_gJgf_v-b1`hmW|!G6Qo<4MEQ=}7?n%jtoaGXt|TgA21mZ{~;I%@4m@ z7&b19E&;q5T`?L~mH;N#mL?5j=6dk?XlUUf5im2ePt48NSy)HlNv^Utk;e?lG;a#sYI-2Sokx+F$zM9)n1YNM>JPk3Ct#zB+q}uxDgB@rfFd@VeDF#PXFHI~D{@D&y%7{E19en03N>zuHcMucMEu zOLwT~)x8g{`QpZ4577x?iY;Q?E7T|0sc;sz&TI}5Bl3y^0mD1Cz{WWH>$lt{tc41+4 z{BKJuX5|*TSc{Fsabc}*kH5#_zD17vgB?|80s?CgY2*5Mt;;byGGKD=Qhr~8N8oCI zqJJ~f?Ur;pa`*FFn?)21e5JJAWe26Sy$oA)5+3muZC{0f@8=3&tEThZ5MtXmHeX6%kYH5@4 z;o)J0G3^6-!0GSC_l7MC?u`w)sf-hsj7HbxU8#|1#ZAXJg5$ONBKg*r}exi7P9)X|?+?mE)n{W1pke(JZcUR)h13P-AKr!X{L%v)>h8@M=Dt34!k?`8 c(OA)1F>!_5vGzc+XnLxH0z(3t(8>IN0nM!cu>b%7 diff --git a/common/gtk-3.0/3.18/assets/switch-selected.png b/common/gtk-3.0/3.18/assets/switch-selected.png deleted file mode 100644 index 652844e8646928ab43230987d41c558b75ef81cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 726 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#T$MNa~J zLR^6~RRAk1YkqcOb$M=0Wqxr%T4h;INnys^8QpWHbwm^W$hf+lSWazi7*b#oIP4-nwzo_RULnY+1Tz+wwg-R_@)t`rh>u z_imiHd;R$Ro5vsAI`QDv$p^PjKD>GI?XxRD^yb-BAbR)w+LyPt!07hRPxpc7*XIYn zK0W;X1%&>7dwim@%^m1T?~)+DU^Uy7|f9`|VDVx0a+gNdH?M z^TgWo*%=pscd~|`CIoQ`nTqyyr2b7k%8-&=DQ zK523-mfO1UYQw(0ei0hUn@&8Lc#l=$2K&Sw^mH46Us?+j|6?0_HTGT(y zh;Y`}-;g+q?Sbiql=;Xf;P1^E!ApMTRI6wXvBUHt=(8kOkyv!r3O(XMXa%xDr#-C zmTHQk_BAMKn;`b3=U9r0E==cZ=6{%bKKI`D?s-4n^Wtvf4bBKk2!cSMGe(BG=0GO^ zsQ@`~d^JPywNIYG^zyJRyz}ANw#d zHat0w!bpfrNsLNQqGlx1veV*n(&;%_^xTZNysY@Vti*!cDb9(2e`xd9!fTbDs^6bF!?BEJ_aBY5QePMWg zapdFT$mZ%8U}JTBYi(k8gR{HI`Mfy|;B9kx+q1k+vj;nKfUmp9zU|HbYXPX=KQA2a zFCOuh{?kYCSOr#u6=;sP0P*pkI0^pgXNcgb(`ST)p(3JZ&q-f^U%VtEds*(v)$52G z3Q8)-o4=w^C^TACRZU%8{WlE^MpN?^7ORcZF*GtVHZjGUTUc4y*xDV(@AeK3j*d=u zom~h7S0a(*=Hcb-6A(lW2@MOUP$Hsfv`4XYdVFG13L`ZwJtI3OFR!q;q@<*@to-?N z=8G3EUslz;VzJ)TH#fJo_4N-7a%SfjR#w+HHn%_R?C$OFA07S87|-+q);-EdSKHFI zV>8RfUQ}D`k?3NouI#BAVKEg+q>fniD`Nu!jyhVt$ zL{fh3PSQ5%;BkD&!N#?{ME1CB^^8_TffAOlWzxs>`yoXRx`Ab+I%^&5tsoPYynyuxR;cbojVFt)ghK(|$oK!fK-yi6D#`-M=}mDMbtFj0j4Z%Vnq+p;DVv$!?;@($$pSL)R38`%~Rw~G>UL*Mr_qXy7w7e$ls?U zQduK@!oL2Afgjwe;J}lWKajM^_EVLY)bwc@pV#5ktqp&8Rj38={WA^xB^Y||hq2t= zcfIqI=w>!`bjSO>t@1^O)@C`=$~jh@%e0hVrpg7GfT}Qa<>HH9whRTpavG}E+Y!w* cyk1-c2zKr(T+z3kq=(n7#5qU(1LkYHjQ{`u diff --git a/common/gtk-3.0/3.18/assets/switch.png b/common/gtk-3.0/3.18/assets/switch.png deleted file mode 100644 index 7368c5dd10ea5df128d48e0e75661b7879d54c28..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 788 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 diff --git a/common/gtk-3.0/3.18/assets/titlebutton-close-active-dark.png b/common/gtk-3.0/3.18/assets/titlebutton-close-active-dark.png deleted file mode 100644 index ef7c8bd2087a2f9d7048f1ccb0d298782d067c3e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 446 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(b%0NZ zE0F%rz;MRc_@=S(Z9~I5dU|(_^luyL-8MG3ZKQw4*x-(l0Z`z;7XCW84inSo{uy4MjEu-SE;53!W?Devj oPik8~opJ9)&HC5BH6PE{Usx!@7_l}z73dfSPgg&ebxsLQ0Na|Wng9R* diff --git a/common/gtk-3.0/3.18/assets/titlebutton-close-active-dark@2.png b/common/gtk-3.0/3.18/assets/titlebutton-close-active-dark@2.png deleted file mode 100644 index 56b81c04834301e61735bff55e8405d59ad523d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 655 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ED*}8% zT!Hj|Fgjyw{7_f-v8DEPGmV?Z#&-=2?wRP{G19vYM8*cUjeu2gOKm~U}Dh+_@K~jbWw~ax1f$TdVhCY-u(g&IYL_objLv9;_)Z7K>0;>UP zgeZn`A%ak{^?1Jp(5>brL4Lsuj7+S8Lc$`dW*)wwVc`)`aS4e@$!S^j4K1y09bMg% zCQqL+bMBH=TX*d~cA#-pCZ64s(SGQHROWK#rV}T3%fwvCs)^&*d%BZDKh&VDP`7s8;gwAy z`O6;MJg{S(`hm$!JoyW+H8*~gGzdL?(O~K|Io^9yuW2!Vxw3P4;bK4j7cZl0y^?<{ z%r{KX+8TB|LANI?OP7~-c|s|R*?Ay`OD1mF1F;;vr(*9!QYuz93FoYH%d-re@W|Eg zUd^vn4@#}3KUZpUervKMmFsPQ#I`9w5+VQq diff --git a/common/gtk-3.0/3.18/assets/titlebutton-close-active.png b/common/gtk-3.0/3.18/assets/titlebutton-close-active.png deleted file mode 100644 index e7d701fb568d7a85f4dd1f1a98475221cfea719c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 441 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(OMp*^ zE0F$VZ2Z~K_OqVVdwq)!hE^X8EI;alk)g#$1FMgQmLGv429}=;fLtgWg<)j<(b(pb zwbLhS=kI-8-zWEdpVI$*#-ty!ru>*Y{l~JoKUXgJxpLvpm5Y9^TKseM;-704|J=Ot z&(kY^KRx*S<>B9NkL_iR*8$xjS`y?J%pf8v78DZN*wox|_T2dkA3lEi{N>+K^}rIK zf;LYV#}Elg)`N|HhZRH^4m7(v<{J0@|KA_|Mo4z)QEOmeEOPy7^}DlWmzcpkcE`P} z6K)rtO!DPw*^(BiU6ZT1_P$PN;D-8XH_Jp4&(3-7UinYyZ>sRix!Zd*rEg3-zBor> zQ)AWpzxy6cII@=Eg}w2a&8i3P=pQU~Y1qdv^hD}x_7_eDhW{2tdKn$ZCe8)Ah{4m< K&t;ucLK6Tay}i!> diff --git a/common/gtk-3.0/3.18/assets/titlebutton-close-active@2.png b/common/gtk-3.0/3.18/assets/titlebutton-close-active@2.png deleted file mode 100644 index 83913ef06a76cfb9e4ffbc9a7b7f4aaa6d54298e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 679 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ECj)#! zT!Hj|2r@SQplkC{+wzl{*(YP;j|S!+^({XdS$;IM_@rm?!NBr^z6B6{G_?9?X!*gw z>LU>8TYfUM1ThSNBq{>xg@^#v8(Duew)v8f_$49fOJ>&BqN16e zQ2(u^@mp)tx30Et-R<9cI==UIeDCY}-rxOwLihK{eLt4Y{jq%h&y@>*u3YqU)#9J4 z7yn$h^yj9PKew#Xzz}0p^>lFzk&v8v@MTn!g9O`!a;FxJXi>@S;X2y4 z*RJsi{`2ntq9nE_C*QU|Ptc#&E<0zzwHFg)W4UG41dE<^di{t&`;Jw3i{8JFrq^BU zxblwh`tnvGp}rSA6KE-BX*FHH=|+}okTTr{D>=JKuOUKadC%3I*<171c>c(;TshmDsE6ptz0>hTU)78&qol`;+0Eo0JPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(W`IwK zE0AVj_zwj8_wQe|>e$Ym2e<4wya$Z7?>n+{=l-4h_ix*CX#1W+JN6ykwg2djy@z%J z8N2rH+I3{t{v+G>8~}>!-hFWQz9Tz!AKJC|(2m`QckDg9bN4|o`_OKn`aK7C?m0Yj zQt2$9Rmvqne!&ckOdOnwN=j<#8X8)9`UXbECMG7PW65xx%F`!Fw+yrwZ{Cp@cxTu1&DmW4elmS_6u6lZSXv4SB~MpBmvv4FO#qvA BwvGS* diff --git a/common/gtk-3.0/3.18/assets/titlebutton-close-backdrop-dark@2.png b/common/gtk-3.0/3.18/assets/titlebutton-close-backdrop-dark@2.png deleted file mode 100644 index 1742875b322d862d067212adab0d90c0ea3170c5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 615 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ElLLH0 zT!AzL!+#*y1_HPD@87?B_wJn_aB%D1qkHxo-nJJAj_%m8f9syZK<@T^M|SQ6syVo4 z&!L_B4sYLcV8`A=d-sCa+jj5Yx%c3%U59q>KC)xa0U!ft$c{aSfoRvhBRh5<+PU}e z&OHZr?mV<}&!O#m5AWE05X9YcWY^w9K-t|uLqOca50sFMGa zA|W~T;LWlo0|wRuvpo!!hONAMi#5ZwlbiMZ|N2B|;} zh)L7U6_zYcJX%u6*pj-F<%6?&Q)$9mX@?(N35RDjPTeecICAsE#fxtIbb2~hmepZn zXxj>w`kcxYPu7SQJ8&d~Z76F?eIcUX;333#hRcdA%;h<=0Ow4O2b29+ye~&OsH{<8 z;hi)4Wf6Se%y;T`;l8rR$o?;{$;UAEyJ|x#Q8&H=gP*s!!dpJZq>> knsV;RO_!)gd`mxc)Sqk%y)7$SpazO(Pgg&ebxsLQ0J07g+yDRo diff --git a/common/gtk-3.0/3.18/assets/titlebutton-close-backdrop.png b/common/gtk-3.0/3.18/assets/titlebutton-close-backdrop.png deleted file mode 100644 index e7e1c0d680ae84410320312fd9e28d41cdd24ac9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 414 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(a)3{W zE0FH%>uYFesHy3yZ0N0S=&h{nDsSk>t8LAyZpo@{&#G(Bscz4xYRv$PQ~}l0^;9)< zrB=68H*}ZRbyWdTV^3v6H;|iF(_B^81CdIr00=IOz zNB;c3zC`78ccGKf@ihLHisn^!w^^>;q+jdvLG`z>(YYxaSDxS2s}OSJ-Md}Uq@JTU zfkk>#{4WO!mdr&9pDcc^5V7drj^_#m588J1>1@yVkaEG)F=UU~V|Dp<(VAC>zADwb gy-JL2_v$i_nO-QM{KL?D7tk#Xp00i_>zopr0Mq`RtN;K2 diff --git a/common/gtk-3.0/3.18/assets/titlebutton-close-backdrop@2.png b/common/gtk-3.0/3.18/assets/titlebutton-close-backdrop@2.png deleted file mode 100644 index 28ad9366b4d523bcc93b167735c36ad9943556f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 629 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Ea{_!q zT!AzYG(f@p!oofvsHkYKXy~u0>8fn#EvxCQsp+h2=mDathVF`n?y5QvH?OueueKwr zx;>}5B?m~>wddEhXH>OjfW%u18#>afTe7NKa;w{m>$);)n~Li?OKUqyYr8V4nyMOl zE9<%|8@sE3#sbN@o@$V>J*m|#Kt@_sGtdek_gmlXSfJxfN`m}?85o&3I5;^46_nM~ z)it#ATwFuK!oooy0th03ASya8E+Hv7IVCl}ps=W@xVZSlt=b$021agA7sn8d^HV3k zENe0lXbomvm}Q#49lB<>khs^QJ^y#l^p!BF`ttAO%-<7JjLryr>a&{bzC_gRH`9WI zz#F@k$FfcBJKV4KB`HJWn*p!H9S!~q_hjCcteD($aN!TH{RdXgtDU&h;;w4U+UM_M zSMjFZ6Q9*@tY~!dyuFi8k8qaE%mhu5=PP6W^*Ec}yS@8Z*Xg}VTiGt}U^udLQg)2S ztLr=eX<4mG-rxAs<>Alz)QTSkdd2$QifMPG)N9S1tHqN~hRZB>^Hqos@nc+;I@Kz7 znrq-$;~25%E2W!E->F4DUNmXn@98D+zZWj~yGPbzf_=7{yY{wxsh`5K1u{F1HEf!^ kMrH9j!wt?)_L~-q-|0zN-tPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(b%0NZ zE0F%rz;MRc_@=S(Z9~I5dU|(_^luyL-8MG3ZKQw4*x-(l0Z`z;7XCW84inSo{uy4MjEu-SE;53!W?Devj oPik8~opJ9)&HC5BH6PE{Usx!@7_l}z73dfSPgg&ebxsLQ0Na|Wng9R* diff --git a/common/gtk-3.0/3.18/assets/titlebutton-close-dark@2.png b/common/gtk-3.0/3.18/assets/titlebutton-close-dark@2.png deleted file mode 100644 index 56b81c04834301e61735bff55e8405d59ad523d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 655 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ED*}8% zT!Hj|Fgjyw{7_f-v8DEPGmV?Z#&-=2?wRP{G19vYM8*cUjeu2gOKm~U}Dh+_@K~jbWw~ax1f$TdVhCY-u(g&IYL_objLv9;_)Z7K>0;>UP zgeZn`A%ak{^?1Jp(5>brL4Lsuj7+S8Lc$`dW*)wwVc`)`aS4e@$!S^j4K1y09bMg% zCQqL+bMBH=TX*d~cA#-pCZ64s(SGQHROWK#rV}T3%fwvCs)^&*d%BZDKh&VDP`7s8;gwAy z`O6;MJg{S(`hm$!JoyW+H8*~gGzdL?(O~K|Io^9yuW2!Vxw3P4;bK4j7cZl0y^?<{ z%r{KX+8TB|LANI?OP7~-c|s|R*?Ay`OD1mF1F;;vr(*9!QYuz93FoYH%d-re@W|Eg zUd^vn4@#}3KUZpUervKMmFsPQ#I`9w5+VQq diff --git a/common/gtk-3.0/3.18/assets/titlebutton-close-hover-dark.png b/common/gtk-3.0/3.18/assets/titlebutton-close-hover-dark.png deleted file mode 100644 index d3a7a7d84f250cc311535435e2de7b47c69f29f2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 446 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(b%0NZ zE0F%*z;MQx;f$};IZug;ZsMoB#ZLQ(p79nvehyew` zDnVQz1EL0~;51kkNP?8%MJqYxE(BVyQ4-`A%)rDdA}SUX5*iktkeHO5l2Ke%S=Z3m z)ZEf`_T2dkA3lEi{N?wbzyGfC%W?qqGCA@Vc&d5TSmoS!D%X$+3RI5pVYQ~I^*7pn)R=L cYd)T@zpzk*F=B0cD$p?up00i_>zopr0Pj|&f&c&j diff --git a/common/gtk-3.0/3.18/assets/titlebutton-close-hover-dark@2.png b/common/gtk-3.0/3.18/assets/titlebutton-close-hover-dark@2.png deleted file mode 100644 index ba8476501ed759b7dafebadd5f38df87f1159704..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 655 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ED*}8% zT!Hj|AZlPZW6W^LoBx=*%*jCMGrm$Md_+(CNSyK#J>?^Q##b3DDES61}F|z0Fni+1Z(5>br zL4Lsuj7+S8Lc$`dW*)wwVc`)`aS4e@$!S^j4K1y09bMg%CQqL+bMBH=TX*d~cA#-pCZ64s z(SGQHROWK#rV}T3%fwvCs)^&*d%BZDKh&VDP`7s8;gwAy`O6;MJg{S(`hm$!JoyW+ zH8*~gGzdL?(O~K|Io^9yuW2!Vxw3P4;bK4j7cZl0y^?<{%r{KX+8TB|LANI?OP7~- zc|s|R*?Ay`OD1mF1F;;vr(*9!QYuz93FoYH%d-re@W|EgUd^vn4@#}3KUZpUervKM zmFsPQ#I?6A4oUz3 diff --git a/common/gtk-3.0/3.18/assets/titlebutton-close-hover.png b/common/gtk-3.0/3.18/assets/titlebutton-close-hover.png deleted file mode 100644 index a1ec77a8e9e760ca2a5322a1a77082c1b219a992..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 469 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(dw@@f zE0F%w(DS*i?Q=u-w}v(lYHa`7(Dt>V6+%v`ZJAQjGP|awySBNnrg>^@b8AgYQ%!SI zZEJl^OG8adV@-2oO-ofxGgLd+khJRN?+tBl>w)I9y@ePHCR3}MzcjP~5s(3t0%`#= zfaJqlpPYeC(Jl${3uX`z6$=UpZER|8*}s4PfddB)9y)Xw2#%dScmBfb4ve){P z&11v;d)boRpR8F_cz(fluAXM?gS@vwg7|FA=AVDXn=;Aoz@7Ks>Nu}Vk~w(hH*4eM zCk@xH{eCQ*p=x^I*7T+J3|p6I7U(UoU>5c~_OaMgZuoc5!lIL8@MUQTpt6Hc~)E#{zsp zT!Hj|hX4N?8vf6m`Jui2V?)EIwzf|VJwKY8zcjReZEX40*#51d6+(V*X#LvI4kW)f zw0#AmS+#AmYg(q(HqWeWo?X*CyS905P3yec*4CPqC3P)J>sp#>nwx7{SJk$zt81;R zZf>Y)X{>2(tZ7+W*IZZAyrr(Sx~64CT}x$6^NzaKs+#754XtPDT5@Zezcm2uZ9_v} z8rpy;wYnK-JBX|Ukw7(pg-a8FK5-}s@(X5QWMUN*5*AVQ@C^+MkBCc~K4aJJ{reAq z!NG$E4*|hp5IAz==+R@xj-R@4<<{*x_a1!z@%zu;zyJPCyK!*^0|TRqr;B5VgyhtN z*UOq5L|88vJGvxEB_;XfPb-Q>{! z%da|0f{N<&FD-j|c*VtEGdoKzeTj6j%V0HVJ7as!#mZl)=Jgr+mn9&dpwET;piFP`>vB*o)n+D{3liRcmzqxp!Y{c?AE4$`!0o}MEpbO~U zg#n#A6jvp*N*DP?9NP7`qxIv?Lu$wQzqHJGaiDxdd-yTMe~eWu4c+UGT$>0Cdj?Ne KKbLh*2~7ZIyjns4 diff --git a/common/gtk-3.0/3.18/assets/titlebutton-close.png b/common/gtk-3.0/3.18/assets/titlebutton-close.png deleted file mode 100644 index 48def3e3bb0c8d7bc707e68a49c181ff5a432e2f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 465 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(OMp*^ zE0F$_mi9R@@pEj(=Y;gniRqscfLtJ%@i`vIO`A|sJ*BX6RzXE~NlkB2)zqS@*0Q>$ z(z>Ryy85!Z1|TZ0uc~PHl92u-F&#uEq^DIk1IgEknLzSQQU;Lx8V?drt#1C5nEojt z1IPf{1rY&~7TYp_&S20g3GxeO5D^s%3JGm&YHr!TfB%642M!)ObolV$V`tBuzwr9Q z$B&;reg5+6_n*Ii|H&=?{Q#(|)6>Ne`~Lij z$kXX}e`)LbZuoc5!lIL8@MUQTpt6Hc~)E=L38~ zT!Hj|AZlp%pO*F^D)VD<@~61$Pibi%6VksVq<>9F|D2HaIX>faB9M{sB|iOYJdgnr z1j>Gi&zMnIIjf*zPC>=wqROd7RWrfd*@YEz3o4i7S1iphZz`>8F0E}Xsa=s*x+br* zrmU_3h|23%=a$rg*_(1ps>|zFY3VIVkiZTbTet7rd+`0o?>~S3{{8oF-`SdZ z3=E8_o-U3d5|UF7zKm*ekYKw|?&PwGcVq4S3*XjAcpDvfzxRK3m*kY=U)!H2=+0{w zmDzvQ|Afo-8urg2!J9vA-rgvgH`~}rJXmU0@gp{^yfdu#<&K5S_HN-?Dyz4Z_4GxP zzWsehVs5|VkDF{^KD=DC(?!y9mtbecPlKo}_lhQJoL=Ypq%(|R@%c-sdP1?CCnUY4 zSf>`eF%y5>lHAD@kp9$(i+#-%#w(T+ZM`0Toi41$Fm;1TjeuwH#OI3M%&kq!O!tVN zjDHt2@w6UK0O`PGSAPCJ=T<PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(LV!<* zE09*}Iiu2cPPzM{YR_f$o{Q>Tm(;p0sdiriGSs^-t9M^g1EGsx62e9yHF_>-_FUHL zy`4*RQS(RuYSx7!Zuoc5!lIL8@MUQTpt6Hc~)EO9OmD zT!A#h|NjgP|BYv!(QUt^-FH=^?Ydge8O^Tq8a)@(yDqBrTvF-2sNQu+z5B9S*JZWt zi)vs&)$YrxT^H56FR681QtQ414(fbdN{(gHb zrSTva=uY{PAirP+MkZE4Az=|!cMnhB(6I1`xU^~0XYAU2>-L>{55E71`Lqle8jP%- zE{-7@=ci7-S#-#N$2E7887o(=8M{#6f~8aP0#5v|m)f}J2+L&2cfon*Jf@{~PN)`P z+1??n>dG3hQKe{|f~?_%S@!&TE2kf94LZL>vAOTlg^sfiy^Ld3&K_7a#mk0q^|4QG zzaAWYu7AC(x3BZJ?KZ~Q$!E8U>N(Ak;Jp9e@}IDpTMWnMoX4tZ5#_39zPI;H-|=WG zyV3i9OLiW4V16Tf$F-Qmdy!FEYkp4u5uB7f|fEFZfs)9>io02>>UrwE%%=FS}W{9k?iT}=d#Wzp$PyDTNv5^ diff --git a/common/gtk-3.0/3.18/assets/titlebutton-maximize-active.png b/common/gtk-3.0/3.18/assets/titlebutton-maximize-active.png deleted file mode 100644 index 6c4451149f3ca89b65eebcc41fe499da866df431..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 391 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(LV!<* zE09*}Iiu2cPPzM{YR_f$o{Q>Tm(;p0sdiriGSs^-t9M^g1EGsx62e9yHF_>-_FUHL zy`4*RQS(RuYSx7!Zuoc5!lIL8@MUQTpt6Hc~)EO9OmD zT!A#h|NjgP|BYv!(QUt^-FH=^?Ydge8O^Tq8a)@(yDqBrTvF-2sNQu+z5B9S*JZWt zi)vs&)$YrxT^H56FR681QtQ414(fbdN{(gHb zrSTva=uY{PAirP+MkZE4Az=|!cMnhB(6I1`xU^~0XYAU2>-L>{55E71`Lqle8jP%- zE{-7@=ci7-S#-#N$2E7887o(=8M{#6f~8aP0#5v|m)f}J2+L&2cfon*Jf@{~PN)`P z+1??n>dG3hQKe{|f~?_%S@!&TE2kf94LZL>vAOTlg^sfiy^Ld3&K_7a#mk0q^|4QG zzaAWYu7AC(x3BZJ?KZ~Q$!E8U>N(Ak;Jp9e@}IDpTMWnMoX4tZ5#_39zPI;H-|=WG zyV3i9OLiW4V16Tf$F-Qmdy!FEYkp4u5uB7f|fEFZfs)9>io02>>UrwE%%=FS}W{9k?iT}=d#Wzp$PyDTNv5^ diff --git a/common/gtk-3.0/3.18/assets/titlebutton-maximize-backdrop-dark.png b/common/gtk-3.0/3.18/assets/titlebutton-maximize-backdrop-dark.png deleted file mode 100644 index 0b40ca5895c7e8c60a9d30c318f6a3bf04604a50..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFgg}c$T@31W*ZgNswPK10y37v$Ly5P;eT1 zj&?p!SliRZF@$4ga)N^3jI~(|m(QGuWt~$(695fiPTT+h diff --git a/common/gtk-3.0/3.18/assets/titlebutton-maximize-backdrop-dark@2.png b/common/gtk-3.0/3.18/assets/titlebutton-maximize-backdrop-dark@2.png deleted file mode 100644 index 4b2db99672c43676661ef730aca7274fe1520e1b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EP60k4 zu0Z<#|NpC2t=hkT|CuvqfQ&tRPHx`6f7_u$+xHyUvG>s4y@z)1KC*M~!5w=JY~Q^f zNbcBkc*nlOJNF#izU$D=J%?rU7VQ9)_}T7oU(; z^Zt4!P(`$-i(`n!#J8s%#T*QHTrUQMObxkm|9@ET66TW|8~44m?O*Zz`UXSe;#o5N zq6`!E)bC_iAR%-s|KrA2`5!A+&*mweeYJdcpt7J~FW>(Cfo!+_=blqiI&|=N^)2T0 X46Jb}KYo4(TEpP!>gTe~DWM4fV*QD1 diff --git a/common/gtk-3.0/3.18/assets/titlebutton-maximize-backdrop.png b/common/gtk-3.0/3.18/assets/titlebutton-maximize-backdrop.png deleted file mode 100644 index 85e145c714132bc9406da54ac2da2c4bf9114e6b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF diff --git a/common/gtk-3.0/3.18/assets/titlebutton-maximize-backdrop@2.png b/common/gtk-3.0/3.18/assets/titlebutton-maximize-backdrop@2.png deleted file mode 100644 index 3429d541302a84118e189b3b5e1949c11b237306..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EP60k4 zu0T38G_;|iAuVktkj%}URMOC0Rn=PB&{f{hQCZtn*#ts0K*74siiWPL#-8fB?&^k~ zs=BTUkYJDWtF1qPrihgU`2{mDv#_$Ui-}9v*xK4Vxq5i|W@YCTYix_P0jh}hba4#P znE3WWG+%=Pk4s<;)1nm#-}i?GFTUE6d57Wq_moM?j$Qeewd};txWd_;pKsOqoY9`} z?XGg%oHv5`?G`CQ$93$Im*v=pPy6%6@!_u%d-bIcojdAx`}z{$HFsEJx0Y}_0bP0l+XkKR$)@Z diff --git a/common/gtk-3.0/3.18/assets/titlebutton-maximize-dark@2.png b/common/gtk-3.0/3.18/assets/titlebutton-maximize-dark@2.png deleted file mode 100644 index fb52df8f34ea70f5a784a81cdfc2c2fbc686025d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 336 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Et^qzF zu0VSK{{O31t-5;k>i+%vR~XgFAK|*tzH6?%juX?mN6=&%s@L z4(`}}XxE+tJN6z1G4>wXvFFgvJ%^44bCv@Q5-$nz3ua(pW8>iDR#H}tjZaF;&Mqh_ zU$$(;=7Nm#?LZ|_o-U3d8t31hwiaqo5Ma6Zv46q3br#?4S4|YyAtJuuayajntWrl8 zmp>r|;+~WCebG1foY%(lb9+Vn<@}FdRm^9e%=O!M^UMndhT6vc_cbQ`{BO=48fxpd aC2Oy%4(kRPW7}Y$EexKnelF{r5}E+rV2T6) diff --git a/common/gtk-3.0/3.18/assets/titlebutton-maximize-hover-dark.png b/common/gtk-3.0/3.18/assets/titlebutton-maximize-hover-dark.png deleted file mode 100644 index a6dfa0428c291e052f79c77ebe13dc6095588797..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 413 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(T7XZ8 zE09)EQBhD(kdl&;l#~<|l@=A15)qdc5tkB|QVyTpHY{X)sT=0B9pW0I;YO+nm((0=A7PHbNlDao4jygj_tHLK${dx zg8YIR*g53n4GevJBO)WCqGMuX)6+9DG7E}JO3TX6U%K|>>7Zuoc5!lIL8@MUQTpt6Hc~)EHv)V@ zT!AzQXlpa5fPj#Ykg%|f1PCYyi^~X!ON)z3i-}2ziOGqH$%=`|0Fj88jFO6$l8UaD zuBooBg|4ZcuBn5JoT7}JilT~^qKb}=k(IQZqL`Spi%-0}f4qx#w2OC~n_rw?Se9Qz zu3toEKtxVJRE}?WMpRmDY+7|xYE^Vfb#z*FY+6-(MqOe~Q)+HwQchEHUUN!*Q(9hg zQFUi=T~BdMSIfj{Efc13Mni z1qFr0W#tu>Rn@(H6L#<2ci`}`zymVLDZc=bxumsmwvsDG}lyEkaFh9{r|uQti=} zB@%sSxc)8aIWD+nk5b#^H@A--?!NG*ZT|0s$Xc~qu4hU%ip=UPW|&;S{QJ}Va(Slx zUCI1riEOLBXNme(aJb!gEl{y*`p1^b7Zz(CSbqEV@+Xqt7Ot+)tZZDlIc`SsN%@ys zpRZh5xF^PkGp6f!<-A$FOAfg1xxl#X(>9hzR?GXIeDsR02=4#!wd|kXmzud3H!oUQ zqjGVF&7{E95}nH|_w$9UF0$^q_GZK4TaLytE`LSeZohWs$lE6jj`<#6<+!xNyyLdE tOgx-7y(cF(irG4vx%#rypRF#^Us+!tizzSDe8dMzf}XB^F6*2UngD0DGr0f& diff --git a/common/gtk-3.0/3.18/assets/titlebutton-maximize-hover.png b/common/gtk-3.0/3.18/assets/titlebutton-maximize-hover.png deleted file mode 100644 index 6ead74b62088fd4023fabf54e0c4c70cc7a7b3e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 422 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(W`IwK zE07Kafd;>%vcR}X-^k*isA9jEiqM#fwBm-WvgR2x7T&pj=FW|?K=keXeFXY+@7t$) zf4)5W^W`BB{rvRs*QZCnKR^2O_0ivNj~6Ujx_HU5Wy@DioHA?D)Y(<_-7mO%3W1g> zl?3?(Gcfb;3X90AsAySO^L5>Ae^$!u%dR(bwcF3XE4(^?rENX`g}bUD zwr?aB|Lzru+E}dD%cXc~?bPh#7N)yvI;&eZUpU^U|5>X%OZ}A3wTXGJ(%(z(*%w^& w;=$LtcwWm*ZRhXJcW$00cFVdQ&MBb@0DPOg`2YX_ diff --git a/common/gtk-3.0/3.18/assets/titlebutton-maximize-hover@2.png b/common/gtk-3.0/3.18/assets/titlebutton-maximize-hover@2.png deleted file mode 100644 index 4c310f2f8ef36edb17162061e55e8a7751730a6f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 815 zcmV+~1JL}5P)V&QC@jjW_ev|e2$Wrl9!y6nVy!LpRum4v#+nTu&}kYwYIXhxwf{tx3|c}!pX+N z$;QFV$;8mj$k5Kn(a*=#(#h4+$?fUc?djL<>e=t>+x6|-^X%R8?A`S3-Sq9<_3z&H z@80z9-TL(6`t;)a^y2*V;r;gH{q^Mh_2m8bFMh0^7Hfa^Yrxe_4W1n`T6?#`uh6&`~Lp^&INyn00042NklFIPozzom1!@G^9{YUBaDw5I- z%LZ&_=&9c{YXOC#>pBI1Ws`@RK&va9g_qE%j3B-g!3`3ZX)HYJTs+I@a0F0qR=VOL^bafz#hHQNcW z;_viYr^7WSL*v+=PY7I#$9WK%fnJD1ztAq$g0eKlc1jfq{9N^*EWD`ue0w|n5PH3r z^e`+cZ%HNAPN885*{GqNWJB9gL&Z3>hp}Zuoc5!lIL8@MUQTpt6Hc~)Et^qzF zu0T31Ev=!UAvbqYVPRiG!%QH%vZ1%Kp$CX68hWZ5x~uBCz+`u2LswN@Z&gEQRYP}W zeRpMD7mx%>UHtXs5YQm;k|4ie239t9PA(ob4Xv!4+=9}o`lgP(`}UvlJEIBmO_ZmL zV~EE2x2LUz8WaRrE`IFqShvpNyZx$(0y{*+7hDeK-I7&0yQAaB$_ILrRBB(w=S{NV zmHd?dapSW4k6wG`8BM-Dr)K-ii;N7vnCkZjDt!K*&$nuomU7hAIG;?`ttaQNmPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE09*}Iiu2cPPzM{YR_f$o{Q>Tm(;p0sdiriGSs^-t9M^g1EGsx62e9y|9*RHy^47g z&>+#0AirP+5mB+AkkH1a=9aVP&R_WO@zduo|Bk8$mH-tbd%8G=NJ!=$jOJ@m5O6)X zxFg?PYUjK9mC05|J|v3HKU5WSeILuJi%)bO9b2@@Meg7iFWU{P44Lgs%M`qK%~fIc zx%5^=^+7-~yO^n(!i>1|gTe~ HDWM4f72kj+ diff --git a/common/gtk-3.0/3.18/assets/titlebutton-minimize-active-dark@2.png b/common/gtk-3.0/3.18/assets/titlebutton-minimize-active-dark@2.png deleted file mode 100644 index eb977482eee02108f82764555ee18287e7a62aa9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 489 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EIRQQ) zu0WdM|9^&t|Hd=V=(b#|z+ zMK!RXYWHQ;u8Zp3m(;p0sdZlha)BfaU4$_%%{g{w?YTRTUq1Z%?eU#CMcP2?I#mEEB^oQw=3XrKmB5#>Fu;zYK`?A&eLxmi;P@-ZPL-(ttOo>4t(A< zGwT03;iCE+<%^Q8CRWienvNHE7Kd~1eEB7Et;}xm&RFl?`}SIOFrJ99VqH*@$!Jiz zJL4X+uk=b@fwJoO`HkV?Tnz`-)*c91_hc&LgsZD3?)t*paARrt{u(Xy-G0BCo~>p* z8lB7D(X};=seYRM_q4e+5~>w(J*hlFD?_wBb(1gf2Y$GIrj{|j*U9Md63GluPPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE09*}Iiu2cPPzM{YR_f$o{Q>Tm(;p0sdiriGSs^-t9M^g1EGsx62e9y|9*RHy^47g z&>+#0AirP+5mB+AkkH1a=9aVP&R_WO@zduo|Bk8$mH-tbd%8G=NJ!=$jOJ@m5O6)X zxFg?PYUjK9mC05|J|v3HKU5WSeILuJi%)bO9b2@@Meg7iFWU{P44Lgs%M`qK%~fIc zx%5^=^+7-~yO^n(!i>1|gTe~ HDWM4f72kj+ diff --git a/common/gtk-3.0/3.18/assets/titlebutton-minimize-active@2.png b/common/gtk-3.0/3.18/assets/titlebutton-minimize-active@2.png deleted file mode 100644 index eb977482eee02108f82764555ee18287e7a62aa9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 489 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EIRQQ) zu0WdM|9^&t|Hd=V=(b#|z+ zMK!RXYWHQ;u8Zp3m(;p0sdZlha)BfaU4$_%%{g{w?YTRTUq1Z%?eU#CMcP2?I#mEEB^oQw=3XrKmB5#>Fu;zYK`?A&eLxmi;P@-ZPL-(ttOo>4t(A< zGwT03;iCE+<%^Q8CRWienvNHE7Kd~1eEB7Et;}xm&RFl?`}SIOFrJ99VqH*@$!Jiz zJL4X+uk=b@fwJoO`HkV?Tnz`-)*c91_hc&LgsZD3?)t*paARrt{u(Xy-G0BCo~>p* z8lB7D(X};=seYRM_q4e+5~>w(J*hlFD?_wBb(1gf2Y$GIrj{|j*U9Md63GluP4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1T4JzX3_ zEP9g@Bv=nK7$gbb+4;Oc%B-+l{C4DvB%do~7d0d%F)(c2$im{YFl84|1B0ilpUXO@ GgeCySYA#Ix diff --git a/common/gtk-3.0/3.18/assets/titlebutton-minimize-backdrop-dark@2.png b/common/gtk-3.0/3.18/assets/titlebutton-minimize-backdrop-dark@2.png deleted file mode 100644 index 4e9b3d64a5e9927ef8c36cc8a7b52d3e32dd343c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^av;pY3?xs=ZJr3En2Vh}LpV4%Za?&Y0OWEOctjR6 zFi5WlVa7PAi84Sz$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS_yc@G zT!HlN-AA_XKD=Z1!JT^!AL6x~4isW73GxeOuyBYd6# diff --git a/common/gtk-3.0/3.18/assets/titlebutton-minimize-backdrop.png b/common/gtk-3.0/3.18/assets/titlebutton-minimize-backdrop.png deleted file mode 100644 index 97763fb18e8f5e0b034422c0133582aec913d6d6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`EX7WqAsj$Z!;#Vf4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1T4JY5_^ zEP9g@Bv=nK7$ga=S@l};nA*K-A(y)Kj=AKD_ckeVGA!X_Vfp`I+g_l022WQ%mvv4F FO#r72E~)?k diff --git a/common/gtk-3.0/3.18/assets/titlebutton-minimize-backdrop@2.png b/common/gtk-3.0/3.18/assets/titlebutton-minimize-backdrop@2.png deleted file mode 100644 index 3c4a02135b1ddc01b895b6245b38ddcef1c69834..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^av;pY3?xs=ZJr3En2Vh}LpV4%Za?&Y0OWEOctjR6 zFi5WlVa7PAi84Sz$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS_yc@G zT!D0DQ&&wxS7l>&Rb9{ZRi|x%LaZf0e!&d(9;wAgb$X+K04nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1T4JzX3_ zEP9g@Bv=nK7$gbb+4=lJTF#?)dS&}wB>7w^yQm>CiGg9)MHZH4E{Zll4Gf;HelF{r G5}E)A3NO(B diff --git a/common/gtk-3.0/3.18/assets/titlebutton-minimize-dark@2.png b/common/gtk-3.0/3.18/assets/titlebutton-minimize-dark@2.png deleted file mode 100644 index 76c3c8fa8659ee138a4e94626a5afb85e527d912..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^av;pY3?xs=ZJr3En2Vh}LpV4%Za?&Y0OWEOctjR6 zFi5WlVa7PAi84Sz$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS_yc@G zT!HlN-G_JVJ+gDp!JT^!eY*Wr6ez@6666=mkW?^t^F$+e4xoUnr;B5VM0j$7L|el} p2^N+IHEQAl0S8XHhuilsFzoST@;MJEZ^s diff --git a/common/gtk-3.0/3.18/assets/titlebutton-minimize-hover-dark.png b/common/gtk-3.0/3.18/assets/titlebutton-minimize-hover-dark.png deleted file mode 100644 index daec11dfb27484a67291fdd1b6e1db323d5233dc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 363 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkcYsfb zE09)EQBhD(kdl&;l#~<|l@=A15)qdc5tkB|QVyTpHVk?;lg``$5VjDNt6Wn1v9X7$jKWR`uIjfMn*-)#KxwlXJlj+ z6wl((m;qFi=jq}YA`zb3AI;aGz{A2=xq@|d)7tO$D?1i&7XB-nl)KI8&%!mI?@34U8zU4a3`W(C{doYK$OB=J~%(dk3NpCc2NS$6LfU$c?KGcFqnZuoc5!lIL8@MUQTpt6Hc~)E^8t97%YS4rgl|DT_2GttfCWy$`O zN$CmizI~JU-7oXp+~|Xo9>YQB{0mEy`4aR}SMl5B9lXdgLv-mSt!|bMH?>mBC#$oz zoD|r7Y`ftnFG(w#NB@?e;4Hct)VE?K*QX1|LfQ7e>v-&2x`lQBm*2ROSeWBcd#_I;VaHH%5*u3vnw-xr04Uy_T$mVBFU-?{IS-K$GXB4&Sj zcHf$|8i;-6o5EWv^Ub`l!r<|NI}$gqNj&?a=40h2 zI6bP0 Hl+XkK^DF8$ diff --git a/common/gtk-3.0/3.18/assets/titlebutton-minimize-hover.png b/common/gtk-3.0/3.18/assets/titlebutton-minimize-hover.png deleted file mode 100644 index 39cdfbf836ef47d4b14e06b17b74f92dfc13c4e5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 368 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkUw}`D zE07Kafd;>%vcR}X-^k*isA9jEiqM#fwBm-WvgR2x7T&pj=FW|?K=keXeFXY+@7t$) zf4)5W^W`BB{r&d1s=hmPo;nBE`XIkx24)^!VG(&16%9?xlG3vM2M!)Oe&X4Sm!I>` zJ>3aZl<(={7$Pw>xBsnBgMff*w4&LUgV&QC@jjW_ev|e2$Wrl9!y6nVy!LpRum4v#+nTu&}kYwYIXhxwf{tx3|c}!pX+N z$;QFV$;8mj$k5Kn(a*=#(#h4+$?fUc?djL<>e=t>+x6|-^X%R8?A`S3-Sq9<_3z&H z@80z9-TL(6`t;)a^y2*V;r;gH{q^Mh_2m8bFVq9^ZNV#^3t))0003QNklHE5QM1_2o@4tFmWRV(u*;PWhd|d zT)_vS%9F|dlfKdE%ATV9N1Aqus0MRfz~#(PhtzZce-uT54{);|)B;v%CJJTg60ka- z=p5mzsP!_1t+(FVh;z}>=M9|Zy@jit=x7(isnetHf5S|X`_0E=y2P3ERUegFUf M07*qoM6N<$f=K;M#Q*>R diff --git a/common/gtk-3.0/3.18/assets/titlebutton-minimize.png b/common/gtk-3.0/3.18/assets/titlebutton-minimize.png deleted file mode 100644 index cffbf9424de29513addf7fdf6994eb508537d601..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`EX7WqAsj$Z!;#Vf4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1T4JzX3_ zEP9g@Bv=nK7$ga=$$Mef?7L^{!YeGXJ)O7oq*$GW7#P+}WMP@*Q?3Wpz~JfX=d#Wz Gp$Pz`ODvoK diff --git a/common/gtk-3.0/3.18/assets/titlebutton-minimize@2.png b/common/gtk-3.0/3.18/assets/titlebutton-minimize@2.png deleted file mode 100644 index 2a6ba854f3e7a614b2d7f544a3884a8659bb0ec8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^av;pY3?xs=ZJr3En2Vh}LpV4%Za?&Y0OWEOctjR6 zFi5WlVa7PAi84Sz$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS_yc@G zT!D0TLw8L>cXdM#ka1}pzYkD|wIs+dn4zFy^BK|TbG|?USx* m4{FrJ1p*G7bPu=hVPM$f$I5GP)IA2MkipZ{&t;ucLK6UXgE+bX diff --git a/common/gtk-3.0/3.18/gtk-dark.css b/common/gtk-3.0/3.18/gtk-dark.css deleted file mode 100644 index 1968555..0000000 --- a/common/gtk-3.0/3.18/gtk-dark.css +++ /dev/null @@ -1,4084 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -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: #78b9e6; - -GtkWidget-visited-link-color: #4ca2df; - -GtkWidget-focus-padding: 2; - -GtkWidget-focus-line-width: 1; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - -GtkStatusbar-shadow-type: none; - outline-color: rgba(101, 123, 131, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; } - -.background { - color: #657b83; - background-color: rgba(0, 43, 54, 0.999); } - -*:insensitive { - -gtk-image-effect: dim; } - -.gtkstyle-fallback { - background-color: #002b36; - color: #657b83; } - .gtkstyle-fallback:prelight { - background-color: #005469; - color: #657b83; } - .gtkstyle-fallback:active { - background-color: #000203; - color: #657b83; } - .gtkstyle-fallback:insensitive { - background-color: #003340; - color: rgba(101, 123, 131, 0.45); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view { - color: #657b83; - background-color: #073642; } - .view.dim-label, .view.label.separator, .header-bar .view.subtitle { - color: rgba(101, 123, 131, 0.55); } - .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { - color: rgba(253, 246, 227, 0.65); - text-shadow: none; } - -.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #1e6ea7; - background-color: rgba(30, 110, 167, 0.2); } - -.label.separator, .popover .label.separator, .sidebar .label.view.separator { - color: #657b83; } - -.label:insensitive { - color: rgba(101, 123, 131, 0.45); } - -.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { - opacity: 0.55; } - -GtkAssistant .sidebar { - background-color: #073642; - border-top: 1px solid #001317; } - GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #001317; } - GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #001317; } - -GtkAssistant.csd .sidebar { - border-top-style: none; } - -GtkAssistant .sidebar .label { - padding: 6px 12px; } - -GtkAssistant .sidebar .label.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -GtkTextView { - background-color: #04313c; } - -.grid-child { - padding: 3px; - border-radius: 3px; } - .grid-child:selected { - outline-offset: -2px; } - -.popover.osd, .osd { - color: #657b83; - border: none; - background-color: rgba(7, 54, 66, 0.95); - background-clip: padding-box; - outline-color: rgba(101, 123, 131, 0.3); - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - .spinner:active { - opacity: 1; - animation: spin 1s linear infinite; } - .spinner:active:insensitive { - opacity: 0.5; } - -.entry { - border: 1px solid; - padding: 5px 8px; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #657b83; - border-color: #001317; - background-color: #073642; - background-image: linear-gradient(to bottom, #073642); } - .entry.image { - color: #526d76; } - .entry.image.left { - padding-left: 0; } - .entry.image.right { - padding-right: 0; } - .entry.flat, .entry.flat:focus { - padding: 2px; - color: #657b83; - border-color: #001317; - background-color: #073642; - background-image: linear-gradient(to bottom, #073642); - border: none; - border-radius: 0; } - .entry:focus { - background-clip: border-box; - color: #657b83; - border-color: #001317; - background-color: #073642; - background-image: linear-gradient(to bottom, #073642); - box-shadow: inset 1px 0 #268bd2, inset -1px 0 #268bd2, inset 0 1px #268bd2, inset 0 -1px #268bd2; } - .entry:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(7, 54, 66, 0.55); - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.55)); } - .entry:selected, .entry:selected:focus { - background-color: #268bd2; - color: #fdf6e3; } - .entry.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - .entry.warning { - color: #fdf6e3; - border-color: #001317; - background-image: linear-gradient(to bottom, #7d4328); } - .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); - box-shadow: none; } - .entry.warning:selected, .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .entry.error { - color: #fdf6e3; - border-color: #001317; - background-image: linear-gradient(to bottom, #873437); } - .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); - box-shadow: none; } - .entry.error:selected, .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - .osd .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.35)); - background-color: transparent; } - .osd .entry.image, .osd .entry.image:hover { - color: inherit; } - .osd .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, #268bd2); } - .osd .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.2)); } - -GtkSearchEntry.entry { - border-radius: 20px; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -.button { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 5px 8px; - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .button.flat, .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(8, 62, 75, 0); - border-color: rgba(0, 19, 23, 0); - transition: none; } - .button.flat:hover, .sidebar-button.button:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - .button.flat:hover:active, .sidebar-button.button:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; - -gtk-image-effect: highlight; } - .button:active, .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; - transition-duration: 50ms; } - .button:active:not(:insensitive) .label:insensitive, .button:checked:not(:insensitive) .label:insensitive { - color: inherit; - opacity: 0.6; } - .button:active { - color: #657b83; } - .button:active:hover, .button:checked { - color: #fdf6e3; } - .button.flat:insensitive, .sidebar-button.button:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; } - .button:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .button:insensitive > GtkLabel { - color: inherit; } - .button:insensitive:active, .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { - color: inherit; } - .button.osd { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(3, 24, 29, 0.95); } - .button.osd.image-button, .header-bar .button.osd.titlebutton, - .titlebar .button.osd.titlebutton { - padding: 10px; } - .button.osd:hover { - color: #268bd2; } - .button.osd:active, .button.osd:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .button.osd:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .osd .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd .button:active, .osd .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd .button.flat, .osd .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd .button.flat:hover, .osd .sidebar-button.button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); - background-image: none; } - .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), - .osd .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { - box-shadow: none; } - .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .button.suggested-action.flat, .suggested-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .button.suggested-action:active, .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(101, 123, 131, 0.45); } - .button.suggested-action:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .button.destructive-action.flat, .destructive-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .button.destructive-action:active, .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(101, 123, 131, 0.45); } - .button.destructive-action:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - .button.image-button, .header-bar .button.titlebutton, - .titlebar .button.titlebutton { - padding: 7px; } - .header-bar .button.image-button, .header-bar .button.titlebutton { - padding: 7px 10px; } - .button.text-button { - padding-left: 16px; - padding-right: 16px; } - .button.text-button.image-button, .header-bar .button.text-button.titlebutton, - .titlebar .button.text-button.titlebutton { - padding: 5px 8px; } - .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, - .titlebar .button.text-button.titlebutton GtkLabel:first-child { - padding-left: 8px; } - .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, - .titlebar .button.text-button.titlebutton GtkLabel:last-child { - padding-right: 8px; } - .stack-switcher > .button { - outline-offset: -3px; } - .stack-switcher > .button > GtkLabel { - 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 { - padding: 5px 10px; } - .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, - .titlebar .stack-switcher > .button.titlebutton { - padding: 2px 4px; } - .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; } - .stack-switcher > .button.needs-attention > .label, - .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 2px; } - .stack-switcher > .button.needs-attention > .label:dir(rtl), - .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { - background-position: left 3px, left 2px; } - .inline-toolbar .button, .inline-toolbar .button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar GtkToolButton > .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .inline-toolbar GtkToolButton > .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { - color: inherit; } - .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { - color: inherit; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry { - border-left-color: rgba(0, 19, 23, 0.3); } - -.linked:not(.vertical):not(.path-bar) > .entry.error + .entry, -.linked:not(.vertical):not(.path-bar) > .entry + .entry.error { - border-left-color: rgba(0, 19, 23, 0.3); } - -.linked:not(.vertical):not(.path-bar) > .entry.warning + .entry, -.linked:not(.vertical):not(.path-bar) > .entry + .entry.warning { - border-left-color: rgba(0, 19, 23, 0.3); } - -.linked:not(.vertical):not(.path-bar) > .entry.error + .entry.warning, -.linked:not(.vertical):not(.path-bar) > .entry.warning + .entry.error { - border-left-color: rgba(0, 19, 23, 0.3); } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:last-child { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .entry, .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .button, -.linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:last-child { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .entry, .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .button, -.linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:last-child { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .entry, .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .button, -.linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > .button:active + .entry, -.linked:not(.vertical):not(.path-bar) > .button:checked + .entry { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > .button + .button { - border-left-style: none; } - -.linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 1px 0 #001317; } - -.linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked:not(.vertical):not(.path-bar) > .button:active + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .button:checked + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .button.suggested-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .button.destructive-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .entry + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child) { - box-shadow: none; } - -.linked:not(.vertical).path-bar > .button + .button { - border-left-style: none; } - -.linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5), inset -1px 0 rgba(0, 19, 23, 0.5); } - -.linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 19, 23, 0.5); } - -.linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5); } - -.linked.vertical > .entry + .entry { - border-top-color: rgba(0, 19, 23, 0.3); } - -.linked.vertical > .entry.error + .entry, -.linked.vertical > .entry + .entry.error { - border-top-color: rgba(0, 19, 23, 0.3); } - -.linked.vertical > .entry.warning + .entry, -.linked.vertical > .entry + .entry.warning { - border-top-color: rgba(0, 19, 23, 0.3); } - -.linked.vertical > .entry.error + .entry.warning, -.linked.vertical > .entry.warning + .entry.error { - border-top-color: rgba(0, 19, 23, 0.3); } - -.linked.vertical > .entry + .entry:focus:not(:last-child), -.linked.vertical > .entry + .entry:focus:last-child { - border-top-color: #001317; } - -.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: #001317; } - -.linked.vertical > .entry + .entry.warning:focus:not(:last-child), -.linked.vertical > .entry + .entry.warning:focus:last-child { - border-top-color: #001317; } - -.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, .linked.vertical > .entry.warning:focus:not(:only-child) + .button, -.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-top-color: #001317; } - -.linked.vertical > .entry + .entry.error:focus:not(:last-child), -.linked.vertical > .entry + .entry.error:focus:last-child { - border-top-color: #001317; } - -.linked.vertical > .entry.error:focus:not(:only-child) + .entry, .linked.vertical > .entry.error:focus:not(:only-child) + .button, -.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-top-color: #001317; } - -.linked.vertical > .button:active + .entry, -.linked.vertical > .button:checked + .entry { - border-top-color: #001317; } - -.linked.vertical > .button + .button { - border-top-style: none; } - -.linked.vertical > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked.vertical > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 0 1px #001317; } - -.linked.vertical > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked.vertical > .button:active + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .button:checked + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .button.suggested-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .button.destructive-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .entry + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child) { - box-shadow: none; } - -.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .linked:not(.vertical) > .entry, -.linked:not(.vertical) > .entry:focus, .osd .button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, -.linked:not(.vertical) > .button:hover, -.linked:not(.vertical) > .button:active, -.linked:not(.vertical) > .button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .primary-toolbar .linked:not(.vertical).path-bar > .button, .header-bar .linked:not(.vertical).path-bar > .button, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:active, .header-bar .linked:not(.vertical).path-bar > .button:active, .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, .header-bar .linked:not(.vertical).path-bar > .button:checked, .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, .header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .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) { - border-radius: 0; - border-right-style: none; } - -.linked:not(.vertical) > .entry:first-child, .osd .button:first-child, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, .header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -.linked:not(.vertical) > .entry:last-child, .osd .button:last-child, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, .header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - border-right-style: solid; } - -.linked:not(.vertical) > .entry:only-child, .osd .button:only-child, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, .header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { - border-radius: 3px; - border-style: solid; } - -.linked.vertical > .entry, -.linked.vertical > .entry:focus, .linked.vertical > .button, -.linked.vertical > .button:hover, -.linked.vertical > .button:active, -.linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox > .the-button-in-the-combobox { - border-radius: 0; - border-bottom-style: none; } - -.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border-bottom-style: solid; } - -.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { - border-radius: 3px; - border-style: solid; } - -.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, -.app-notification.frame .button.flat, -.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, -.app-notification.frame .button.flat:insensitive, -.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -.menuitem.button.flat, .menuitem.sidebar-button.button { - transition: none; - outline-offset: -1px; - border-radius: 2px; } - .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { - background-color: #0a333e; } - .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { - color: #657b83; } - -*:link, .button:link, .button:visited { - color: #78b9e6; } - *:link:visited, .button:visited { - color: #4ca2df; } - *:selected *:link:visited, *:selected .button:visited:link, *:selected .button:visited { - color: #a7cbdc; } - *:link:hover, .button:hover:link, .button:hover:visited { - color: #a3cfee; } - *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { - color: #e8ebe1; } - *:link:active, .button:active:link, .button:active:visited { - color: #78b9e6; } - *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { - color: #d2e1e0; } - *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { - color: #d2e1e0; } - -.button:link > .label, .button:visited > .label { - text-decoration-line: underline; } - -.spinbutton { - border-radius: 3px; } - .spinbutton .button { - background-image: none; - border: 1px solid rgba(0, 19, 23, 0.6); - border-style: none none none solid; - color: #607880; - border-radius: 0; - box-shadow: none; } - .spinbutton .button:dir(rtl) { - border-style: none solid none none; } - .spinbutton .button:first-child { - color: red; } - .spinbutton .button:insensitive { - color: rgba(101, 123, 131, 0.45); } - .spinbutton .button:active { - background-color: #268bd2; - color: #fdf6e3; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - border-radius: 2px 2px 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:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; } - GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: #268bd2; - border-radius: 0; - box-shadow: none; } - -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; } - GtkComboBox > .the-button-in-the-combobox { - padding-top: 3px; - padding-bottom: 3px; } - GtkComboBox:insensitive { - color: rgba(101, 123, 131, 0.45); } - GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { - -GtkWidget-wide-separators: true; } - GtkComboBox.combobox-entry .entry:dir(ltr) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - border-right-style: none; } - GtkComboBox.combobox-entry .entry:dir(rtl) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; } - GtkComboBox.combobox-entry .button:dir(ltr) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - GtkComboBox.combobox-entry .button:dir(rtl) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #002b36; } - .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.85); } - -.primary-toolbar { - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #002b36, rgba(0, 15, 18, 0.97)) 1 0 1 0; } - -.inline-toolbar { - background-color: #001f27; - border-style: solid; - border-color: #001317; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -.search-bar { - background-color: #002b36; - border-style: solid; - border-color: #001317; - border-width: 0 0 1px; - padding: 3px; } - -.action-bar { - background-color: #001f27; } - -.header-bar { - padding: 5px 5px 4px 5px; - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: #001b22; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; } - .csd .header-bar { - background-color: rgba(0, 43, 54, 0.97); - border-color: rgba(0, 27, 34, 0.97); } - .header-bar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .header-bar .title { - padding-left: 12px; - padding-right: 12px; } - .header-bar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .header-bar.selection-mode, .header-bar.titlebar.selection-mode { - color: #fdf6e3; - background-color: rgba(38, 139, 210, 0.95); - border-color: rgba(35, 128, 193, 0.95); - box-shadow: none; } - .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { - background-color: rgba(38, 139, 210, 0.95); - color: rgba(253, 246, 227, 0.6); } - .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.05); - border-color: rgba(253, 246, 227, 0.5); } - .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { - color: rgba(38, 139, 210, 0.95); - outline-color: rgba(38, 139, 210, 0.25); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { - color: rgba(38, 139, 210, 0.35); - background-color: rgba(253, 246, 227, 0.15); - border-color: rgba(253, 246, 227, 0.15); } - .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { - background-color: #268bd2; } - .tiled .header-bar, .tiled .header-bar:backdrop, - .maximized .header-bar, .maximized .header-bar:backdrop { - border-radius: 0; } - .maximized .header-bar { - background-color: #002b36; - border-color: #001b22; } - .header-bar.default-decoration, - .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, - .csd .header-bar.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: #002b36; - border-bottom-width: 0; } - .maximized .header-bar.default-decoration, .maximized - .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized - .csd .header-bar.default-decoration:backdrop { - background-color: #002b36; } - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: 3px 3px 0 0; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: inset 0 1px rgba(0, 55, 69, 0.97); } - .csd .titlebar { - background-color: rgba(0, 43, 54, 0.97); } - .titlebar:backdrop { - color: rgba(89, 128, 143, 0.5); - background-color: #00313e; } - .csd .titlebar:backdrop { - background-color: rgba(0, 49, 62, 0.97); } - .maximized .titlebar { - background-color: #002b36; } - .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { - background-color: #00313e; } - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { - background-color: transparent; } - -.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, -.header-bar > GtkBox > .separator.vertical, .sidebar -.header-bar > GtkBox > .vertical.view.separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(89, 128, 143, 0) 25%, rgba(89, 128, 143, 0.15) 25%, rgba(89, 128, 143, 0.15) 75%, rgba(89, 128, 143, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, - .header-bar > GtkBox > .separator.vertical:backdrop, .sidebar - .header-bar > GtkBox > .vertical.view.separator:backdrop { - opacity: 0.6; } - -.primary-toolbar .entry, .header-bar .entry { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { - color: inherit; } - .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { - opacity: 0.85; } - .primary-toolbar .entry:focus, .header-bar .entry:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - background-clip: padding-box; } - .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { - color: #fdf6e3; } - .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar .entry.warning, .header-bar .entry.warning { - color: white; - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(125, 63, 34, 0.988)); } - .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); } - .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar .entry.error, .header-bar .entry.error { - color: white; - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(135, 47, 50, 0.988)); } - .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); } - .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar .button, .header-bar .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - outline-offset: -3px; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:backdrop, .header-bar .button:backdrop { - opacity: 0.7; } - .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { - color: inherit; } - .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, .header-bar .linked:not(.vertical):not(.path-bar) > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), .header-bar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .primary-toolbar .linked:not(.vertical).path-bar > .button, .header-bar .linked:not(.vertical).path-bar > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover { - background-color: rgba(0, 193, 243, 0.37); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .primary-toolbar .linked:not(.vertical).path-bar > .button:active, .header-bar .linked:not(.vertical).path-bar > .button:active, .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, .header-bar .linked:not(.vertical).path-bar > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, .header-bar .linked:not(.vertical).path-bar > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button + .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button + .button, .primary-toolbar .linked:not(.vertical).path-bar > .button + .button, .header-bar .linked:not(.vertical).path-bar > .button + .button { - border-left-style: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):hover, .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37), inset -1px 0 rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry.warning, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry.error, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry.error { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:last-child, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .button, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:last-child, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .button, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:last-child, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .button, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .button:active + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .button:checked + .entry { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, .primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, .primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { - color: #fdf6e3; } - .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { - background-color: rgba(253, 246, 227, 0.1); - border-color: transparent; } - .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { - color: rgba(253, 246, 227, 0.4); } - -.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(89, 128, 143, 0.8); } - .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { - background-color: rgba(89, 128, 143, 0.05); - border-color: transparent; } - .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(89, 128, 143, 0.5); } - .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { - background-color: rgba(0, 0, 0, 0.1); } - -.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(89, 128, 143, 0.2); } - -.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { - color: inherit; } - .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { - border-right-style: none; } - .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { - border-left-style: none; } - .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { - opacity: 0.75; } - -.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.37)); } - .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.27)); } - -.primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, #005469); - border-color: rgba(0, 0, 0, 0.67); } - .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { - background-image: linear-gradient(to bottom, #006883); - border-color: rgba(0, 0, 0, 0.67); } - .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 72, 90, 0.991)); - border-color: rgba(0, 0, 0, 0.67); } - -.path-bar .button { - padding: 5px 10px; } - .path-bar .button:first-child { - padding-left: 10px; } - .path-bar .button:last-child { - padding-right: 10px; } - .path-bar .button:only-child { - padding-left: 14px; - padding-right: 14px; } - .path-bar .button GtkLabel:last-child { - padding-left: 4px; } - .path-bar .button GtkLabel:first-child { - padding-right: 4px; } - .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { - padding-right: 0; - padding-left: 0; } - .path-bar .button GtkImage { - padding-top: 2px; - padding-bottom: 1px; } - -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: rgba(101, 123, 131, 0.15); - border-top-color: rgba(0, 0, 0, 0.1); } - GtkTreeView.view:selected { - border-radius: 0; - border-left-color: #92c1db; - border-top-color: rgba(101, 123, 131, 0.1); } - GtkTreeView.view:insensitive { - color: rgba(101, 123, 131, 0.45); } - GtkTreeView.view:insensitive:selected { - color: #7cb6d9; } - GtkTreeView.view.dnd { - border-style: solid none; - border-width: 1px; - border-color: #4683ab; } - GtkTreeView.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #365963; } - GtkTreeView.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - GtkTreeView.view.expander:hover { - color: #657b83; } - GtkTreeView.view.expander:selected { - color: #bdd6de; } - GtkTreeView.view.expander:selected:hover { - color: #fdf6e3; } - GtkTreeView.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - GtkTreeView.view.progressbar, GtkTreeView.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-image: linear-gradient(to bottom, #268bd2); } - GtkTreeView.view.progressbar:selected, GtkTreeView.view.progressbar:selected:focus, GtkTreeView.view.progressbar:focus:selected, GtkTreeView.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-image: linear-gradient(to bottom, #fdf6e3); } - GtkTreeView.view.trough { - color: #657b83; - background-image: linear-gradient(to bottom, #001317); - border-radius: 3px; - border-width: 0; } - GtkTreeView.view.trough:selected, GtkTreeView.view.trough:selected:focus { - color: #fdf6e3; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); - border-radius: 3px; - border-width: 0; } - -column-header .button { - color: #526d76; - background-color: #073642; } - column-header .button:hover { - color: #268bd2; - box-shadow: none; - transition: none; } - column-header .button:active { - color: #657b83; - transition: none; } - -column-header:last-child .button, column-header:last-child.button { - border-right-style: none; - border-image: none; } - -column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { - transition: none; - color: #268bd2; - box-shadow: inset 1px 1px 0 1px #268bd2, inset -1px 0 0 1px #268bd2, inset 1px 1px #073642, inset -1px 0 #073642; } - -column-header .button, column-header .button:hover, column-header .button:active { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.11) 20%, rgba(255, 255, 255, 0.11) 80%, rgba(255, 255, 255, 0) 80%) 0 1 0 0/0 1px 0 0 stretch; } - column-header .button:active, column-header .button:hover { - background-color: #073642; } - column-header .button:active:hover { - color: #657b83; } - column-header .button:insensitive { - border-color: #002b36; - background-image: none; } - -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #002b36; - color: rgba(89, 128, 143, 0.8); } - .menubar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .menubar > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - .menubar > .menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - .menubar > .menuitem:insensitive { - color: rgba(89, 128, 143, 0.2); - border-color: transparent; } - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #002b36; - border: 1px solid #001317; } - .csd .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - .menu .menuitem { - padding: 5px; } - .menu .menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - .menu .menuitem:insensitive { - color: rgba(101, 123, 131, 0.45); } - .menu .menuitem.separator { - color: rgba(7, 54, 66, 0); } - .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 #103d49; } - .menu.button.bottom { - border-top: 1px solid #103d49; } - .menu.button:hover { - background-color: #103d49; } - .menu.button:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent; } - -.csd .popup { - border-radius: 2px; } - -.menuitem .accelerator { - color: alpha(currentColor,0.55); } - -.popover { - padding: 2px; - border: 1px solid black; - border-radius: 3px; - background-clip: border-box; - background-color: #002b36; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } - .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { - color: rgba(7, 54, 66, 0); } - .popover > .list, - .popover > .view, - .popover > .toolbar, - .popover > .inline-toolbar, - .popover.osd > .toolbar, - .popover.osd > .inline-toolbar { - border-style: none; - background-color: transparent; } - -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - .entry.cursor-handle.top, - .cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - .entry.cursor-handle.bottom, - .cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -.notebook { - padding: 0; - background-color: #073642; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -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.frame { - border: 1px solid #001317; } - .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.header { - background-color: #002b36; } - .notebook.header.frame { - border: 0px solid #001317; } - .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.top { - box-shadow: inset 0 -1px #001317; } - .notebook.header.bottom { - box-shadow: inset 0 1px #001317; } - .notebook.header.right { - box-shadow: inset 1px 0 #001317; } - .notebook.header.left { - box-shadow: inset -1px 0 #001317; } - .notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - outline-offset: 0; } - .notebook tab.top, .notebook tab.bottom { - padding: 4px 15px; } - .notebook tab.left, .notebook tab.right { - padding: 4px 15px; } - .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { - padding-left: 12px; - padding-right: 12px; } - .notebook tab.reorderable-page.top, .notebook tab.top { - padding-top: 6px; - border-radius: 3.5px 2px 0 0; - border-width: 0; - border-top-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { - background-color: #073642; - box-shadow: inset 0 1px #001317, inset 0 -1px #073642, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.bottom, .notebook tab.bottom { - padding-bottom: 6px; - border-radius: 0 0 2px 3.5px; - border-width: 0; - border-bottom-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { - background-color: #073642; - box-shadow: inset 0 -1px #073642, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.right, .notebook tab.right { - padding-right: 17px; - border-radius: 0 3.5px 3.5px 0; - border-width: 0; - border-right-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { - background-color: #073642; - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #073642, inset -1px 0 #001317; } - .notebook tab.reorderable-page.left, .notebook tab.left { - padding-left: 17px; - border-radius: 3.5px 0 0 3.5px; - border-width: 0; - border-left-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { - background-color: #073642; - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #073642; } - .notebook tab GtkLabel { - padding: 0 2px; - color: rgba(101, 123, 131, 0.45); } - .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(101, 123, 131, 0.725); } - .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { - color: #657b83; } - .notebook tab .button { - padding: 0; - color: #425f68; } - .notebook tab .button:hover { - color: #ff4d4d; } - .notebook tab .button:active { - color: #268bd2; } - .notebook tab .button > GtkImage { - padding: 2px; } - .notebook.arrow { - color: rgba(101, 123, 131, 0.45); } - .notebook.arrow:hover { - color: rgba(101, 123, 131, 0.725); } - .notebook.arrow:active { - color: #657b83; } - .notebook.arrow:insensitive { - color: rgba(101, 123, 131, 0.15); } - -.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: 6px; } - .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { - margin: 0; - background-color: #47636c; - border: 1px solid rgba(0, 0, 0, 0.3); - 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.99; } - .scrollbar .trough { - background-color: #07323d; - border: 1px none #001317; } - .scrollbar .slider { - background-color: #284b55; } - .scrollbar .slider:hover { - background-color: #1e434d; } - .scrollbar .slider:prelight:active, .scrollbar .slider:active { - background-color: #268bd2; } - .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, #001317 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #07323d; } - .scrollbars-junction:dir(rtl), - .scrollbars-junction.frame:dir(rtl) { - border-image-slice: 0 1 0 0; } - -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 52; - -GtkSwitch-slider-height: 24; - outline-color: transparent; } - GtkSwitch.trough, GtkSwitch.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; } - GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { - background-position: left center; } - -GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough, -.menu .menuitem:hover GtkSwitch.trough, -.list-row:selected GtkSwitch.trough, -GtkInfoBar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -.header-bar GtkSwitch.trough, -.primary-toolbar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } - -GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough:active, -.menu .menuitem:hover GtkSwitch.trough:active, -.list-row:selected GtkSwitch.trough:active, -GtkInfoBar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -.header-bar GtkSwitch.trough:active, -.primary-toolbar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } - -GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough:insensitive, -.menu .menuitem:hover GtkSwitch.trough:insensitive, -.list-row:selected GtkSwitch.trough:insensitive, -GtkInfoBar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:insensitive, -.primary-toolbar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } - -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough:active:insensitive, -.menu .menuitem:hover GtkSwitch.trough:active:insensitive, -.list-row:selected GtkSwitch.trough:active:insensitive, -GtkInfoBar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:active:insensitive, -.primary-toolbar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } - -.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, -GtkFileChooserDialog .dialog-vbox > .frame .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check, -.menu .menuitem.check:hover, -GtkTreeView.view.check:selected, -.list-row:selected .check, -GtkInfoBar .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:insensitive, -.menu .menuitem.check:insensitive:hover, -GtkTreeView.view.check:insensitive:selected, -.list-row:selected .check:insensitive, -GtkInfoBar .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:inconsistent, -.menu .menuitem.check:inconsistent:hover, -GtkTreeView.view.check:inconsistent:selected, -.list-row:selected .check:inconsistent, -GtkInfoBar .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:inconsistent:insensitive, -.menu .menuitem.check:inconsistent:insensitive:hover, -GtkTreeView.view.check:inconsistent:insensitive:selected, -.list-row:selected .check:inconsistent:insensitive, -GtkInfoBar .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:checked, -.menu .menuitem.check:checked:hover, -GtkTreeView.view.check:checked:selected, -.list-row:selected .check:checked, -GtkInfoBar .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:checked:insensitive, -.menu .menuitem.check:checked:insensitive:hover, -GtkTreeView.view.check:checked:insensitive:selected, -.list-row:selected .check:checked:insensitive, -GtkInfoBar .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, -GtkFileChooserDialog .dialog-vbox > .frame .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio, -.menu .menuitem.radio:hover, -GtkTreeView.view.radio:selected, -.list-row:selected .radio, -GtkInfoBar .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:insensitive, -.menu .menuitem.radio:insensitive:hover, -GtkTreeView.view.radio:insensitive:selected, -.list-row:selected .radio:insensitive, -GtkInfoBar .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:inconsistent, -.menu .menuitem.radio:inconsistent:hover, -GtkTreeView.view.radio:inconsistent:selected, -.list-row:selected .radio:inconsistent, -GtkInfoBar .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:inconsistent:insensitive, -.menu .menuitem.radio:inconsistent:insensitive:hover, -GtkTreeView.view.radio:inconsistent:insensitive:selected, -.list-row:selected .radio:inconsistent:insensitive, -GtkInfoBar .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:checked, -.menu .menuitem.radio:checked:hover, -GtkTreeView.view.radio:checked:selected, -.list-row:selected .radio:checked, -GtkInfoBar .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:checked:insensitive, -.menu .menuitem.radio:checked:insensitive:hover, -GtkTreeView.view.radio:checked:insensitive:selected, -.list-row:selected .radio:checked:insensitive, -GtkInfoBar .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -.view.content-view.check:not(.list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); - background-color: transparent; } - -.view.content-view.check:checked:not(.list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@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: rgba(101, 123, 131, 0.45); } - -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; - color: alpha(currentColor,0.7); } - .scale.trough { - margin: 5px; } - .scale.fine-tune.trough { - border-radius: 5px; - margin: 3px; } - .scale.slider { - background-clip: border-box; - background-image: linear-gradient(to bottom, #083e4b); - border: 1px solid #000b0d; - border-radius: 50%; - box-shadow: none; } - .scale.slider:hover { - background-image: linear-gradient(to bottom, #0a5062); - border-color: #000b0d; } - .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #04313d); - border-color: rgba(0, 11, 13, 0.8); } - .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .osd .scale.slider { - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.95)); - border-color: #268bd2; } - .osd .scale.slider:hover { - background-image: linear-gradient(to bottom, #268bd2); } - .osd .scale.slider:active { - background-image: linear-gradient(to bottom, #1e6ea7); - border-color: #1e6ea7; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider, - .menu .menuitem:hover .scale.slider, - .list-row:selected .scale.slider, - GtkInfoBar .scale.slider { - background-image: linear-gradient(to bottom, #fdf6e3); - border-color: #fdf6e3; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider:hover, - .menu .menuitem:hover .scale.slider:hover, - .list-row:selected .scale.slider:hover, - GtkInfoBar .scale.slider:hover { - background-image: linear-gradient(to bottom, #dde6e0); - border-color: #dde6e0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider:active, - .menu .menuitem:hover .scale.slider:active, - .list-row:selected .scale.slider:active, - GtkInfoBar .scale.slider:active { - background-image: linear-gradient(to bottom, #92c1db); - border-color: #92c1db; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider:insensitive, - .menu .menuitem:hover .scale.slider:insensitive, - .list-row:selected .scale.slider:insensitive, - GtkInfoBar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); - border-color: #9cc6db; } - .scale.trough { - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, #00171d); } - .scale.trough.highlight { - background-image: linear-gradient(to bottom, #268bd2); } - .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, rgba(38, 139, 210, 0.55)); } - .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 23, 29, 0.55)); } - .osd .scale.trough { - background-image: linear-gradient(to bottom, rgba(10, 80, 98, 0.95)); - outline-color: rgba(101, 123, 131, 0.2); } - .osd .scale.trough.highlight { - background-image: none; - background-image: linear-gradient(to bottom, #268bd2); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough, - .menu .menuitem:hover .scale.trough, - .list-row:selected .scale.trough, - GtkInfoBar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough.highlight, - .menu .menuitem:hover .scale.trough.highlight, - .list-row:selected .scale.trough.highlight, - GtkInfoBar .scale.trough.highlight { - background-image: linear-gradient(to bottom, #fdf6e3); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough.highlight:insensitive, - .menu .menuitem:hover .scale.trough.highlight:insensitive, - .list-row:selected .scale.trough.highlight:insensitive, - GtkInfoBar .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough:insensitive, - .menu .menuitem:hover .scale.trough:insensitive, - .list-row:selected .scale.trough:insensitive, - GtkInfoBar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -GtkProgressBar { - padding: 0; - font-size: smaller; - color: rgba(101, 123, 131, 0.7); } - GtkProgressBar.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; } - -.progressbar { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - .progressbar.osd { - background-color: #268bd2; } - .list-row:selected .progressbar, - GtkInfoBar .progressbar { - background-color: #fdf6e3; } - -.osd .scale.progressbar { - background-color: #268bd2; } - -GtkProgressBar.trough, .level-bar.trough { - border: none; - border-radius: 3px; - background-color: #00171d; } - GtkProgressBar.trough.osd, .osd.level-bar.trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, - GtkInfoBar GtkProgressBar.trough, - GtkInfoBar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.2); } - -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; } - GtkLevelBar.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; } - -.level-bar.trough { - padding: 3px; - border-radius: 4px; } - -.level-bar.fill-block { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - .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 { - border-color: #859900; - background-color: #859900; } - .level-bar.fill-block.level-low { - border-color: #cb4b16; - background-color: #cb4b16; } - .level-bar.fill-block.empty-fill-block { - background-color: #073642; - border-color: #073642; } - -.frame { - border: 1px solid #001317; - padding: 0; } - .frame.flat { - border-style: none; } - .frame.action-bar { - padding: 6px; - border-width: 1px 0 0; } - -GtkScrolledWindow GtkViewport.frame { - border-style: none; } - -.separator, .sidebar.separator, .sidebar .view.separator { - color: rgba(0, 0, 0, 0.1); } - GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, - GtkFontButton .separator, - GtkFontButton .sidebar.separator, - GtkFontButton .sidebar .view.separator, .sidebar - GtkFontButton .view.separator, - GtkFileChooserButton .separator.vertical, - GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar - GtkFileChooserButton .vertical.view.separator, - GtkFontButton .separator.vertical, - GtkFontButton .sidebar .vertical.view.separator, .sidebar - GtkFontButton .vertical.view.separator { - -GtkWidget-wide-separators: true; } - -.list { - background-color: #073642; - border-color: #001317; } - -.list-row, -.grid-child { - padding: 2px; } - -.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { - background-color: rgba(255, 255, 255, 0.03); } - -.list-row.activatable:active { - color: #657b83; } - -.list-row.activatable:selected:active { - color: #fdf6e3; } - -.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { - background-color: #227dbd; } - -.list-row.activatable:selected:insensitive { - color: rgba(253, 246, 227, 0.7); - background-color: rgba(38, 139, 210, 0.7); } - .list-row.activatable:selected:insensitive .label { - color: inherit; } - -.list-row, list-row.activatable { - transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .list-row:hover, list-row.activatable:hover { - transition: none; } - -.app-notification, -.app-notification.frame { - padding: 10px; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: rgba(2, 16, 20, 0.95); } - .app-notification .button, - .app-notification.frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .app-notification .button.flat, .app-notification .sidebar-button.button, - .app-notification.frame .button.flat, - .app-notification.frame .sidebar-button.button { - border-color: rgba(38, 139, 210, 0); } - .app-notification .button:hover, - .app-notification.frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .app-notification .button:active, .app-notification .button:checked, - .app-notification.frame .button:active, - .app-notification.frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification .button:insensitive, - .app-notification.frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - .expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - .expander:hover { - color: #b8c4c9; } - .expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GtkCalendar { - color: #657b83; - border: 1px solid #001317; - border-radius: 3px; - padding: 2px; } - GtkCalendar:selected { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 1.5px; } - GtkCalendar.header { - color: #657b83; - border: none; - border-radius: 0; } - GtkCalendar.button, GtkCalendar.button:focus { - color: rgba(101, 123, 131, 0.45); - border-color: transparent; - background-color: transparent; - background-image: none; } - GtkCalendar.button:hover, GtkCalendar.button:focus:hover { - color: #657b83; } - GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { - color: rgba(101, 123, 131, 0.45); - background-color: transparent; - background-image: none; } - GtkCalendar:inconsistent { - color: alpha(currentColor,0.55); } - GtkCalendar.highlight { - color: #657b83; } - -.message-dialog .dialog-action-area .button { - padding: 8px; } - -.message-dialog { - -GtkDialog-button-spacing: 0; } - .message-dialog .titlebar { - background-color: rgba(0, 43, 54, 0.97); - border-bottom: 1px solid rgba(0, 15, 18, 0.97); } - .message-dialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - .message-dialog.csd .dialog-action-area .button { - padding: 8px; - border-radius: 0; } - .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 { - border-right-style: none; - border-bottom-style: none; } - .message-dialog.csd .dialog-action-area .button:last-child { - border-bottom-right-radius: 3px; } - .message-dialog.csd .dialog-action-area .button:first-child { - border-left-style: none; - border-bottom-left-radius: 3px; } - -GtkFileChooserDialog .search-bar { - background-color: #002b36; - border-color: #001317; - box-shadow: none; } - -GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #001317; } - -.sidebar, .sidebar .view { - border: none; - background-color: #003340; } - -GtkSidebarRow.list-row { - padding: 0px; } - -GtkSidebarRow .sidebar-revealer { - padding: 3px 14px 3px 12px; } - -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 .sidebar-placeholder-row { - border: solid 1px #268bd2; } - -GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { - background-color: #000203; } - -GtkPlacesSidebar.sidebar .list-row.activatable { - color: rgba(101, 123, 131, 0.8); - border-width: 0; - border-style: solid; } - -.sidebar-button.button { - outline-radius: 50%; - border-radius: 50%; } - .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, - .titlebar .sidebar-button.button.titlebutton { - padding: 3px; } - .sidebar-button.button:not(:hover):not(:active) > GtkImage { - opacity: 0.5; } - -.sidebar-item { - padding: 10px 4px; } - .sidebar-item > GtkLabel { - padding-left: 6px; - padding-right: 6px; } - .sidebar-item.needs-attention > GtkLabel { - background-size: 6px 6px, 0 0; } - -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); } - -GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { - background-color: transparent; } - -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: #001317; } - -GtkPaned.wide { - -GtkPaned-handle-size: 5; - margin: 0; } - GtkPaned.wide .pane-separator { - background-color: transparent; - border-style: none solid; - border-color: #001317; - border-width: 1px; } - GtkPaned.wide.vertical .pane-separator { - border-style: solid none; } - -GtkInfoBar { - border-style: none; } - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: #268bd2; - color: #fdf6e3; } - -.list-row:selected .button, GtkInfoBar .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .list-row:selected .button:hover, GtkInfoBar .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.2); } - .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.2); } - -.tooltip { - color: #657b83; - border-radius: 2px; } - .tooltip.background { - background-color: rgba(12, 92, 112, 0.95); - background-clip: padding-box; } - .tooltip.window-frame.csd { - background-color: transparent; } - -.tooltip * { - padding: 4px; - background-color: transparent; - color: inherit; } - -:selected GtkColorSwatch { - box-shadow: none; } - :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { - border-color: #fdf6e3; } - -GtkColorSwatch.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -GtkColorSwatch.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { - border-radius: 3px; } - -GtkColorSwatch:hover, GtkColorSwatch:hover:selected { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } - -GtkColorEditor GtkColorSwatch { - border-radius: 3px; } - GtkColorEditor GtkColorSwatch:hover { - background-image: none; } - -GtkColorSwatch.color-dark { - color: white; - outline-color: rgba(0, 0, 0, 0.3); } - -GtkColorSwatch.color-light { - color: black; - outline-color: rgba(255, 255, 255, 0.5); } - -GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { - border: 1px solid rgba(0, 0, 0, 0.15); } - GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { - border-color: rgba(0, 0, 0, 0.25); } - -GtkColorSwatch#add-color-button { - border-style: solid; - border-width: 1px; - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - GtkColorSwatch#add-color-button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - GtkColorSwatch#add-color-button .overlay { - border-color: transparent; - background-color: transparent; - background-image: none; } - -GtkColorButton.button { - padding: 5px; } - GtkColorButton.button GtkColorSwatch { - border-radius: 0; } - -.content-view { - background-color: #073642; } - .content-view:hover { - -gtk-image-effect: highlight; } - -.scale-popup .button { - padding: 6px; } - .scale-popup .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - -GtkVolumeButton.button { - padding: 8px; } - -.touch-selection, -.context-menu { - font: initial; } - -.monospace { - font: Monospace; } - -.overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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; } - -.window-frame { - border-radius: 3px 3px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.97), 0 8px 8px 0 rgba(0, 0, 0, 0.35); - margin: 10px; } - .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.87), 0 5px 5px 0 rgba(0, 0, 0, 0.35); } - .window-frame.tiled { - border-radius: 0; } - .window-frame.popup { - box-shadow: none; - border-radius: 0; } - .window-frame.ssd { - border-radius: 3px 3px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } - .window-frame.ssd.maximized { - border-radius: 0; } - .window-frame.csd.popup { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #000203; } - .window-frame.csd.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.25); } - .window-frame.csd.message-dialog { - border-radius: 3px; } - .window-frame.solid-csd { - border-radius: 0; - margin: 1px; - background-color: rgba(0, 43, 54, 0.97); - box-shadow: none; } - -.header-bar.default-decoration .button.titlebutton, -.titlebar.default-decoration .button.titlebutton { - padding-top: 0px; - padding-bottom: 0px; } - -.header-bar .button.titlebutton, -.titlebar .button.titlebutton { - padding-left: 4px; - padding-right: 4px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(0, 43, 54, 0); } - .header-bar .button.titlebutton:not(GtkMenuButton), - .titlebar .button.titlebutton:not(GtkMenuButton) { - padding-top: 8px; - padding-bottom: 8px; } - .header-bar .button.titlebutton:hover, - .titlebar .button.titlebutton:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, - .titlebar .button.titlebutton:active, - .titlebar .button.titlebutton:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.close, - .titlebar .button.titlebutton.maximize, - .titlebar .button.titlebutton.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; } - .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - opacity: 1; } - .header-bar .button.titlebutton.close, - .titlebar .button.titlebutton.close { - background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } - .header-bar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.close:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.close:hover, - .titlebar .button.titlebutton.close:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } - .header-bar .button.titlebutton.close:active, - .titlebar .button.titlebutton.close:active { - background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } - .header-bar .button.titlebutton.maximize, - .titlebar .button.titlebutton.maximize { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-dark.png"), url("assets/titlebutton-maximize-dark@2.png")); } - .header-bar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.maximize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop-dark.png"), url("assets/titlebutton-maximize-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.maximize:hover, - .titlebar .button.titlebutton.maximize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover-dark.png"), url("assets/titlebutton-maximize-hover-dark@2.png")); } - .header-bar .button.titlebutton.maximize:active, - .titlebar .button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active-dark.png"), url("assets/titlebutton-maximize-active-dark@2.png")); } - .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.minimize { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-dark.png"), url("assets/titlebutton-minimize-dark@2.png")); } - .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop-dark.png"), url("assets/titlebutton-minimize-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.minimize:hover, - .titlebar .button.titlebutton.minimize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover-dark.png"), url("assets/titlebutton-minimize-hover-dark@2.png")); } - .header-bar .button.titlebutton.minimize:active, - .titlebar .button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active-dark.png"), url("assets/titlebutton-minimize-active-dark@2.png")); } - -.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, -GtkEntry.gb-command-bar-entry.entry.flat:focus:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, -NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, -NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, -NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, -NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, -NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); } - -GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, -ScratchMainWindow .notebook tab.reorderable-page.top:active, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, -ScratchMainWindow .notebook tab.top:active, -ScratchMainWindow .notebook tab.top.active-page, -ScratchMainWindow .notebook tab.top.active-page:hover, -EphyNotebook.notebook tab.reorderable-page.top:active, -EphyNotebook.notebook tab.reorderable-page.top.active-page, -EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, -EphyNotebook.notebook tab.top:active, -EphyNotebook.notebook tab.top.active-page, -EphyNotebook.notebook tab.top.active-page:hover, -MidoriNotebook .notebook tab.reorderable-page.top:active, -MidoriNotebook .notebook tab.reorderable-page.top.active-page, -MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, -MidoriNotebook .notebook tab.top:active, -MidoriNotebook .notebook tab.top.active-page, -MidoriNotebook .notebook tab.top.active-page:hover, -TerminalWindow .notebook tab.reorderable-page.top:active, -TerminalWindow .notebook tab.reorderable-page.top.active-page, -TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -TerminalWindow .notebook tab.top:active, -TerminalWindow .notebook tab.top.active-page, -TerminalWindow .notebook tab.top.active-page:hover { - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - -TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top { - padding-top: 7px; - border-top-width: 3px; } - -TerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #001b22, inset 0 -1px #001317; } - -GtkHTML { - background-color: #073642; - color: #657b83; } - GtkHTML:active { - color: #fdf6e3; - background-color: #268bd2; } - -SushiFontWidget { - padding: 6px 12px; } - -TerminalWindow .background { - background-color: transparent; } - -TerminalWindow .scrollbar.vertical .slider { - margin-left: 3px; } - -TerminalWindow .scrollbar.trough { - border-width: 0; } - -TerminalWindow .notebook tab .button { - color: #425f68; } - TerminalWindow .notebook tab .button:hover { - color: #657b83; - border-color: #001317; - background-color: #083e4b; } - -TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { - color: #ff4d4d; } - -TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { - color: #268bd2; } - -EelEditableLabel.entry { - transition: none; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { - color: #657b83; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { - color: #fdf6e3; } - -.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, -.nautilus-list-dim-label { - color: #33535d; } - .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, - .nautilus-list-dim-label:selected, - .nautilus-list-dim-label:selected:focus { - color: #d2e1e0; } - -NautilusNotebook.notebook { - background-color: #073642; } - NautilusNotebook.notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; } - -NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { - padding: 5px; - box-shadow: none; - background-color: #073642; } - -.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, -.titlebar .nautilus-circular-button.button.titlebutton { - border-radius: 50%; - outline-radius: 50%; - padding: 8px; } - -.disk-space-display { - border-style: solid; - border-width: 1px; } - .disk-space-display.unknown { - background-color: rgba(101, 123, 131, 0.5); - border-color: rgba(79, 96, 102, 0.5); } - .disk-space-display.used { - background-color: rgba(38, 139, 210, 0.8); - border-color: rgba(30, 110, 167, 0.8); } - .disk-space-display.free { - background-color: #001f27; - border-color: black; } - -NemoWindow .sidebar .frame { - border-width: 0; } - -NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #001317; } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { - background-color: rgba(0, 193, 243, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37), inset -1px 0 rgba(0, 0, 0, 0.37); } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - -.gedit-headerbar-paned { - color: rgba(0, 27, 34, 0.97); } - -.open-document-selector-treeview.view { - padding: 3px 6px 3px 6px; - border-color: #073642; } - .open-document-selector-treeview.view:prelight { - background-color: #0e3b47; } - .open-document-selector-treeview.view:prelight:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.open-document-selector-name-label { - color: #657b83; } - -.open-document-selector-path-label { - color: #365963; - font-size: smaller; } - .open-document-selector-path-label:selected { - color: rgba(253, 246, 227, 0.9); } - -.gedit-document-panel .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; } - .gedit-document-panel .list-row .button GtkImage { - color: inherit; } - -.gedit-document-panel .prelight-row .button { - color: #425f68; } - -.gedit-document-panel .list-row .button:hover, -.gedit-document-panel .prelight-row .button:hover { - color: #ff4d4d; } - -.gedit-document-panel .prelight-row:selected .button:hover { - color: #ff6666; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; } - .gedit-document-panel .prelight-row:selected .button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -.gedit-document-panel-dragged-row { - border: 1px solid #001317; - background-color: #000203; - color: #657b83; } - -GeditStatusbar { - border-top: 1px solid #001317; - background-color: #002b36; } - -GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton.sidebar-button.button:prelight, -GeditStatusMenuButton:checked.button.flat, -GeditStatusMenuButton.sidebar-button.button:checked { - border-bottom-style: none; - border-radius: 0; } - -GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #001317; } - -.gedit-search-entry-occurrences-tag { - color: rgba(101, 123, 131, 0.6); - border: none; - margin: 2px; - padding: 2px; } - -GeditViewFrame .gedit-search-slider { - background-color: #003340; - padding: 6px; - border-color: #001317; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -GbWorkbench .floating-bar { - color: #657b83; } - -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { - color: inherit; } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; } - -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; } - -GbPreferencesPageLanguage .entry { - border-radius: 3px 3px 0 0; } - -GbPreferencesPageLanguage .frame { - border-top-width: 0; } - -GbEditorTweakWidget .linked.vertical > .entry { - border-bottom-style: solid; } - -GbEditorTweakWidget GtkScrolledWindow { - border-top: none; } - -GbViewStack GtkBox.header.notebook { - border-bottom: 1px solid #001317; } - -GbViewStack.focused GtkBox.header.notebook, -#project_sidebar_header.focused { - background-color: #073642; } - -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #001317; } - -GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { - border-radius: 3px 0 0 3px; } - -GbWorkspacePane GtkBox.header.notebook { - border-bottom: 1px solid #001317; } - -GbWorkspacePane:not(.focused) GtkBox.header.notebook { - background-color: #002b36; } - -DhSidebar GtkSearchEntry.entry, -SymbolTree GtkSearchEntry.entry { - border-left: none; - border-right: none; - border-top: none; - border-radius: 0px; } - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: #657b83; - background-image: none; - background-color: #073642; - padding: 6px 6px 6px 6px; - border: none; } - -GbTerminalView { - background-color: #073642; - color: #657b83; } - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; } - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; } - -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; } - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #001317; } - -GbViewStack.focused GtkBox.header.notebook { - background-color: #073642; } - GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { - opacity: 1; } - -EphyWindow .floating-bar { - color: #657b83; } - -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon { - background-color: rgba(101, 123, 131, 0.3); - border-radius: 2px; } - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: #78b9e6; } - -.documents-entry-tag { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover { - color: #fdf6e3; - background-color: #3295da; } - .documents-entry-tag:active { - color: #fdf6e3; - background-color: #2380c1; } - .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; } - .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { - color: rgba(253, 246, 227, 0.7); } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -TotemGrilo.vertical GdMainView.frame { - border-width: 0; } - -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { - background-color: #268bd2; } - -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; } - -.gnome-panel-menu-bar.menubar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: #657b83; - background-color: #05242c; } - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: #657b83; } - -PanelApplet .button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); - border-color: rgba(0, 0, 0, 0.17); } - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: rgba(0, 0, 0, 0.25); - border-radius: 0; - border-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -PanelApplet:hover { - color: white; } - -PanelApplet:active, -PanelApplet:hover:active { - color: #268bd2; } - -WnckPager { - color: #333e42; } - WnckPager:selected { - color: #268bd2; } - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; } - -ClockBox { - color: #657b83; } - -.xfce4-panel.panel { - background-color: rgba(5, 36, 44, 0.95); - text-shadow: none; - icon-shadow: none; } - .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { - color: #657b83; - background-color: rgba(5, 36, 44, 0); - border-radius: 0; - border: none; } - .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { - border: none; - background-color: rgba(10, 74, 90, 0.95); } - .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - -.floating-bar { - background-color: #268bd2; - color: #fdf6e3; } - .floating-bar.top { - border-radius: 0 0 2px 2px; } - .floating-bar.right { - border-radius: 2px 0 0 2px; } - .floating-bar.bottom { - border-radius: 2px 2px 0 0; } - .floating-bar.left { - border-radius: 0 2px 2px 0; } - .floating-bar .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - background-color: transparent; - box-shadow: none; - border: none; } - -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; } - -MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { - color: #fdf6e3; - background-color: #268bd2; - outline-color: transparent; } - -MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { - background-color: transparent; } - -MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { - outline-color: transparent; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - .marlin-pathbar.pathbar:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel .maximized { - background-color: rgba(5, 36, 44, 0.95); - box-shadow: inset 0 -1px rgba(1, 10, 12, 0.95); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - .color-light .composited-indicator { - color: rgba(0, 0, 0, 0.65); - text-shadow: 0 0 2px rgba(255, 255, 255, 0.3), 0 1px 0 rgba(255, 255, 255, 0.25); - icon-shadow: 0 0 2px rgba(255, 255, 255, 0.3), 0 1px 0 rgba(255, 255, 255, 0.25); } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - font: initial; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .sidebar { - background: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { - padding: 0 3px; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { - color: #fdf6e3; - background-color: #268bd2; } - WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { - color: rgba(101, 123, 131, 0.45); } - -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; } - -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: #657b83; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration.top { - border: 1px solid rgba(0, 15, 18, 0.97); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #002b36); - color: rgba(89, 128, 143, 0.8); - box-shadow: inset 0 1px rgba(0, 55, 69, 0.97); } - UnityDecoration.top:backdrop { - border-bottom-width: 0; - color: rgba(89, 128, 143, 0.5); } - UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 15, 18, 0.97)); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: rgba(0, 75, 95, 0.97); - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; } - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar GtkLabel { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #001317; - border-right: 1px solid #001317; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #001317; } - .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { - padding: 0 3px 0 3px; } - -.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #001317; - background-color: #002b36; } - .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view { - background-color: #002b36; - color: #657b83; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:prelight { - background-color: #003f50; } - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: #002b36; - background-image: none; } - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #657b83; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -.dynamic-notebook .notebook tab .button > GtkImage { - padding: 0; } - -GraniteWidgetsWelcome { - background-color: #073642; } - -GraniteWidgetsWelcome GtkLabel { - color: #33535d; - font: open sans 11; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(101, 123, 131, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #073642); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry.entry { - padding: 4px; } - -.h1 { - font: open sans 24px; } - -.h2 { - font: open sans light 18px; } - -.h3 { - font: open sans 11px; } - -.h4, -.category-label { - color: #47636c; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: rgba(5, 36, 44, 0.95); - color: #657b83; - font: bold; - box-shadow: inset 0 -1px rgba(1, 10, 12, 0.95); } - #panel_window .menubar { - padding-left: 5px; } - #panel_window .menubar, #panel_window .menubar > .menuitem { - background-color: transparent; - color: #657b83; - font: bold; } - #panel_window .menubar .menuitem:insensitive { - color: rgba(101, 123, 131, 0.5); } - #panel_window .menubar .menuitem:insensitive GtkLabel { - color: inherit; } - #panel_window .menubar .menu .menuitem { - font: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: #657b83; } - -#content_frame { - padding-bottom: 14px; - background-color: #002b36; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - #content_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - #content_frame .button:active, #content_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - #content_frame .button:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - #content_frame .button:insensitive > GtkLabel { - color: inherit; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: rgba(0, 43, 54, 0.97); - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px rgba(0, 27, 34, 0.97); } - -#buttonbox_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - #buttonbox_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - #buttonbox_frame .button:active, #buttonbox_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - #buttonbox_frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -#login_window #user_combobox { - color: #657b83; - font: 13px; } - #login_window #user_combobox .menu { - font: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font: bold; } - -.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { - color: rgba(0, 27, 34, 0.97); } - -NemoWindow GtkEventBox { - background-color: #002b36; } - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; } - -GtkFileChooserDialog .sidebar, -NautilusWindow .sidebar, -NemoWindow .sidebar { - border-right: 1px solid rgba(5, 35, 43, 0.95); } - -GtkFileChooserDialog .sidebar:dir(rtl), -NautilusWindow .sidebar:dir(rtl), -NemoWindow .sidebar:dir(rtl) { - border-left: 1px solid rgba(5, 35, 43, 0.95); } - -GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, -NautilusWindow.csd.background, -NautilusWindow .list.sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar, -NautilusWindow GtkPlacesSidebar.sidebar { - background-color: rgba(7, 54, 66, 0.95); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { - border: 1px solid #268bd2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { - background-color: rgba(12, 92, 112, 0.95); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { - border: none; - color: #657b83; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { - color: rgba(101, 123, 131, 0.6); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, - NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { - background-color: rgba(101, 123, 131, 0.15); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { - color: inherit; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button { - color: #657b83; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button:hover, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button:active, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button:active { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button:not(:hover):not(:active) > GtkImage, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button:not(:hover):not(:active) > GtkImage { - opacity: 0.5; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, - NautilusWindow GtkPlacesSidebar.sidebar .separator, - NautilusWindow GtkPlacesSidebar.sidebar .view.separator { - color: transparent; } - -GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, -NautilusWindow.maximized GtkPlacesSidebar.sidebar { - background-color: #073642; } - -NemoWindow.csd.background, -NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, -MarlinViewWindow.csd.background, -MarlinViewWindow .source-list, -MarlinViewWindow .source-list.view, -MarlinViewWindow .source-list.view:prelight { - background-color: transparent; } - -NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, -MarlinViewWindow .sidebar, -MarlinViewWindow .source-list.sidebar.view { - background-color: rgba(7, 54, 66, 0.95); } - NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, - MarlinViewWindow .sidebar .view, - MarlinViewWindow .sidebar row, - MarlinViewWindow .source-list.sidebar.view .view, - MarlinViewWindow .source-list.sidebar.view row { - background-color: transparent; - color: #657b83; } - NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, - MarlinViewWindow .sidebar .view.image, - MarlinViewWindow .sidebar row.image, - MarlinViewWindow .source-list.sidebar.view .view.image, - MarlinViewWindow .source-list.sidebar.view row.image { - color: rgba(101, 123, 131, 0.7); } - NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, - MarlinViewWindow .sidebar .view.cell:selected, - MarlinViewWindow .sidebar row.cell:selected, - MarlinViewWindow .source-list.sidebar.view .view.cell:selected, - MarlinViewWindow .source-list.sidebar.view row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, - MarlinViewWindow .sidebar.frame, - MarlinViewWindow .source-list.sidebar.view.frame { - color: #657b83; } - NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, - MarlinViewWindow .sidebar .separator, - MarlinViewWindow .sidebar .sidebar.separator, - MarlinViewWindow .sidebar .view.separator, - MarlinViewWindow .source-list.sidebar.view .separator { - color: transparent; } - -NemoWindow.maximized .sidebar, -MarlinViewWindow.maximized .sidebar { - background-color: #073642; } - -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { - background-color: rgba(5, 35, 43, 0.95); } - -NautilusWindow NautilusWindowSlot { - background-color: #073642; } - -NautilusDesktopWindow NautilusWindowSlot { - background-color: transparent; } - -GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { - background-color: rgba(7, 54, 66, 0.95); } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #002b36; } - -GtkFileChooserDialog .dialog-action-box { - background-color: #002b36; } - -GtkFileChooserDialog .dialog-vbox > .frame { - color: #657b83; - border-color: transparent; } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { - background-color: transparent; - border-color: rgba(0, 0, 0, 0.95); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, -GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, -GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { - color: #657b83; } - -FeedReaderreaderUI.background.csd > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd > .titlebar .pane-separator, -GeditWindow.background.csd.maximized > .titlebar .pane-separator, -GeditWindow.background.csd > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { - background-color: rgba(0, 27, 34, 0.97); } - -FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: rgba(0, 43, 54, 0.97); } - FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: rgba(0, 49, 62, 0.97); } - -FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #002b36; } - FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #00313e; } - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; } - -GeditWindow.background.csd { - background-color: transparent; } - -GeditWindow.background .gedit-side-panel-paned .pane-separator { - background-color: rgba(5, 35, 43, 0.95); } - -GeditWindow.background .gedit-bottom-panel-paned .pane-separator { - background-color: #001317; } - -.gedit-bottom-panel-paned { - background-color: #073642; } - -.gedit-document-panel { - background-color: rgba(7, 54, 66, 0.95); } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel .list-row { - color: #657b83; } - .gedit-document-panel .list-row { - background-color: rgba(101, 123, 131, 0); - border: solid rgba(101, 123, 131, 0); - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:hover { - border: solid rgba(101, 123, 131, 0.15); - border-width: 3px 2px 3px 2px; - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel .list-row:active { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:active .button { - color: #fdf6e3; } - .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -GeditFileBrowserWidget { - background-color: rgba(7, 54, 66, 0.95); } - .maximized GeditFileBrowserWidget { - background-color: #073642; } - GeditFileBrowserWidget .horizontal { - background-color: transparent; - border-color: rgba(4, 28, 34, 0.95); } - GeditFileBrowserWidget .horizontal GtkComboBox { - color: #657b83; } - -GeditWindow.background.csd GeditFileBrowserView.view { - background-color: transparent; - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander { - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { - color: #268bd2; } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, -GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, - GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, - GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, - GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, -GtkFileChooserDialog .dialog-vbox > .frame .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.35)); - background-color: transparent; } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { - color: inherit; } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, - GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, #268bd2); } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.2)); } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { - background-color: #8da0a7; - border: 1px solid rgba(0, 0, 0, 0.3); } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, -NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, -MarlinViewWindow .sidebar .scrollbar .trough, -MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { - background-color: rgba(0, 0, 0, 0.2); - border: none; } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, -NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, -MarlinViewWindow .sidebar .scrollbar .slider, -MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { - background-color: rgba(141, 160, 167, 0.7); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, - NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, - MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { - background-color: #9cacb2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, - NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, - MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, - NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, - MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { - background-color: transparent; } - -@define-color theme_fg_color #657b83; -@define-color theme_text_color #657b83; -@define-color theme_bg_color #002b36; -@define-color theme_base_color #073642; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #657b83; -@define-color text_color #657b83; -@define-color bg_color #002b36; -@define-color base_color #073642; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #003340; -@define-color insensitive_fg_color alpha(#657b83, 0.5); -@define-color insensitive_base_color #073642; -@define-color theme_unfocused_fg_color #657b83; -@define-color theme_unfocused_text_color #657b83; -@define-color theme_unfocused_bg_color #002b36; -@define-color theme_unfocused_base_color #073642; -@define-color borders #001317; -@define-color unfocused_borders #001317; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #78b9e6; -@define-color content_view_bg #073642; -@define-color wm_title alpha(#59808f, 0.8); -@define-color wm_unfocused_title alpha(#59808f, 0.5); -@define-color wm_bg #002b36; -@define-color wm_bg_unfocused #00313e; -@define-color wm_highlight #003745; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #dc322f; -@define-color wm_button_close_hover_bg #cb4b16; -@define-color wm_button_close_active_bg #dc322f; -@define-color wm_icon_close_bg #002b36; -@define-color wm_button_hover_bg #657b83; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #002b36; -@define-color wm_icon_bg #93a1a1; -@define-color wm_icon_unfocused_bg #657b83; -@define-color wm_icon_hover_bg #93a1a1; -@define-color wm_icon_active_bg #fdf6e3; diff --git a/common/gtk-3.0/3.18/gtk-darker.css b/common/gtk-3.0/3.18/gtk-darker.css deleted file mode 100644 index 4351b22..0000000 --- a/common/gtk-3.0/3.18/gtk-darker.css +++ /dev/null @@ -1,4080 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -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: #1e6ea7; - -GtkWidget-visited-link-color: #16527c; - -GtkWidget-focus-padding: 2; - -GtkWidget-focus-line-width: 1; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - -GtkStatusbar-shadow-type: none; - outline-color: rgba(92, 97, 108, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; } - -.background { - color: #5c616c; - background-color: rgba(245, 246, 247, 0.999); } - -*:insensitive { - -gtk-image-effect: dim; } - -.gtkstyle-fallback { - background-color: #F5F6F7; - color: #5c616c; } - .gtkstyle-fallback:prelight { - background-color: white; - color: #5c616c; } - .gtkstyle-fallback:active { - background-color: #d9dde0; - color: #5c616c; } - .gtkstyle-fallback:insensitive { - background-color: #faf6eb; - color: rgba(92, 97, 108, 0.55); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view { - color: #5c616c; - background-color: #fdf6e3; } - .view.dim-label, .view.label.separator, .header-bar .view.subtitle { - color: rgba(92, 97, 108, 0.55); } - .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { - color: rgba(253, 246, 227, 0.65); - text-shadow: none; } - -.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #1e6ea7; - background-color: rgba(30, 110, 167, 0.2); } - -.label.separator, .popover .label.separator, .sidebar .label.view.separator { - color: #5c616c; } - -.label:insensitive { - color: rgba(92, 97, 108, 0.55); } - -.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { - opacity: 0.55; } - -GtkAssistant .sidebar { - background-color: #fdf6e3; - border-top: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #dcdfe3; } - -GtkAssistant.csd .sidebar { - border-top-style: none; } - -GtkAssistant .sidebar .label { - padding: 6px 12px; } - -GtkAssistant .sidebar .label.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -GtkTextView { - background-color: #f9f6ed; } - -.grid-child { - padding: 3px; - border-radius: 3px; } - .grid-child:selected { - outline-offset: -2px; } - -.popover.osd, .osd { - color: #657b83; - border: none; - background-color: rgba(7, 54, 66, 0.95); - background-clip: padding-box; - outline-color: rgba(101, 123, 131, 0.3); - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - .spinner:active { - opacity: 1; - animation: spin 1s linear infinite; } - .spinner:active:insensitive { - opacity: 0.5; } - -.entry { - border: 1px solid; - padding: 5px 8px; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry.image { - color: #7c7f84; } - .entry.image.left { - padding-left: 0; } - .entry.image.right { - padding-right: 0; } - .entry.flat, .entry.flat:focus { - padding: 2px; - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); - border: none; - border-radius: 0; } - .entry:focus { - background-clip: border-box; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(253, 246, 227, 0.55); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.55)); } - .entry:selected, .entry:selected:focus { - background-color: #268bd2; - color: #fdf6e3; } - .entry.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - .entry.warning { - color: #fdf6e3; - border-color: #cb4b16; - background-image: linear-gradient(to bottom, #df8f68); } - .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); - box-shadow: none; } - .entry.warning:selected, .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .entry.error { - color: #fdf6e3; - border-color: #dc322f; - background-image: linear-gradient(to bottom, #e98077); } - .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); - box-shadow: none; } - .entry.error:selected, .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - .osd .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.35)); - background-color: transparent; } - .osd .entry.image, .osd .entry.image:hover { - color: inherit; } - .osd .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, #268bd2); } - .osd .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.2)); } - -GtkSearchEntry.entry { - border-radius: 20px; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -.button { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 5px 8px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .button.flat, .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(251, 251, 252, 0); - border-color: rgba(101, 123, 131, 0); - transition: none; } - .button.flat:hover, .sidebar-button.button:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - .button.flat:hover:active, .sidebar-button.button:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; - -gtk-image-effect: highlight; } - .button:active, .button:checked { - background-clip: border-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; - transition-duration: 50ms; } - .button:active:not(:insensitive) .label:insensitive, .button:checked:not(:insensitive) .label:insensitive { - color: inherit; - opacity: 0.6; } - .button:active { - color: #5c616c; } - .button:active:hover, .button:checked { - color: #fdf6e3; } - .button.flat:insensitive, .sidebar-button.button:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; } - .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button:insensitive > GtkLabel { - color: inherit; } - .button:insensitive:active, .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { - color: inherit; } - .button.osd { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(3, 24, 29, 0.95); } - .button.osd.image-button, .header-bar .button.osd.titlebutton, - .titlebar .button.osd.titlebutton { - padding: 10px; } - .button.osd:hover { - color: #268bd2; } - .button.osd:active, .button.osd:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .button.osd:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .osd .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd .button:active, .osd .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd .button.flat, .osd .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd .button.flat:hover, .osd .sidebar-button.button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); - background-image: none; } - .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), - .osd .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { - box-shadow: none; } - .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .button.suggested-action.flat, .suggested-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .button.suggested-action:active, .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.suggested-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .button.destructive-action.flat, .destructive-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .button.destructive-action:active, .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.destructive-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - .button.image-button, .header-bar .button.titlebutton, - .titlebar .button.titlebutton { - padding: 7px; } - .header-bar .button.image-button, .header-bar .button.titlebutton { - padding: 7px 10px; } - .button.text-button { - padding-left: 16px; - padding-right: 16px; } - .button.text-button.image-button, .header-bar .button.text-button.titlebutton, - .titlebar .button.text-button.titlebutton { - padding: 5px 8px; } - .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, - .titlebar .button.text-button.titlebutton GtkLabel:first-child { - padding-left: 8px; } - .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, - .titlebar .button.text-button.titlebutton GtkLabel:last-child { - padding-right: 8px; } - .stack-switcher > .button { - outline-offset: -3px; } - .stack-switcher > .button > GtkLabel { - 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 { - padding: 5px 10px; } - .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, - .titlebar .stack-switcher > .button.titlebutton { - padding: 2px 4px; } - .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; } - .stack-switcher > .button.needs-attention > .label, - .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 4px; } - .stack-switcher > .button.needs-attention > .label:dir(rtl), - .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { - background-position: left 3px, left 4px; } - .inline-toolbar .button, .inline-toolbar .button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar GtkToolButton > .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .inline-toolbar GtkToolButton > .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { - color: inherit; } - .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { - color: inherit; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry { - border-left-color: rgba(101, 123, 131, 0.3); } - -.linked:not(.vertical):not(.path-bar) > .entry.error + .entry, -.linked:not(.vertical):not(.path-bar) > .entry + .entry.error { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > .entry.warning + .entry, -.linked:not(.vertical):not(.path-bar) > .entry + .entry.warning { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > .entry.error + .entry.warning, -.linked:not(.vertical):not(.path-bar) > .entry.warning + .entry.error { - border-left-color: #d43f23; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:last-child { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .entry, .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .button, -.linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:last-child { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .entry, .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .button, -.linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:last-child { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .entry, .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .button, -.linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > .button:active + .entry, -.linked:not(.vertical):not(.path-bar) > .button:checked + .entry { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > .button + .button { - border-left-style: none; } - -.linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 1px 0 #657b83; } - -.linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked:not(.vertical):not(.path-bar) > .button:active + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .button:checked + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .button.suggested-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .button.destructive-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .entry + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child) { - box-shadow: none; } - -.linked:not(.vertical).path-bar > .button + .button { - border-left-style: none; } - -.linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4), inset -1px 0 rgba(101, 123, 131, 0.4); } - -.linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.4); } - -.linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4); } - -.linked.vertical > .entry + .entry { - border-top-color: rgba(101, 123, 131, 0.3); } - -.linked.vertical > .entry.error + .entry, -.linked.vertical > .entry + .entry.error { - border-top-color: #dc322f; } - -.linked.vertical > .entry.warning + .entry, -.linked.vertical > .entry + .entry.warning { - border-top-color: #cb4b16; } - -.linked.vertical > .entry.error + .entry.warning, -.linked.vertical > .entry.warning + .entry.error { - border-top-color: #d43f23; } - -.linked.vertical > .entry + .entry:focus:not(:last-child), -.linked.vertical > .entry + .entry:focus:last-child { - border-top-color: #268bd2; } - -.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: #268bd2; } - -.linked.vertical > .entry + .entry.warning:focus:not(:last-child), -.linked.vertical > .entry + .entry.warning:focus:last-child { - border-top-color: #cb4b16; } - -.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, .linked.vertical > .entry.warning:focus:not(:only-child) + .button, -.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-top-color: #cb4b16; } - -.linked.vertical > .entry + .entry.error:focus:not(:last-child), -.linked.vertical > .entry + .entry.error:focus:last-child { - border-top-color: #dc322f; } - -.linked.vertical > .entry.error:focus:not(:only-child) + .entry, .linked.vertical > .entry.error:focus:not(:only-child) + .button, -.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-top-color: #dc322f; } - -.linked.vertical > .button:active + .entry, -.linked.vertical > .button:checked + .entry { - border-top-color: #268bd2; } - -.linked.vertical > .button + .button { - border-top-style: none; } - -.linked.vertical > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked.vertical > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 0 1px #657b83; } - -.linked.vertical > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked.vertical > .button:active + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .button:checked + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .button.suggested-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .button.destructive-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .entry + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child) { - box-shadow: none; } - -.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .linked:not(.vertical) > .entry, -.linked:not(.vertical) > .entry:focus, .osd .button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, -.linked:not(.vertical) > .button:hover, -.linked:not(.vertical) > .button:active, -.linked:not(.vertical) > .button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .primary-toolbar .linked:not(.vertical).path-bar > .button, .header-bar .linked:not(.vertical).path-bar > .button, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:active, .header-bar .linked:not(.vertical).path-bar > .button:active, .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, .header-bar .linked:not(.vertical).path-bar > .button:checked, .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, .header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .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) { - border-radius: 0; - border-right-style: none; } - -.linked:not(.vertical) > .entry:first-child, .osd .button:first-child, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, .header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -.linked:not(.vertical) > .entry:last-child, .osd .button:last-child, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, .header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - border-right-style: solid; } - -.linked:not(.vertical) > .entry:only-child, .osd .button:only-child, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, .header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { - border-radius: 3px; - border-style: solid; } - -.linked.vertical > .entry, -.linked.vertical > .entry:focus, .linked.vertical > .button, -.linked.vertical > .button:hover, -.linked.vertical > .button:active, -.linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox > .the-button-in-the-combobox { - border-radius: 0; - border-bottom-style: none; } - -.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border-bottom-style: solid; } - -.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { - border-radius: 3px; - border-style: solid; } - -.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, -.app-notification.frame .button.flat, -.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, -.app-notification.frame .button.flat:insensitive, -.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -.menuitem.button.flat, .menuitem.sidebar-button.button { - transition: none; - outline-offset: -1px; - border-radius: 2px; } - .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { - background-color: #edeff0; } - .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { - color: #5c616c; } - -*:link, .button:link, .button:visited { - color: #1e6ea7; } - *:link:visited, .button:visited { - color: #16527c; } - *:selected *:link:visited, *:selected .button:visited:link, *:selected .button:visited { - color: #a7cbdc; } - *:link:hover, .button:hover:link, .button:hover:visited { - color: #268bd2; } - *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { - color: #e8ebe1; } - *:link:active, .button:active:link, .button:active:visited { - color: #1e6ea7; } - *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { - color: #d2e1e0; } - *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { - color: #d2e1e0; } - -.button:link > .label, .button:visited > .label { - text-decoration-line: underline; } - -.spinbutton { - border-radius: 3px; } - .spinbutton .button { - background-image: none; - border: 1px solid rgba(220, 223, 227, 0.6); - border-style: none none none solid; - color: #646872; - border-radius: 0; - box-shadow: none; } - .spinbutton .button:dir(rtl) { - border-style: none solid none none; } - .spinbutton .button:first-child { - color: red; } - .spinbutton .button:insensitive { - color: rgba(92, 97, 108, 0.55); } - .spinbutton .button:active { - background-color: #268bd2; - color: #fdf6e3; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - border-radius: 2px 2px 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:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; } - GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: #268bd2; - border-radius: 0; - box-shadow: none; } - -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; } - GtkComboBox > .the-button-in-the-combobox { - padding-top: 3px; - padding-bottom: 3px; } - GtkComboBox:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { - -GtkWidget-wide-separators: true; } - GtkComboBox.combobox-entry .entry:dir(ltr) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - border-right-style: none; } - GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: 1px 0 #268bd2; } - GtkComboBox.combobox-entry .entry:dir(rtl) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; } - GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: -1px 0 #268bd2; } - GtkComboBox.combobox-entry .button:dir(ltr) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - GtkComboBox.combobox-entry .button:dir(rtl) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #F5F6F7; } - .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.85); } - -.primary-toolbar { - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #002b36, rgba(0, 15, 18, 0.97)) 1 0 1 0; } - -.inline-toolbar { - background-color: #edeef0; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -.search-bar { - background-color: #F5F6F7; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 0 1px; - padding: 3px; } - -.action-bar { - background-color: #edeef0; } - -.header-bar { - padding: 5px 5px 4px 5px; - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: #001b22; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; } - .csd .header-bar { - background-color: rgba(0, 43, 54, 0.97); - border-color: rgba(0, 27, 34, 0.97); } - .header-bar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .header-bar .title { - padding-left: 12px; - padding-right: 12px; } - .header-bar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .header-bar.selection-mode, .header-bar.titlebar.selection-mode { - color: #fdf6e3; - background-color: rgba(38, 139, 210, 0.95); - border-color: rgba(35, 128, 193, 0.95); - box-shadow: none; } - .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { - background-color: rgba(38, 139, 210, 0.95); - color: rgba(253, 246, 227, 0.6); } - .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.05); - border-color: rgba(253, 246, 227, 0.5); } - .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { - color: rgba(38, 139, 210, 0.95); - outline-color: rgba(38, 139, 210, 0.25); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { - color: rgba(38, 139, 210, 0.35); - background-color: rgba(253, 246, 227, 0.15); - border-color: rgba(253, 246, 227, 0.15); } - .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { - background-color: #268bd2; } - .tiled .header-bar, .tiled .header-bar:backdrop, - .maximized .header-bar, .maximized .header-bar:backdrop { - border-radius: 0; } - .maximized .header-bar { - background-color: #002b36; - border-color: #001b22; } - .header-bar.default-decoration, - .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, - .csd .header-bar.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: #002b36; - border-bottom-width: 0; } - .maximized .header-bar.default-decoration, .maximized - .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized - .csd .header-bar.default-decoration:backdrop { - background-color: #002b36; } - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: 3px 3px 0 0; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: inset 0 1px rgba(0, 55, 69, 0.97); } - .csd .titlebar { - background-color: rgba(0, 43, 54, 0.97); } - .titlebar:backdrop { - color: rgba(89, 128, 143, 0.5); - background-color: #00313e; } - .csd .titlebar:backdrop { - background-color: rgba(0, 49, 62, 0.97); } - .maximized .titlebar { - background-color: #002b36; } - .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { - background-color: #00313e; } - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { - background-color: transparent; } - -.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, -.header-bar > GtkBox > .separator.vertical, .sidebar -.header-bar > GtkBox > .vertical.view.separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(89, 128, 143, 0) 25%, rgba(89, 128, 143, 0.15) 25%, rgba(89, 128, 143, 0.15) 75%, rgba(89, 128, 143, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, - .header-bar > GtkBox > .separator.vertical:backdrop, .sidebar - .header-bar > GtkBox > .vertical.view.separator:backdrop { - opacity: 0.6; } - -.primary-toolbar .entry, .header-bar .entry { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { - color: inherit; } - .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { - opacity: 0.85; } - .primary-toolbar .entry:focus, .header-bar .entry:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - background-clip: padding-box; } - .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { - color: #fdf6e3; } - .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar .entry.warning, .header-bar .entry.warning { - color: white; - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(125, 63, 34, 0.988)); } - .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); } - .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar .entry.error, .header-bar .entry.error { - color: white; - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(135, 47, 50, 0.988)); } - .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); } - .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar .button, .header-bar .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - outline-offset: -3px; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:backdrop, .header-bar .button:backdrop { - opacity: 0.7; } - .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { - color: inherit; } - .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, .header-bar .linked:not(.vertical):not(.path-bar) > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), .header-bar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .primary-toolbar .linked:not(.vertical).path-bar > .button, .header-bar .linked:not(.vertical).path-bar > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover { - background-color: rgba(0, 193, 243, 0.37); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .primary-toolbar .linked:not(.vertical).path-bar > .button:active, .header-bar .linked:not(.vertical).path-bar > .button:active, .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, .header-bar .linked:not(.vertical).path-bar > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, .header-bar .linked:not(.vertical).path-bar > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button + .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button + .button, .primary-toolbar .linked:not(.vertical).path-bar > .button + .button, .header-bar .linked:not(.vertical).path-bar > .button + .button { - border-left-style: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):hover, .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37), inset -1px 0 rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry.warning, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry.error, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry.error { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:last-child, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .button, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:last-child, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .button, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:last-child, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .button, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .button:active + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .button:checked + .entry { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, .primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, .primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { - color: #fdf6e3; } - .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { - background-color: rgba(253, 246, 227, 0.1); - border-color: transparent; } - .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { - color: rgba(253, 246, 227, 0.4); } - -.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(89, 128, 143, 0.8); } - .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { - background-color: rgba(89, 128, 143, 0.05); - border-color: transparent; } - .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(89, 128, 143, 0.5); } - .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { - background-color: rgba(0, 0, 0, 0.1); } - -.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(89, 128, 143, 0.2); } - -.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { - color: inherit; } - .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { - border-right-style: none; } - .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { - border-left-style: none; } - .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { - opacity: 0.75; } - -.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.37)); } - .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.27)); } - -.primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, #005469); - border-color: rgba(0, 0, 0, 0.67); } - .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { - background-image: linear-gradient(to bottom, #006883); - border-color: rgba(0, 0, 0, 0.67); } - .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 72, 90, 0.991)); - border-color: rgba(0, 0, 0, 0.67); } - -.path-bar .button { - padding: 5px 10px; } - .path-bar .button:first-child { - padding-left: 10px; } - .path-bar .button:last-child { - padding-right: 10px; } - .path-bar .button:only-child { - padding-left: 14px; - padding-right: 14px; } - .path-bar .button GtkLabel:last-child { - padding-left: 4px; } - .path-bar .button GtkLabel:first-child { - padding-right: 4px; } - .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { - padding-right: 0; - padding-left: 0; } - .path-bar .button GtkImage { - padding-top: 2px; - padding-bottom: 1px; } - -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: rgba(92, 97, 108, 0.15); - border-top-color: rgba(0, 0, 0, 0.1); } - GtkTreeView.view:selected { - border-radius: 0; - border-left-color: #92c1db; - border-top-color: rgba(92, 97, 108, 0.1); } - GtkTreeView.view:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkTreeView.view:insensitive:selected { - color: #7cb6d9; } - GtkTreeView.view.dnd { - border-style: solid none; - border-width: 1px; - border-color: #41769f; } - GtkTreeView.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #adaca8; } - GtkTreeView.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - GtkTreeView.view.expander:hover { - color: #5c616c; } - GtkTreeView.view.expander:selected { - color: #bdd6de; } - GtkTreeView.view.expander:selected:hover { - color: #fdf6e3; } - GtkTreeView.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - GtkTreeView.view.progressbar, GtkTreeView.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-image: linear-gradient(to bottom, #268bd2); } - GtkTreeView.view.progressbar:selected, GtkTreeView.view.progressbar:selected:focus, GtkTreeView.view.progressbar:focus:selected, GtkTreeView.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-image: linear-gradient(to bottom, #fdf6e3); } - GtkTreeView.view.trough { - color: #5c616c; - background-image: linear-gradient(to bottom, #657b83); - border-radius: 3px; - border-width: 0; } - GtkTreeView.view.trough:selected, GtkTreeView.view.trough:selected:focus { - color: #fdf6e3; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); - border-radius: 3px; - border-width: 0; } - -column-header .button { - color: #7c7f84; - background-color: #fdf6e3; } - column-header .button:hover { - color: #268bd2; - box-shadow: none; - transition: none; } - column-header .button:active { - color: #5c616c; - transition: none; } - -column-header:last-child .button, column-header:last-child.button { - border-right-style: none; - border-image: none; } - -column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { - transition: none; - color: #268bd2; - box-shadow: inset 1px 1px 0 1px #268bd2, inset -1px 0 0 1px #268bd2, inset 1px 1px #fdf6e3, inset -1px 0 #fdf6e3; } - -column-header .button, column-header .button:hover, column-header .button:active { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; } - column-header .button:active, column-header .button:hover { - background-color: #fdf6e3; } - column-header .button:active:hover { - color: #5c616c; } - column-header .button:insensitive { - border-color: #F5F6F7; - background-image: none; } - -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #002b36; - color: rgba(89, 128, 143, 0.8); } - .menubar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .menubar > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - .menubar > .menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - .menubar > .menuitem:insensitive { - color: rgba(89, 128, 143, 0.2); - border-color: transparent; } - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; } - .csd .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - .menu .menuitem { - padding: 5px; } - .menu .menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - .menu .menuitem:insensitive { - color: rgba(92, 97, 108, 0.55); } - .menu .menuitem.separator { - color: rgba(253, 246, 227, 0); } - .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 #ede7d7; } - .menu.button.bottom { - border-top: 1px solid #ede7d7; } - .menu.button:hover { - background-color: #ede7d7; } - .menu.button:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent; } - -.csd .popup { - border-radius: 2px; } - -.menuitem .accelerator { - color: alpha(currentColor,0.55); } - -.popover { - padding: 2px; - border: 1px solid #cdd2d7; - border-radius: 3px; - background-clip: border-box; - background-color: #fdf6e3; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } - .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { - color: rgba(253, 246, 227, 0); } - .popover > .list, - .popover > .view, - .popover > .toolbar, - .popover > .inline-toolbar, - .popover.osd > .toolbar, - .popover.osd > .inline-toolbar { - border-style: none; - background-color: transparent; } - -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - .entry.cursor-handle.top, - .cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - .entry.cursor-handle.bottom, - .cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -.notebook { - padding: 0; - background-color: #fdf6e3; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -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.frame { - border: 1px solid #dcdfe3; } - .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.header { - background-color: #F5F6F7; } - .notebook.header.frame { - border: 0px solid #dcdfe3; } - .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.top { - box-shadow: inset 0 -1px #dcdfe3; } - .notebook.header.bottom { - box-shadow: inset 0 1px #dcdfe3; } - .notebook.header.right { - box-shadow: inset 1px 0 #dcdfe3; } - .notebook.header.left { - box-shadow: inset -1px 0 #dcdfe3; } - .notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - outline-offset: 0; } - .notebook tab.top, .notebook tab.bottom { - padding: 4px 15px; } - .notebook tab.left, .notebook tab.right { - padding: 4px 15px; } - .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { - padding-left: 12px; - padding-right: 12px; } - .notebook tab.reorderable-page.top, .notebook tab.top { - padding-top: 6px; - border-radius: 3.5px 2px 0 0; - border-width: 0; - border-top-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #fdf6e3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom, .notebook tab.bottom { - padding-bottom: 6px; - border-radius: 0 0 2px 3.5px; - border-width: 0; - border-bottom-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 -1px #fdf6e3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right, .notebook tab.right { - padding-right: 17px; - border-radius: 0 3.5px 3.5px 0; - border-width: 0; - border-right-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #fdf6e3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left, .notebook tab.left { - padding-left: 17px; - border-radius: 3.5px 0 0 3.5px; - border-width: 0; - border-left-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #fdf6e3; } - .notebook tab GtkLabel { - padding: 0 2px; - color: rgba(92, 97, 108, 0.55); } - .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(92, 97, 108, 0.775); } - .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { - color: #5c616c; } - .notebook tab .button { - padding: 0; - color: #92959d; } - .notebook tab .button:hover { - color: #ff4d4d; } - .notebook tab .button:active { - color: #268bd2; } - .notebook tab .button > GtkImage { - padding: 2px; } - .notebook.arrow { - color: rgba(92, 97, 108, 0.55); } - .notebook.arrow:hover { - color: rgba(92, 97, 108, 0.775); } - .notebook.arrow:active { - color: #5c616c; } - .notebook.arrow:insensitive { - color: rgba(92, 97, 108, 0.25); } - -.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: 6px; } - .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { - margin: 0; - background-color: #8a8e96; - border: 1px solid rgba(255, 255, 255, 0.6); - 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.99; } - .scrollbar .trough { - background-color: #fdf4de; - border: 1px none #dcdfe3; } - .scrollbar .slider { - background-color: #b8babf; } - .scrollbar .slider:hover { - background-color: #c7c9cd; } - .scrollbar .slider:prelight:active, .scrollbar .slider:active { - background-color: #268bd2; } - .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, #dcdfe3 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #fdf4de; } - .scrollbars-junction:dir(rtl), - .scrollbars-junction.frame:dir(rtl) { - border-image-slice: 0 1 0 0; } - -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 52; - -GtkSwitch-slider-height: 24; - outline-color: transparent; } - GtkSwitch.trough, GtkSwitch.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; } - GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { - background-position: left center; } - -GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough, -.menu .menuitem:hover GtkSwitch.trough, -.list-row:selected GtkSwitch.trough, -GtkInfoBar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -.header-bar GtkSwitch.trough, -.primary-toolbar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } - -GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough:active, -.menu .menuitem:hover GtkSwitch.trough:active, -.list-row:selected GtkSwitch.trough:active, -GtkInfoBar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -.header-bar GtkSwitch.trough:active, -.primary-toolbar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } - -GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough:insensitive, -.menu .menuitem:hover GtkSwitch.trough:insensitive, -.list-row:selected GtkSwitch.trough:insensitive, -GtkInfoBar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:insensitive, -.primary-toolbar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } - -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough:active:insensitive, -.menu .menuitem:hover GtkSwitch.trough:active:insensitive, -.list-row:selected GtkSwitch.trough:active:insensitive, -GtkInfoBar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:active:insensitive, -.primary-toolbar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } - -.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, -GtkFileChooserDialog .dialog-vbox > .frame .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check, -.menu .menuitem.check:hover, -GtkTreeView.view.check:selected, -.list-row:selected .check, -GtkInfoBar .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:insensitive, -.menu .menuitem.check:insensitive:hover, -GtkTreeView.view.check:insensitive:selected, -.list-row:selected .check:insensitive, -GtkInfoBar .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:inconsistent, -.menu .menuitem.check:inconsistent:hover, -GtkTreeView.view.check:inconsistent:selected, -.list-row:selected .check:inconsistent, -GtkInfoBar .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:inconsistent:insensitive, -.menu .menuitem.check:inconsistent:insensitive:hover, -GtkTreeView.view.check:inconsistent:insensitive:selected, -.list-row:selected .check:inconsistent:insensitive, -GtkInfoBar .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:checked, -.menu .menuitem.check:checked:hover, -GtkTreeView.view.check:checked:selected, -.list-row:selected .check:checked, -GtkInfoBar .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:checked:insensitive, -.menu .menuitem.check:checked:insensitive:hover, -GtkTreeView.view.check:checked:insensitive:selected, -.list-row:selected .check:checked:insensitive, -GtkInfoBar .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, -GtkFileChooserDialog .dialog-vbox > .frame .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio, -.menu .menuitem.radio:hover, -GtkTreeView.view.radio:selected, -.list-row:selected .radio, -GtkInfoBar .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:insensitive, -.menu .menuitem.radio:insensitive:hover, -GtkTreeView.view.radio:insensitive:selected, -.list-row:selected .radio:insensitive, -GtkInfoBar .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:inconsistent, -.menu .menuitem.radio:inconsistent:hover, -GtkTreeView.view.radio:inconsistent:selected, -.list-row:selected .radio:inconsistent, -GtkInfoBar .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:inconsistent:insensitive, -.menu .menuitem.radio:inconsistent:insensitive:hover, -GtkTreeView.view.radio:inconsistent:insensitive:selected, -.list-row:selected .radio:inconsistent:insensitive, -GtkInfoBar .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:checked, -.menu .menuitem.radio:checked:hover, -GtkTreeView.view.radio:checked:selected, -.list-row:selected .radio:checked, -GtkInfoBar .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:checked:insensitive, -.menu .menuitem.radio:checked:insensitive:hover, -GtkTreeView.view.radio:checked:insensitive:selected, -.list-row:selected .radio:checked:insensitive, -GtkInfoBar .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -.view.content-view.check:not(.list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); - background-color: transparent; } - -.view.content-view.check:checked:not(.list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-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: rgba(92, 97, 108, 0.55); } - -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; - color: alpha(currentColor,0.7); } - .scale.trough { - margin: 5px; } - .scale.fine-tune.trough { - border-radius: 5px; - margin: 3px; } - .scale.slider { - background-clip: border-box; - background-image: linear-gradient(to bottom, #fbfbfc); - border: 1px solid rgba(45, 55, 59, 0.5); - border-radius: 50%; - box-shadow: none; } - .scale.slider:hover { - background-image: linear-gradient(to bottom, white); - border-color: rgba(45, 55, 59, 0.5); } - .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #f9f6ec); - border-color: rgba(45, 55, 59, 0.3); } - .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .osd .scale.slider { - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.95)); - border-color: #268bd2; } - .osd .scale.slider:hover { - background-image: linear-gradient(to bottom, #268bd2); } - .osd .scale.slider:active { - background-image: linear-gradient(to bottom, #1e6ea7); - border-color: #1e6ea7; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider, - .menu .menuitem:hover .scale.slider, - .list-row:selected .scale.slider, - GtkInfoBar .scale.slider { - background-image: linear-gradient(to bottom, #fdf6e3); - border-color: #fdf6e3; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider:hover, - .menu .menuitem:hover .scale.slider:hover, - .list-row:selected .scale.slider:hover, - GtkInfoBar .scale.slider:hover { - background-image: linear-gradient(to bottom, #dde6e0); - border-color: #dde6e0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider:active, - .menu .menuitem:hover .scale.slider:active, - .list-row:selected .scale.slider:active, - GtkInfoBar .scale.slider:active { - background-image: linear-gradient(to bottom, #92c1db); - border-color: #92c1db; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider:insensitive, - .menu .menuitem:hover .scale.slider:insensitive, - .list-row:selected .scale.slider:insensitive, - GtkInfoBar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); - border-color: #9cc6db; } - .scale.trough { - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, #657b83); } - .scale.trough.highlight { - background-image: linear-gradient(to bottom, #268bd2); } - .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, rgba(38, 139, 210, 0.55)); } - .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(101, 123, 131, 0.55)); } - .osd .scale.trough { - background-image: linear-gradient(to bottom, rgba(10, 80, 98, 0.95)); - outline-color: rgba(101, 123, 131, 0.2); } - .osd .scale.trough.highlight { - background-image: none; - background-image: linear-gradient(to bottom, #268bd2); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough, - .menu .menuitem:hover .scale.trough, - .list-row:selected .scale.trough, - GtkInfoBar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough.highlight, - .menu .menuitem:hover .scale.trough.highlight, - .list-row:selected .scale.trough.highlight, - GtkInfoBar .scale.trough.highlight { - background-image: linear-gradient(to bottom, #fdf6e3); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough.highlight:insensitive, - .menu .menuitem:hover .scale.trough.highlight:insensitive, - .list-row:selected .scale.trough.highlight:insensitive, - GtkInfoBar .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough:insensitive, - .menu .menuitem:hover .scale.trough:insensitive, - .list-row:selected .scale.trough:insensitive, - GtkInfoBar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -GtkProgressBar { - padding: 0; - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - GtkProgressBar.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; } - -.progressbar { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - .progressbar.osd { - background-color: #268bd2; } - .list-row:selected .progressbar, - GtkInfoBar .progressbar { - background-color: #fdf6e3; } - -.osd .scale.progressbar { - background-color: #268bd2; } - -GtkProgressBar.trough, .level-bar.trough { - border: none; - border-radius: 3px; - background-color: #657b83; } - GtkProgressBar.trough.osd, .osd.level-bar.trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, - GtkInfoBar GtkProgressBar.trough, - GtkInfoBar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.2); } - -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; } - GtkLevelBar.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; } - -.level-bar.trough { - padding: 3px; - border-radius: 4px; } - -.level-bar.fill-block { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - .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 { - border-color: #859900; - background-color: #859900; } - .level-bar.fill-block.level-low { - border-color: #cb4b16; - background-color: #cb4b16; } - .level-bar.fill-block.empty-fill-block { - background-color: rgba(92, 97, 108, 0.2); - border-color: rgba(92, 97, 108, 0.2); } - -.frame { - border: 1px solid #dcdfe3; - padding: 0; } - .frame.flat { - border-style: none; } - .frame.action-bar { - padding: 6px; - border-width: 1px 0 0; } - -GtkScrolledWindow GtkViewport.frame { - border-style: none; } - -.separator, .sidebar.separator, .sidebar .view.separator { - color: rgba(0, 0, 0, 0.1); } - GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, - GtkFontButton .separator, - GtkFontButton .sidebar.separator, - GtkFontButton .sidebar .view.separator, .sidebar - GtkFontButton .view.separator, - GtkFileChooserButton .separator.vertical, - GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar - GtkFileChooserButton .vertical.view.separator, - GtkFontButton .separator.vertical, - GtkFontButton .sidebar .vertical.view.separator, .sidebar - GtkFontButton .vertical.view.separator { - -GtkWidget-wide-separators: true; } - -.list { - background-color: #fdf6e3; - border-color: #dcdfe3; } - -.list-row, -.grid-child { - padding: 2px; } - -.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { - background-color: rgba(0, 0, 0, 0.05); } - -.list-row.activatable:active { - color: #5c616c; } - -.list-row.activatable:selected:active { - color: #fdf6e3; } - -.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { - background-color: #227dbd; } - -.list-row.activatable:selected:insensitive { - color: rgba(253, 246, 227, 0.7); - background-color: rgba(38, 139, 210, 0.7); } - .list-row.activatable:selected:insensitive .label { - color: inherit; } - -.list-row, list-row.activatable { - transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .list-row:hover, list-row.activatable:hover { - transition: none; } - -.app-notification, -.app-notification.frame { - padding: 10px; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: rgba(2, 16, 20, 0.95); } - .app-notification .button, - .app-notification.frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .app-notification .button.flat, .app-notification .sidebar-button.button, - .app-notification.frame .button.flat, - .app-notification.frame .sidebar-button.button { - border-color: rgba(38, 139, 210, 0); } - .app-notification .button:hover, - .app-notification.frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .app-notification .button:active, .app-notification .button:checked, - .app-notification.frame .button:active, - .app-notification.frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification .button:insensitive, - .app-notification.frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - .expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - .expander:hover { - color: #aaaeb7; } - .expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GtkCalendar { - color: #5c616c; - border: 1px solid #dcdfe3; - border-radius: 3px; - padding: 2px; } - GtkCalendar:selected { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 1.5px; } - GtkCalendar.header { - color: #5c616c; - border: none; - border-radius: 0; } - GtkCalendar.button, GtkCalendar.button:focus { - color: rgba(92, 97, 108, 0.45); - border-color: transparent; - background-color: transparent; - background-image: none; } - GtkCalendar.button:hover, GtkCalendar.button:focus:hover { - color: #5c616c; } - GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { - color: rgba(92, 97, 108, 0.55); - background-color: transparent; - background-image: none; } - GtkCalendar:inconsistent { - color: alpha(currentColor,0.55); } - GtkCalendar.highlight { - color: #5c616c; } - -.message-dialog .dialog-action-area .button { - padding: 8px; } - -.message-dialog { - -GtkDialog-button-spacing: 0; } - .message-dialog .titlebar { - background-color: rgba(0, 43, 54, 0.97); - border-bottom: 1px solid rgba(0, 15, 18, 0.97); } - .message-dialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - .message-dialog.csd .dialog-action-area .button { - padding: 8px; - border-radius: 0; } - .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 { - border-right-style: none; - border-bottom-style: none; } - .message-dialog.csd .dialog-action-area .button:last-child { - border-bottom-right-radius: 3px; } - .message-dialog.csd .dialog-action-area .button:first-child { - border-left-style: none; - border-bottom-left-radius: 3px; } - -GtkFileChooserDialog .search-bar { - background-color: #F5F6F7; - border-color: #dcdfe3; - box-shadow: none; } - -GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #dcdfe3; } - -.sidebar, .sidebar .view { - border: none; - background-color: #fbfbfc; } - -GtkSidebarRow.list-row { - padding: 0px; } - -GtkSidebarRow .sidebar-revealer { - padding: 3px 14px 3px 12px; } - -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 .sidebar-placeholder-row { - border: solid 1px #268bd2; } - -GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { - background-color: #d9dde0; } - -GtkPlacesSidebar.sidebar .list-row.activatable { - color: rgba(92, 97, 108, 0.8); - border-width: 0; - border-style: solid; } - -.sidebar-button.button { - outline-radius: 50%; - border-radius: 50%; } - .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, - .titlebar .sidebar-button.button.titlebutton { - padding: 3px; } - .sidebar-button.button:not(:hover):not(:active) > GtkImage { - opacity: 0.5; } - -.sidebar-item { - padding: 10px 4px; } - .sidebar-item > GtkLabel { - padding-left: 6px; - padding-right: 6px; } - .sidebar-item.needs-attention > GtkLabel { - background-size: 6px 6px, 0 0; } - -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); } - -GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { - background-color: transparent; } - -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: #dcdfe3; } - -GtkPaned.wide { - -GtkPaned-handle-size: 5; - margin: 0; } - GtkPaned.wide .pane-separator { - background-color: transparent; - border-style: none solid; - border-color: #dcdfe3; - border-width: 1px; } - GtkPaned.wide.vertical .pane-separator { - border-style: solid none; } - -GtkInfoBar { - border-style: none; } - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: #268bd2; - color: #fdf6e3; } - -.list-row:selected .button, GtkInfoBar .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .list-row:selected .button:hover, GtkInfoBar .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.2); } - .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.2); } - -.tooltip { - color: #657b83; - border-radius: 2px; } - .tooltip.background { - background-color: rgba(12, 92, 112, 0.95); - background-clip: padding-box; } - .tooltip.window-frame.csd { - background-color: transparent; } - -.tooltip * { - padding: 4px; - background-color: transparent; - color: inherit; } - -:selected GtkColorSwatch { - box-shadow: none; } - :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { - border-color: #fdf6e3; } - -GtkColorSwatch.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -GtkColorSwatch.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { - border-radius: 3px; } - -GtkColorSwatch:hover, GtkColorSwatch:hover:selected { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } - -GtkColorEditor GtkColorSwatch { - border-radius: 3px; } - GtkColorEditor GtkColorSwatch:hover { - background-image: none; } - -GtkColorSwatch.color-dark { - color: white; - outline-color: rgba(0, 0, 0, 0.3); } - -GtkColorSwatch.color-light { - color: black; - outline-color: rgba(255, 255, 255, 0.5); } - -GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { - border: 1px solid rgba(0, 0, 0, 0.15); } - GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { - border-color: rgba(0, 0, 0, 0.25); } - -GtkColorSwatch#add-color-button { - border-style: solid; - border-width: 1px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - GtkColorSwatch#add-color-button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - GtkColorSwatch#add-color-button .overlay { - border-color: transparent; - background-color: transparent; - background-image: none; } - -GtkColorButton.button { - padding: 5px; } - GtkColorButton.button GtkColorSwatch { - border-radius: 0; } - -.content-view { - background-color: #fdf6e3; } - .content-view:hover { - -gtk-image-effect: highlight; } - -.scale-popup .button { - padding: 6px; } - .scale-popup .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - -GtkVolumeButton.button { - padding: 8px; } - -.touch-selection, -.context-menu { - font: initial; } - -.monospace { - font: Monospace; } - -.overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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; } - -.window-frame { - border-radius: 3px 3px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.97), 0 8px 8px 0 rgba(0, 0, 0, 0.2); - margin: 10px; } - .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.87), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } - .window-frame.tiled { - border-radius: 0; } - .window-frame.popup { - box-shadow: none; - border-radius: 0; } - .window-frame.ssd { - border-radius: 3px 3px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } - .window-frame.ssd.maximized { - border-radius: 0; } - .window-frame.csd.popup { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.message-dialog { - border-radius: 3px; } - .window-frame.solid-csd { - border-radius: 0; - margin: 1px; - background-color: rgba(0, 43, 54, 0.97); - box-shadow: none; } - -.header-bar.default-decoration .button.titlebutton, -.titlebar.default-decoration .button.titlebutton { - padding-top: 0px; - padding-bottom: 0px; } - -.header-bar .button.titlebutton, -.titlebar .button.titlebutton { - padding-left: 4px; - padding-right: 4px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(0, 43, 54, 0); } - .header-bar .button.titlebutton:not(GtkMenuButton), - .titlebar .button.titlebutton:not(GtkMenuButton) { - padding-top: 8px; - padding-bottom: 8px; } - .header-bar .button.titlebutton:hover, - .titlebar .button.titlebutton:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, - .titlebar .button.titlebutton:active, - .titlebar .button.titlebutton:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.close, - .titlebar .button.titlebutton.maximize, - .titlebar .button.titlebutton.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; } - .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - opacity: 1; } - .header-bar .button.titlebutton.close, - .titlebar .button.titlebutton.close { - background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } - .header-bar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.close:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.close:hover, - .titlebar .button.titlebutton.close:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } - .header-bar .button.titlebutton.close:active, - .titlebar .button.titlebutton.close:active { - background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } - .header-bar .button.titlebutton.maximize, - .titlebar .button.titlebutton.maximize { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-dark.png"), url("assets/titlebutton-maximize-dark@2.png")); } - .header-bar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.maximize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop-dark.png"), url("assets/titlebutton-maximize-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.maximize:hover, - .titlebar .button.titlebutton.maximize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover-dark.png"), url("assets/titlebutton-maximize-hover-dark@2.png")); } - .header-bar .button.titlebutton.maximize:active, - .titlebar .button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active-dark.png"), url("assets/titlebutton-maximize-active-dark@2.png")); } - .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.minimize { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-dark.png"), url("assets/titlebutton-minimize-dark@2.png")); } - .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop-dark.png"), url("assets/titlebutton-minimize-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.minimize:hover, - .titlebar .button.titlebutton.minimize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover-dark.png"), url("assets/titlebutton-minimize-hover-dark@2.png")); } - .header-bar .button.titlebutton.minimize:active, - .titlebar .button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active-dark.png"), url("assets/titlebutton-minimize-active-dark@2.png")); } - -.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, -GtkEntry.gb-command-bar-entry.entry.flat:focus:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, -NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, -NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, -NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, -NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, -NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); } - -GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, -ScratchMainWindow .notebook tab.reorderable-page.top:active, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, -ScratchMainWindow .notebook tab.top:active, -ScratchMainWindow .notebook tab.top.active-page, -ScratchMainWindow .notebook tab.top.active-page:hover, -EphyNotebook.notebook tab.reorderable-page.top:active, -EphyNotebook.notebook tab.reorderable-page.top.active-page, -EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, -EphyNotebook.notebook tab.top:active, -EphyNotebook.notebook tab.top.active-page, -EphyNotebook.notebook tab.top.active-page:hover, -MidoriNotebook .notebook tab.reorderable-page.top:active, -MidoriNotebook .notebook tab.reorderable-page.top.active-page, -MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, -MidoriNotebook .notebook tab.top:active, -MidoriNotebook .notebook tab.top.active-page, -MidoriNotebook .notebook tab.top.active-page:hover, -TerminalWindow .notebook tab.reorderable-page.top:active, -TerminalWindow .notebook tab.reorderable-page.top.active-page, -TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -TerminalWindow .notebook tab.top:active, -TerminalWindow .notebook tab.top.active-page, -TerminalWindow .notebook tab.top.active-page:hover { - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - -TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top { - padding-top: 7px; - border-top-width: 3px; } - -TerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #001b22, inset 0 -1px #dcdfe3; } - -GtkHTML { - background-color: #fdf6e3; - color: #5c616c; } - GtkHTML:active { - color: #fdf6e3; - background-color: #268bd2; } - -SushiFontWidget { - padding: 6px 12px; } - -TerminalWindow .background { - background-color: transparent; } - -TerminalWindow .scrollbar.vertical .slider { - margin-left: 3px; } - -TerminalWindow .scrollbar.trough { - border-width: 0; } - -TerminalWindow .notebook tab .button { - color: #92959d; } - TerminalWindow .notebook tab .button:hover { - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - -TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { - color: #ff4d4d; } - -TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { - color: #268bd2; } - -EelEditableLabel.entry { - transition: none; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { - color: #5c616c; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { - color: #fdf6e3; } - -.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, -.nautilus-list-dim-label { - color: #a9acb2; } - .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, - .nautilus-list-dim-label:selected, - .nautilus-list-dim-label:selected:focus { - color: #d2e1e0; } - -NautilusNotebook.notebook { - background-color: #fdf6e3; } - NautilusNotebook.notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; } - -NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { - padding: 5px; - box-shadow: none; - background-color: #fdf6e3; } - -.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, -.titlebar .nautilus-circular-button.button.titlebutton { - border-radius: 50%; - outline-radius: 50%; - padding: 8px; } - -.disk-space-display { - border-style: solid; - border-width: 1px; } - .disk-space-display.unknown { - background-color: rgba(92, 97, 108, 0.5); - border-color: rgba(69, 72, 80, 0.5); } - .disk-space-display.used { - background-color: rgba(38, 139, 210, 0.8); - border-color: rgba(30, 110, 167, 0.8); } - .disk-space-display.free { - background-color: #edeef0; - border-color: #d0d5da; } - -NemoWindow .sidebar .frame { - border-width: 0; } - -NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #dcdfe3; } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { - background-color: rgba(0, 193, 243, 0.37); } - NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37), inset -1px 0 rgba(0, 0, 0, 0.37); } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - -.gedit-headerbar-paned { - color: rgba(0, 27, 34, 0.97); } - -.open-document-selector-treeview.view { - padding: 3px 6px 3px 6px; - border-color: #fdf6e3; } - .open-document-selector-treeview.view:prelight { - background-color: #f2ecdb; } - .open-document-selector-treeview.view:prelight:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.open-document-selector-name-label { - color: #5c616c; } - -.open-document-selector-path-label { - color: #adaca8; - font-size: smaller; } - .open-document-selector-path-label:selected { - color: rgba(253, 246, 227, 0.9); } - -.gedit-document-panel .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; } - .gedit-document-panel .list-row .button GtkImage { - color: inherit; } - -.gedit-document-panel .prelight-row .button { - color: #92959d; } - -.gedit-document-panel .list-row .button:hover, -.gedit-document-panel .prelight-row .button:hover { - color: #ff4d4d; } - -.gedit-document-panel .prelight-row:selected .button:hover { - color: #ff6666; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; } - .gedit-document-panel .prelight-row:selected .button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel .prelight-row .button:active { - color: #5c616c; } - -.gedit-document-panel-dragged-row { - border: 1px solid #dcdfe3; - background-color: #d9dde0; - color: #5c616c; } - -GeditStatusbar { - border-top: 1px solid #dcdfe3; - background-color: #F5F6F7; } - -GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton.sidebar-button.button:prelight, -GeditStatusMenuButton:checked.button.flat, -GeditStatusMenuButton.sidebar-button.button:checked { - border-bottom-style: none; - border-radius: 0; } - -GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #dcdfe3; } - -.gedit-map-frame { - border-color: rgba(0, 0, 0, 0.3); } - -.gedit-search-entry-occurrences-tag { - color: rgba(92, 97, 108, 0.6); - border: none; - margin: 2px; - padding: 2px; } - -GeditViewFrame .gedit-search-slider { - background-color: #fbfbfc; - padding: 6px; - border-color: #dcdfe3; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -GbWorkbench .floating-bar { - color: #5c616c; } - -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { - color: inherit; } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; } - -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; } - -GbPreferencesPageLanguage .entry { - border-radius: 3px 3px 0 0; } - -GbPreferencesPageLanguage .frame { - border-top-width: 0; } - -GbEditorTweakWidget .linked.vertical > .entry { - border-bottom-style: solid; } - -GbEditorTweakWidget GtkScrolledWindow { - border-top: none; } - -GbViewStack GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbViewStack.focused GtkBox.header.notebook, -#project_sidebar_header.focused { - background-color: #fdf6e3; } - -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { - border-radius: 3px 0 0 3px; } - -GbWorkspacePane GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbWorkspacePane:not(.focused) GtkBox.header.notebook { - background-color: #F5F6F7; } - -DhSidebar GtkSearchEntry.entry, -SymbolTree GtkSearchEntry.entry { - border-left: none; - border-right: none; - border-top: none; - border-radius: 0px; } - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: #657b83; - background-image: none; - background-color: #073642; - padding: 6px 6px 6px 6px; - border: none; } - -GbTerminalView { - background-color: #fdf6e3; - color: #5c616c; } - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; } - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; } - -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; } - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbViewStack.focused GtkBox.header.notebook { - background-color: #fdf6e3; } - GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { - opacity: 1; } - -EphyWindow .floating-bar { - color: #5c616c; } - -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon { - background-color: rgba(92, 97, 108, 0.3); - border-radius: 2px; } - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: #78b9e6; } - -.documents-entry-tag { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover { - color: #fdf6e3; - background-color: #3295da; } - .documents-entry-tag:active { - color: #fdf6e3; - background-color: #2380c1; } - .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; } - .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { - color: rgba(253, 246, 227, 0.7); } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -TotemGrilo.vertical GdMainView.frame { - border-width: 0; } - -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { - background-color: #268bd2; } - -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; } - -.gnome-panel-menu-bar.menubar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: #657b83; - background-color: #05242c; } - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: #657b83; } - -PanelApplet .button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); - border-color: rgba(0, 0, 0, 0.17); } - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: rgba(0, 0, 0, 0.25); - border-radius: 0; - border-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -PanelApplet:hover { - color: white; } - -PanelApplet:active, -PanelApplet:hover:active { - color: #268bd2; } - -WnckPager { - color: #333e42; } - WnckPager:selected { - color: #268bd2; } - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; } - -ClockBox { - color: #657b83; } - -.xfce4-panel.panel { - background-color: rgba(5, 36, 44, 0.95); - text-shadow: none; - icon-shadow: none; } - .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { - color: #657b83; - background-color: rgba(5, 36, 44, 0); - border-radius: 0; - border: none; } - .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { - border: none; - background-color: rgba(10, 74, 90, 0.95); } - .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - -.floating-bar { - background-color: #268bd2; - color: #fdf6e3; } - .floating-bar.top { - border-radius: 0 0 2px 2px; } - .floating-bar.right { - border-radius: 2px 0 0 2px; } - .floating-bar.bottom { - border-radius: 2px 2px 0 0; } - .floating-bar.left { - border-radius: 0 2px 2px 0; } - .floating-bar .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - background-color: transparent; - box-shadow: none; - border: none; } - -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; } - -MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { - color: #fdf6e3; - background-color: #268bd2; - outline-color: transparent; } - -MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { - background-color: transparent; } - -MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { - outline-color: transparent; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.37)); - background-color: transparent; } - .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - .marlin-pathbar.pathbar:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.22)); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel .maximized { - background-color: rgba(5, 36, 44, 0.95); - box-shadow: inset 0 -1px rgba(1, 10, 12, 0.95); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - .color-light .composited-indicator { - color: rgba(0, 0, 0, 0.65); - text-shadow: 0 0 2px rgba(255, 255, 255, 0.3), 0 1px 0 rgba(255, 255, 255, 0.25); - icon-shadow: 0 0 2px rgba(255, 255, 255, 0.3), 0 1px 0 rgba(255, 255, 255, 0.25); } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - font: initial; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .sidebar { - background: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { - padding: 0 3px; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { - color: #fdf6e3; - background-color: #268bd2; } - WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { - color: rgba(92, 97, 108, 0.55); } - -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; } - -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: #5c616c; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration.top { - border: 1px solid rgba(0, 15, 18, 0.97); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #002b36); - color: rgba(89, 128, 143, 0.8); - box-shadow: inset 0 1px rgba(0, 55, 69, 0.97); } - UnityDecoration.top:backdrop { - border-bottom-width: 0; - color: rgba(89, 128, 143, 0.5); } - UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 15, 18, 0.97)); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: rgba(0, 75, 95, 0.97); - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; } - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar GtkLabel { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #dcdfe3; - border-right: 1px solid #dcdfe3; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #dcdfe3; } - .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { - padding: 0 3px 0 3px; } - -.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #dcdfe3; - background-color: #F5F6F7; } - .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view { - background-color: #F5F6F7; - color: #5c616c; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:prelight { - background-color: white; } - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: #F5F6F7; - background-image: none; } - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #5c616c; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -.dynamic-notebook .notebook tab .button > GtkImage { - padding: 0; } - -GraniteWidgetsWelcome { - background-color: #fdf6e3; } - -GraniteWidgetsWelcome GtkLabel { - color: #a9acb2; - font: open sans 11; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(92, 97, 108, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #fdf6e3); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry.entry { - padding: 4px; } - -.h1 { - font: open sans 24px; } - -.h2 { - font: open sans light 18px; } - -.h3 { - font: open sans 11px; } - -.h4, -.category-label { - color: #8a8e96; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: rgba(5, 36, 44, 0.95); - color: #657b83; - font: bold; - box-shadow: inset 0 -1px rgba(1, 10, 12, 0.95); } - #panel_window .menubar { - padding-left: 5px; } - #panel_window .menubar, #panel_window .menubar > .menuitem { - background-color: transparent; - color: #657b83; - font: bold; } - #panel_window .menubar .menuitem:insensitive { - color: rgba(101, 123, 131, 0.5); } - #panel_window .menubar .menuitem:insensitive GtkLabel { - color: inherit; } - #panel_window .menubar .menu .menuitem { - font: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: #5c616c; } - -#content_frame { - padding-bottom: 14px; - background-color: #F5F6F7; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - #content_frame .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - #content_frame .button:active, #content_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - #content_frame .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - #content_frame .button:insensitive > GtkLabel { - color: inherit; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: rgba(7, 54, 66, 0.95); - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px rgba(7, 54, 66, 0.95); } - -#buttonbox_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - #buttonbox_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - #buttonbox_frame .button:active, #buttonbox_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - #buttonbox_frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -#login_window #user_combobox { - color: #5c616c; - font: 13px; } - #login_window #user_combobox .menu { - font: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font: bold; } - -.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { - color: rgba(0, 27, 34, 0.97); } - -NemoWindow GtkEventBox { - background-color: #F5F6F7; } - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; } - -GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, -NautilusWindow.csd.background, -NautilusWindow .list.sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar, -NautilusWindow GtkPlacesSidebar.sidebar { - background-color: rgba(7, 54, 66, 0.95); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { - border: 1px solid #268bd2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { - background-color: rgba(12, 92, 112, 0.95); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { - border: none; - color: #657b83; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { - color: rgba(101, 123, 131, 0.6); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, - NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { - background-color: rgba(101, 123, 131, 0.15); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { - color: inherit; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button { - color: #657b83; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button:hover, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button:active, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button:active { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button:not(:hover):not(:active) > GtkImage, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button:not(:hover):not(:active) > GtkImage { - opacity: 0.5; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, - NautilusWindow GtkPlacesSidebar.sidebar .separator, - NautilusWindow GtkPlacesSidebar.sidebar .view.separator { - color: transparent; } - -GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, -NautilusWindow.maximized GtkPlacesSidebar.sidebar { - background-color: #073642; } - -NemoWindow.csd.background, -NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, -MarlinViewWindow.csd.background, -MarlinViewWindow .source-list, -MarlinViewWindow .source-list.view, -MarlinViewWindow .source-list.view:prelight { - background-color: transparent; } - -NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, -MarlinViewWindow .sidebar, -MarlinViewWindow .source-list.sidebar.view { - background-color: rgba(7, 54, 66, 0.95); } - NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, - MarlinViewWindow .sidebar .view, - MarlinViewWindow .sidebar row, - MarlinViewWindow .source-list.sidebar.view .view, - MarlinViewWindow .source-list.sidebar.view row { - background-color: transparent; - color: #657b83; } - NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, - MarlinViewWindow .sidebar .view.image, - MarlinViewWindow .sidebar row.image, - MarlinViewWindow .source-list.sidebar.view .view.image, - MarlinViewWindow .source-list.sidebar.view row.image { - color: rgba(101, 123, 131, 0.7); } - NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, - MarlinViewWindow .sidebar .view.cell:selected, - MarlinViewWindow .sidebar row.cell:selected, - MarlinViewWindow .source-list.sidebar.view .view.cell:selected, - MarlinViewWindow .source-list.sidebar.view row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, - MarlinViewWindow .sidebar.frame, - MarlinViewWindow .source-list.sidebar.view.frame { - color: #657b83; } - NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, - MarlinViewWindow .sidebar .separator, - MarlinViewWindow .sidebar .sidebar.separator, - MarlinViewWindow .sidebar .view.separator, - MarlinViewWindow .source-list.sidebar.view .separator { - color: transparent; } - -NemoWindow.maximized .sidebar, -MarlinViewWindow.maximized .sidebar { - background-color: #073642; } - -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { - background-color: rgba(7, 54, 66, 0.95); } - -NautilusWindow NautilusWindowSlot { - background-color: #fdf6e3; } - -NautilusDesktopWindow NautilusWindowSlot { - background-color: transparent; } - -GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { - background-color: rgba(7, 54, 66, 0.95); } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-action-box { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-vbox > .frame { - color: #657b83; - border-color: transparent; } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { - background-color: transparent; - border-color: rgba(4, 28, 34, 0.95); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, -GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, -GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { - color: #657b83; } - -FeedReaderreaderUI.background.csd > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd > .titlebar .pane-separator, -GeditWindow.background.csd.maximized > .titlebar .pane-separator, -GeditWindow.background.csd > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { - background-color: rgba(0, 27, 34, 0.97); } - -FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: rgba(0, 43, 54, 0.97); } - FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: rgba(0, 49, 62, 0.97); } - -FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #002b36; } - FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #00313e; } - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; } - -GeditWindow.background.csd { - background-color: transparent; } - -GeditWindow.background .gedit-side-panel-paned .pane-separator { - background-color: rgba(7, 54, 66, 0.95); } - -GeditWindow.background .gedit-bottom-panel-paned .pane-separator { - background-color: #dcdfe3; } - -.gedit-bottom-panel-paned { - background-color: #fdf6e3; } - -.gedit-document-panel { - background-color: rgba(7, 54, 66, 0.95); } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel .list-row { - color: #657b83; } - .gedit-document-panel .list-row { - background-color: rgba(101, 123, 131, 0); - border: solid rgba(101, 123, 131, 0); - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:hover { - border: solid rgba(101, 123, 131, 0.15); - border-width: 3px 2px 3px 2px; - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel .list-row:active { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:active .button { - color: #fdf6e3; } - .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -GeditFileBrowserWidget { - background-color: rgba(7, 54, 66, 0.95); } - .maximized GeditFileBrowserWidget { - background-color: #073642; } - GeditFileBrowserWidget .horizontal { - background-color: transparent; - border-color: rgba(4, 28, 34, 0.95); } - GeditFileBrowserWidget .horizontal GtkComboBox { - color: #657b83; } - -GeditWindow.background.csd GeditFileBrowserView.view { - background-color: transparent; - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander { - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { - color: #268bd2; } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, -GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, - GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, - GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, - GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, -GtkFileChooserDialog .dialog-vbox > .frame .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.35)); - background-color: transparent; } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { - color: inherit; } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, - GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, #268bd2); } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.2)); } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { - background-color: #8da0a7; - border: 1px solid rgba(0, 0, 0, 0.3); } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, -NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, -MarlinViewWindow .sidebar .scrollbar .trough, -MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { - background-color: rgba(0, 0, 0, 0.2); - border: none; } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, -NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, -MarlinViewWindow .sidebar .scrollbar .slider, -MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { - background-color: rgba(141, 160, 167, 0.7); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, - NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, - MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { - background-color: #9cacb2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, - NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, - MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, - NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, - MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { - background-color: transparent; } - -@define-color theme_fg_color #5c616c; -@define-color theme_text_color #5c616c; -@define-color theme_bg_color #F5F6F7; -@define-color theme_base_color #fdf6e3; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #5c616c; -@define-color text_color #5c616c; -@define-color bg_color #F5F6F7; -@define-color base_color #fdf6e3; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #faf6eb; -@define-color insensitive_fg_color alpha(#5c616c, 0.5); -@define-color insensitive_base_color #fdf6e3; -@define-color theme_unfocused_fg_color #5c616c; -@define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #F5F6F7; -@define-color theme_unfocused_base_color #fdf6e3; -@define-color borders #dcdfe3; -@define-color unfocused_borders #dcdfe3; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #1e6ea7; -@define-color content_view_bg #fdf6e3; -@define-color wm_title alpha(#59808f, 0.8); -@define-color wm_unfocused_title alpha(#59808f, 0.5); -@define-color wm_bg #002b36; -@define-color wm_bg_unfocused #00313e; -@define-color wm_highlight #003745; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #dc322f; -@define-color wm_button_close_hover_bg #cb4b16; -@define-color wm_button_close_active_bg #dc322f; -@define-color wm_icon_close_bg #002b36; -@define-color wm_button_hover_bg #657b83; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #002b36; -@define-color wm_icon_bg #93a1a1; -@define-color wm_icon_unfocused_bg #657b83; -@define-color wm_icon_hover_bg #93a1a1; -@define-color wm_icon_active_bg #fdf6e3; diff --git a/common/gtk-3.0/3.18/gtk-solid-dark.css b/common/gtk-3.0/3.18/gtk-solid-dark.css deleted file mode 100644 index 53a296a..0000000 --- a/common/gtk-3.0/3.18/gtk-solid-dark.css +++ /dev/null @@ -1,4084 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -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: #78b9e6; - -GtkWidget-visited-link-color: #4ca2df; - -GtkWidget-focus-padding: 2; - -GtkWidget-focus-line-width: 1; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - -GtkStatusbar-shadow-type: none; - outline-color: rgba(101, 123, 131, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; } - -.background { - color: #657b83; - background-color: #002b36; } - -*:insensitive { - -gtk-image-effect: dim; } - -.gtkstyle-fallback { - background-color: #002b36; - color: #657b83; } - .gtkstyle-fallback:prelight { - background-color: #005469; - color: #657b83; } - .gtkstyle-fallback:active { - background-color: #000203; - color: #657b83; } - .gtkstyle-fallback:insensitive { - background-color: #003340; - color: rgba(101, 123, 131, 0.45); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view { - color: #657b83; - background-color: #073642; } - .view.dim-label, .view.label.separator, .header-bar .view.subtitle { - color: rgba(101, 123, 131, 0.55); } - .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { - color: rgba(253, 246, 227, 0.65); - text-shadow: none; } - -.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #1e6ea7; - background-color: rgba(30, 110, 167, 0.2); } - -.label.separator, .popover .label.separator, .sidebar .label.view.separator { - color: #657b83; } - -.label:insensitive { - color: rgba(101, 123, 131, 0.45); } - -.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { - opacity: 0.55; } - -GtkAssistant .sidebar { - background-color: #073642; - border-top: 1px solid #001317; } - GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #001317; } - GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #001317; } - -GtkAssistant.csd .sidebar { - border-top-style: none; } - -GtkAssistant .sidebar .label { - padding: 6px 12px; } - -GtkAssistant .sidebar .label.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -GtkTextView { - background-color: #04313c; } - -.grid-child { - padding: 3px; - border-radius: 3px; } - .grid-child:selected { - outline-offset: -2px; } - -.popover.osd, .osd { - color: #657b83; - border: none; - background-color: #073642; - background-clip: padding-box; - outline-color: rgba(101, 123, 131, 0.3); - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - .spinner:active { - opacity: 1; - animation: spin 1s linear infinite; } - .spinner:active:insensitive { - opacity: 0.5; } - -.entry { - border: 1px solid; - padding: 5px 8px; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #657b83; - border-color: #001317; - background-color: #073642; - background-image: linear-gradient(to bottom, #073642); } - .entry.image { - color: #526d76; } - .entry.image.left { - padding-left: 0; } - .entry.image.right { - padding-right: 0; } - .entry.flat, .entry.flat:focus { - padding: 2px; - color: #657b83; - border-color: #001317; - background-color: #073642; - background-image: linear-gradient(to bottom, #073642); - border: none; - border-radius: 0; } - .entry:focus { - background-clip: border-box; - color: #657b83; - border-color: #001317; - background-color: #073642; - background-image: linear-gradient(to bottom, #073642); - box-shadow: inset 1px 0 #268bd2, inset -1px 0 #268bd2, inset 0 1px #268bd2, inset 0 -1px #268bd2; } - .entry:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(7, 54, 66, 0.55); - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.55)); } - .entry:selected, .entry:selected:focus { - background-color: #268bd2; - color: #fdf6e3; } - .entry.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - .entry.warning { - color: #fdf6e3; - border-color: #001317; - background-image: linear-gradient(to bottom, #7d4328); } - .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); - box-shadow: none; } - .entry.warning:selected, .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .entry.error { - color: #fdf6e3; - border-color: #001317; - background-image: linear-gradient(to bottom, #873437); } - .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); - box-shadow: none; } - .entry.error:selected, .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - .osd .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.4)); - background-color: transparent; } - .osd .entry.image, .osd .entry.image:hover { - color: inherit; } - .osd .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, #268bd2); } - .osd .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.25)); } - -GtkSearchEntry.entry { - border-radius: 20px; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -.button { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 5px 8px; - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .button.flat, .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(8, 62, 75, 0); - border-color: rgba(0, 19, 23, 0); - transition: none; } - .button.flat:hover, .sidebar-button.button:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - .button.flat:hover:active, .sidebar-button.button:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; - -gtk-image-effect: highlight; } - .button:active, .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; - transition-duration: 50ms; } - .button:active:not(:insensitive) .label:insensitive, .button:checked:not(:insensitive) .label:insensitive { - color: inherit; - opacity: 0.6; } - .button:active { - color: #657b83; } - .button:active:hover, .button:checked { - color: #fdf6e3; } - .button.flat:insensitive, .sidebar-button.button:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; } - .button:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .button:insensitive > GtkLabel { - color: inherit; } - .button:insensitive:active, .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { - color: inherit; } - .button.osd { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - background-color: #073642; - border-color: #03181d; } - .button.osd.image-button, .header-bar .button.osd.titlebutton, - .titlebar .button.osd.titlebutton { - padding: 10px; } - .button.osd:hover { - color: #268bd2; } - .button.osd:active, .button.osd:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .button.osd:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .osd .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd .button:active, .osd .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd .button.flat, .osd .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd .button.flat:hover, .osd .sidebar-button.button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); - background-image: none; } - .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), - .osd .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { - box-shadow: none; } - .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .button.suggested-action.flat, .suggested-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .button.suggested-action:active, .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(101, 123, 131, 0.45); } - .button.suggested-action:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .button.destructive-action.flat, .destructive-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .button.destructive-action:active, .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(101, 123, 131, 0.45); } - .button.destructive-action:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - .button.image-button, .header-bar .button.titlebutton, - .titlebar .button.titlebutton { - padding: 7px; } - .header-bar .button.image-button, .header-bar .button.titlebutton { - padding: 7px 10px; } - .button.text-button { - padding-left: 16px; - padding-right: 16px; } - .button.text-button.image-button, .header-bar .button.text-button.titlebutton, - .titlebar .button.text-button.titlebutton { - padding: 5px 8px; } - .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, - .titlebar .button.text-button.titlebutton GtkLabel:first-child { - padding-left: 8px; } - .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, - .titlebar .button.text-button.titlebutton GtkLabel:last-child { - padding-right: 8px; } - .stack-switcher > .button { - outline-offset: -3px; } - .stack-switcher > .button > GtkLabel { - 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 { - padding: 5px 10px; } - .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, - .titlebar .stack-switcher > .button.titlebutton { - padding: 2px 4px; } - .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; } - .stack-switcher > .button.needs-attention > .label, - .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 2px; } - .stack-switcher > .button.needs-attention > .label:dir(rtl), - .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { - background-position: left 3px, left 2px; } - .inline-toolbar .button, .inline-toolbar .button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar GtkToolButton > .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .inline-toolbar GtkToolButton > .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { - color: inherit; } - .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { - color: inherit; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry { - border-left-color: rgba(0, 19, 23, 0.3); } - -.linked:not(.vertical):not(.path-bar) > .entry.error + .entry, -.linked:not(.vertical):not(.path-bar) > .entry + .entry.error { - border-left-color: rgba(0, 19, 23, 0.3); } - -.linked:not(.vertical):not(.path-bar) > .entry.warning + .entry, -.linked:not(.vertical):not(.path-bar) > .entry + .entry.warning { - border-left-color: rgba(0, 19, 23, 0.3); } - -.linked:not(.vertical):not(.path-bar) > .entry.error + .entry.warning, -.linked:not(.vertical):not(.path-bar) > .entry.warning + .entry.error { - border-left-color: rgba(0, 19, 23, 0.3); } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:last-child { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .entry, .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .button, -.linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:last-child { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .entry, .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .button, -.linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:last-child { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .entry, .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .button, -.linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > .button:active + .entry, -.linked:not(.vertical):not(.path-bar) > .button:checked + .entry { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > .button + .button { - border-left-style: none; } - -.linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 1px 0 #001317; } - -.linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked:not(.vertical):not(.path-bar) > .button:active + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .button:checked + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .button.suggested-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .button.destructive-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .entry + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child) { - box-shadow: none; } - -.linked:not(.vertical).path-bar > .button + .button { - border-left-style: none; } - -.linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5), inset -1px 0 rgba(0, 19, 23, 0.5); } - -.linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 19, 23, 0.5); } - -.linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5); } - -.linked.vertical > .entry + .entry { - border-top-color: rgba(0, 19, 23, 0.3); } - -.linked.vertical > .entry.error + .entry, -.linked.vertical > .entry + .entry.error { - border-top-color: rgba(0, 19, 23, 0.3); } - -.linked.vertical > .entry.warning + .entry, -.linked.vertical > .entry + .entry.warning { - border-top-color: rgba(0, 19, 23, 0.3); } - -.linked.vertical > .entry.error + .entry.warning, -.linked.vertical > .entry.warning + .entry.error { - border-top-color: rgba(0, 19, 23, 0.3); } - -.linked.vertical > .entry + .entry:focus:not(:last-child), -.linked.vertical > .entry + .entry:focus:last-child { - border-top-color: #001317; } - -.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: #001317; } - -.linked.vertical > .entry + .entry.warning:focus:not(:last-child), -.linked.vertical > .entry + .entry.warning:focus:last-child { - border-top-color: #001317; } - -.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, .linked.vertical > .entry.warning:focus:not(:only-child) + .button, -.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-top-color: #001317; } - -.linked.vertical > .entry + .entry.error:focus:not(:last-child), -.linked.vertical > .entry + .entry.error:focus:last-child { - border-top-color: #001317; } - -.linked.vertical > .entry.error:focus:not(:only-child) + .entry, .linked.vertical > .entry.error:focus:not(:only-child) + .button, -.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-top-color: #001317; } - -.linked.vertical > .button:active + .entry, -.linked.vertical > .button:checked + .entry { - border-top-color: #001317; } - -.linked.vertical > .button + .button { - border-top-style: none; } - -.linked.vertical > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked.vertical > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 0 1px #001317; } - -.linked.vertical > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked.vertical > .button:active + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .button:checked + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .button.suggested-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .button.destructive-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .entry + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child) { - box-shadow: none; } - -.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .linked:not(.vertical) > .entry, -.linked:not(.vertical) > .entry:focus, .osd .button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, -.linked:not(.vertical) > .button:hover, -.linked:not(.vertical) > .button:active, -.linked:not(.vertical) > .button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .primary-toolbar .linked:not(.vertical).path-bar > .button, .header-bar .linked:not(.vertical).path-bar > .button, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:active, .header-bar .linked:not(.vertical).path-bar > .button:active, .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, .header-bar .linked:not(.vertical).path-bar > .button:checked, .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, .header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .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) { - border-radius: 0; - border-right-style: none; } - -.linked:not(.vertical) > .entry:first-child, .osd .button:first-child, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, .header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -.linked:not(.vertical) > .entry:last-child, .osd .button:last-child, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, .header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - border-right-style: solid; } - -.linked:not(.vertical) > .entry:only-child, .osd .button:only-child, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, .header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { - border-radius: 3px; - border-style: solid; } - -.linked.vertical > .entry, -.linked.vertical > .entry:focus, .linked.vertical > .button, -.linked.vertical > .button:hover, -.linked.vertical > .button:active, -.linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox > .the-button-in-the-combobox { - border-radius: 0; - border-bottom-style: none; } - -.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border-bottom-style: solid; } - -.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { - border-radius: 3px; - border-style: solid; } - -.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, -.app-notification.frame .button.flat, -.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, -.app-notification.frame .button.flat:insensitive, -.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -.menuitem.button.flat, .menuitem.sidebar-button.button { - transition: none; - outline-offset: -1px; - border-radius: 2px; } - .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { - background-color: #0a333e; } - .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { - color: #657b83; } - -*:link, .button:link, .button:visited { - color: #78b9e6; } - *:link:visited, .button:visited { - color: #4ca2df; } - *:selected *:link:visited, *:selected .button:visited:link, *:selected .button:visited { - color: #a7cbdc; } - *:link:hover, .button:hover:link, .button:hover:visited { - color: #a3cfee; } - *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { - color: #e8ebe1; } - *:link:active, .button:active:link, .button:active:visited { - color: #78b9e6; } - *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { - color: #d2e1e0; } - *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { - color: #d2e1e0; } - -.button:link > .label, .button:visited > .label { - text-decoration-line: underline; } - -.spinbutton { - border-radius: 3px; } - .spinbutton .button { - background-image: none; - border: 1px solid rgba(0, 19, 23, 0.6); - border-style: none none none solid; - color: #607880; - border-radius: 0; - box-shadow: none; } - .spinbutton .button:dir(rtl) { - border-style: none solid none none; } - .spinbutton .button:first-child { - color: red; } - .spinbutton .button:insensitive { - color: rgba(101, 123, 131, 0.45); } - .spinbutton .button:active { - background-color: #268bd2; - color: #fdf6e3; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - border-radius: 2px 2px 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:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; } - GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: #268bd2; - border-radius: 0; - box-shadow: none; } - -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; } - GtkComboBox > .the-button-in-the-combobox { - padding-top: 3px; - padding-bottom: 3px; } - GtkComboBox:insensitive { - color: rgba(101, 123, 131, 0.45); } - GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { - -GtkWidget-wide-separators: true; } - GtkComboBox.combobox-entry .entry:dir(ltr) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - border-right-style: none; } - GtkComboBox.combobox-entry .entry:dir(rtl) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; } - GtkComboBox.combobox-entry .button:dir(ltr) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - GtkComboBox.combobox-entry .button:dir(rtl) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #002b36; } - .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.9); } - -.primary-toolbar { - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #002b36, #000f12) 1 0 1 0; } - -.inline-toolbar { - background-color: #001f27; - border-style: solid; - border-color: #001317; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -.search-bar { - background-color: #002b36; - border-style: solid; - border-color: #001317; - border-width: 0 0 1px; - padding: 3px; } - -.action-bar { - background-color: #001f27; } - -.header-bar { - padding: 5px 5px 4px 5px; - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: #001b22; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; } - .csd .header-bar { - background-color: #002b36; - border-color: #001b22; } - .header-bar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .header-bar .title { - padding-left: 12px; - padding-right: 12px; } - .header-bar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .header-bar.selection-mode, .header-bar.titlebar.selection-mode { - color: #fdf6e3; - background-color: #268bd2; - border-color: #2380c1; - box-shadow: none; } - .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { - background-color: #268bd2; - color: rgba(253, 246, 227, 0.6); } - .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.05); - border-color: rgba(253, 246, 227, 0.5); } - .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.15); - border-color: rgba(253, 246, 227, 0.15); } - .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { - background-color: #268bd2; } - .tiled .header-bar, .tiled .header-bar:backdrop, - .maximized .header-bar, .maximized .header-bar:backdrop { - border-radius: 0; } - .maximized .header-bar { - background-color: #002b36; - border-color: #001b22; } - .header-bar.default-decoration, - .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, - .csd .header-bar.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: #002b36; - border-bottom-width: 0; } - .maximized .header-bar.default-decoration, .maximized - .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized - .csd .header-bar.default-decoration:backdrop { - background-color: #002b36; } - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: 3px 3px 0 0; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: inset 0 1px #003745; } - .csd .titlebar { - background-color: #002b36; } - .titlebar:backdrop { - color: rgba(89, 128, 143, 0.5); - background-color: #00313e; } - .csd .titlebar:backdrop { - background-color: #00313e; } - .maximized .titlebar { - background-color: #002b36; } - .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { - background-color: #00313e; } - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { - background-color: transparent; } - -.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, -.header-bar > GtkBox > .separator.vertical, .sidebar -.header-bar > GtkBox > .vertical.view.separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(89, 128, 143, 0) 25%, rgba(89, 128, 143, 0.15) 25%, rgba(89, 128, 143, 0.15) 75%, rgba(89, 128, 143, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, - .header-bar > GtkBox > .separator.vertical:backdrop, .sidebar - .header-bar > GtkBox > .vertical.view.separator:backdrop { - opacity: 0.6; } - -.primary-toolbar .entry, .header-bar .entry { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { - color: inherit; } - .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { - opacity: 0.85; } - .primary-toolbar .entry:focus, .header-bar .entry:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - background-clip: padding-box; } - .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { - color: #fdf6e3; } - .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar .entry.warning, .header-bar .entry.warning { - color: white; - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, #7a3e23); } - .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); } - .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar .entry.error, .header-bar .entry.error { - color: white; - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, #842f32); } - .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); } - .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar .button, .header-bar .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - outline-offset: -3px; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:backdrop, .header-bar .button:backdrop { - opacity: 0.7; } - .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { - color: inherit; } - .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, .header-bar .linked:not(.vertical):not(.path-bar) > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), .header-bar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .primary-toolbar .linked:not(.vertical).path-bar > .button, .header-bar .linked:not(.vertical).path-bar > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover { - background-color: rgba(0, 193, 243, 0.4); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .primary-toolbar .linked:not(.vertical).path-bar > .button:active, .header-bar .linked:not(.vertical).path-bar > .button:active, .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, .header-bar .linked:not(.vertical).path-bar > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, .header-bar .linked:not(.vertical).path-bar > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button + .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button + .button, .primary-toolbar .linked:not(.vertical).path-bar > .button + .button, .header-bar .linked:not(.vertical).path-bar > .button + .button { - border-left-style: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):hover, .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4), inset -1px 0 rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry.warning, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry.error, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry.error { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:last-child, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .button, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:last-child, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .button, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:last-child, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .button, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .button:active + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .button:checked + .entry { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, .primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, .primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { - color: #fdf6e3; } - .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { - background-color: rgba(253, 246, 227, 0.1); - border-color: transparent; } - .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { - color: rgba(253, 246, 227, 0.4); } - -.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(89, 128, 143, 0.8); } - .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { - background-color: rgba(89, 128, 143, 0.05); - border-color: transparent; } - .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(89, 128, 143, 0.5); } - .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { - background-color: rgba(0, 0, 0, 0.1); } - -.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(89, 128, 143, 0.2); } - -.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { - color: inherit; } - .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { - border-right-style: none; } - .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { - border-left-style: none; } - .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { - opacity: 0.75; } - -.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4)); } - .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3)); } - -.primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, #005469); - border-color: rgba(0, 0, 0, 0.7); } - .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { - background-image: linear-gradient(to bottom, #006883); - border-color: rgba(0, 0, 0, 0.7); } - .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #00475a); - border-color: rgba(0, 0, 0, 0.7); } - -.path-bar .button { - padding: 5px 10px; } - .path-bar .button:first-child { - padding-left: 10px; } - .path-bar .button:last-child { - padding-right: 10px; } - .path-bar .button:only-child { - padding-left: 14px; - padding-right: 14px; } - .path-bar .button GtkLabel:last-child { - padding-left: 4px; } - .path-bar .button GtkLabel:first-child { - padding-right: 4px; } - .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { - padding-right: 0; - padding-left: 0; } - .path-bar .button GtkImage { - padding-top: 2px; - padding-bottom: 1px; } - -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: rgba(101, 123, 131, 0.15); - border-top-color: rgba(0, 0, 0, 0.1); } - GtkTreeView.view:selected { - border-radius: 0; - border-left-color: #92c1db; - border-top-color: rgba(101, 123, 131, 0.1); } - GtkTreeView.view:insensitive { - color: rgba(101, 123, 131, 0.45); } - GtkTreeView.view:insensitive:selected { - color: #7cb6d9; } - GtkTreeView.view.dnd { - border-style: solid none; - border-width: 1px; - border-color: #4683ab; } - GtkTreeView.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #365963; } - GtkTreeView.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - GtkTreeView.view.expander:hover { - color: #657b83; } - GtkTreeView.view.expander:selected { - color: #bdd6de; } - GtkTreeView.view.expander:selected:hover { - color: #fdf6e3; } - GtkTreeView.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - GtkTreeView.view.progressbar, GtkTreeView.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-image: linear-gradient(to bottom, #268bd2); } - GtkTreeView.view.progressbar:selected, GtkTreeView.view.progressbar:selected:focus, GtkTreeView.view.progressbar:focus:selected, GtkTreeView.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-image: linear-gradient(to bottom, #fdf6e3); } - GtkTreeView.view.trough { - color: #657b83; - background-image: linear-gradient(to bottom, #001317); - border-radius: 3px; - border-width: 0; } - GtkTreeView.view.trough:selected, GtkTreeView.view.trough:selected:focus { - color: #fdf6e3; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); - border-radius: 3px; - border-width: 0; } - -column-header .button { - color: #526d76; - background-color: #073642; } - column-header .button:hover { - color: #268bd2; - box-shadow: none; - transition: none; } - column-header .button:active { - color: #657b83; - transition: none; } - -column-header:last-child .button, column-header:last-child.button { - border-right-style: none; - border-image: none; } - -column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { - transition: none; - color: #268bd2; - box-shadow: inset 1px 1px 0 1px #268bd2, inset -1px 0 0 1px #268bd2, inset 1px 1px #073642, inset -1px 0 #073642; } - -column-header .button, column-header .button:hover, column-header .button:active { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.11) 20%, rgba(255, 255, 255, 0.11) 80%, rgba(255, 255, 255, 0) 80%) 0 1 0 0/0 1px 0 0 stretch; } - column-header .button:active, column-header .button:hover { - background-color: #073642; } - column-header .button:active:hover { - color: #657b83; } - column-header .button:insensitive { - border-color: #002b36; - background-image: none; } - -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #002b36; - color: rgba(89, 128, 143, 0.8); } - .menubar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .menubar > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - .menubar > .menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - .menubar > .menuitem:insensitive { - color: rgba(89, 128, 143, 0.2); - border-color: transparent; } - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #002b36; - border: 1px solid #001317; } - .csd .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - .menu .menuitem { - padding: 5px; } - .menu .menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - .menu .menuitem:insensitive { - color: rgba(101, 123, 131, 0.45); } - .menu .menuitem.separator { - color: rgba(7, 54, 66, 0); } - .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 #103d49; } - .menu.button.bottom { - border-top: 1px solid #103d49; } - .menu.button:hover { - background-color: #103d49; } - .menu.button:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent; } - -.csd .popup { - border-radius: 2px; } - -.menuitem .accelerator { - color: alpha(currentColor,0.55); } - -.popover { - padding: 2px; - border: 1px solid black; - border-radius: 3px; - background-clip: border-box; - background-color: #002b36; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } - .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { - color: rgba(7, 54, 66, 0); } - .popover > .list, - .popover > .view, - .popover > .toolbar, - .popover > .inline-toolbar, - .popover.osd > .toolbar, - .popover.osd > .inline-toolbar { - border-style: none; - background-color: transparent; } - -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - .entry.cursor-handle.top, - .cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - .entry.cursor-handle.bottom, - .cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -.notebook { - padding: 0; - background-color: #073642; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -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.frame { - border: 1px solid #001317; } - .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.header { - background-color: #002b36; } - .notebook.header.frame { - border: 0px solid #001317; } - .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.top { - box-shadow: inset 0 -1px #001317; } - .notebook.header.bottom { - box-shadow: inset 0 1px #001317; } - .notebook.header.right { - box-shadow: inset 1px 0 #001317; } - .notebook.header.left { - box-shadow: inset -1px 0 #001317; } - .notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - outline-offset: 0; } - .notebook tab.top, .notebook tab.bottom { - padding: 4px 15px; } - .notebook tab.left, .notebook tab.right { - padding: 4px 15px; } - .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { - padding-left: 12px; - padding-right: 12px; } - .notebook tab.reorderable-page.top, .notebook tab.top { - padding-top: 6px; - border-radius: 3.5px 2px 0 0; - border-width: 0; - border-top-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { - background-color: #073642; - box-shadow: inset 0 1px #001317, inset 0 -1px #073642, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.bottom, .notebook tab.bottom { - padding-bottom: 6px; - border-radius: 0 0 2px 3.5px; - border-width: 0; - border-bottom-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { - background-color: #073642; - box-shadow: inset 0 -1px #073642, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.right, .notebook tab.right { - padding-right: 17px; - border-radius: 0 3.5px 3.5px 0; - border-width: 0; - border-right-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { - background-color: #073642; - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #073642, inset -1px 0 #001317; } - .notebook tab.reorderable-page.left, .notebook tab.left { - padding-left: 17px; - border-radius: 3.5px 0 0 3.5px; - border-width: 0; - border-left-width: 2px; - border-color: transparent; - background-color: rgba(7, 54, 66, 0); } - .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - background-color: rgba(7, 54, 66, 0.5); - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { - background-color: #073642; - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #073642; } - .notebook tab GtkLabel { - padding: 0 2px; - color: rgba(101, 123, 131, 0.45); } - .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(101, 123, 131, 0.725); } - .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { - color: #657b83; } - .notebook tab .button { - padding: 0; - color: #425f68; } - .notebook tab .button:hover { - color: #ff4d4d; } - .notebook tab .button:active { - color: #268bd2; } - .notebook tab .button > GtkImage { - padding: 2px; } - .notebook.arrow { - color: rgba(101, 123, 131, 0.45); } - .notebook.arrow:hover { - color: rgba(101, 123, 131, 0.725); } - .notebook.arrow:active { - color: #657b83; } - .notebook.arrow:insensitive { - color: rgba(101, 123, 131, 0.15); } - -.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: 6px; } - .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { - margin: 0; - background-color: #47636c; - border: 1px solid rgba(0, 0, 0, 0.3); - 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.99; } - .scrollbar .trough { - background-color: #07323d; - border: 1px none #001317; } - .scrollbar .slider { - background-color: #284b55; } - .scrollbar .slider:hover { - background-color: #1e434d; } - .scrollbar .slider:prelight:active, .scrollbar .slider:active { - background-color: #268bd2; } - .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, #001317 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #07323d; } - .scrollbars-junction:dir(rtl), - .scrollbars-junction.frame:dir(rtl) { - border-image-slice: 0 1 0 0; } - -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 52; - -GtkSwitch-slider-height: 24; - outline-color: transparent; } - GtkSwitch.trough, GtkSwitch.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; } - GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { - background-position: left center; } - -GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough, -.menu .menuitem:hover GtkSwitch.trough, -.list-row:selected GtkSwitch.trough, -GtkInfoBar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -.header-bar GtkSwitch.trough, -.primary-toolbar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } - -GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough:active, -.menu .menuitem:hover GtkSwitch.trough:active, -.list-row:selected GtkSwitch.trough:active, -GtkInfoBar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -.header-bar GtkSwitch.trough:active, -.primary-toolbar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } - -GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough:insensitive, -.menu .menuitem:hover GtkSwitch.trough:insensitive, -.list-row:selected GtkSwitch.trough:insensitive, -GtkInfoBar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:insensitive, -.primary-toolbar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } - -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough:active:insensitive, -.menu .menuitem:hover GtkSwitch.trough:active:insensitive, -.list-row:selected GtkSwitch.trough:active:insensitive, -GtkInfoBar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:active:insensitive, -.primary-toolbar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } - -.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, -GtkFileChooserDialog .dialog-vbox > .frame .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check, -.menu .menuitem.check:hover, -GtkTreeView.view.check:selected, -.list-row:selected .check, -GtkInfoBar .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:insensitive, -.menu .menuitem.check:insensitive:hover, -GtkTreeView.view.check:insensitive:selected, -.list-row:selected .check:insensitive, -GtkInfoBar .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:inconsistent, -.menu .menuitem.check:inconsistent:hover, -GtkTreeView.view.check:inconsistent:selected, -.list-row:selected .check:inconsistent, -GtkInfoBar .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:inconsistent:insensitive, -.menu .menuitem.check:inconsistent:insensitive:hover, -GtkTreeView.view.check:inconsistent:insensitive:selected, -.list-row:selected .check:inconsistent:insensitive, -GtkInfoBar .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:checked, -.menu .menuitem.check:checked:hover, -GtkTreeView.view.check:checked:selected, -.list-row:selected .check:checked, -GtkInfoBar .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:checked:insensitive, -.menu .menuitem.check:checked:insensitive:hover, -GtkTreeView.view.check:checked:insensitive:selected, -.list-row:selected .check:checked:insensitive, -GtkInfoBar .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, -GtkFileChooserDialog .dialog-vbox > .frame .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio, -.menu .menuitem.radio:hover, -GtkTreeView.view.radio:selected, -.list-row:selected .radio, -GtkInfoBar .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:insensitive, -.menu .menuitem.radio:insensitive:hover, -GtkTreeView.view.radio:insensitive:selected, -.list-row:selected .radio:insensitive, -GtkInfoBar .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:inconsistent, -.menu .menuitem.radio:inconsistent:hover, -GtkTreeView.view.radio:inconsistent:selected, -.list-row:selected .radio:inconsistent, -GtkInfoBar .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:inconsistent:insensitive, -.menu .menuitem.radio:inconsistent:insensitive:hover, -GtkTreeView.view.radio:inconsistent:insensitive:selected, -.list-row:selected .radio:inconsistent:insensitive, -GtkInfoBar .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:checked, -.menu .menuitem.radio:checked:hover, -GtkTreeView.view.radio:checked:selected, -.list-row:selected .radio:checked, -GtkInfoBar .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:checked:insensitive, -.menu .menuitem.radio:checked:insensitive:hover, -GtkTreeView.view.radio:checked:insensitive:selected, -.list-row:selected .radio:checked:insensitive, -GtkInfoBar .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -.view.content-view.check:not(.list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); - background-color: transparent; } - -.view.content-view.check:checked:not(.list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@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: rgba(101, 123, 131, 0.45); } - -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; - color: alpha(currentColor,0.7); } - .scale.trough { - margin: 5px; } - .scale.fine-tune.trough { - border-radius: 5px; - margin: 3px; } - .scale.slider { - background-clip: border-box; - background-image: linear-gradient(to bottom, #083e4b); - border: 1px solid #000b0d; - border-radius: 50%; - box-shadow: none; } - .scale.slider:hover { - background-image: linear-gradient(to bottom, #0a5062); - border-color: #000b0d; } - .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #04313d); - border-color: rgba(0, 11, 13, 0.8); } - .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .osd .scale.slider { - background-image: linear-gradient(to bottom, #073642); - border-color: #268bd2; } - .osd .scale.slider:hover { - background-image: linear-gradient(to bottom, #268bd2); } - .osd .scale.slider:active { - background-image: linear-gradient(to bottom, #1e6ea7); - border-color: #1e6ea7; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider, - .menu .menuitem:hover .scale.slider, - .list-row:selected .scale.slider, - GtkInfoBar .scale.slider { - background-image: linear-gradient(to bottom, #fdf6e3); - border-color: #fdf6e3; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider:hover, - .menu .menuitem:hover .scale.slider:hover, - .list-row:selected .scale.slider:hover, - GtkInfoBar .scale.slider:hover { - background-image: linear-gradient(to bottom, #dde6e0); - border-color: #dde6e0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider:active, - .menu .menuitem:hover .scale.slider:active, - .list-row:selected .scale.slider:active, - GtkInfoBar .scale.slider:active { - background-image: linear-gradient(to bottom, #92c1db); - border-color: #92c1db; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider:insensitive, - .menu .menuitem:hover .scale.slider:insensitive, - .list-row:selected .scale.slider:insensitive, - GtkInfoBar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); - border-color: #9cc6db; } - .scale.trough { - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, #00171d); } - .scale.trough.highlight { - background-image: linear-gradient(to bottom, #268bd2); } - .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, rgba(38, 139, 210, 0.55)); } - .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 23, 29, 0.55)); } - .osd .scale.trough { - background-image: linear-gradient(to bottom, #0a5062); - outline-color: rgba(101, 123, 131, 0.2); } - .osd .scale.trough.highlight { - background-image: none; - background-image: linear-gradient(to bottom, #268bd2); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough, - .menu .menuitem:hover .scale.trough, - .list-row:selected .scale.trough, - GtkInfoBar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough.highlight, - .menu .menuitem:hover .scale.trough.highlight, - .list-row:selected .scale.trough.highlight, - GtkInfoBar .scale.trough.highlight { - background-image: linear-gradient(to bottom, #fdf6e3); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough.highlight:insensitive, - .menu .menuitem:hover .scale.trough.highlight:insensitive, - .list-row:selected .scale.trough.highlight:insensitive, - GtkInfoBar .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough:insensitive, - .menu .menuitem:hover .scale.trough:insensitive, - .list-row:selected .scale.trough:insensitive, - GtkInfoBar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -GtkProgressBar { - padding: 0; - font-size: smaller; - color: rgba(101, 123, 131, 0.7); } - GtkProgressBar.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; } - -.progressbar { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - .progressbar.osd { - background-color: #268bd2; } - .list-row:selected .progressbar, - GtkInfoBar .progressbar { - background-color: #fdf6e3; } - -.osd .scale.progressbar { - background-color: #268bd2; } - -GtkProgressBar.trough, .level-bar.trough { - border: none; - border-radius: 3px; - background-color: #00171d; } - GtkProgressBar.trough.osd, .osd.level-bar.trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, - GtkInfoBar GtkProgressBar.trough, - GtkInfoBar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.2); } - -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; } - GtkLevelBar.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; } - -.level-bar.trough { - padding: 3px; - border-radius: 4px; } - -.level-bar.fill-block { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - .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 { - border-color: #859900; - background-color: #859900; } - .level-bar.fill-block.level-low { - border-color: #cb4b16; - background-color: #cb4b16; } - .level-bar.fill-block.empty-fill-block { - background-color: #073642; - border-color: #073642; } - -.frame { - border: 1px solid #001317; - padding: 0; } - .frame.flat { - border-style: none; } - .frame.action-bar { - padding: 6px; - border-width: 1px 0 0; } - -GtkScrolledWindow GtkViewport.frame { - border-style: none; } - -.separator, .sidebar.separator, .sidebar .view.separator { - color: rgba(0, 0, 0, 0.1); } - GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, - GtkFontButton .separator, - GtkFontButton .sidebar.separator, - GtkFontButton .sidebar .view.separator, .sidebar - GtkFontButton .view.separator, - GtkFileChooserButton .separator.vertical, - GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar - GtkFileChooserButton .vertical.view.separator, - GtkFontButton .separator.vertical, - GtkFontButton .sidebar .vertical.view.separator, .sidebar - GtkFontButton .vertical.view.separator { - -GtkWidget-wide-separators: true; } - -.list { - background-color: #073642; - border-color: #001317; } - -.list-row, -.grid-child { - padding: 2px; } - -.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { - background-color: rgba(255, 255, 255, 0.03); } - -.list-row.activatable:active { - color: #657b83; } - -.list-row.activatable:selected:active { - color: #fdf6e3; } - -.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { - background-color: #227dbd; } - -.list-row.activatable:selected:insensitive { - color: rgba(253, 246, 227, 0.7); - background-color: rgba(38, 139, 210, 0.7); } - .list-row.activatable:selected:insensitive .label { - color: inherit; } - -.list-row, list-row.activatable { - transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .list-row:hover, list-row.activatable:hover { - transition: none; } - -.app-notification, -.app-notification.frame { - padding: 10px; - color: #657b83; - background-color: #073642; - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: #021014; } - .app-notification .button, - .app-notification.frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .app-notification .button.flat, .app-notification .sidebar-button.button, - .app-notification.frame .button.flat, - .app-notification.frame .sidebar-button.button { - border-color: rgba(38, 139, 210, 0); } - .app-notification .button:hover, - .app-notification.frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .app-notification .button:active, .app-notification .button:checked, - .app-notification.frame .button:active, - .app-notification.frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification .button:insensitive, - .app-notification.frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - .expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - .expander:hover { - color: #b8c4c9; } - .expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GtkCalendar { - color: #657b83; - border: 1px solid #001317; - border-radius: 3px; - padding: 2px; } - GtkCalendar:selected { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 1.5px; } - GtkCalendar.header { - color: #657b83; - border: none; - border-radius: 0; } - GtkCalendar.button, GtkCalendar.button:focus { - color: rgba(101, 123, 131, 0.45); - border-color: transparent; - background-color: transparent; - background-image: none; } - GtkCalendar.button:hover, GtkCalendar.button:focus:hover { - color: #657b83; } - GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { - color: rgba(101, 123, 131, 0.45); - background-color: transparent; - background-image: none; } - GtkCalendar:inconsistent { - color: alpha(currentColor,0.55); } - GtkCalendar.highlight { - color: #657b83; } - -.message-dialog .dialog-action-area .button { - padding: 8px; } - -.message-dialog { - -GtkDialog-button-spacing: 0; } - .message-dialog .titlebar { - background-color: #002b36; - border-bottom: 1px solid #000f12; } - .message-dialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - .message-dialog.csd .dialog-action-area .button { - padding: 8px; - border-radius: 0; } - .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 { - border-right-style: none; - border-bottom-style: none; } - .message-dialog.csd .dialog-action-area .button:last-child { - border-bottom-right-radius: 3px; } - .message-dialog.csd .dialog-action-area .button:first-child { - border-left-style: none; - border-bottom-left-radius: 3px; } - -GtkFileChooserDialog .search-bar { - background-color: #002b36; - border-color: #001317; - box-shadow: none; } - -GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #001317; } - -.sidebar, .sidebar .view { - border: none; - background-color: #003340; } - -GtkSidebarRow.list-row { - padding: 0px; } - -GtkSidebarRow .sidebar-revealer { - padding: 3px 14px 3px 12px; } - -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 .sidebar-placeholder-row { - border: solid 1px #268bd2; } - -GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { - background-color: #000203; } - -GtkPlacesSidebar.sidebar .list-row.activatable { - color: rgba(101, 123, 131, 0.8); - border-width: 0; - border-style: solid; } - -.sidebar-button.button { - outline-radius: 50%; - border-radius: 50%; } - .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, - .titlebar .sidebar-button.button.titlebutton { - padding: 3px; } - .sidebar-button.button:not(:hover):not(:active) > GtkImage { - opacity: 0.5; } - -.sidebar-item { - padding: 10px 4px; } - .sidebar-item > GtkLabel { - padding-left: 6px; - padding-right: 6px; } - .sidebar-item.needs-attention > GtkLabel { - background-size: 6px 6px, 0 0; } - -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); } - -GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { - background-color: transparent; } - -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: #001317; } - -GtkPaned.wide { - -GtkPaned-handle-size: 5; - margin: 0; } - GtkPaned.wide .pane-separator { - background-color: transparent; - border-style: none solid; - border-color: #001317; - border-width: 1px; } - GtkPaned.wide.vertical .pane-separator { - border-style: solid none; } - -GtkInfoBar { - border-style: none; } - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: #268bd2; - color: #fdf6e3; } - -.list-row:selected .button, GtkInfoBar .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .list-row:selected .button:hover, GtkInfoBar .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.2); } - .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.2); } - -.tooltip { - color: #657b83; - border-radius: 2px; } - .tooltip.background { - background-color: #0c5c70; - background-clip: padding-box; } - .tooltip.window-frame.csd { - background-color: transparent; } - -.tooltip * { - padding: 4px; - background-color: transparent; - color: inherit; } - -:selected GtkColorSwatch { - box-shadow: none; } - :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { - border-color: #fdf6e3; } - -GtkColorSwatch.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -GtkColorSwatch.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { - border-radius: 3px; } - -GtkColorSwatch:hover, GtkColorSwatch:hover:selected { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } - -GtkColorEditor GtkColorSwatch { - border-radius: 3px; } - GtkColorEditor GtkColorSwatch:hover { - background-image: none; } - -GtkColorSwatch.color-dark { - color: white; - outline-color: rgba(0, 0, 0, 0.3); } - -GtkColorSwatch.color-light { - color: black; - outline-color: rgba(255, 255, 255, 0.5); } - -GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { - border: 1px solid rgba(0, 0, 0, 0.15); } - GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { - border-color: rgba(0, 0, 0, 0.25); } - -GtkColorSwatch#add-color-button { - border-style: solid; - border-width: 1px; - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - GtkColorSwatch#add-color-button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - GtkColorSwatch#add-color-button .overlay { - border-color: transparent; - background-color: transparent; - background-image: none; } - -GtkColorButton.button { - padding: 5px; } - GtkColorButton.button GtkColorSwatch { - border-radius: 0; } - -.content-view { - background-color: #073642; } - .content-view:hover { - -gtk-image-effect: highlight; } - -.scale-popup .button { - padding: 6px; } - .scale-popup .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - -GtkVolumeButton.button { - padding: 8px; } - -.touch-selection, -.context-menu { - font: initial; } - -.monospace { - font: Monospace; } - -.overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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; } - -.window-frame { - border-radius: 3px 3px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px #000f12, 0 8px 8px 0 rgba(0, 0, 0, 0.35); - margin: 10px; } - .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.35); } - .window-frame.tiled { - border-radius: 0; } - .window-frame.popup { - box-shadow: none; - border-radius: 0; } - .window-frame.ssd { - border-radius: 3px 3px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } - .window-frame.ssd.maximized { - border-radius: 0; } - .window-frame.csd.popup { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #000203; } - .window-frame.csd.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.25); } - .window-frame.csd.message-dialog { - border-radius: 3px; } - .window-frame.solid-csd { - border-radius: 0; - margin: 1px; - background-color: #002b36; - box-shadow: none; } - -.header-bar.default-decoration .button.titlebutton, -.titlebar.default-decoration .button.titlebutton { - padding-top: 0px; - padding-bottom: 0px; } - -.header-bar .button.titlebutton, -.titlebar .button.titlebutton { - padding-left: 4px; - padding-right: 4px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(0, 43, 54, 0); } - .header-bar .button.titlebutton:not(GtkMenuButton), - .titlebar .button.titlebutton:not(GtkMenuButton) { - padding-top: 8px; - padding-bottom: 8px; } - .header-bar .button.titlebutton:hover, - .titlebar .button.titlebutton:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, - .titlebar .button.titlebutton:active, - .titlebar .button.titlebutton:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.close, - .titlebar .button.titlebutton.maximize, - .titlebar .button.titlebutton.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; } - .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - opacity: 1; } - .header-bar .button.titlebutton.close, - .titlebar .button.titlebutton.close { - background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } - .header-bar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.close:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.close:hover, - .titlebar .button.titlebutton.close:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } - .header-bar .button.titlebutton.close:active, - .titlebar .button.titlebutton.close:active { - background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } - .header-bar .button.titlebutton.maximize, - .titlebar .button.titlebutton.maximize { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-dark.png"), url("assets/titlebutton-maximize-dark@2.png")); } - .header-bar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.maximize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop-dark.png"), url("assets/titlebutton-maximize-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.maximize:hover, - .titlebar .button.titlebutton.maximize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover-dark.png"), url("assets/titlebutton-maximize-hover-dark@2.png")); } - .header-bar .button.titlebutton.maximize:active, - .titlebar .button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active-dark.png"), url("assets/titlebutton-maximize-active-dark@2.png")); } - .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.minimize { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-dark.png"), url("assets/titlebutton-minimize-dark@2.png")); } - .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop-dark.png"), url("assets/titlebutton-minimize-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.minimize:hover, - .titlebar .button.titlebutton.minimize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover-dark.png"), url("assets/titlebutton-minimize-hover-dark@2.png")); } - .header-bar .button.titlebutton.minimize:active, - .titlebar .button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active-dark.png"), url("assets/titlebutton-minimize-active-dark@2.png")); } - -.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, -GtkEntry.gb-command-bar-entry.entry.flat:focus:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, -NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, -NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, -NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, -NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, -NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); } - -GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, -ScratchMainWindow .notebook tab.reorderable-page.top:active, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, -ScratchMainWindow .notebook tab.top:active, -ScratchMainWindow .notebook tab.top.active-page, -ScratchMainWindow .notebook tab.top.active-page:hover, -EphyNotebook.notebook tab.reorderable-page.top:active, -EphyNotebook.notebook tab.reorderable-page.top.active-page, -EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, -EphyNotebook.notebook tab.top:active, -EphyNotebook.notebook tab.top.active-page, -EphyNotebook.notebook tab.top.active-page:hover, -MidoriNotebook .notebook tab.reorderable-page.top:active, -MidoriNotebook .notebook tab.reorderable-page.top.active-page, -MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, -MidoriNotebook .notebook tab.top:active, -MidoriNotebook .notebook tab.top.active-page, -MidoriNotebook .notebook tab.top.active-page:hover, -TerminalWindow .notebook tab.reorderable-page.top:active, -TerminalWindow .notebook tab.reorderable-page.top.active-page, -TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -TerminalWindow .notebook tab.top:active, -TerminalWindow .notebook tab.top.active-page, -TerminalWindow .notebook tab.top.active-page:hover { - box-shadow: inset 0 1px #001317, inset 0 -1px #001317, inset 1px 0 #001317, inset -1px 0 #001317; } - -TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top { - padding-top: 7px; - border-top-width: 3px; } - -TerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #001b22, inset 0 -1px #001317; } - -GtkHTML { - background-color: #073642; - color: #657b83; } - GtkHTML:active { - color: #fdf6e3; - background-color: #268bd2; } - -SushiFontWidget { - padding: 6px 12px; } - -TerminalWindow .background { - background-color: transparent; } - -TerminalWindow .scrollbar.vertical .slider { - margin-left: 3px; } - -TerminalWindow .scrollbar.trough { - border-width: 0; } - -TerminalWindow .notebook tab .button { - color: #425f68; } - TerminalWindow .notebook tab .button:hover { - color: #657b83; - border-color: #001317; - background-color: #083e4b; } - -TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { - color: #ff4d4d; } - -TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { - color: #268bd2; } - -EelEditableLabel.entry { - transition: none; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { - color: #657b83; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { - color: #fdf6e3; } - -.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, -.nautilus-list-dim-label { - color: #33535d; } - .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, - .nautilus-list-dim-label:selected, - .nautilus-list-dim-label:selected:focus { - color: #d2e1e0; } - -NautilusNotebook.notebook { - background-color: #073642; } - NautilusNotebook.notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; } - -NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { - padding: 5px; - box-shadow: none; - background-color: #073642; } - -.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, -.titlebar .nautilus-circular-button.button.titlebutton { - border-radius: 50%; - outline-radius: 50%; - padding: 8px; } - -.disk-space-display { - border-style: solid; - border-width: 1px; } - .disk-space-display.unknown { - background-color: rgba(101, 123, 131, 0.5); - border-color: rgba(79, 96, 102, 0.5); } - .disk-space-display.used { - background-color: rgba(38, 139, 210, 0.8); - border-color: rgba(30, 110, 167, 0.8); } - .disk-space-display.free { - background-color: #001f27; - border-color: black; } - -NemoWindow .sidebar .frame { - border-width: 0; } - -NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #001317; } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { - background-color: rgba(0, 193, 243, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4), inset -1px 0 rgba(0, 0, 0, 0.4); } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - -.gedit-headerbar-paned { - color: #001b22; } - -.open-document-selector-treeview.view { - padding: 3px 6px 3px 6px; - border-color: #073642; } - .open-document-selector-treeview.view:prelight { - background-color: #0e3b47; } - .open-document-selector-treeview.view:prelight:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.open-document-selector-name-label { - color: #657b83; } - -.open-document-selector-path-label { - color: #365963; - font-size: smaller; } - .open-document-selector-path-label:selected { - color: rgba(253, 246, 227, 0.9); } - -.gedit-document-panel .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; } - .gedit-document-panel .list-row .button GtkImage { - color: inherit; } - -.gedit-document-panel .prelight-row .button { - color: #425f68; } - -.gedit-document-panel .list-row .button:hover, -.gedit-document-panel .prelight-row .button:hover { - color: #ff4d4d; } - -.gedit-document-panel .prelight-row:selected .button:hover { - color: #ff6666; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; } - .gedit-document-panel .prelight-row:selected .button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -.gedit-document-panel-dragged-row { - border: 1px solid #001317; - background-color: #000203; - color: #657b83; } - -GeditStatusbar { - border-top: 1px solid #001317; - background-color: #002b36; } - -GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton.sidebar-button.button:prelight, -GeditStatusMenuButton:checked.button.flat, -GeditStatusMenuButton.sidebar-button.button:checked { - border-bottom-style: none; - border-radius: 0; } - -GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #001317; } - -.gedit-search-entry-occurrences-tag { - color: rgba(101, 123, 131, 0.6); - border: none; - margin: 2px; - padding: 2px; } - -GeditViewFrame .gedit-search-slider { - background-color: #003340; - padding: 6px; - border-color: #001317; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -GbWorkbench .floating-bar { - color: #657b83; } - -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { - color: inherit; } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; } - -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; } - -GbPreferencesPageLanguage .entry { - border-radius: 3px 3px 0 0; } - -GbPreferencesPageLanguage .frame { - border-top-width: 0; } - -GbEditorTweakWidget .linked.vertical > .entry { - border-bottom-style: solid; } - -GbEditorTweakWidget GtkScrolledWindow { - border-top: none; } - -GbViewStack GtkBox.header.notebook { - border-bottom: 1px solid #001317; } - -GbViewStack.focused GtkBox.header.notebook, -#project_sidebar_header.focused { - background-color: #073642; } - -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #001317; } - -GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { - border-radius: 3px 0 0 3px; } - -GbWorkspacePane GtkBox.header.notebook { - border-bottom: 1px solid #001317; } - -GbWorkspacePane:not(.focused) GtkBox.header.notebook { - background-color: #002b36; } - -DhSidebar GtkSearchEntry.entry, -SymbolTree GtkSearchEntry.entry { - border-left: none; - border-right: none; - border-top: none; - border-radius: 0px; } - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: #657b83; - background-image: none; - background-color: #073642; - padding: 6px 6px 6px 6px; - border: none; } - -GbTerminalView { - background-color: #073642; - color: #657b83; } - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; } - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; } - -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; } - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #001317; } - -GbViewStack.focused GtkBox.header.notebook { - background-color: #073642; } - GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { - opacity: 1; } - -EphyWindow .floating-bar { - color: #657b83; } - -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon { - background-color: rgba(101, 123, 131, 0.3); - border-radius: 2px; } - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: #78b9e6; } - -.documents-entry-tag { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover { - color: #fdf6e3; - background-color: #3295da; } - .documents-entry-tag:active { - color: #fdf6e3; - background-color: #2380c1; } - .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; } - .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { - color: rgba(253, 246, 227, 0.7); } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -TotemGrilo.vertical GdMainView.frame { - border-width: 0; } - -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { - background-color: #268bd2; } - -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; } - -.gnome-panel-menu-bar.menubar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: #657b83; - background-color: #05242c; } - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: #657b83; } - -PanelApplet .button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); - border-color: rgba(0, 0, 0, 0.17); } - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: rgba(0, 0, 0, 0.25); - border-radius: 0; - border-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -PanelApplet:hover { - color: white; } - -PanelApplet:active, -PanelApplet:hover:active { - color: #268bd2; } - -WnckPager { - color: #333e42; } - WnckPager:selected { - color: #268bd2; } - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; } - -ClockBox { - color: #657b83; } - -.xfce4-panel.panel { - background-color: #05242c; - text-shadow: none; - icon-shadow: none; } - .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { - color: #657b83; - background-color: rgba(5, 36, 44, 0); - border-radius: 0; - border: none; } - .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { - border: none; - background-color: #0a4a5a; } - .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - -.floating-bar { - background-color: #268bd2; - color: #fdf6e3; } - .floating-bar.top { - border-radius: 0 0 2px 2px; } - .floating-bar.right { - border-radius: 2px 0 0 2px; } - .floating-bar.bottom { - border-radius: 2px 2px 0 0; } - .floating-bar.left { - border-radius: 0 2px 2px 0; } - .floating-bar .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - background-color: transparent; - box-shadow: none; - border: none; } - -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; } - -MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { - color: #fdf6e3; - background-color: #268bd2; - outline-color: transparent; } - -MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { - background-color: transparent; } - -MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { - outline-color: transparent; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - .marlin-pathbar.pathbar:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel .maximized { - background-color: #05242c; - box-shadow: inset 0 -1px #010a0c; } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - .color-light .composited-indicator { - color: rgba(0, 0, 0, 0.65); - text-shadow: 0 0 2px rgba(255, 255, 255, 0.3), 0 1px 0 rgba(255, 255, 255, 0.25); - icon-shadow: 0 0 2px rgba(255, 255, 255, 0.3), 0 1px 0 rgba(255, 255, 255, 0.25); } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - font: initial; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .sidebar { - background: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { - padding: 0 3px; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { - color: #fdf6e3; - background-color: #268bd2; } - WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { - color: rgba(101, 123, 131, 0.45); } - -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; } - -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: #657b83; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration.top { - border: 1px solid #000f12; - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #002b36); - color: rgba(89, 128, 143, 0.8); - box-shadow: inset 0 1px #003745; } - UnityDecoration.top:backdrop { - border-bottom-width: 0; - color: rgba(89, 128, 143, 0.5); } - UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, #000f12); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: #004b5f; - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; } - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar GtkLabel { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #001317; - border-right: 1px solid #001317; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #001317; } - .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { - padding: 0 3px 0 3px; } - -.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #001317; - background-color: #002b36; } - .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view { - background-color: #002b36; - color: #657b83; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:prelight { - background-color: #003f50; } - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: #002b36; - background-image: none; } - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #657b83; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -.dynamic-notebook .notebook tab .button > GtkImage { - padding: 0; } - -GraniteWidgetsWelcome { - background-color: #073642; } - -GraniteWidgetsWelcome GtkLabel { - color: #33535d; - font: open sans 11; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(101, 123, 131, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #073642); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry.entry { - padding: 4px; } - -.h1 { - font: open sans 24px; } - -.h2 { - font: open sans light 18px; } - -.h3 { - font: open sans 11px; } - -.h4, -.category-label { - color: #47636c; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: #05242c; - color: #657b83; - font: bold; - box-shadow: inset 0 -1px #010a0c; } - #panel_window .menubar { - padding-left: 5px; } - #panel_window .menubar, #panel_window .menubar > .menuitem { - background-color: transparent; - color: #657b83; - font: bold; } - #panel_window .menubar .menuitem:insensitive { - color: rgba(101, 123, 131, 0.5); } - #panel_window .menubar .menuitem:insensitive GtkLabel { - color: inherit; } - #panel_window .menubar .menu .menuitem { - font: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: #657b83; } - -#content_frame { - padding-bottom: 14px; - background-color: #002b36; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #083e4b; } - #content_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: #001317; - background-color: #0a5062; } - #content_frame .button:active, #content_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #001317; - background-color: #268bd2; } - #content_frame .button:insensitive { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - #content_frame .button:insensitive > GtkLabel { - color: inherit; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: #002b36; - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px #001b22; } - -#buttonbox_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - #buttonbox_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - #buttonbox_frame .button:active, #buttonbox_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - #buttonbox_frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -#login_window #user_combobox { - color: #657b83; - font: 13px; } - #login_window #user_combobox .menu { - font: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font: bold; } - -.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { - color: #001b22; } - -NemoWindow GtkEventBox { - background-color: #002b36; } - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; } - -GtkFileChooserDialog .sidebar, -NautilusWindow .sidebar, -NemoWindow .sidebar { - border-right: 1px solid #05232b; } - -GtkFileChooserDialog .sidebar:dir(rtl), -NautilusWindow .sidebar:dir(rtl), -NemoWindow .sidebar:dir(rtl) { - border-left: 1px solid #05232b; } - -GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, -NautilusWindow.csd.background, -NautilusWindow .list.sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar, -NautilusWindow GtkPlacesSidebar.sidebar { - background-color: #073642; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { - border: 1px solid #268bd2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { - background-color: #0c5c70; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { - border: none; - color: #657b83; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { - color: rgba(101, 123, 131, 0.6); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, - NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { - background-color: rgba(101, 123, 131, 0.15); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { - color: inherit; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button { - color: #657b83; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button:hover, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button:active, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button:active { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button:not(:hover):not(:active) > GtkImage, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button:not(:hover):not(:active) > GtkImage { - opacity: 0.5; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, - NautilusWindow GtkPlacesSidebar.sidebar .separator, - NautilusWindow GtkPlacesSidebar.sidebar .view.separator { - color: transparent; } - -GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, -NautilusWindow.maximized GtkPlacesSidebar.sidebar { - background-color: #073642; } - -NemoWindow.csd.background, -NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, -MarlinViewWindow.csd.background, -MarlinViewWindow .source-list, -MarlinViewWindow .source-list.view, -MarlinViewWindow .source-list.view:prelight { - background-color: transparent; } - -NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, -MarlinViewWindow .sidebar, -MarlinViewWindow .source-list.sidebar.view { - background-color: #073642; } - NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, - MarlinViewWindow .sidebar .view, - MarlinViewWindow .sidebar row, - MarlinViewWindow .source-list.sidebar.view .view, - MarlinViewWindow .source-list.sidebar.view row { - background-color: transparent; - color: #657b83; } - NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, - MarlinViewWindow .sidebar .view.image, - MarlinViewWindow .sidebar row.image, - MarlinViewWindow .source-list.sidebar.view .view.image, - MarlinViewWindow .source-list.sidebar.view row.image { - color: rgba(101, 123, 131, 0.7); } - NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, - MarlinViewWindow .sidebar .view.cell:selected, - MarlinViewWindow .sidebar row.cell:selected, - MarlinViewWindow .source-list.sidebar.view .view.cell:selected, - MarlinViewWindow .source-list.sidebar.view row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, - MarlinViewWindow .sidebar.frame, - MarlinViewWindow .source-list.sidebar.view.frame { - color: #657b83; } - NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, - MarlinViewWindow .sidebar .separator, - MarlinViewWindow .sidebar .sidebar.separator, - MarlinViewWindow .sidebar .view.separator, - MarlinViewWindow .source-list.sidebar.view .separator { - color: transparent; } - -NemoWindow.maximized .sidebar, -MarlinViewWindow.maximized .sidebar { - background-color: #073642; } - -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { - background-color: #05232b; } - -NautilusWindow NautilusWindowSlot { - background-color: #073642; } - -NautilusDesktopWindow NautilusWindowSlot { - background-color: transparent; } - -GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { - background-color: #073642; } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #002b36; } - -GtkFileChooserDialog .dialog-action-box { - background-color: #002b36; } - -GtkFileChooserDialog .dialog-vbox > .frame { - color: #657b83; - border-color: transparent; } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { - background-color: transparent; - border-color: black; } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, -GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, -GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { - color: #657b83; } - -FeedReaderreaderUI.background.csd > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd > .titlebar .pane-separator, -GeditWindow.background.csd.maximized > .titlebar .pane-separator, -GeditWindow.background.csd > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { - background-color: #001b22; } - -FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #002b36; } - FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #00313e; } - -FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #002b36; } - FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #00313e; } - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; } - -GeditWindow.background.csd { - background-color: transparent; } - -GeditWindow.background .gedit-side-panel-paned .pane-separator { - background-color: #05232b; } - -GeditWindow.background .gedit-bottom-panel-paned .pane-separator { - background-color: #001317; } - -.gedit-bottom-panel-paned { - background-color: #073642; } - -.gedit-document-panel { - background-color: #073642; } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel .list-row { - color: #657b83; } - .gedit-document-panel .list-row { - background-color: rgba(101, 123, 131, 0); - border: solid rgba(101, 123, 131, 0); - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:hover { - border: solid rgba(101, 123, 131, 0.15); - border-width: 3px 2px 3px 2px; - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel .list-row:active { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:active .button { - color: #fdf6e3; } - .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -GeditFileBrowserWidget { - background-color: #073642; } - .maximized GeditFileBrowserWidget { - background-color: #073642; } - GeditFileBrowserWidget .horizontal { - background-color: transparent; - border-color: #041c22; } - GeditFileBrowserWidget .horizontal GtkComboBox { - color: #657b83; } - -GeditWindow.background.csd GeditFileBrowserView.view { - background-color: transparent; - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander { - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { - color: #268bd2; } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, -GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, - GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, - GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, - GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, -GtkFileChooserDialog .dialog-vbox > .frame .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.4)); - background-color: transparent; } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { - color: inherit; } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, - GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, #268bd2); } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.25)); } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { - background-color: #8da0a7; - border: 1px solid rgba(0, 0, 0, 0.3); } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, -NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, -MarlinViewWindow .sidebar .scrollbar .trough, -MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { - background-color: rgba(0, 0, 0, 0.2); - border: none; } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, -NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, -MarlinViewWindow .sidebar .scrollbar .slider, -MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { - background-color: rgba(141, 160, 167, 0.7); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, - NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, - MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { - background-color: #9cacb2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, - NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, - MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, - NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, - MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { - background-color: transparent; } - -@define-color theme_fg_color #657b83; -@define-color theme_text_color #657b83; -@define-color theme_bg_color #002b36; -@define-color theme_base_color #073642; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #657b83; -@define-color text_color #657b83; -@define-color bg_color #002b36; -@define-color base_color #073642; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #003340; -@define-color insensitive_fg_color alpha(#657b83, 0.5); -@define-color insensitive_base_color #073642; -@define-color theme_unfocused_fg_color #657b83; -@define-color theme_unfocused_text_color #657b83; -@define-color theme_unfocused_bg_color #002b36; -@define-color theme_unfocused_base_color #073642; -@define-color borders #001317; -@define-color unfocused_borders #001317; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #78b9e6; -@define-color content_view_bg #073642; -@define-color wm_title alpha(#59808f, 0.8); -@define-color wm_unfocused_title alpha(#59808f, 0.5); -@define-color wm_bg #002b36; -@define-color wm_bg_unfocused #00313e; -@define-color wm_highlight #003745; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #dc322f; -@define-color wm_button_close_hover_bg #cb4b16; -@define-color wm_button_close_active_bg #dc322f; -@define-color wm_icon_close_bg #002b36; -@define-color wm_button_hover_bg #657b83; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #002b36; -@define-color wm_icon_bg #93a1a1; -@define-color wm_icon_unfocused_bg #657b83; -@define-color wm_icon_hover_bg #93a1a1; -@define-color wm_icon_active_bg #fdf6e3; diff --git a/common/gtk-3.0/3.18/gtk-solid-darker.css b/common/gtk-3.0/3.18/gtk-solid-darker.css deleted file mode 100644 index 59ca6e5..0000000 --- a/common/gtk-3.0/3.18/gtk-solid-darker.css +++ /dev/null @@ -1,4080 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -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: #1e6ea7; - -GtkWidget-visited-link-color: #16527c; - -GtkWidget-focus-padding: 2; - -GtkWidget-focus-line-width: 1; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - -GtkStatusbar-shadow-type: none; - outline-color: rgba(92, 97, 108, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; } - -.background { - color: #5c616c; - background-color: #F5F6F7; } - -*:insensitive { - -gtk-image-effect: dim; } - -.gtkstyle-fallback { - background-color: #F5F6F7; - color: #5c616c; } - .gtkstyle-fallback:prelight { - background-color: white; - color: #5c616c; } - .gtkstyle-fallback:active { - background-color: #d9dde0; - color: #5c616c; } - .gtkstyle-fallback:insensitive { - background-color: #faf6eb; - color: rgba(92, 97, 108, 0.55); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view { - color: #5c616c; - background-color: #fdf6e3; } - .view.dim-label, .view.label.separator, .header-bar .view.subtitle { - color: rgba(92, 97, 108, 0.55); } - .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { - color: rgba(253, 246, 227, 0.65); - text-shadow: none; } - -.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #1e6ea7; - background-color: rgba(30, 110, 167, 0.2); } - -.label.separator, .popover .label.separator, .sidebar .label.view.separator { - color: #5c616c; } - -.label:insensitive { - color: rgba(92, 97, 108, 0.55); } - -.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { - opacity: 0.55; } - -GtkAssistant .sidebar { - background-color: #fdf6e3; - border-top: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #dcdfe3; } - -GtkAssistant.csd .sidebar { - border-top-style: none; } - -GtkAssistant .sidebar .label { - padding: 6px 12px; } - -GtkAssistant .sidebar .label.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -GtkTextView { - background-color: #f9f6ed; } - -.grid-child { - padding: 3px; - border-radius: 3px; } - .grid-child:selected { - outline-offset: -2px; } - -.popover.osd, .osd { - color: #657b83; - border: none; - background-color: #073642; - background-clip: padding-box; - outline-color: rgba(101, 123, 131, 0.3); - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - .spinner:active { - opacity: 1; - animation: spin 1s linear infinite; } - .spinner:active:insensitive { - opacity: 0.5; } - -.entry { - border: 1px solid; - padding: 5px 8px; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry.image { - color: #7c7f84; } - .entry.image.left { - padding-left: 0; } - .entry.image.right { - padding-right: 0; } - .entry.flat, .entry.flat:focus { - padding: 2px; - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); - border: none; - border-radius: 0; } - .entry:focus { - background-clip: border-box; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(253, 246, 227, 0.55); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.55)); } - .entry:selected, .entry:selected:focus { - background-color: #268bd2; - color: #fdf6e3; } - .entry.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - .entry.warning { - color: #fdf6e3; - border-color: #cb4b16; - background-image: linear-gradient(to bottom, #df8f68); } - .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); - box-shadow: none; } - .entry.warning:selected, .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .entry.error { - color: #fdf6e3; - border-color: #dc322f; - background-image: linear-gradient(to bottom, #e98077); } - .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); - box-shadow: none; } - .entry.error:selected, .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - .osd .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.4)); - background-color: transparent; } - .osd .entry.image, .osd .entry.image:hover { - color: inherit; } - .osd .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, #268bd2); } - .osd .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.25)); } - -GtkSearchEntry.entry { - border-radius: 20px; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -.button { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 5px 8px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .button.flat, .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(251, 251, 252, 0); - border-color: rgba(101, 123, 131, 0); - transition: none; } - .button.flat:hover, .sidebar-button.button:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - .button.flat:hover:active, .sidebar-button.button:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; - -gtk-image-effect: highlight; } - .button:active, .button:checked { - background-clip: border-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; - transition-duration: 50ms; } - .button:active:not(:insensitive) .label:insensitive, .button:checked:not(:insensitive) .label:insensitive { - color: inherit; - opacity: 0.6; } - .button:active { - color: #5c616c; } - .button:active:hover, .button:checked { - color: #fdf6e3; } - .button.flat:insensitive, .sidebar-button.button:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; } - .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button:insensitive > GtkLabel { - color: inherit; } - .button:insensitive:active, .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { - color: inherit; } - .button.osd { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - background-color: #073642; - border-color: #03181d; } - .button.osd.image-button, .header-bar .button.osd.titlebutton, - .titlebar .button.osd.titlebutton { - padding: 10px; } - .button.osd:hover { - color: #268bd2; } - .button.osd:active, .button.osd:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .button.osd:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .osd .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd .button:active, .osd .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd .button.flat, .osd .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd .button.flat:hover, .osd .sidebar-button.button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); - background-image: none; } - .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), - .osd .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { - box-shadow: none; } - .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .button.suggested-action.flat, .suggested-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .button.suggested-action:active, .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.suggested-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .button.destructive-action.flat, .destructive-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .button.destructive-action:active, .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.destructive-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - .button.image-button, .header-bar .button.titlebutton, - .titlebar .button.titlebutton { - padding: 7px; } - .header-bar .button.image-button, .header-bar .button.titlebutton { - padding: 7px 10px; } - .button.text-button { - padding-left: 16px; - padding-right: 16px; } - .button.text-button.image-button, .header-bar .button.text-button.titlebutton, - .titlebar .button.text-button.titlebutton { - padding: 5px 8px; } - .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, - .titlebar .button.text-button.titlebutton GtkLabel:first-child { - padding-left: 8px; } - .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, - .titlebar .button.text-button.titlebutton GtkLabel:last-child { - padding-right: 8px; } - .stack-switcher > .button { - outline-offset: -3px; } - .stack-switcher > .button > GtkLabel { - 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 { - padding: 5px 10px; } - .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, - .titlebar .stack-switcher > .button.titlebutton { - padding: 2px 4px; } - .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; } - .stack-switcher > .button.needs-attention > .label, - .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 4px; } - .stack-switcher > .button.needs-attention > .label:dir(rtl), - .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { - background-position: left 3px, left 4px; } - .inline-toolbar .button, .inline-toolbar .button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar GtkToolButton > .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .inline-toolbar GtkToolButton > .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { - color: inherit; } - .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { - color: inherit; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry { - border-left-color: rgba(101, 123, 131, 0.3); } - -.linked:not(.vertical):not(.path-bar) > .entry.error + .entry, -.linked:not(.vertical):not(.path-bar) > .entry + .entry.error { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > .entry.warning + .entry, -.linked:not(.vertical):not(.path-bar) > .entry + .entry.warning { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > .entry.error + .entry.warning, -.linked:not(.vertical):not(.path-bar) > .entry.warning + .entry.error { - border-left-color: #d43f23; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:last-child { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .entry, .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .button, -.linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:last-child { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .entry, .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .button, -.linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:last-child { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .entry, .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .button, -.linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > .button:active + .entry, -.linked:not(.vertical):not(.path-bar) > .button:checked + .entry { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > .button + .button { - border-left-style: none; } - -.linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 1px 0 #657b83; } - -.linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked:not(.vertical):not(.path-bar) > .button:active + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .button:checked + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .button.suggested-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .button.destructive-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .entry + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child) { - box-shadow: none; } - -.linked:not(.vertical).path-bar > .button + .button { - border-left-style: none; } - -.linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4), inset -1px 0 rgba(101, 123, 131, 0.4); } - -.linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.4); } - -.linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4); } - -.linked.vertical > .entry + .entry { - border-top-color: rgba(101, 123, 131, 0.3); } - -.linked.vertical > .entry.error + .entry, -.linked.vertical > .entry + .entry.error { - border-top-color: #dc322f; } - -.linked.vertical > .entry.warning + .entry, -.linked.vertical > .entry + .entry.warning { - border-top-color: #cb4b16; } - -.linked.vertical > .entry.error + .entry.warning, -.linked.vertical > .entry.warning + .entry.error { - border-top-color: #d43f23; } - -.linked.vertical > .entry + .entry:focus:not(:last-child), -.linked.vertical > .entry + .entry:focus:last-child { - border-top-color: #268bd2; } - -.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: #268bd2; } - -.linked.vertical > .entry + .entry.warning:focus:not(:last-child), -.linked.vertical > .entry + .entry.warning:focus:last-child { - border-top-color: #cb4b16; } - -.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, .linked.vertical > .entry.warning:focus:not(:only-child) + .button, -.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-top-color: #cb4b16; } - -.linked.vertical > .entry + .entry.error:focus:not(:last-child), -.linked.vertical > .entry + .entry.error:focus:last-child { - border-top-color: #dc322f; } - -.linked.vertical > .entry.error:focus:not(:only-child) + .entry, .linked.vertical > .entry.error:focus:not(:only-child) + .button, -.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-top-color: #dc322f; } - -.linked.vertical > .button:active + .entry, -.linked.vertical > .button:checked + .entry { - border-top-color: #268bd2; } - -.linked.vertical > .button + .button { - border-top-style: none; } - -.linked.vertical > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked.vertical > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 0 1px #657b83; } - -.linked.vertical > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked.vertical > .button:active + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .button:checked + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .button.suggested-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .button.destructive-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .entry + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child) { - box-shadow: none; } - -.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .linked:not(.vertical) > .entry, -.linked:not(.vertical) > .entry:focus, .osd .button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, -.linked:not(.vertical) > .button:hover, -.linked:not(.vertical) > .button:active, -.linked:not(.vertical) > .button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .primary-toolbar .linked:not(.vertical).path-bar > .button, .header-bar .linked:not(.vertical).path-bar > .button, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:active, .header-bar .linked:not(.vertical).path-bar > .button:active, .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, .header-bar .linked:not(.vertical).path-bar > .button:checked, .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, .header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .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) { - border-radius: 0; - border-right-style: none; } - -.linked:not(.vertical) > .entry:first-child, .osd .button:first-child, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, .header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -.linked:not(.vertical) > .entry:last-child, .osd .button:last-child, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, .header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - border-right-style: solid; } - -.linked:not(.vertical) > .entry:only-child, .osd .button:only-child, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, .header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { - border-radius: 3px; - border-style: solid; } - -.linked.vertical > .entry, -.linked.vertical > .entry:focus, .linked.vertical > .button, -.linked.vertical > .button:hover, -.linked.vertical > .button:active, -.linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox > .the-button-in-the-combobox { - border-radius: 0; - border-bottom-style: none; } - -.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border-bottom-style: solid; } - -.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { - border-radius: 3px; - border-style: solid; } - -.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, -.app-notification.frame .button.flat, -.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, -.app-notification.frame .button.flat:insensitive, -.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -.menuitem.button.flat, .menuitem.sidebar-button.button { - transition: none; - outline-offset: -1px; - border-radius: 2px; } - .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { - background-color: #edeff0; } - .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { - color: #5c616c; } - -*:link, .button:link, .button:visited { - color: #1e6ea7; } - *:link:visited, .button:visited { - color: #16527c; } - *:selected *:link:visited, *:selected .button:visited:link, *:selected .button:visited { - color: #a7cbdc; } - *:link:hover, .button:hover:link, .button:hover:visited { - color: #268bd2; } - *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { - color: #e8ebe1; } - *:link:active, .button:active:link, .button:active:visited { - color: #1e6ea7; } - *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { - color: #d2e1e0; } - *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { - color: #d2e1e0; } - -.button:link > .label, .button:visited > .label { - text-decoration-line: underline; } - -.spinbutton { - border-radius: 3px; } - .spinbutton .button { - background-image: none; - border: 1px solid rgba(220, 223, 227, 0.6); - border-style: none none none solid; - color: #646872; - border-radius: 0; - box-shadow: none; } - .spinbutton .button:dir(rtl) { - border-style: none solid none none; } - .spinbutton .button:first-child { - color: red; } - .spinbutton .button:insensitive { - color: rgba(92, 97, 108, 0.55); } - .spinbutton .button:active { - background-color: #268bd2; - color: #fdf6e3; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - border-radius: 2px 2px 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:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; } - GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: #268bd2; - border-radius: 0; - box-shadow: none; } - -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; } - GtkComboBox > .the-button-in-the-combobox { - padding-top: 3px; - padding-bottom: 3px; } - GtkComboBox:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { - -GtkWidget-wide-separators: true; } - GtkComboBox.combobox-entry .entry:dir(ltr) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - border-right-style: none; } - GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: 1px 0 #268bd2; } - GtkComboBox.combobox-entry .entry:dir(rtl) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; } - GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: -1px 0 #268bd2; } - GtkComboBox.combobox-entry .button:dir(ltr) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - GtkComboBox.combobox-entry .button:dir(rtl) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #F5F6F7; } - .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.9); } - -.primary-toolbar { - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #002b36, #000f12) 1 0 1 0; } - -.inline-toolbar { - background-color: #edeef0; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -.search-bar { - background-color: #F5F6F7; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 0 1px; - padding: 3px; } - -.action-bar { - background-color: #edeef0; } - -.header-bar { - padding: 5px 5px 4px 5px; - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: #001b22; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; } - .csd .header-bar { - background-color: #002b36; - border-color: #001b22; } - .header-bar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .header-bar .title { - padding-left: 12px; - padding-right: 12px; } - .header-bar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .header-bar.selection-mode, .header-bar.titlebar.selection-mode { - color: #fdf6e3; - background-color: #268bd2; - border-color: #2380c1; - box-shadow: none; } - .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { - background-color: #268bd2; - color: rgba(253, 246, 227, 0.6); } - .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.05); - border-color: rgba(253, 246, 227, 0.5); } - .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.15); - border-color: rgba(253, 246, 227, 0.15); } - .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { - background-color: #268bd2; } - .tiled .header-bar, .tiled .header-bar:backdrop, - .maximized .header-bar, .maximized .header-bar:backdrop { - border-radius: 0; } - .maximized .header-bar { - background-color: #002b36; - border-color: #001b22; } - .header-bar.default-decoration, - .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, - .csd .header-bar.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: #002b36; - border-bottom-width: 0; } - .maximized .header-bar.default-decoration, .maximized - .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized - .csd .header-bar.default-decoration:backdrop { - background-color: #002b36; } - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: 3px 3px 0 0; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: inset 0 1px #003745; } - .csd .titlebar { - background-color: #002b36; } - .titlebar:backdrop { - color: rgba(89, 128, 143, 0.5); - background-color: #00313e; } - .csd .titlebar:backdrop { - background-color: #00313e; } - .maximized .titlebar { - background-color: #002b36; } - .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { - background-color: #00313e; } - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { - background-color: transparent; } - -.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, -.header-bar > GtkBox > .separator.vertical, .sidebar -.header-bar > GtkBox > .vertical.view.separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(89, 128, 143, 0) 25%, rgba(89, 128, 143, 0.15) 25%, rgba(89, 128, 143, 0.15) 75%, rgba(89, 128, 143, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, - .header-bar > GtkBox > .separator.vertical:backdrop, .sidebar - .header-bar > GtkBox > .vertical.view.separator:backdrop { - opacity: 0.6; } - -.primary-toolbar .entry, .header-bar .entry { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { - color: inherit; } - .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { - opacity: 0.85; } - .primary-toolbar .entry:focus, .header-bar .entry:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - background-clip: padding-box; } - .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { - color: #fdf6e3; } - .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar .entry.warning, .header-bar .entry.warning { - color: white; - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, #7a3e23); } - .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); } - .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar .entry.error, .header-bar .entry.error { - color: white; - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, #842f32); } - .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); } - .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar .button, .header-bar .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - outline-offset: -3px; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:backdrop, .header-bar .button:backdrop { - opacity: 0.7; } - .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { - color: inherit; } - .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, .header-bar .linked:not(.vertical):not(.path-bar) > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), .header-bar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .primary-toolbar .linked:not(.vertical).path-bar > .button, .header-bar .linked:not(.vertical).path-bar > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover { - background-color: rgba(0, 193, 243, 0.4); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .primary-toolbar .linked:not(.vertical).path-bar > .button:active, .header-bar .linked:not(.vertical).path-bar > .button:active, .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, .header-bar .linked:not(.vertical).path-bar > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, .header-bar .linked:not(.vertical).path-bar > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button + .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button + .button, .primary-toolbar .linked:not(.vertical).path-bar > .button + .button, .header-bar .linked:not(.vertical).path-bar > .button + .button { - border-left-style: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):hover, .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4), inset -1px 0 rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry.warning, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry.error, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry.error { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:last-child, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .button, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:last-child, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .button, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:last-child, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .button, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .button:active + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .button:checked + .entry { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, .primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { - color: rgba(89, 128, 143, 0.35); - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, .primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { - color: #fdf6e3; } - .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { - background-color: rgba(253, 246, 227, 0.1); - border-color: transparent; } - .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { - color: rgba(253, 246, 227, 0.4); } - -.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(89, 128, 143, 0.8); } - .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { - background-color: rgba(89, 128, 143, 0.05); - border-color: transparent; } - .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(89, 128, 143, 0.5); } - .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { - background-color: rgba(0, 0, 0, 0.1); } - -.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(89, 128, 143, 0.2); } - -.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { - color: inherit; } - .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { - border-right-style: none; } - .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { - border-left-style: none; } - .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { - opacity: 0.75; } - -.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4)); } - .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3)); } - -.primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, #005469); - border-color: rgba(0, 0, 0, 0.7); } - .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { - background-image: linear-gradient(to bottom, #006883); - border-color: rgba(0, 0, 0, 0.7); } - .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #00475a); - border-color: rgba(0, 0, 0, 0.7); } - -.path-bar .button { - padding: 5px 10px; } - .path-bar .button:first-child { - padding-left: 10px; } - .path-bar .button:last-child { - padding-right: 10px; } - .path-bar .button:only-child { - padding-left: 14px; - padding-right: 14px; } - .path-bar .button GtkLabel:last-child { - padding-left: 4px; } - .path-bar .button GtkLabel:first-child { - padding-right: 4px; } - .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { - padding-right: 0; - padding-left: 0; } - .path-bar .button GtkImage { - padding-top: 2px; - padding-bottom: 1px; } - -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: rgba(92, 97, 108, 0.15); - border-top-color: rgba(0, 0, 0, 0.1); } - GtkTreeView.view:selected { - border-radius: 0; - border-left-color: #92c1db; - border-top-color: rgba(92, 97, 108, 0.1); } - GtkTreeView.view:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkTreeView.view:insensitive:selected { - color: #7cb6d9; } - GtkTreeView.view.dnd { - border-style: solid none; - border-width: 1px; - border-color: #41769f; } - GtkTreeView.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #adaca8; } - GtkTreeView.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - GtkTreeView.view.expander:hover { - color: #5c616c; } - GtkTreeView.view.expander:selected { - color: #bdd6de; } - GtkTreeView.view.expander:selected:hover { - color: #fdf6e3; } - GtkTreeView.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - GtkTreeView.view.progressbar, GtkTreeView.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-image: linear-gradient(to bottom, #268bd2); } - GtkTreeView.view.progressbar:selected, GtkTreeView.view.progressbar:selected:focus, GtkTreeView.view.progressbar:focus:selected, GtkTreeView.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-image: linear-gradient(to bottom, #fdf6e3); } - GtkTreeView.view.trough { - color: #5c616c; - background-image: linear-gradient(to bottom, #657b83); - border-radius: 3px; - border-width: 0; } - GtkTreeView.view.trough:selected, GtkTreeView.view.trough:selected:focus { - color: #fdf6e3; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); - border-radius: 3px; - border-width: 0; } - -column-header .button { - color: #7c7f84; - background-color: #fdf6e3; } - column-header .button:hover { - color: #268bd2; - box-shadow: none; - transition: none; } - column-header .button:active { - color: #5c616c; - transition: none; } - -column-header:last-child .button, column-header:last-child.button { - border-right-style: none; - border-image: none; } - -column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { - transition: none; - color: #268bd2; - box-shadow: inset 1px 1px 0 1px #268bd2, inset -1px 0 0 1px #268bd2, inset 1px 1px #fdf6e3, inset -1px 0 #fdf6e3; } - -column-header .button, column-header .button:hover, column-header .button:active { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; } - column-header .button:active, column-header .button:hover { - background-color: #fdf6e3; } - column-header .button:active:hover { - color: #5c616c; } - column-header .button:insensitive { - border-color: #F5F6F7; - background-image: none; } - -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #002b36; - color: rgba(89, 128, 143, 0.8); } - .menubar:backdrop { - color: rgba(89, 128, 143, 0.5); } - .menubar > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - .menubar > .menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - .menubar > .menuitem:insensitive { - color: rgba(89, 128, 143, 0.2); - border-color: transparent; } - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; } - .csd .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - .menu .menuitem { - padding: 5px; } - .menu .menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - .menu .menuitem:insensitive { - color: rgba(92, 97, 108, 0.55); } - .menu .menuitem.separator { - color: rgba(253, 246, 227, 0); } - .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 #ede7d7; } - .menu.button.bottom { - border-top: 1px solid #ede7d7; } - .menu.button:hover { - background-color: #ede7d7; } - .menu.button:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent; } - -.csd .popup { - border-radius: 2px; } - -.menuitem .accelerator { - color: alpha(currentColor,0.55); } - -.popover { - padding: 2px; - border: 1px solid #cdd2d7; - border-radius: 3px; - background-clip: border-box; - background-color: #fdf6e3; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } - .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { - color: rgba(253, 246, 227, 0); } - .popover > .list, - .popover > .view, - .popover > .toolbar, - .popover > .inline-toolbar, - .popover.osd > .toolbar, - .popover.osd > .inline-toolbar { - border-style: none; - background-color: transparent; } - -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - .entry.cursor-handle.top, - .cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - .entry.cursor-handle.bottom, - .cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -.notebook { - padding: 0; - background-color: #fdf6e3; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -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.frame { - border: 1px solid #dcdfe3; } - .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.header { - background-color: #F5F6F7; } - .notebook.header.frame { - border: 0px solid #dcdfe3; } - .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.top { - box-shadow: inset 0 -1px #dcdfe3; } - .notebook.header.bottom { - box-shadow: inset 0 1px #dcdfe3; } - .notebook.header.right { - box-shadow: inset 1px 0 #dcdfe3; } - .notebook.header.left { - box-shadow: inset -1px 0 #dcdfe3; } - .notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - outline-offset: 0; } - .notebook tab.top, .notebook tab.bottom { - padding: 4px 15px; } - .notebook tab.left, .notebook tab.right { - padding: 4px 15px; } - .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { - padding-left: 12px; - padding-right: 12px; } - .notebook tab.reorderable-page.top, .notebook tab.top { - padding-top: 6px; - border-radius: 3.5px 2px 0 0; - border-width: 0; - border-top-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #fdf6e3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom, .notebook tab.bottom { - padding-bottom: 6px; - border-radius: 0 0 2px 3.5px; - border-width: 0; - border-bottom-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 -1px #fdf6e3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right, .notebook tab.right { - padding-right: 17px; - border-radius: 0 3.5px 3.5px 0; - border-width: 0; - border-right-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #fdf6e3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left, .notebook tab.left { - padding-left: 17px; - border-radius: 3.5px 0 0 3.5px; - border-width: 0; - border-left-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #fdf6e3; } - .notebook tab GtkLabel { - padding: 0 2px; - color: rgba(92, 97, 108, 0.55); } - .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(92, 97, 108, 0.775); } - .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { - color: #5c616c; } - .notebook tab .button { - padding: 0; - color: #92959d; } - .notebook tab .button:hover { - color: #ff4d4d; } - .notebook tab .button:active { - color: #268bd2; } - .notebook tab .button > GtkImage { - padding: 2px; } - .notebook.arrow { - color: rgba(92, 97, 108, 0.55); } - .notebook.arrow:hover { - color: rgba(92, 97, 108, 0.775); } - .notebook.arrow:active { - color: #5c616c; } - .notebook.arrow:insensitive { - color: rgba(92, 97, 108, 0.25); } - -.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: 6px; } - .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { - margin: 0; - background-color: #8a8e96; - border: 1px solid rgba(255, 255, 255, 0.6); - 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.99; } - .scrollbar .trough { - background-color: #fdf4de; - border: 1px none #dcdfe3; } - .scrollbar .slider { - background-color: #b8babf; } - .scrollbar .slider:hover { - background-color: #c7c9cd; } - .scrollbar .slider:prelight:active, .scrollbar .slider:active { - background-color: #268bd2; } - .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, #dcdfe3 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #fdf4de; } - .scrollbars-junction:dir(rtl), - .scrollbars-junction.frame:dir(rtl) { - border-image-slice: 0 1 0 0; } - -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 52; - -GtkSwitch-slider-height: 24; - outline-color: transparent; } - GtkSwitch.trough, GtkSwitch.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; } - GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { - background-position: left center; } - -GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough, -.menu .menuitem:hover GtkSwitch.trough, -.list-row:selected GtkSwitch.trough, -GtkInfoBar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -.header-bar GtkSwitch.trough, -.primary-toolbar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } - -GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough:active, -.menu .menuitem:hover GtkSwitch.trough:active, -.list-row:selected GtkSwitch.trough:active, -GtkInfoBar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -.header-bar GtkSwitch.trough:active, -.primary-toolbar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } - -GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough:insensitive, -.menu .menuitem:hover GtkSwitch.trough:insensitive, -.list-row:selected GtkSwitch.trough:insensitive, -GtkInfoBar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:insensitive, -.primary-toolbar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } - -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough:active:insensitive, -.menu .menuitem:hover GtkSwitch.trough:active:insensitive, -.list-row:selected GtkSwitch.trough:active:insensitive, -GtkInfoBar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:active:insensitive, -.primary-toolbar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } - -.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, -GtkFileChooserDialog .dialog-vbox > .frame .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check, -.menu .menuitem.check:hover, -GtkTreeView.view.check:selected, -.list-row:selected .check, -GtkInfoBar .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:insensitive, -.menu .menuitem.check:insensitive:hover, -GtkTreeView.view.check:insensitive:selected, -.list-row:selected .check:insensitive, -GtkInfoBar .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:inconsistent, -.menu .menuitem.check:inconsistent:hover, -GtkTreeView.view.check:inconsistent:selected, -.list-row:selected .check:inconsistent, -GtkInfoBar .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:inconsistent:insensitive, -.menu .menuitem.check:inconsistent:insensitive:hover, -GtkTreeView.view.check:inconsistent:insensitive:selected, -.list-row:selected .check:inconsistent:insensitive, -GtkInfoBar .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:checked, -.menu .menuitem.check:checked:hover, -GtkTreeView.view.check:checked:selected, -.list-row:selected .check:checked, -GtkInfoBar .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:checked:insensitive, -.menu .menuitem.check:checked:insensitive:hover, -GtkTreeView.view.check:checked:insensitive:selected, -.list-row:selected .check:checked:insensitive, -GtkInfoBar .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, -GtkFileChooserDialog .dialog-vbox > .frame .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio, -.menu .menuitem.radio:hover, -GtkTreeView.view.radio:selected, -.list-row:selected .radio, -GtkInfoBar .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:insensitive, -.menu .menuitem.radio:insensitive:hover, -GtkTreeView.view.radio:insensitive:selected, -.list-row:selected .radio:insensitive, -GtkInfoBar .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:inconsistent, -.menu .menuitem.radio:inconsistent:hover, -GtkTreeView.view.radio:inconsistent:selected, -.list-row:selected .radio:inconsistent, -GtkInfoBar .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:inconsistent:insensitive, -.menu .menuitem.radio:inconsistent:insensitive:hover, -GtkTreeView.view.radio:inconsistent:insensitive:selected, -.list-row:selected .radio:inconsistent:insensitive, -GtkInfoBar .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:checked, -.menu .menuitem.radio:checked:hover, -GtkTreeView.view.radio:checked:selected, -.list-row:selected .radio:checked, -GtkInfoBar .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:checked:insensitive, -.menu .menuitem.radio:checked:insensitive:hover, -GtkTreeView.view.radio:checked:insensitive:selected, -.list-row:selected .radio:checked:insensitive, -GtkInfoBar .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -.view.content-view.check:not(.list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); - background-color: transparent; } - -.view.content-view.check:checked:not(.list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-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: rgba(92, 97, 108, 0.55); } - -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; - color: alpha(currentColor,0.7); } - .scale.trough { - margin: 5px; } - .scale.fine-tune.trough { - border-radius: 5px; - margin: 3px; } - .scale.slider { - background-clip: border-box; - background-image: linear-gradient(to bottom, #fbfbfc); - border: 1px solid rgba(45, 55, 59, 0.5); - border-radius: 50%; - box-shadow: none; } - .scale.slider:hover { - background-image: linear-gradient(to bottom, white); - border-color: rgba(45, 55, 59, 0.5); } - .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #f9f6ec); - border-color: rgba(45, 55, 59, 0.3); } - .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .osd .scale.slider { - background-image: linear-gradient(to bottom, #073642); - border-color: #268bd2; } - .osd .scale.slider:hover { - background-image: linear-gradient(to bottom, #268bd2); } - .osd .scale.slider:active { - background-image: linear-gradient(to bottom, #1e6ea7); - border-color: #1e6ea7; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider, - .menu .menuitem:hover .scale.slider, - .list-row:selected .scale.slider, - GtkInfoBar .scale.slider { - background-image: linear-gradient(to bottom, #fdf6e3); - border-color: #fdf6e3; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider:hover, - .menu .menuitem:hover .scale.slider:hover, - .list-row:selected .scale.slider:hover, - GtkInfoBar .scale.slider:hover { - background-image: linear-gradient(to bottom, #dde6e0); - border-color: #dde6e0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider:active, - .menu .menuitem:hover .scale.slider:active, - .list-row:selected .scale.slider:active, - GtkInfoBar .scale.slider:active { - background-image: linear-gradient(to bottom, #92c1db); - border-color: #92c1db; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider:insensitive, - .menu .menuitem:hover .scale.slider:insensitive, - .list-row:selected .scale.slider:insensitive, - GtkInfoBar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); - border-color: #9cc6db; } - .scale.trough { - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, #657b83); } - .scale.trough.highlight { - background-image: linear-gradient(to bottom, #268bd2); } - .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, rgba(38, 139, 210, 0.55)); } - .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(101, 123, 131, 0.55)); } - .osd .scale.trough { - background-image: linear-gradient(to bottom, #0a5062); - outline-color: rgba(101, 123, 131, 0.2); } - .osd .scale.trough.highlight { - background-image: none; - background-image: linear-gradient(to bottom, #268bd2); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough, - .menu .menuitem:hover .scale.trough, - .list-row:selected .scale.trough, - GtkInfoBar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough.highlight, - .menu .menuitem:hover .scale.trough.highlight, - .list-row:selected .scale.trough.highlight, - GtkInfoBar .scale.trough.highlight { - background-image: linear-gradient(to bottom, #fdf6e3); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough.highlight:insensitive, - .menu .menuitem:hover .scale.trough.highlight:insensitive, - .list-row:selected .scale.trough.highlight:insensitive, - GtkInfoBar .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough:insensitive, - .menu .menuitem:hover .scale.trough:insensitive, - .list-row:selected .scale.trough:insensitive, - GtkInfoBar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -GtkProgressBar { - padding: 0; - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - GtkProgressBar.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; } - -.progressbar { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - .progressbar.osd { - background-color: #268bd2; } - .list-row:selected .progressbar, - GtkInfoBar .progressbar { - background-color: #fdf6e3; } - -.osd .scale.progressbar { - background-color: #268bd2; } - -GtkProgressBar.trough, .level-bar.trough { - border: none; - border-radius: 3px; - background-color: #657b83; } - GtkProgressBar.trough.osd, .osd.level-bar.trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, - GtkInfoBar GtkProgressBar.trough, - GtkInfoBar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.2); } - -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; } - GtkLevelBar.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; } - -.level-bar.trough { - padding: 3px; - border-radius: 4px; } - -.level-bar.fill-block { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - .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 { - border-color: #859900; - background-color: #859900; } - .level-bar.fill-block.level-low { - border-color: #cb4b16; - background-color: #cb4b16; } - .level-bar.fill-block.empty-fill-block { - background-color: rgba(92, 97, 108, 0.2); - border-color: rgba(92, 97, 108, 0.2); } - -.frame { - border: 1px solid #dcdfe3; - padding: 0; } - .frame.flat { - border-style: none; } - .frame.action-bar { - padding: 6px; - border-width: 1px 0 0; } - -GtkScrolledWindow GtkViewport.frame { - border-style: none; } - -.separator, .sidebar.separator, .sidebar .view.separator { - color: rgba(0, 0, 0, 0.1); } - GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, - GtkFontButton .separator, - GtkFontButton .sidebar.separator, - GtkFontButton .sidebar .view.separator, .sidebar - GtkFontButton .view.separator, - GtkFileChooserButton .separator.vertical, - GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar - GtkFileChooserButton .vertical.view.separator, - GtkFontButton .separator.vertical, - GtkFontButton .sidebar .vertical.view.separator, .sidebar - GtkFontButton .vertical.view.separator { - -GtkWidget-wide-separators: true; } - -.list { - background-color: #fdf6e3; - border-color: #dcdfe3; } - -.list-row, -.grid-child { - padding: 2px; } - -.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { - background-color: rgba(0, 0, 0, 0.05); } - -.list-row.activatable:active { - color: #5c616c; } - -.list-row.activatable:selected:active { - color: #fdf6e3; } - -.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { - background-color: #227dbd; } - -.list-row.activatable:selected:insensitive { - color: rgba(253, 246, 227, 0.7); - background-color: rgba(38, 139, 210, 0.7); } - .list-row.activatable:selected:insensitive .label { - color: inherit; } - -.list-row, list-row.activatable { - transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .list-row:hover, list-row.activatable:hover { - transition: none; } - -.app-notification, -.app-notification.frame { - padding: 10px; - color: #657b83; - background-color: #073642; - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: #021014; } - .app-notification .button, - .app-notification.frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .app-notification .button.flat, .app-notification .sidebar-button.button, - .app-notification.frame .button.flat, - .app-notification.frame .sidebar-button.button { - border-color: rgba(38, 139, 210, 0); } - .app-notification .button:hover, - .app-notification.frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .app-notification .button:active, .app-notification .button:checked, - .app-notification.frame .button:active, - .app-notification.frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification .button:insensitive, - .app-notification.frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - .expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - .expander:hover { - color: #aaaeb7; } - .expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GtkCalendar { - color: #5c616c; - border: 1px solid #dcdfe3; - border-radius: 3px; - padding: 2px; } - GtkCalendar:selected { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 1.5px; } - GtkCalendar.header { - color: #5c616c; - border: none; - border-radius: 0; } - GtkCalendar.button, GtkCalendar.button:focus { - color: rgba(92, 97, 108, 0.45); - border-color: transparent; - background-color: transparent; - background-image: none; } - GtkCalendar.button:hover, GtkCalendar.button:focus:hover { - color: #5c616c; } - GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { - color: rgba(92, 97, 108, 0.55); - background-color: transparent; - background-image: none; } - GtkCalendar:inconsistent { - color: alpha(currentColor,0.55); } - GtkCalendar.highlight { - color: #5c616c; } - -.message-dialog .dialog-action-area .button { - padding: 8px; } - -.message-dialog { - -GtkDialog-button-spacing: 0; } - .message-dialog .titlebar { - background-color: #002b36; - border-bottom: 1px solid #000f12; } - .message-dialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - .message-dialog.csd .dialog-action-area .button { - padding: 8px; - border-radius: 0; } - .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 { - border-right-style: none; - border-bottom-style: none; } - .message-dialog.csd .dialog-action-area .button:last-child { - border-bottom-right-radius: 3px; } - .message-dialog.csd .dialog-action-area .button:first-child { - border-left-style: none; - border-bottom-left-radius: 3px; } - -GtkFileChooserDialog .search-bar { - background-color: #F5F6F7; - border-color: #dcdfe3; - box-shadow: none; } - -GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #dcdfe3; } - -.sidebar, .sidebar .view { - border: none; - background-color: #fbfbfc; } - -GtkSidebarRow.list-row { - padding: 0px; } - -GtkSidebarRow .sidebar-revealer { - padding: 3px 14px 3px 12px; } - -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 .sidebar-placeholder-row { - border: solid 1px #268bd2; } - -GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { - background-color: #d9dde0; } - -GtkPlacesSidebar.sidebar .list-row.activatable { - color: rgba(92, 97, 108, 0.8); - border-width: 0; - border-style: solid; } - -.sidebar-button.button { - outline-radius: 50%; - border-radius: 50%; } - .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, - .titlebar .sidebar-button.button.titlebutton { - padding: 3px; } - .sidebar-button.button:not(:hover):not(:active) > GtkImage { - opacity: 0.5; } - -.sidebar-item { - padding: 10px 4px; } - .sidebar-item > GtkLabel { - padding-left: 6px; - padding-right: 6px; } - .sidebar-item.needs-attention > GtkLabel { - background-size: 6px 6px, 0 0; } - -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); } - -GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { - background-color: transparent; } - -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: #dcdfe3; } - -GtkPaned.wide { - -GtkPaned-handle-size: 5; - margin: 0; } - GtkPaned.wide .pane-separator { - background-color: transparent; - border-style: none solid; - border-color: #dcdfe3; - border-width: 1px; } - GtkPaned.wide.vertical .pane-separator { - border-style: solid none; } - -GtkInfoBar { - border-style: none; } - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: #268bd2; - color: #fdf6e3; } - -.list-row:selected .button, GtkInfoBar .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .list-row:selected .button:hover, GtkInfoBar .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.2); } - .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.2); } - -.tooltip { - color: #657b83; - border-radius: 2px; } - .tooltip.background { - background-color: #0c5c70; - background-clip: padding-box; } - .tooltip.window-frame.csd { - background-color: transparent; } - -.tooltip * { - padding: 4px; - background-color: transparent; - color: inherit; } - -:selected GtkColorSwatch { - box-shadow: none; } - :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { - border-color: #fdf6e3; } - -GtkColorSwatch.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -GtkColorSwatch.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { - border-radius: 3px; } - -GtkColorSwatch:hover, GtkColorSwatch:hover:selected { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } - -GtkColorEditor GtkColorSwatch { - border-radius: 3px; } - GtkColorEditor GtkColorSwatch:hover { - background-image: none; } - -GtkColorSwatch.color-dark { - color: white; - outline-color: rgba(0, 0, 0, 0.3); } - -GtkColorSwatch.color-light { - color: black; - outline-color: rgba(255, 255, 255, 0.5); } - -GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { - border: 1px solid rgba(0, 0, 0, 0.15); } - GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { - border-color: rgba(0, 0, 0, 0.25); } - -GtkColorSwatch#add-color-button { - border-style: solid; - border-width: 1px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - GtkColorSwatch#add-color-button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - GtkColorSwatch#add-color-button .overlay { - border-color: transparent; - background-color: transparent; - background-image: none; } - -GtkColorButton.button { - padding: 5px; } - GtkColorButton.button GtkColorSwatch { - border-radius: 0; } - -.content-view { - background-color: #fdf6e3; } - .content-view:hover { - -gtk-image-effect: highlight; } - -.scale-popup .button { - padding: 6px; } - .scale-popup .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - -GtkVolumeButton.button { - padding: 8px; } - -.touch-selection, -.context-menu { - font: initial; } - -.monospace { - font: Monospace; } - -.overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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; } - -.window-frame { - border-radius: 3px 3px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px #000f12, 0 8px 8px 0 rgba(0, 0, 0, 0.2); - margin: 10px; } - .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.9), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } - .window-frame.tiled { - border-radius: 0; } - .window-frame.popup { - box-shadow: none; - border-radius: 0; } - .window-frame.ssd { - border-radius: 3px 3px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } - .window-frame.ssd.maximized { - border-radius: 0; } - .window-frame.csd.popup { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.message-dialog { - border-radius: 3px; } - .window-frame.solid-csd { - border-radius: 0; - margin: 1px; - background-color: #002b36; - box-shadow: none; } - -.header-bar.default-decoration .button.titlebutton, -.titlebar.default-decoration .button.titlebutton { - padding-top: 0px; - padding-bottom: 0px; } - -.header-bar .button.titlebutton, -.titlebar .button.titlebutton { - padding-left: 4px; - padding-right: 4px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(0, 43, 54, 0); } - .header-bar .button.titlebutton:not(GtkMenuButton), - .titlebar .button.titlebutton:not(GtkMenuButton) { - padding-top: 8px; - padding-bottom: 8px; } - .header-bar .button.titlebutton:hover, - .titlebar .button.titlebutton:hover { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, - .titlebar .button.titlebutton:active, - .titlebar .button.titlebutton:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.close, - .titlebar .button.titlebutton.maximize, - .titlebar .button.titlebutton.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; } - .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - opacity: 1; } - .header-bar .button.titlebutton.close, - .titlebar .button.titlebutton.close { - background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } - .header-bar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.close:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.close:hover, - .titlebar .button.titlebutton.close:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } - .header-bar .button.titlebutton.close:active, - .titlebar .button.titlebutton.close:active { - background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } - .header-bar .button.titlebutton.maximize, - .titlebar .button.titlebutton.maximize { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-dark.png"), url("assets/titlebutton-maximize-dark@2.png")); } - .header-bar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.maximize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop-dark.png"), url("assets/titlebutton-maximize-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.maximize:hover, - .titlebar .button.titlebutton.maximize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover-dark.png"), url("assets/titlebutton-maximize-hover-dark@2.png")); } - .header-bar .button.titlebutton.maximize:active, - .titlebar .button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active-dark.png"), url("assets/titlebutton-maximize-active-dark@2.png")); } - .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.minimize { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-dark.png"), url("assets/titlebutton-minimize-dark@2.png")); } - .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop-dark.png"), url("assets/titlebutton-minimize-backdrop-dark@2.png")); } - .header-bar .button.titlebutton.minimize:hover, - .titlebar .button.titlebutton.minimize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover-dark.png"), url("assets/titlebutton-minimize-hover-dark@2.png")); } - .header-bar .button.titlebutton.minimize:active, - .titlebar .button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active-dark.png"), url("assets/titlebutton-minimize-active-dark@2.png")); } - -.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, -GtkEntry.gb-command-bar-entry.entry.flat:focus:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, -NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, -NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, -NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, -NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, -NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); } - -GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, -ScratchMainWindow .notebook tab.reorderable-page.top:active, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, -ScratchMainWindow .notebook tab.top:active, -ScratchMainWindow .notebook tab.top.active-page, -ScratchMainWindow .notebook tab.top.active-page:hover, -EphyNotebook.notebook tab.reorderable-page.top:active, -EphyNotebook.notebook tab.reorderable-page.top.active-page, -EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, -EphyNotebook.notebook tab.top:active, -EphyNotebook.notebook tab.top.active-page, -EphyNotebook.notebook tab.top.active-page:hover, -MidoriNotebook .notebook tab.reorderable-page.top:active, -MidoriNotebook .notebook tab.reorderable-page.top.active-page, -MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, -MidoriNotebook .notebook tab.top:active, -MidoriNotebook .notebook tab.top.active-page, -MidoriNotebook .notebook tab.top.active-page:hover, -TerminalWindow .notebook tab.reorderable-page.top:active, -TerminalWindow .notebook tab.reorderable-page.top.active-page, -TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -TerminalWindow .notebook tab.top:active, -TerminalWindow .notebook tab.top.active-page, -TerminalWindow .notebook tab.top.active-page:hover { - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - -TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top { - padding-top: 7px; - border-top-width: 3px; } - -TerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #001b22, inset 0 -1px #dcdfe3; } - -GtkHTML { - background-color: #fdf6e3; - color: #5c616c; } - GtkHTML:active { - color: #fdf6e3; - background-color: #268bd2; } - -SushiFontWidget { - padding: 6px 12px; } - -TerminalWindow .background { - background-color: transparent; } - -TerminalWindow .scrollbar.vertical .slider { - margin-left: 3px; } - -TerminalWindow .scrollbar.trough { - border-width: 0; } - -TerminalWindow .notebook tab .button { - color: #92959d; } - TerminalWindow .notebook tab .button:hover { - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - -TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { - color: #ff4d4d; } - -TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { - color: #268bd2; } - -EelEditableLabel.entry { - transition: none; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { - color: #5c616c; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { - color: #fdf6e3; } - -.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, -.nautilus-list-dim-label { - color: #a9acb2; } - .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, - .nautilus-list-dim-label:selected, - .nautilus-list-dim-label:selected:focus { - color: #d2e1e0; } - -NautilusNotebook.notebook { - background-color: #fdf6e3; } - NautilusNotebook.notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; } - -NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { - padding: 5px; - box-shadow: none; - background-color: #fdf6e3; } - -.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, -.titlebar .nautilus-circular-button.button.titlebutton { - border-radius: 50%; - outline-radius: 50%; - padding: 8px; } - -.disk-space-display { - border-style: solid; - border-width: 1px; } - .disk-space-display.unknown { - background-color: rgba(92, 97, 108, 0.5); - border-color: rgba(69, 72, 80, 0.5); } - .disk-space-display.used { - background-color: rgba(38, 139, 210, 0.8); - border-color: rgba(30, 110, 167, 0.8); } - .disk-space-display.free { - background-color: #edeef0; - border-color: #d0d5da; } - -NemoWindow .sidebar .frame { - border-width: 0; } - -NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #dcdfe3; } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { - color: rgba(89, 128, 143, 0.8); - outline-color: rgba(89, 128, 143, 0.1); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { - background-color: rgba(0, 193, 243, 0.4); } - NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: transparent; - background-color: #268bd2; } - NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { - color: rgba(89, 128, 143, 0.4); } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4), inset -1px 0 rgba(0, 0, 0, 0.4); } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - -.gedit-headerbar-paned { - color: #001b22; } - -.open-document-selector-treeview.view { - padding: 3px 6px 3px 6px; - border-color: #fdf6e3; } - .open-document-selector-treeview.view:prelight { - background-color: #f2ecdb; } - .open-document-selector-treeview.view:prelight:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.open-document-selector-name-label { - color: #5c616c; } - -.open-document-selector-path-label { - color: #adaca8; - font-size: smaller; } - .open-document-selector-path-label:selected { - color: rgba(253, 246, 227, 0.9); } - -.gedit-document-panel .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; } - .gedit-document-panel .list-row .button GtkImage { - color: inherit; } - -.gedit-document-panel .prelight-row .button { - color: #92959d; } - -.gedit-document-panel .list-row .button:hover, -.gedit-document-panel .prelight-row .button:hover { - color: #ff4d4d; } - -.gedit-document-panel .prelight-row:selected .button:hover { - color: #ff6666; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; } - .gedit-document-panel .prelight-row:selected .button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel .prelight-row .button:active { - color: #5c616c; } - -.gedit-document-panel-dragged-row { - border: 1px solid #dcdfe3; - background-color: #d9dde0; - color: #5c616c; } - -GeditStatusbar { - border-top: 1px solid #dcdfe3; - background-color: #F5F6F7; } - -GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton.sidebar-button.button:prelight, -GeditStatusMenuButton:checked.button.flat, -GeditStatusMenuButton.sidebar-button.button:checked { - border-bottom-style: none; - border-radius: 0; } - -GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #dcdfe3; } - -.gedit-map-frame { - border-color: rgba(0, 0, 0, 0.3); } - -.gedit-search-entry-occurrences-tag { - color: rgba(92, 97, 108, 0.6); - border: none; - margin: 2px; - padding: 2px; } - -GeditViewFrame .gedit-search-slider { - background-color: #fbfbfc; - padding: 6px; - border-color: #dcdfe3; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -GbWorkbench .floating-bar { - color: #5c616c; } - -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { - color: inherit; } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; } - -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; } - -GbPreferencesPageLanguage .entry { - border-radius: 3px 3px 0 0; } - -GbPreferencesPageLanguage .frame { - border-top-width: 0; } - -GbEditorTweakWidget .linked.vertical > .entry { - border-bottom-style: solid; } - -GbEditorTweakWidget GtkScrolledWindow { - border-top: none; } - -GbViewStack GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbViewStack.focused GtkBox.header.notebook, -#project_sidebar_header.focused { - background-color: #fdf6e3; } - -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { - border-radius: 3px 0 0 3px; } - -GbWorkspacePane GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbWorkspacePane:not(.focused) GtkBox.header.notebook { - background-color: #F5F6F7; } - -DhSidebar GtkSearchEntry.entry, -SymbolTree GtkSearchEntry.entry { - border-left: none; - border-right: none; - border-top: none; - border-radius: 0px; } - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: #657b83; - background-image: none; - background-color: #073642; - padding: 6px 6px 6px 6px; - border: none; } - -GbTerminalView { - background-color: #fdf6e3; - color: #5c616c; } - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; } - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; } - -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; } - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbViewStack.focused GtkBox.header.notebook { - background-color: #fdf6e3; } - GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { - opacity: 1; } - -EphyWindow .floating-bar { - color: #5c616c; } - -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon { - background-color: rgba(92, 97, 108, 0.3); - border-radius: 2px; } - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: #78b9e6; } - -.documents-entry-tag { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover { - color: #fdf6e3; - background-color: #3295da; } - .documents-entry-tag:active { - color: #fdf6e3; - background-color: #2380c1; } - .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; } - .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { - color: rgba(253, 246, 227, 0.7); } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -TotemGrilo.vertical GdMainView.frame { - border-width: 0; } - -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { - background-color: #268bd2; } - -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; } - -.gnome-panel-menu-bar.menubar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: #657b83; - background-color: #05242c; } - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: #657b83; } - -PanelApplet .button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); - border-color: rgba(0, 0, 0, 0.17); } - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: rgba(0, 0, 0, 0.25); - border-radius: 0; - border-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -PanelApplet:hover { - color: white; } - -PanelApplet:active, -PanelApplet:hover:active { - color: #268bd2; } - -WnckPager { - color: #333e42; } - WnckPager:selected { - color: #268bd2; } - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; } - -ClockBox { - color: #657b83; } - -.xfce4-panel.panel { - background-color: #05242c; - text-shadow: none; - icon-shadow: none; } - .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { - color: #657b83; - background-color: rgba(5, 36, 44, 0); - border-radius: 0; - border: none; } - .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { - border: none; - background-color: #0a4a5a; } - .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - -.floating-bar { - background-color: #268bd2; - color: #fdf6e3; } - .floating-bar.top { - border-radius: 0 0 2px 2px; } - .floating-bar.right { - border-radius: 2px 0 0 2px; } - .floating-bar.bottom { - border-radius: 2px 2px 0 0; } - .floating-bar.left { - border-radius: 0 2px 2px 0; } - .floating-bar .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - background-color: transparent; - box-shadow: none; - border: none; } - -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; } - -MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { - color: #fdf6e3; - background-color: #268bd2; - outline-color: transparent; } - -MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { - background-color: transparent; } - -MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { - outline-color: transparent; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.4)); - background-color: transparent; } - .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: transparent; - background-image: linear-gradient(to bottom, #268bd2); } - .marlin-pathbar.pathbar:insensitive { - color: rgba(89, 128, 143, 0.35); - background-image: linear-gradient(to bottom, rgba(0, 132, 166, 0.25)); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel .maximized { - background-color: #05242c; - box-shadow: inset 0 -1px #010a0c; } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - .color-light .composited-indicator { - color: rgba(0, 0, 0, 0.65); - text-shadow: 0 0 2px rgba(255, 255, 255, 0.3), 0 1px 0 rgba(255, 255, 255, 0.25); - icon-shadow: 0 0 2px rgba(255, 255, 255, 0.3), 0 1px 0 rgba(255, 255, 255, 0.25); } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - font: initial; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .sidebar { - background: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { - padding: 0 3px; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { - color: #fdf6e3; - background-color: #268bd2; } - WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { - color: rgba(92, 97, 108, 0.55); } - -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; } - -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: #5c616c; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration.top { - border: 1px solid #000f12; - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #002b36); - color: rgba(89, 128, 143, 0.8); - box-shadow: inset 0 1px #003745; } - UnityDecoration.top:backdrop { - border-bottom-width: 0; - color: rgba(89, 128, 143, 0.5); } - UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, #000f12); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: #004b5f; - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; } - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar GtkLabel { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #dcdfe3; - border-right: 1px solid #dcdfe3; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #dcdfe3; } - .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { - padding: 0 3px 0 3px; } - -.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #dcdfe3; - background-color: #F5F6F7; } - .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view { - background-color: #F5F6F7; - color: #5c616c; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:prelight { - background-color: white; } - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: #F5F6F7; - background-image: none; } - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #5c616c; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -.dynamic-notebook .notebook tab .button > GtkImage { - padding: 0; } - -GraniteWidgetsWelcome { - background-color: #fdf6e3; } - -GraniteWidgetsWelcome GtkLabel { - color: #a9acb2; - font: open sans 11; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(92, 97, 108, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #fdf6e3); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry.entry { - padding: 4px; } - -.h1 { - font: open sans 24px; } - -.h2 { - font: open sans light 18px; } - -.h3 { - font: open sans 11px; } - -.h4, -.category-label { - color: #8a8e96; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: #05242c; - color: #657b83; - font: bold; - box-shadow: inset 0 -1px #010a0c; } - #panel_window .menubar { - padding-left: 5px; } - #panel_window .menubar, #panel_window .menubar > .menuitem { - background-color: transparent; - color: #657b83; - font: bold; } - #panel_window .menubar .menuitem:insensitive { - color: rgba(101, 123, 131, 0.5); } - #panel_window .menubar .menuitem:insensitive GtkLabel { - color: inherit; } - #panel_window .menubar .menu .menuitem { - font: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: #5c616c; } - -#content_frame { - padding-bottom: 14px; - background-color: #F5F6F7; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - #content_frame .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - #content_frame .button:active, #content_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - #content_frame .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - #content_frame .button:insensitive > GtkLabel { - color: inherit; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: #073642; - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px #073642; } - -#buttonbox_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - #buttonbox_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - #buttonbox_frame .button:active, #buttonbox_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - #buttonbox_frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -#login_window #user_combobox { - color: #5c616c; - font: 13px; } - #login_window #user_combobox .menu { - font: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font: bold; } - -.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { - color: #001b22; } - -NemoWindow GtkEventBox { - background-color: #F5F6F7; } - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; } - -GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, -NautilusWindow.csd.background, -NautilusWindow .list.sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar, -NautilusWindow GtkPlacesSidebar.sidebar { - background-color: #073642; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { - border: 1px solid #268bd2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { - background-color: #0c5c70; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { - border: none; - color: #657b83; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { - color: rgba(101, 123, 131, 0.6); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, - NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { - background-color: rgba(101, 123, 131, 0.15); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { - color: inherit; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button { - color: #657b83; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button:hover, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button:active, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button:active { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button:not(:hover):not(:active) > GtkImage, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button:not(:hover):not(:active) > GtkImage { - opacity: 0.5; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, - NautilusWindow GtkPlacesSidebar.sidebar .separator, - NautilusWindow GtkPlacesSidebar.sidebar .view.separator { - color: transparent; } - -GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, -NautilusWindow.maximized GtkPlacesSidebar.sidebar { - background-color: #073642; } - -NemoWindow.csd.background, -NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, -MarlinViewWindow.csd.background, -MarlinViewWindow .source-list, -MarlinViewWindow .source-list.view, -MarlinViewWindow .source-list.view:prelight { - background-color: transparent; } - -NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, -MarlinViewWindow .sidebar, -MarlinViewWindow .source-list.sidebar.view { - background-color: #073642; } - NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, - MarlinViewWindow .sidebar .view, - MarlinViewWindow .sidebar row, - MarlinViewWindow .source-list.sidebar.view .view, - MarlinViewWindow .source-list.sidebar.view row { - background-color: transparent; - color: #657b83; } - NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, - MarlinViewWindow .sidebar .view.image, - MarlinViewWindow .sidebar row.image, - MarlinViewWindow .source-list.sidebar.view .view.image, - MarlinViewWindow .source-list.sidebar.view row.image { - color: rgba(101, 123, 131, 0.7); } - NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, - MarlinViewWindow .sidebar .view.cell:selected, - MarlinViewWindow .sidebar row.cell:selected, - MarlinViewWindow .source-list.sidebar.view .view.cell:selected, - MarlinViewWindow .source-list.sidebar.view row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, - MarlinViewWindow .sidebar.frame, - MarlinViewWindow .source-list.sidebar.view.frame { - color: #657b83; } - NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, - MarlinViewWindow .sidebar .separator, - MarlinViewWindow .sidebar .sidebar.separator, - MarlinViewWindow .sidebar .view.separator, - MarlinViewWindow .source-list.sidebar.view .separator { - color: transparent; } - -NemoWindow.maximized .sidebar, -MarlinViewWindow.maximized .sidebar { - background-color: #073642; } - -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { - background-color: #073642; } - -NautilusWindow NautilusWindowSlot { - background-color: #fdf6e3; } - -NautilusDesktopWindow NautilusWindowSlot { - background-color: transparent; } - -GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { - background-color: #073642; } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-action-box { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-vbox > .frame { - color: #657b83; - border-color: transparent; } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { - background-color: transparent; - border-color: #041c22; } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, -GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, -GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { - color: #657b83; } - -FeedReaderreaderUI.background.csd > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd > .titlebar .pane-separator, -GeditWindow.background.csd.maximized > .titlebar .pane-separator, -GeditWindow.background.csd > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { - background-color: #001b22; } - -FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #002b36; } - FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #00313e; } - -FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #002b36; } - FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #00313e; } - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; } - -GeditWindow.background.csd { - background-color: transparent; } - -GeditWindow.background .gedit-side-panel-paned .pane-separator { - background-color: #073642; } - -GeditWindow.background .gedit-bottom-panel-paned .pane-separator { - background-color: #dcdfe3; } - -.gedit-bottom-panel-paned { - background-color: #fdf6e3; } - -.gedit-document-panel { - background-color: #073642; } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel .list-row { - color: #657b83; } - .gedit-document-panel .list-row { - background-color: rgba(101, 123, 131, 0); - border: solid rgba(101, 123, 131, 0); - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:hover { - border: solid rgba(101, 123, 131, 0.15); - border-width: 3px 2px 3px 2px; - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel .list-row:active { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:active .button { - color: #fdf6e3; } - .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -GeditFileBrowserWidget { - background-color: #073642; } - .maximized GeditFileBrowserWidget { - background-color: #073642; } - GeditFileBrowserWidget .horizontal { - background-color: transparent; - border-color: #041c22; } - GeditFileBrowserWidget .horizontal GtkComboBox { - color: #657b83; } - -GeditWindow.background.csd GeditFileBrowserView.view { - background-color: transparent; - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander { - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { - color: #268bd2; } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, -GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, - GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, - GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, - GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, -GtkFileChooserDialog .dialog-vbox > .frame .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.4)); - background-color: transparent; } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { - color: inherit; } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, - GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, #268bd2); } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.25)); } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { - background-color: #8da0a7; - border: 1px solid rgba(0, 0, 0, 0.3); } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, -NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, -MarlinViewWindow .sidebar .scrollbar .trough, -MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { - background-color: rgba(0, 0, 0, 0.2); - border: none; } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, -NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, -MarlinViewWindow .sidebar .scrollbar .slider, -MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { - background-color: rgba(141, 160, 167, 0.7); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, - NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, - MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { - background-color: #9cacb2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, - NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, - MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, - NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, - MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { - background-color: transparent; } - -@define-color theme_fg_color #5c616c; -@define-color theme_text_color #5c616c; -@define-color theme_bg_color #F5F6F7; -@define-color theme_base_color #fdf6e3; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #5c616c; -@define-color text_color #5c616c; -@define-color bg_color #F5F6F7; -@define-color base_color #fdf6e3; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #faf6eb; -@define-color insensitive_fg_color alpha(#5c616c, 0.5); -@define-color insensitive_base_color #fdf6e3; -@define-color theme_unfocused_fg_color #5c616c; -@define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #F5F6F7; -@define-color theme_unfocused_base_color #fdf6e3; -@define-color borders #dcdfe3; -@define-color unfocused_borders #dcdfe3; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #1e6ea7; -@define-color content_view_bg #fdf6e3; -@define-color wm_title alpha(#59808f, 0.8); -@define-color wm_unfocused_title alpha(#59808f, 0.5); -@define-color wm_bg #002b36; -@define-color wm_bg_unfocused #00313e; -@define-color wm_highlight #003745; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #dc322f; -@define-color wm_button_close_hover_bg #cb4b16; -@define-color wm_button_close_active_bg #dc322f; -@define-color wm_icon_close_bg #002b36; -@define-color wm_button_hover_bg #657b83; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #002b36; -@define-color wm_icon_bg #93a1a1; -@define-color wm_icon_unfocused_bg #657b83; -@define-color wm_icon_hover_bg #93a1a1; -@define-color wm_icon_active_bg #fdf6e3; diff --git a/common/gtk-3.0/3.18/gtk-solid.css b/common/gtk-3.0/3.18/gtk-solid.css deleted file mode 100644 index 5a4238b..0000000 --- a/common/gtk-3.0/3.18/gtk-solid.css +++ /dev/null @@ -1,4084 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -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: #1e6ea7; - -GtkWidget-visited-link-color: #16527c; - -GtkWidget-focus-padding: 2; - -GtkWidget-focus-line-width: 1; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - -GtkStatusbar-shadow-type: none; - outline-color: rgba(92, 97, 108, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; } - -.background { - color: #5c616c; - background-color: #F5F6F7; } - -*:insensitive { - -gtk-image-effect: dim; } - -.gtkstyle-fallback { - background-color: #F5F6F7; - color: #5c616c; } - .gtkstyle-fallback:prelight { - background-color: white; - color: #5c616c; } - .gtkstyle-fallback:active { - background-color: #d9dde0; - color: #5c616c; } - .gtkstyle-fallback:insensitive { - background-color: #faf6eb; - color: rgba(92, 97, 108, 0.55); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view { - color: #5c616c; - background-color: #fdf6e3; } - .view.dim-label, .view.label.separator, .header-bar .view.subtitle { - color: rgba(92, 97, 108, 0.55); } - .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { - color: rgba(253, 246, 227, 0.65); - text-shadow: none; } - -.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #1e6ea7; - background-color: rgba(30, 110, 167, 0.2); } - -.label.separator, .popover .label.separator, .sidebar .label.view.separator { - color: #5c616c; } - -.label:insensitive { - color: rgba(92, 97, 108, 0.55); } - -.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { - opacity: 0.55; } - -GtkAssistant .sidebar { - background-color: #fdf6e3; - border-top: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #dcdfe3; } - -GtkAssistant.csd .sidebar { - border-top-style: none; } - -GtkAssistant .sidebar .label { - padding: 6px 12px; } - -GtkAssistant .sidebar .label.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -GtkTextView { - background-color: #f9f6ed; } - -.grid-child { - padding: 3px; - border-radius: 3px; } - .grid-child:selected { - outline-offset: -2px; } - -.popover.osd, .osd { - color: #657b83; - border: none; - background-color: #073642; - background-clip: padding-box; - outline-color: rgba(101, 123, 131, 0.3); - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - .spinner:active { - opacity: 1; - animation: spin 1s linear infinite; } - .spinner:active:insensitive { - opacity: 0.5; } - -.entry { - border: 1px solid; - padding: 5px 8px; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry.image { - color: #7c7f84; } - .entry.image.left { - padding-left: 0; } - .entry.image.right { - padding-right: 0; } - .entry.flat, .entry.flat:focus { - padding: 2px; - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); - border: none; - border-radius: 0; } - .entry:focus { - background-clip: border-box; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(253, 246, 227, 0.55); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.55)); } - .entry:selected, .entry:selected:focus { - background-color: #268bd2; - color: #fdf6e3; } - .entry.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - .entry.warning { - color: #fdf6e3; - border-color: #cb4b16; - background-image: linear-gradient(to bottom, #df8f68); } - .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); - box-shadow: none; } - .entry.warning:selected, .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .entry.error { - color: #fdf6e3; - border-color: #dc322f; - background-image: linear-gradient(to bottom, #e98077); } - .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); - box-shadow: none; } - .entry.error:selected, .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - .osd .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.4)); - background-color: transparent; } - .osd .entry.image, .osd .entry.image:hover { - color: inherit; } - .osd .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, #268bd2); } - .osd .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.25)); } - -GtkSearchEntry.entry { - border-radius: 20px; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -.button { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 5px 8px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .button.flat, .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(251, 251, 252, 0); - border-color: rgba(101, 123, 131, 0); - transition: none; } - .button.flat:hover, .sidebar-button.button:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - .button.flat:hover:active, .sidebar-button.button:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; - -gtk-image-effect: highlight; } - .button:active, .button:checked { - background-clip: border-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; - transition-duration: 50ms; } - .button:active:not(:insensitive) .label:insensitive, .button:checked:not(:insensitive) .label:insensitive { - color: inherit; - opacity: 0.6; } - .button:active { - color: #5c616c; } - .button:active:hover, .button:checked { - color: #fdf6e3; } - .button.flat:insensitive, .sidebar-button.button:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; } - .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button:insensitive > GtkLabel { - color: inherit; } - .button:insensitive:active, .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { - color: inherit; } - .button.osd { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - background-color: #073642; - border-color: #03181d; } - .button.osd.image-button, .header-bar .button.osd.titlebutton, - .titlebar .button.osd.titlebutton { - padding: 10px; } - .button.osd:hover { - color: #268bd2; } - .button.osd:active, .button.osd:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .button.osd:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .osd .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd .button:active, .osd .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd .button.flat, .osd .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd .button.flat:hover, .osd .sidebar-button.button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); - background-image: none; } - .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), - .osd .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { - box-shadow: none; } - .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .button.suggested-action.flat, .suggested-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .button.suggested-action:active, .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.suggested-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .button.destructive-action.flat, .destructive-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .button.destructive-action:active, .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.destructive-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - .button.image-button, .header-bar .button.titlebutton, - .titlebar .button.titlebutton { - padding: 7px; } - .header-bar .button.image-button, .header-bar .button.titlebutton { - padding: 7px 10px; } - .button.text-button { - padding-left: 16px; - padding-right: 16px; } - .button.text-button.image-button, .header-bar .button.text-button.titlebutton, - .titlebar .button.text-button.titlebutton { - padding: 5px 8px; } - .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, - .titlebar .button.text-button.titlebutton GtkLabel:first-child { - padding-left: 8px; } - .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, - .titlebar .button.text-button.titlebutton GtkLabel:last-child { - padding-right: 8px; } - .stack-switcher > .button { - outline-offset: -3px; } - .stack-switcher > .button > GtkLabel { - 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 { - padding: 5px 10px; } - .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, - .titlebar .stack-switcher > .button.titlebutton { - padding: 2px 4px; } - .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; } - .stack-switcher > .button.needs-attention > .label, - .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 4px; } - .stack-switcher > .button.needs-attention > .label:dir(rtl), - .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { - background-position: left 3px, left 4px; } - .inline-toolbar .button, .inline-toolbar .button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar GtkToolButton > .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .inline-toolbar GtkToolButton > .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { - color: inherit; } - .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { - color: inherit; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry { - border-left-color: rgba(101, 123, 131, 0.3); } - -.linked:not(.vertical):not(.path-bar) > .entry.error + .entry, -.linked:not(.vertical):not(.path-bar) > .entry + .entry.error { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > .entry.warning + .entry, -.linked:not(.vertical):not(.path-bar) > .entry + .entry.warning { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > .entry.error + .entry.warning, -.linked:not(.vertical):not(.path-bar) > .entry.warning + .entry.error { - border-left-color: #d43f23; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:last-child { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .entry, .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .button, -.linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:last-child { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .entry, .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .button, -.linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:last-child { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .entry, .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .button, -.linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > .button:active + .entry, -.linked:not(.vertical):not(.path-bar) > .button:checked + .entry { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > .button + .button { - border-left-style: none; } - -.linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 1px 0 #657b83; } - -.linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked:not(.vertical):not(.path-bar) > .button:active + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .button:checked + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .button.suggested-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .button.destructive-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .entry + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child) { - box-shadow: none; } - -.linked:not(.vertical).path-bar > .button + .button { - border-left-style: none; } - -.linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4), inset -1px 0 rgba(101, 123, 131, 0.4); } - -.linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.4); } - -.linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4); } - -.linked.vertical > .entry + .entry { - border-top-color: rgba(101, 123, 131, 0.3); } - -.linked.vertical > .entry.error + .entry, -.linked.vertical > .entry + .entry.error { - border-top-color: #dc322f; } - -.linked.vertical > .entry.warning + .entry, -.linked.vertical > .entry + .entry.warning { - border-top-color: #cb4b16; } - -.linked.vertical > .entry.error + .entry.warning, -.linked.vertical > .entry.warning + .entry.error { - border-top-color: #d43f23; } - -.linked.vertical > .entry + .entry:focus:not(:last-child), -.linked.vertical > .entry + .entry:focus:last-child { - border-top-color: #268bd2; } - -.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: #268bd2; } - -.linked.vertical > .entry + .entry.warning:focus:not(:last-child), -.linked.vertical > .entry + .entry.warning:focus:last-child { - border-top-color: #cb4b16; } - -.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, .linked.vertical > .entry.warning:focus:not(:only-child) + .button, -.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-top-color: #cb4b16; } - -.linked.vertical > .entry + .entry.error:focus:not(:last-child), -.linked.vertical > .entry + .entry.error:focus:last-child { - border-top-color: #dc322f; } - -.linked.vertical > .entry.error:focus:not(:only-child) + .entry, .linked.vertical > .entry.error:focus:not(:only-child) + .button, -.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-top-color: #dc322f; } - -.linked.vertical > .button:active + .entry, -.linked.vertical > .button:checked + .entry { - border-top-color: #268bd2; } - -.linked.vertical > .button + .button { - border-top-style: none; } - -.linked.vertical > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked.vertical > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 0 1px #657b83; } - -.linked.vertical > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked.vertical > .button:active + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .button:checked + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .button.suggested-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .button.destructive-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .entry + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child) { - box-shadow: none; } - -.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .linked:not(.vertical) > .entry, -.linked:not(.vertical) > .entry:focus, .osd .button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, -.linked:not(.vertical) > .button:hover, -.linked:not(.vertical) > .button:active, -.linked:not(.vertical) > .button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .primary-toolbar .linked:not(.vertical).path-bar > .button, .header-bar .linked:not(.vertical).path-bar > .button, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:active, .header-bar .linked:not(.vertical).path-bar > .button:active, .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, .header-bar .linked:not(.vertical).path-bar > .button:checked, .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, .header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .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) { - border-radius: 0; - border-right-style: none; } - -.linked:not(.vertical) > .entry:first-child, .osd .button:first-child, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, .header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -.linked:not(.vertical) > .entry:last-child, .osd .button:last-child, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, .header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - border-right-style: solid; } - -.linked:not(.vertical) > .entry:only-child, .osd .button:only-child, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, .header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { - border-radius: 3px; - border-style: solid; } - -.linked.vertical > .entry, -.linked.vertical > .entry:focus, .linked.vertical > .button, -.linked.vertical > .button:hover, -.linked.vertical > .button:active, -.linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox > .the-button-in-the-combobox { - border-radius: 0; - border-bottom-style: none; } - -.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border-bottom-style: solid; } - -.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { - border-radius: 3px; - border-style: solid; } - -.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, -.app-notification.frame .button.flat, -.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, -.app-notification.frame .button.flat:insensitive, -.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -.menuitem.button.flat, .menuitem.sidebar-button.button { - transition: none; - outline-offset: -1px; - border-radius: 2px; } - .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { - background-color: #edeff0; } - .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { - color: #5c616c; } - -*:link, .button:link, .button:visited { - color: #1e6ea7; } - *:link:visited, .button:visited { - color: #16527c; } - *:selected *:link:visited, *:selected .button:visited:link, *:selected .button:visited { - color: #a7cbdc; } - *:link:hover, .button:hover:link, .button:hover:visited { - color: #268bd2; } - *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { - color: #e8ebe1; } - *:link:active, .button:active:link, .button:active:visited { - color: #1e6ea7; } - *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { - color: #d2e1e0; } - *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { - color: #d2e1e0; } - -.button:link > .label, .button:visited > .label { - text-decoration-line: underline; } - -.spinbutton { - border-radius: 3px; } - .spinbutton .button { - background-image: none; - border: 1px solid rgba(220, 223, 227, 0.6); - border-style: none none none solid; - color: #646872; - border-radius: 0; - box-shadow: none; } - .spinbutton .button:dir(rtl) { - border-style: none solid none none; } - .spinbutton .button:first-child { - color: red; } - .spinbutton .button:insensitive { - color: rgba(92, 97, 108, 0.55); } - .spinbutton .button:active { - background-color: #268bd2; - color: #fdf6e3; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - border-radius: 2px 2px 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:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; } - GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: #268bd2; - border-radius: 0; - box-shadow: none; } - -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; } - GtkComboBox > .the-button-in-the-combobox { - padding-top: 3px; - padding-bottom: 3px; } - GtkComboBox:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { - -GtkWidget-wide-separators: true; } - GtkComboBox.combobox-entry .entry:dir(ltr) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - border-right-style: none; } - GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: 1px 0 #268bd2; } - GtkComboBox.combobox-entry .entry:dir(rtl) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; } - GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: -1px 0 #268bd2; } - GtkComboBox.combobox-entry .button:dir(ltr) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - GtkComboBox.combobox-entry .button:dir(rtl) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #F5F6F7; } - .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.9); } - -.primary-toolbar { - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #eee8d5, #e4dabc) 1 0 1 0; } - -.inline-toolbar { - background-color: #edeef0; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -.search-bar { - background-color: #F5F6F7; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 0 1px; - padding: 3px; } - -.action-bar { - background-color: #edeef0; } - -.header-bar { - padding: 5px 5px 4px 5px; - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: #e4dabc; - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; } - .csd .header-bar { - background-color: #eee8d5; - border-color: #e4dabc; } - .header-bar:backdrop { - color: rgba(82, 93, 118, 0.5); } - .header-bar .title { - padding-left: 12px; - padding-right: 12px; } - .header-bar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .header-bar.selection-mode, .header-bar.titlebar.selection-mode { - color: #fdf6e3; - background-color: #268bd2; - border-color: #2380c1; - box-shadow: none; } - .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { - background-color: #268bd2; - color: rgba(253, 246, 227, 0.6); } - .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.05); - border-color: rgba(253, 246, 227, 0.5); } - .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.15); - border-color: rgba(253, 246, 227, 0.15); } - .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { - background-color: #268bd2; } - .tiled .header-bar, .tiled .header-bar:backdrop, - .maximized .header-bar, .maximized .header-bar:backdrop { - border-radius: 0; } - .maximized .header-bar { - background-color: #eee8d5; - border-color: #e4dabc; } - .header-bar.default-decoration, - .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, - .csd .header-bar.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: #eee8d5; - border-bottom-width: 0; } - .maximized .header-bar.default-decoration, .maximized - .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized - .csd .header-bar.default-decoration:backdrop { - background-color: #eee8d5; } - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: 4px 4px 0 0; - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; - box-shadow: inset 0 1px #f2eee0; } - .csd .titlebar { - background-color: #eee8d5; } - .titlebar:backdrop { - color: rgba(82, 93, 118, 0.5); - background-color: #f2eee0; } - .csd .titlebar:backdrop { - background-color: #f2eee0; } - .maximized .titlebar { - background-color: #eee8d5; } - .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { - background-color: #f2eee0; } - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { - background-color: transparent; } - -.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, -.header-bar > GtkBox > .separator.vertical, .sidebar -.header-bar > GtkBox > .vertical.view.separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(82, 93, 118, 0) 25%, rgba(82, 93, 118, 0.15) 25%, rgba(82, 93, 118, 0.15) 75%, rgba(82, 93, 118, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, - .header-bar > GtkBox > .separator.vertical:backdrop, .sidebar - .header-bar > GtkBox > .vertical.view.separator:backdrop { - opacity: 0.6; } - -.primary-toolbar .entry, .header-bar .entry { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { - color: inherit; } - .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { - opacity: 0.85; } - .primary-toolbar .entry:focus, .header-bar .entry:focus { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); - background-clip: border-box; } - .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { - color: #fdf6e3; } - .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar .entry.warning, .header-bar .entry.warning { - color: white; - border-color: #cb4b16; - background-image: linear-gradient(to bottom, #d98a62); } - .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); } - .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar .entry.error, .header-bar .entry.error { - color: white; - border-color: #dc322f; - background-image: linear-gradient(to bottom, #e37b71); } - .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); } - .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar .button, .header-bar .button { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - outline-offset: -3px; - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button:backdrop, .header-bar .button:backdrop { - opacity: 0.7; } - .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; - background-clip: border-box; } - .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(82, 93, 118, 0.35); - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { - color: inherit; } - .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, .header-bar .linked:not(.vertical):not(.path-bar) > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), .header-bar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .primary-toolbar .linked:not(.vertical).path-bar > .button, .header-bar .linked:not(.vertical).path-bar > .button { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover { - background-color: rgba(255, 255, 255, 0.9); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .primary-toolbar .linked:not(.vertical).path-bar > .button:active, .header-bar .linked:not(.vertical).path-bar > .button:active, .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, .header-bar .linked:not(.vertical).path-bar > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, .header-bar .linked:not(.vertical).path-bar > .button:insensitive { - color: rgba(82, 93, 118, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button + .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button + .button, .primary-toolbar .linked:not(.vertical).path-bar > .button + .button, .header-bar .linked:not(.vertical).path-bar > .button + .button { - border-left-style: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):hover, .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1), inset -1px 0 rgba(82, 93, 118, 0.1); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry { - border-left-color: rgba(82, 93, 118, 0); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error { - border-left-color: #dc322f; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning { - border-left-color: #cb4b16; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry.warning, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry.error, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry.error { - border-left-color: #d43f23; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:last-child, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:last-child { - border-left-color: #268bd2; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .button, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #268bd2; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:last-child, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:last-child { - border-left-color: #cb4b16; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .button, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #cb4b16; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:last-child, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:last-child { - border-left-color: #dc322f; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .button, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #dc322f; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .button:active + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .button:checked + .entry { - border-left-color: #268bd2; } - -.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { - color: rgba(82, 93, 118, 0.35); - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, .primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { - color: rgba(82, 93, 118, 0.35); - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, .primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { - color: #fdf6e3; } - .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { - background-color: rgba(253, 246, 227, 0.1); - border-color: transparent; } - .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { - color: rgba(253, 246, 227, 0.4); } - -.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(82, 93, 118, 0.8); } - .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { - background-color: rgba(82, 93, 118, 0.05); - border-color: transparent; } - .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(82, 93, 118, 0.5); } - .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { - background-color: rgba(0, 0, 0, 0.1); } - -.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(82, 93, 118, 0.2); } - -.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { - color: inherit; } - .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { - border-right-style: none; } - .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: 1px 0 #268bd2; } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { - border-left-style: none; } - .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: -1px 0 #268bd2; } - -.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { - opacity: 0.75; } - -.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(82, 93, 118, 0.15); } - -.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(82, 93, 118, 0.15)); } - .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(82, 93, 118, 0.1)); } - -.primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, #fbfbfc); - border-color: rgba(82, 93, 118, 0.3); } - .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { - background-image: linear-gradient(to bottom, white); - border-color: rgba(82, 93, 118, 0.3); } - .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #f7f5f0); - border-color: rgba(82, 93, 118, 0.3); } - -.path-bar .button { - padding: 5px 10px; } - .path-bar .button:first-child { - padding-left: 10px; } - .path-bar .button:last-child { - padding-right: 10px; } - .path-bar .button:only-child { - padding-left: 14px; - padding-right: 14px; } - .path-bar .button GtkLabel:last-child { - padding-left: 4px; } - .path-bar .button GtkLabel:first-child { - padding-right: 4px; } - .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { - padding-right: 0; - padding-left: 0; } - .path-bar .button GtkImage { - padding-top: 2px; - padding-bottom: 1px; } - -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: rgba(92, 97, 108, 0.15); - border-top-color: rgba(0, 0, 0, 0.1); } - GtkTreeView.view:selected { - border-radius: 0; - border-left-color: #92c1db; - border-top-color: rgba(92, 97, 108, 0.1); } - GtkTreeView.view:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkTreeView.view:insensitive:selected { - color: #7cb6d9; } - GtkTreeView.view.dnd { - border-style: solid none; - border-width: 1px; - border-color: #41769f; } - GtkTreeView.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #adaca8; } - GtkTreeView.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - GtkTreeView.view.expander:hover { - color: #5c616c; } - GtkTreeView.view.expander:selected { - color: #bdd6de; } - GtkTreeView.view.expander:selected:hover { - color: #fdf6e3; } - GtkTreeView.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - GtkTreeView.view.progressbar, GtkTreeView.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-image: linear-gradient(to bottom, #268bd2); } - GtkTreeView.view.progressbar:selected, GtkTreeView.view.progressbar:selected:focus, GtkTreeView.view.progressbar:focus:selected, GtkTreeView.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-image: linear-gradient(to bottom, #fdf6e3); } - GtkTreeView.view.trough { - color: #5c616c; - background-image: linear-gradient(to bottom, #657b83); - border-radius: 3px; - border-width: 0; } - GtkTreeView.view.trough:selected, GtkTreeView.view.trough:selected:focus { - color: #fdf6e3; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); - border-radius: 3px; - border-width: 0; } - -column-header .button { - color: #7c7f84; - background-color: #fdf6e3; } - column-header .button:hover { - color: #268bd2; - box-shadow: none; - transition: none; } - column-header .button:active { - color: #5c616c; - transition: none; } - -column-header:last-child .button, column-header:last-child.button { - border-right-style: none; - border-image: none; } - -column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { - transition: none; - color: #268bd2; - box-shadow: inset 1px 1px 0 1px #268bd2, inset -1px 0 0 1px #268bd2, inset 1px 1px #fdf6e3, inset -1px 0 #fdf6e3; } - -column-header .button, column-header .button:hover, column-header .button:active { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; } - column-header .button:active, column-header .button:hover { - background-color: #fdf6e3; } - column-header .button:active:hover { - color: #5c616c; } - column-header .button:insensitive { - border-color: #F5F6F7; - background-image: none; } - -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #eee8d5; - color: rgba(82, 93, 118, 0.8); } - .menubar:backdrop { - color: rgba(82, 93, 118, 0.5); } - .menubar > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - .menubar > .menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - .menubar > .menuitem:insensitive { - color: rgba(82, 93, 118, 0.2); - border-color: transparent; } - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; } - .csd .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - .menu .menuitem { - padding: 5px; } - .menu .menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - .menu .menuitem:insensitive { - color: rgba(92, 97, 108, 0.55); } - .menu .menuitem.separator { - color: rgba(253, 246, 227, 0); } - .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 #ede7d7; } - .menu.button.bottom { - border-top: 1px solid #ede7d7; } - .menu.button:hover { - background-color: #ede7d7; } - .menu.button:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent; } - -.csd .popup { - border-radius: 2px; } - -.menuitem .accelerator { - color: alpha(currentColor,0.55); } - -.popover { - padding: 2px; - border: 1px solid #cdd2d7; - border-radius: 3px; - background-clip: border-box; - background-color: #fdf6e3; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } - .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { - color: rgba(253, 246, 227, 0); } - .popover > .list, - .popover > .view, - .popover > .toolbar, - .popover > .inline-toolbar, - .popover.osd > .toolbar, - .popover.osd > .inline-toolbar { - border-style: none; - background-color: transparent; } - -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - .entry.cursor-handle.top, - .cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - .entry.cursor-handle.bottom, - .cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -.notebook { - padding: 0; - background-color: #fdf6e3; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -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.frame { - border: 1px solid #dcdfe3; } - .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.header { - background-color: #F5F6F7; } - .notebook.header.frame { - border: 0px solid #dcdfe3; } - .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.top { - box-shadow: inset 0 -1px #dcdfe3; } - .notebook.header.bottom { - box-shadow: inset 0 1px #dcdfe3; } - .notebook.header.right { - box-shadow: inset 1px 0 #dcdfe3; } - .notebook.header.left { - box-shadow: inset -1px 0 #dcdfe3; } - .notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - outline-offset: 0; } - .notebook tab.top, .notebook tab.bottom { - padding: 4px 15px; } - .notebook tab.left, .notebook tab.right { - padding: 4px 15px; } - .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { - padding-left: 12px; - padding-right: 12px; } - .notebook tab.reorderable-page.top, .notebook tab.top { - padding-top: 6px; - border-radius: 3.5px 2px 0 0; - border-width: 0; - border-top-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #fdf6e3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom, .notebook tab.bottom { - padding-bottom: 6px; - border-radius: 0 0 2px 3.5px; - border-width: 0; - border-bottom-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 -1px #fdf6e3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right, .notebook tab.right { - padding-right: 17px; - border-radius: 0 3.5px 3.5px 0; - border-width: 0; - border-right-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #fdf6e3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left, .notebook tab.left { - padding-left: 17px; - border-radius: 3.5px 0 0 3.5px; - border-width: 0; - border-left-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #fdf6e3; } - .notebook tab GtkLabel { - padding: 0 2px; - color: rgba(92, 97, 108, 0.55); } - .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(92, 97, 108, 0.775); } - .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { - color: #5c616c; } - .notebook tab .button { - padding: 0; - color: #92959d; } - .notebook tab .button:hover { - color: #ff4d4d; } - .notebook tab .button:active { - color: #268bd2; } - .notebook tab .button > GtkImage { - padding: 2px; } - .notebook.arrow { - color: rgba(92, 97, 108, 0.55); } - .notebook.arrow:hover { - color: rgba(92, 97, 108, 0.775); } - .notebook.arrow:active { - color: #5c616c; } - .notebook.arrow:insensitive { - color: rgba(92, 97, 108, 0.25); } - -.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: 6px; } - .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { - margin: 0; - background-color: #8a8e96; - border: 1px solid rgba(255, 255, 255, 0.6); - 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.99; } - .scrollbar .trough { - background-color: #fdf4de; - border: 1px none #dcdfe3; } - .scrollbar .slider { - background-color: #b8babf; } - .scrollbar .slider:hover { - background-color: #c7c9cd; } - .scrollbar .slider:prelight:active, .scrollbar .slider:active { - background-color: #268bd2; } - .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, #dcdfe3 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #fdf4de; } - .scrollbars-junction:dir(rtl), - .scrollbars-junction.frame:dir(rtl) { - border-image-slice: 0 1 0 0; } - -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 52; - -GtkSwitch-slider-height: 24; - outline-color: transparent; } - GtkSwitch.trough, GtkSwitch.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; } - GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { - background-position: left center; } - -GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough, -.menu .menuitem:hover GtkSwitch.trough, -.list-row:selected GtkSwitch.trough, -GtkInfoBar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -.header-bar GtkSwitch.trough, -.primary-toolbar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } - -GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough:active, -.menu .menuitem:hover GtkSwitch.trough:active, -.list-row:selected GtkSwitch.trough:active, -GtkInfoBar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -.header-bar GtkSwitch.trough:active, -.primary-toolbar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } - -GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough:insensitive, -.menu .menuitem:hover GtkSwitch.trough:insensitive, -.list-row:selected GtkSwitch.trough:insensitive, -GtkInfoBar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:insensitive, -.primary-toolbar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } - -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough:active:insensitive, -.menu .menuitem:hover GtkSwitch.trough:active:insensitive, -.list-row:selected GtkSwitch.trough:active:insensitive, -GtkInfoBar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:active:insensitive, -.primary-toolbar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } - -.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, -GtkFileChooserDialog .dialog-vbox > .frame .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check, -.menu .menuitem.check:hover, -GtkTreeView.view.check:selected, -.list-row:selected .check, -GtkInfoBar .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:insensitive, -.menu .menuitem.check:insensitive:hover, -GtkTreeView.view.check:insensitive:selected, -.list-row:selected .check:insensitive, -GtkInfoBar .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:inconsistent, -.menu .menuitem.check:inconsistent:hover, -GtkTreeView.view.check:inconsistent:selected, -.list-row:selected .check:inconsistent, -GtkInfoBar .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:inconsistent:insensitive, -.menu .menuitem.check:inconsistent:insensitive:hover, -GtkTreeView.view.check:inconsistent:insensitive:selected, -.list-row:selected .check:inconsistent:insensitive, -GtkInfoBar .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:checked, -.menu .menuitem.check:checked:hover, -GtkTreeView.view.check:checked:selected, -.list-row:selected .check:checked, -GtkInfoBar .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:checked:insensitive, -.menu .menuitem.check:checked:insensitive:hover, -GtkTreeView.view.check:checked:insensitive:selected, -.list-row:selected .check:checked:insensitive, -GtkInfoBar .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, -GtkFileChooserDialog .dialog-vbox > .frame .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio, -.menu .menuitem.radio:hover, -GtkTreeView.view.radio:selected, -.list-row:selected .radio, -GtkInfoBar .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:insensitive, -.menu .menuitem.radio:insensitive:hover, -GtkTreeView.view.radio:insensitive:selected, -.list-row:selected .radio:insensitive, -GtkInfoBar .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:inconsistent, -.menu .menuitem.radio:inconsistent:hover, -GtkTreeView.view.radio:inconsistent:selected, -.list-row:selected .radio:inconsistent, -GtkInfoBar .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:inconsistent:insensitive, -.menu .menuitem.radio:inconsistent:insensitive:hover, -GtkTreeView.view.radio:inconsistent:insensitive:selected, -.list-row:selected .radio:inconsistent:insensitive, -GtkInfoBar .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:checked, -.menu .menuitem.radio:checked:hover, -GtkTreeView.view.radio:checked:selected, -.list-row:selected .radio:checked, -GtkInfoBar .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:checked:insensitive, -.menu .menuitem.radio:checked:insensitive:hover, -GtkTreeView.view.radio:checked:insensitive:selected, -.list-row:selected .radio:checked:insensitive, -GtkInfoBar .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -.view.content-view.check:not(.list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); - background-color: transparent; } - -.view.content-view.check:checked:not(.list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-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: rgba(92, 97, 108, 0.55); } - -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; - color: alpha(currentColor,0.7); } - .scale.trough { - margin: 5px; } - .scale.fine-tune.trough { - border-radius: 5px; - margin: 3px; } - .scale.slider { - background-clip: border-box; - background-image: linear-gradient(to bottom, #fbfbfc); - border: 1px solid rgba(45, 55, 59, 0.5); - border-radius: 50%; - box-shadow: none; } - .scale.slider:hover { - background-image: linear-gradient(to bottom, white); - border-color: rgba(45, 55, 59, 0.5); } - .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #f9f6ec); - border-color: rgba(45, 55, 59, 0.3); } - .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .osd .scale.slider { - background-image: linear-gradient(to bottom, #073642); - border-color: #268bd2; } - .osd .scale.slider:hover { - background-image: linear-gradient(to bottom, #268bd2); } - .osd .scale.slider:active { - background-image: linear-gradient(to bottom, #1e6ea7); - border-color: #1e6ea7; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider, - .menu .menuitem:hover .scale.slider, - .list-row:selected .scale.slider, - GtkInfoBar .scale.slider { - background-image: linear-gradient(to bottom, #fdf6e3); - border-color: #fdf6e3; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider:hover, - .menu .menuitem:hover .scale.slider:hover, - .list-row:selected .scale.slider:hover, - GtkInfoBar .scale.slider:hover { - background-image: linear-gradient(to bottom, #dde6e0); - border-color: #dde6e0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider:active, - .menu .menuitem:hover .scale.slider:active, - .list-row:selected .scale.slider:active, - GtkInfoBar .scale.slider:active { - background-image: linear-gradient(to bottom, #92c1db); - border-color: #92c1db; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider:insensitive, - .menu .menuitem:hover .scale.slider:insensitive, - .list-row:selected .scale.slider:insensitive, - GtkInfoBar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); - border-color: #9cc6db; } - .scale.trough { - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, #657b83); } - .scale.trough.highlight { - background-image: linear-gradient(to bottom, #268bd2); } - .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, rgba(38, 139, 210, 0.55)); } - .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(101, 123, 131, 0.55)); } - .osd .scale.trough { - background-image: linear-gradient(to bottom, #0a5062); - outline-color: rgba(101, 123, 131, 0.2); } - .osd .scale.trough.highlight { - background-image: none; - background-image: linear-gradient(to bottom, #268bd2); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough, - .menu .menuitem:hover .scale.trough, - .list-row:selected .scale.trough, - GtkInfoBar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough.highlight, - .menu .menuitem:hover .scale.trough.highlight, - .list-row:selected .scale.trough.highlight, - GtkInfoBar .scale.trough.highlight { - background-image: linear-gradient(to bottom, #fdf6e3); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough.highlight:insensitive, - .menu .menuitem:hover .scale.trough.highlight:insensitive, - .list-row:selected .scale.trough.highlight:insensitive, - GtkInfoBar .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough:insensitive, - .menu .menuitem:hover .scale.trough:insensitive, - .list-row:selected .scale.trough:insensitive, - GtkInfoBar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -GtkProgressBar { - padding: 0; - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - GtkProgressBar.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; } - -.progressbar { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - .progressbar.osd { - background-color: #268bd2; } - .list-row:selected .progressbar, - GtkInfoBar .progressbar { - background-color: #fdf6e3; } - -.osd .scale.progressbar { - background-color: #268bd2; } - -GtkProgressBar.trough, .level-bar.trough { - border: none; - border-radius: 3px; - background-color: #657b83; } - GtkProgressBar.trough.osd, .osd.level-bar.trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, - GtkInfoBar GtkProgressBar.trough, - GtkInfoBar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.2); } - -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; } - GtkLevelBar.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; } - -.level-bar.trough { - padding: 3px; - border-radius: 4px; } - -.level-bar.fill-block { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - .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 { - border-color: #859900; - background-color: #859900; } - .level-bar.fill-block.level-low { - border-color: #cb4b16; - background-color: #cb4b16; } - .level-bar.fill-block.empty-fill-block { - background-color: rgba(92, 97, 108, 0.2); - border-color: rgba(92, 97, 108, 0.2); } - -.frame { - border: 1px solid #dcdfe3; - padding: 0; } - .frame.flat { - border-style: none; } - .frame.action-bar { - padding: 6px; - border-width: 1px 0 0; } - -GtkScrolledWindow GtkViewport.frame { - border-style: none; } - -.separator, .sidebar.separator, .sidebar .view.separator { - color: rgba(0, 0, 0, 0.1); } - GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, - GtkFontButton .separator, - GtkFontButton .sidebar.separator, - GtkFontButton .sidebar .view.separator, .sidebar - GtkFontButton .view.separator, - GtkFileChooserButton .separator.vertical, - GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar - GtkFileChooserButton .vertical.view.separator, - GtkFontButton .separator.vertical, - GtkFontButton .sidebar .vertical.view.separator, .sidebar - GtkFontButton .vertical.view.separator { - -GtkWidget-wide-separators: true; } - -.list { - background-color: #fdf6e3; - border-color: #dcdfe3; } - -.list-row, -.grid-child { - padding: 2px; } - -.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { - background-color: rgba(0, 0, 0, 0.05); } - -.list-row.activatable:active { - color: #5c616c; } - -.list-row.activatable:selected:active { - color: #fdf6e3; } - -.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { - background-color: #227dbd; } - -.list-row.activatable:selected:insensitive { - color: rgba(253, 246, 227, 0.7); - background-color: rgba(38, 139, 210, 0.7); } - .list-row.activatable:selected:insensitive .label { - color: inherit; } - -.list-row, list-row.activatable { - transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .list-row:hover, list-row.activatable:hover { - transition: none; } - -.app-notification, -.app-notification.frame { - padding: 10px; - color: #657b83; - background-color: #073642; - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: #021014; } - .app-notification .button, - .app-notification.frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .app-notification .button.flat, .app-notification .sidebar-button.button, - .app-notification.frame .button.flat, - .app-notification.frame .sidebar-button.button { - border-color: rgba(38, 139, 210, 0); } - .app-notification .button:hover, - .app-notification.frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .app-notification .button:active, .app-notification .button:checked, - .app-notification.frame .button:active, - .app-notification.frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification .button:insensitive, - .app-notification.frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - .expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - .expander:hover { - color: #aaaeb7; } - .expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GtkCalendar { - color: #5c616c; - border: 1px solid #dcdfe3; - border-radius: 3px; - padding: 2px; } - GtkCalendar:selected { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 1.5px; } - GtkCalendar.header { - color: #5c616c; - border: none; - border-radius: 0; } - GtkCalendar.button, GtkCalendar.button:focus { - color: rgba(92, 97, 108, 0.45); - border-color: transparent; - background-color: transparent; - background-image: none; } - GtkCalendar.button:hover, GtkCalendar.button:focus:hover { - color: #5c616c; } - GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { - color: rgba(92, 97, 108, 0.55); - background-color: transparent; - background-image: none; } - GtkCalendar:inconsistent { - color: alpha(currentColor,0.55); } - GtkCalendar.highlight { - color: #5c616c; } - -.message-dialog .dialog-action-area .button { - padding: 8px; } - -.message-dialog { - -GtkDialog-button-spacing: 0; } - .message-dialog .titlebar { - background-color: #eee8d5; - border-bottom: 1px solid #e4dabc; } - .message-dialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - .message-dialog.csd .dialog-action-area .button { - padding: 8px; - border-radius: 0; } - .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 { - border-right-style: none; - border-bottom-style: none; } - .message-dialog.csd .dialog-action-area .button:last-child { - border-bottom-right-radius: 3px; } - .message-dialog.csd .dialog-action-area .button:first-child { - border-left-style: none; - border-bottom-left-radius: 3px; } - -GtkFileChooserDialog .search-bar { - background-color: #F5F6F7; - border-color: #dcdfe3; - box-shadow: none; } - -GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #dcdfe3; } - -.sidebar, .sidebar .view { - border: none; - background-color: #fbfbfc; } - -GtkSidebarRow.list-row { - padding: 0px; } - -GtkSidebarRow .sidebar-revealer { - padding: 3px 14px 3px 12px; } - -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 .sidebar-placeholder-row { - border: solid 1px #268bd2; } - -GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { - background-color: #d9dde0; } - -GtkPlacesSidebar.sidebar .list-row.activatable { - color: rgba(92, 97, 108, 0.8); - border-width: 0; - border-style: solid; } - -.sidebar-button.button { - outline-radius: 50%; - border-radius: 50%; } - .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, - .titlebar .sidebar-button.button.titlebutton { - padding: 3px; } - .sidebar-button.button:not(:hover):not(:active) > GtkImage { - opacity: 0.5; } - -.sidebar-item { - padding: 10px 4px; } - .sidebar-item > GtkLabel { - padding-left: 6px; - padding-right: 6px; } - .sidebar-item.needs-attention > GtkLabel { - background-size: 6px 6px, 0 0; } - -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); } - -GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { - background-color: transparent; } - -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: #dcdfe3; } - -GtkPaned.wide { - -GtkPaned-handle-size: 5; - margin: 0; } - GtkPaned.wide .pane-separator { - background-color: transparent; - border-style: none solid; - border-color: #dcdfe3; - border-width: 1px; } - GtkPaned.wide.vertical .pane-separator { - border-style: solid none; } - -GtkInfoBar { - border-style: none; } - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: #268bd2; - color: #fdf6e3; } - -.list-row:selected .button, GtkInfoBar .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .list-row:selected .button:hover, GtkInfoBar .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.2); } - .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.2); } - -.tooltip { - color: #657b83; - border-radius: 2px; } - .tooltip.background { - background-color: #0c5c70; - background-clip: padding-box; } - .tooltip.window-frame.csd { - background-color: transparent; } - -.tooltip * { - padding: 4px; - background-color: transparent; - color: inherit; } - -:selected GtkColorSwatch { - box-shadow: none; } - :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { - border-color: #fdf6e3; } - -GtkColorSwatch.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -GtkColorSwatch.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { - border-radius: 3px; } - -GtkColorSwatch:hover, GtkColorSwatch:hover:selected { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } - -GtkColorEditor GtkColorSwatch { - border-radius: 3px; } - GtkColorEditor GtkColorSwatch:hover { - background-image: none; } - -GtkColorSwatch.color-dark { - color: white; - outline-color: rgba(0, 0, 0, 0.3); } - -GtkColorSwatch.color-light { - color: black; - outline-color: rgba(255, 255, 255, 0.5); } - -GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { - border: 1px solid rgba(0, 0, 0, 0.15); } - GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { - border-color: rgba(0, 0, 0, 0.25); } - -GtkColorSwatch#add-color-button { - border-style: solid; - border-width: 1px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - GtkColorSwatch#add-color-button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - GtkColorSwatch#add-color-button .overlay { - border-color: transparent; - background-color: transparent; - background-image: none; } - -GtkColorButton.button { - padding: 5px; } - GtkColorButton.button GtkColorSwatch { - border-radius: 0; } - -.content-view { - background-color: #fdf6e3; } - .content-view:hover { - -gtk-image-effect: highlight; } - -.scale-popup .button { - padding: 6px; } - .scale-popup .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - -GtkVolumeButton.button { - padding: 8px; } - -.touch-selection, -.context-menu { - font: initial; } - -.monospace { - font: Monospace; } - -.overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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; } - -.window-frame { - border-radius: 4px 4px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 8px 8px 0 rgba(0, 0, 0, 0.2); - margin: 10px; } - .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } - .window-frame.tiled { - border-radius: 0; } - .window-frame.popup { - box-shadow: none; - border-radius: 0; } - .window-frame.ssd { - border-radius: 4px 4px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); } - .window-frame.ssd.maximized { - border-radius: 0; } - .window-frame.csd.popup { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.message-dialog { - border-radius: 3px; } - .window-frame.solid-csd { - border-radius: 0; - margin: 1px; - background-color: #eee8d5; - box-shadow: none; } - -.header-bar.default-decoration .button.titlebutton, -.titlebar.default-decoration .button.titlebutton { - padding-top: 0px; - padding-bottom: 0px; } - -.header-bar .button.titlebutton, -.titlebar .button.titlebutton { - padding-left: 4px; - padding-right: 4px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(238, 232, 213, 0); } - .header-bar .button.titlebutton:not(GtkMenuButton), - .titlebar .button.titlebutton:not(GtkMenuButton) { - padding-top: 8px; - padding-bottom: 8px; } - .header-bar .button.titlebutton:hover, - .titlebar .button.titlebutton:hover { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, - .titlebar .button.titlebutton:active, - .titlebar .button.titlebutton:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.close, - .titlebar .button.titlebutton.maximize, - .titlebar .button.titlebutton.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; } - .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - opacity: 1; } - .header-bar .button.titlebutton.close, - .titlebar .button.titlebutton.close { - background-image: -gtk-scaled(url("assets/titlebutton-close.png"), url("assets/titlebutton-close@2.png")); } - .header-bar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.close:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop.png"), url("assets/titlebutton-close-backdrop@2.png")); } - .header-bar .button.titlebutton.close:hover, - .titlebar .button.titlebutton.close:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover.png"), url("assets/titlebutton-close-hover@2.png")); } - .header-bar .button.titlebutton.close:active, - .titlebar .button.titlebutton.close:active { - background-image: -gtk-scaled(url("assets/titlebutton-close-active.png"), url("assets/titlebutton-close-active@2.png")); } - .header-bar .button.titlebutton.maximize, - .titlebar .button.titlebutton.maximize { - background-image: -gtk-scaled(url("assets/titlebutton-maximize.png"), url("assets/titlebutton-maximize@2.png")); } - .header-bar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.maximize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop.png"), url("assets/titlebutton-maximize-backdrop@2.png")); } - .header-bar .button.titlebutton.maximize:hover, - .titlebar .button.titlebutton.maximize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover.png"), url("assets/titlebutton-maximize-hover@2.png")); } - .header-bar .button.titlebutton.maximize:active, - .titlebar .button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active.png"), url("assets/titlebutton-maximize-active@2.png")); } - .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.minimize { - background-image: -gtk-scaled(url("assets/titlebutton-minimize.png"), url("assets/titlebutton-minimize@2.png")); } - .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop.png"), url("assets/titlebutton-minimize-backdrop@2.png")); } - .header-bar .button.titlebutton.minimize:hover, - .titlebar .button.titlebutton.minimize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover.png"), url("assets/titlebutton-minimize-hover@2.png")); } - .header-bar .button.titlebutton.minimize:active, - .titlebar .button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active.png"), url("assets/titlebutton-minimize-active@2.png")); } - -.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, -GtkEntry.gb-command-bar-entry.entry.flat:focus:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, -NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, -NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, -NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, -NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, -NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); } - -GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, -ScratchMainWindow .notebook tab.reorderable-page.top:active, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, -ScratchMainWindow .notebook tab.top:active, -ScratchMainWindow .notebook tab.top.active-page, -ScratchMainWindow .notebook tab.top.active-page:hover, -EphyNotebook.notebook tab.reorderable-page.top:active, -EphyNotebook.notebook tab.reorderable-page.top.active-page, -EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, -EphyNotebook.notebook tab.top:active, -EphyNotebook.notebook tab.top.active-page, -EphyNotebook.notebook tab.top.active-page:hover, -MidoriNotebook .notebook tab.reorderable-page.top:active, -MidoriNotebook .notebook tab.reorderable-page.top.active-page, -MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, -MidoriNotebook .notebook tab.top:active, -MidoriNotebook .notebook tab.top.active-page, -MidoriNotebook .notebook tab.top.active-page:hover, -TerminalWindow .notebook tab.reorderable-page.top:active, -TerminalWindow .notebook tab.reorderable-page.top.active-page, -TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -TerminalWindow .notebook tab.top:active, -TerminalWindow .notebook tab.top.active-page, -TerminalWindow .notebook tab.top.active-page:hover { - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - -TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top { - padding-top: 7px; - border-top-width: 3px; } - -TerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #e4dabc, inset 0 -1px #dcdfe3; } - -GtkHTML { - background-color: #fdf6e3; - color: #5c616c; } - GtkHTML:active { - color: #fdf6e3; - background-color: #268bd2; } - -SushiFontWidget { - padding: 6px 12px; } - -TerminalWindow .background { - background-color: transparent; } - -TerminalWindow .scrollbar.vertical .slider { - margin-left: 3px; } - -TerminalWindow .scrollbar.trough { - border-width: 0; } - -TerminalWindow .notebook tab .button { - color: #92959d; } - TerminalWindow .notebook tab .button:hover { - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - -TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { - color: #ff4d4d; } - -TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { - color: #268bd2; } - -EelEditableLabel.entry { - transition: none; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { - color: #5c616c; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { - color: #fdf6e3; } - -.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, -.nautilus-list-dim-label { - color: #a9acb2; } - .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, - .nautilus-list-dim-label:selected, - .nautilus-list-dim-label:selected:focus { - color: #d2e1e0; } - -NautilusNotebook.notebook { - background-color: #fdf6e3; } - NautilusNotebook.notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; } - -NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { - padding: 5px; - box-shadow: none; - background-color: #fdf6e3; } - -.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, -.titlebar .nautilus-circular-button.button.titlebutton { - border-radius: 50%; - outline-radius: 50%; - padding: 8px; } - -.disk-space-display { - border-style: solid; - border-width: 1px; } - .disk-space-display.unknown { - background-color: rgba(92, 97, 108, 0.5); - border-color: rgba(69, 72, 80, 0.5); } - .disk-space-display.used { - background-color: rgba(38, 139, 210, 0.8); - border-color: rgba(30, 110, 167, 0.8); } - .disk-space-display.free { - background-color: #edeef0; - border-color: #d0d5da; } - -NemoWindow .sidebar .frame { - border-width: 0; } - -NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #dcdfe3; } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { - background-color: rgba(255, 255, 255, 0.9); } - NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { - color: rgba(82, 93, 118, 0.4); } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1), inset -1px 0 rgba(82, 93, 118, 0.1); } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - -.gedit-headerbar-paned { - color: #e4dabc; } - -.open-document-selector-treeview.view { - padding: 3px 6px 3px 6px; - border-color: #fdf6e3; } - .open-document-selector-treeview.view:prelight { - background-color: #f2ecdb; } - .open-document-selector-treeview.view:prelight:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.open-document-selector-name-label { - color: #5c616c; } - -.open-document-selector-path-label { - color: #adaca8; - font-size: smaller; } - .open-document-selector-path-label:selected { - color: rgba(253, 246, 227, 0.9); } - -.gedit-document-panel .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; } - .gedit-document-panel .list-row .button GtkImage { - color: inherit; } - -.gedit-document-panel .prelight-row .button { - color: #92959d; } - -.gedit-document-panel .list-row .button:hover, -.gedit-document-panel .prelight-row .button:hover { - color: #ff4d4d; } - -.gedit-document-panel .prelight-row:selected .button:hover { - color: #ff6666; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; } - .gedit-document-panel .prelight-row:selected .button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel .prelight-row .button:active { - color: #5c616c; } - -.gedit-document-panel-dragged-row { - border: 1px solid #dcdfe3; - background-color: #d9dde0; - color: #5c616c; } - -GeditStatusbar { - border-top: 1px solid #dcdfe3; - background-color: #F5F6F7; } - -GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton.sidebar-button.button:prelight, -GeditStatusMenuButton:checked.button.flat, -GeditStatusMenuButton.sidebar-button.button:checked { - border-bottom-style: none; - border-radius: 0; } - -GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #dcdfe3; } - -.gedit-map-frame { - border-color: rgba(0, 0, 0, 0.3); } - -.gedit-search-entry-occurrences-tag { - color: rgba(92, 97, 108, 0.6); - border: none; - margin: 2px; - padding: 2px; } - -GeditViewFrame .gedit-search-slider { - background-color: #fbfbfc; - padding: 6px; - border-color: #dcdfe3; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -GbWorkbench .floating-bar { - color: #5c616c; } - -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { - color: inherit; } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; } - -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; } - -GbPreferencesPageLanguage .entry { - border-radius: 3px 3px 0 0; } - -GbPreferencesPageLanguage .frame { - border-top-width: 0; } - -GbEditorTweakWidget .linked.vertical > .entry { - border-bottom-style: solid; } - -GbEditorTweakWidget GtkScrolledWindow { - border-top: none; } - -GbViewStack GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbViewStack.focused GtkBox.header.notebook, -#project_sidebar_header.focused { - background-color: #fdf6e3; } - -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { - border-radius: 3px 0 0 3px; } - -GbWorkspacePane GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbWorkspacePane:not(.focused) GtkBox.header.notebook { - background-color: #F5F6F7; } - -DhSidebar GtkSearchEntry.entry, -SymbolTree GtkSearchEntry.entry { - border-left: none; - border-right: none; - border-top: none; - border-radius: 0px; } - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: #657b83; - background-image: none; - background-color: #073642; - padding: 6px 6px 6px 6px; - border: none; } - -GbTerminalView { - background-color: #fdf6e3; - color: #5c616c; } - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; } - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; } - -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; } - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbViewStack.focused GtkBox.header.notebook { - background-color: #fdf6e3; } - GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { - opacity: 1; } - -EphyWindow .floating-bar { - color: #5c616c; } - -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon { - background-color: rgba(92, 97, 108, 0.3); - border-radius: 2px; } - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: #78b9e6; } - -.documents-entry-tag { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover { - color: #fdf6e3; - background-color: #3295da; } - .documents-entry-tag:active { - color: #fdf6e3; - background-color: #2380c1; } - .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; } - .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { - color: rgba(253, 246, 227, 0.7); } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -TotemGrilo.vertical GdMainView.frame { - border-width: 0; } - -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { - background-color: #268bd2; } - -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; } - -.gnome-panel-menu-bar.menubar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: #657b83; - background-color: #05242c; } - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: #657b83; } - -PanelApplet .button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); - border-color: rgba(0, 0, 0, 0.17); } - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: rgba(0, 0, 0, 0.25); - border-radius: 0; - border-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -PanelApplet:hover { - color: white; } - -PanelApplet:active, -PanelApplet:hover:active { - color: #268bd2; } - -WnckPager { - color: #333e42; } - WnckPager:selected { - color: #268bd2; } - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; } - -ClockBox { - color: #657b83; } - -.xfce4-panel.panel { - background-color: #05242c; - text-shadow: none; - icon-shadow: none; } - .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { - color: #657b83; - background-color: rgba(5, 36, 44, 0); - border-radius: 0; - border: none; } - .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { - border: none; - background-color: #0a4a5a; } - .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - -.floating-bar { - background-color: #268bd2; - color: #fdf6e3; } - .floating-bar.top { - border-radius: 0 0 2px 2px; } - .floating-bar.right { - border-radius: 2px 0 0 2px; } - .floating-bar.bottom { - border-radius: 2px 2px 0 0; } - .floating-bar.left { - border-radius: 0 2px 2px 0; } - .floating-bar .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - background-color: transparent; - box-shadow: none; - border: none; } - -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; } - -MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { - color: #fdf6e3; - background-color: #268bd2; - outline-color: transparent; } - -MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { - background-color: transparent; } - -MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { - outline-color: transparent; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); } - .marlin-pathbar.pathbar:insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel .maximized { - background-color: #05242c; - box-shadow: inset 0 -1px #010a0c; } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - .color-light .composited-indicator { - color: rgba(0, 0, 0, 0.65); - text-shadow: 0 0 2px rgba(255, 255, 255, 0.3), 0 1px 0 rgba(255, 255, 255, 0.25); - icon-shadow: 0 0 2px rgba(255, 255, 255, 0.3), 0 1px 0 rgba(255, 255, 255, 0.25); } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - font: initial; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .sidebar { - background: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { - padding: 0 3px; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { - color: #fdf6e3; - background-color: #268bd2; } - WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { - color: rgba(92, 97, 108, 0.55); } - -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; } - -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: #5c616c; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration.top { - border: 1px solid rgba(0, 0, 0, 0.1); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #eee8d5); - color: rgba(82, 93, 118, 0.8); - box-shadow: inset 0 1px #f2eee0; } - UnityDecoration.top:backdrop { - border-bottom-width: 0; - color: rgba(82, 93, 118, 0.5); } - UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: #faf8f2; - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; } - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar GtkLabel { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #dcdfe3; - border-right: 1px solid #dcdfe3; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #dcdfe3; } - .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { - padding: 0 3px 0 3px; } - -.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #dcdfe3; - background-color: #F5F6F7; } - .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view { - background-color: #F5F6F7; - color: #5c616c; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:prelight { - background-color: white; } - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: #F5F6F7; - background-image: none; } - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #5c616c; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -.dynamic-notebook .notebook tab .button > GtkImage { - padding: 0; } - -GraniteWidgetsWelcome { - background-color: #fdf6e3; } - -GraniteWidgetsWelcome GtkLabel { - color: #a9acb2; - font: open sans 11; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(92, 97, 108, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #fdf6e3); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry.entry { - padding: 4px; } - -.h1 { - font: open sans 24px; } - -.h2 { - font: open sans light 18px; } - -.h3 { - font: open sans 11px; } - -.h4, -.category-label { - color: #8a8e96; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: #05242c; - color: #657b83; - font: bold; - box-shadow: inset 0 -1px #010a0c; } - #panel_window .menubar { - padding-left: 5px; } - #panel_window .menubar, #panel_window .menubar > .menuitem { - background-color: transparent; - color: #657b83; - font: bold; } - #panel_window .menubar .menuitem:insensitive { - color: rgba(101, 123, 131, 0.5); } - #panel_window .menubar .menuitem:insensitive GtkLabel { - color: inherit; } - #panel_window .menubar .menu .menuitem { - font: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: #5c616c; } - -#content_frame { - padding-bottom: 14px; - background-color: #F5F6F7; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - #content_frame .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - #content_frame .button:active, #content_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - #content_frame .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - #content_frame .button:insensitive > GtkLabel { - color: inherit; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: #073642; - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px #073642; } - -#buttonbox_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - #buttonbox_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - #buttonbox_frame .button:active, #buttonbox_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - #buttonbox_frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -#login_window #user_combobox { - color: #5c616c; - font: 13px; } - #login_window #user_combobox .menu { - font: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font: bold; } - -.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { - color: #e4dabc; } - -NemoWindow GtkEventBox { - background-color: #F5F6F7; } - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; } - -GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, -NautilusWindow.csd.background, -NautilusWindow .list.sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar, -NautilusWindow GtkPlacesSidebar.sidebar { - background-color: #073642; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { - border: 1px solid #268bd2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { - background-color: #0c5c70; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { - border: none; - color: #657b83; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { - color: rgba(101, 123, 131, 0.6); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, - NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { - background-color: rgba(101, 123, 131, 0.15); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { - color: inherit; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button { - color: #657b83; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button:hover, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button:active, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button:active { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button:not(:hover):not(:active) > GtkImage, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button:not(:hover):not(:active) > GtkImage { - opacity: 0.5; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, - NautilusWindow GtkPlacesSidebar.sidebar .separator, - NautilusWindow GtkPlacesSidebar.sidebar .view.separator { - color: transparent; } - -GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, -NautilusWindow.maximized GtkPlacesSidebar.sidebar { - background-color: #073642; } - -NemoWindow.csd.background, -NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, -MarlinViewWindow.csd.background, -MarlinViewWindow .source-list, -MarlinViewWindow .source-list.view, -MarlinViewWindow .source-list.view:prelight { - background-color: transparent; } - -NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, -MarlinViewWindow .sidebar, -MarlinViewWindow .source-list.sidebar.view { - background-color: #073642; } - NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, - MarlinViewWindow .sidebar .view, - MarlinViewWindow .sidebar row, - MarlinViewWindow .source-list.sidebar.view .view, - MarlinViewWindow .source-list.sidebar.view row { - background-color: transparent; - color: #657b83; } - NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, - MarlinViewWindow .sidebar .view.image, - MarlinViewWindow .sidebar row.image, - MarlinViewWindow .source-list.sidebar.view .view.image, - MarlinViewWindow .source-list.sidebar.view row.image { - color: rgba(101, 123, 131, 0.7); } - NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, - MarlinViewWindow .sidebar .view.cell:selected, - MarlinViewWindow .sidebar row.cell:selected, - MarlinViewWindow .source-list.sidebar.view .view.cell:selected, - MarlinViewWindow .source-list.sidebar.view row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, - MarlinViewWindow .sidebar.frame, - MarlinViewWindow .source-list.sidebar.view.frame { - color: #657b83; } - NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, - MarlinViewWindow .sidebar .separator, - MarlinViewWindow .sidebar .sidebar.separator, - MarlinViewWindow .sidebar .view.separator, - MarlinViewWindow .source-list.sidebar.view .separator { - color: transparent; } - -NemoWindow.maximized .sidebar, -MarlinViewWindow.maximized .sidebar { - background-color: #073642; } - -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { - background-color: #073642; } - -NautilusWindow NautilusWindowSlot { - background-color: #fdf6e3; } - -NautilusDesktopWindow NautilusWindowSlot { - background-color: transparent; } - -GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { - background-color: #073642; } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-action-box { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-vbox > .frame { - color: #657b83; - border-color: transparent; } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { - background-color: transparent; - border-color: #041c22; } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, -GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, -GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { - color: #657b83; } - -FeedReaderreaderUI.background.csd > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd > .titlebar .pane-separator, -GeditWindow.background.csd.maximized > .titlebar .pane-separator, -GeditWindow.background.csd > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { - background-color: #e4dabc; } - -FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #eee8d5; } - FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #f2eee0; } - -FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #eee8d5; } - FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #f2eee0; } - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; } - -GeditWindow.background.csd { - background-color: transparent; } - -GeditWindow.background .gedit-side-panel-paned .pane-separator { - background-color: #073642; } - -GeditWindow.background .gedit-bottom-panel-paned .pane-separator { - background-color: #dcdfe3; } - -.gedit-bottom-panel-paned { - background-color: #fdf6e3; } - -.gedit-document-panel { - background-color: #073642; } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel .list-row { - color: #657b83; } - .gedit-document-panel .list-row { - background-color: rgba(101, 123, 131, 0); - border: solid rgba(101, 123, 131, 0); - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:hover { - border: solid rgba(101, 123, 131, 0.15); - border-width: 3px 2px 3px 2px; - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel .list-row:active { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:active .button { - color: #fdf6e3; } - .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -GeditFileBrowserWidget { - background-color: #073642; } - .maximized GeditFileBrowserWidget { - background-color: #073642; } - GeditFileBrowserWidget .horizontal { - background-color: transparent; - border-color: #041c22; } - GeditFileBrowserWidget .horizontal GtkComboBox { - color: #657b83; } - -GeditWindow.background.csd GeditFileBrowserView.view { - background-color: transparent; - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander { - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { - color: #268bd2; } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, -GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, - GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, - GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, - GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, -GtkFileChooserDialog .dialog-vbox > .frame .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.4)); - background-color: transparent; } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { - color: inherit; } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, - GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-image: linear-gradient(to bottom, #268bd2); } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.25)); } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { - background-color: #8da0a7; - border: 1px solid rgba(0, 0, 0, 0.3); } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, -NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, -MarlinViewWindow .sidebar .scrollbar .trough, -MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { - background-color: rgba(0, 0, 0, 0.2); - border: none; } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, -NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, -MarlinViewWindow .sidebar .scrollbar .slider, -MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { - background-color: rgba(141, 160, 167, 0.7); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, - NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, - MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { - background-color: #9cacb2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, - NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, - MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, - NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, - MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { - background-color: transparent; } - -@define-color theme_fg_color #5c616c; -@define-color theme_text_color #5c616c; -@define-color theme_bg_color #F5F6F7; -@define-color theme_base_color #fdf6e3; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #5c616c; -@define-color text_color #5c616c; -@define-color bg_color #F5F6F7; -@define-color base_color #fdf6e3; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #faf6eb; -@define-color insensitive_fg_color alpha(#5c616c, 0.5); -@define-color insensitive_base_color #fdf6e3; -@define-color theme_unfocused_fg_color #5c616c; -@define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #F5F6F7; -@define-color theme_unfocused_base_color #fdf6e3; -@define-color borders #dcdfe3; -@define-color unfocused_borders #dcdfe3; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #1e6ea7; -@define-color content_view_bg #fdf6e3; -@define-color wm_title alpha(#525d76, 0.8); -@define-color wm_unfocused_title alpha(#525d76, 0.5); -@define-color wm_bg #eee8d5; -@define-color wm_bg_unfocused #f2eee0; -@define-color wm_highlight #f2eee0; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #f46067; -@define-color wm_button_close_hover_bg #f68086; -@define-color wm_button_close_active_bg #f13039; -@define-color wm_icon_close_bg #657b83; -@define-color wm_button_hover_bg #fdfdfd; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #D1D3DA; -@define-color wm_icon_bg #90949E; -@define-color wm_icon_unfocused_bg #B6B8C0; -@define-color wm_icon_hover_bg #7A7F8B; -@define-color wm_icon_active_bg #fdf6e3; diff --git a/common/gtk-3.0/3.18/gtk.css b/common/gtk-3.0/3.18/gtk.css deleted file mode 100644 index b99c22f..0000000 --- a/common/gtk-3.0/3.18/gtk.css +++ /dev/null @@ -1,4084 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -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: #1e6ea7; - -GtkWidget-visited-link-color: #16527c; - -GtkWidget-focus-padding: 2; - -GtkWidget-focus-line-width: 1; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - -GtkStatusbar-shadow-type: none; - outline-color: rgba(92, 97, 108, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; } - -.background { - color: #5c616c; - background-color: rgba(245, 246, 247, 0.999); } - -*:insensitive { - -gtk-image-effect: dim; } - -.gtkstyle-fallback { - background-color: #F5F6F7; - color: #5c616c; } - .gtkstyle-fallback:prelight { - background-color: white; - color: #5c616c; } - .gtkstyle-fallback:active { - background-color: #d9dde0; - color: #5c616c; } - .gtkstyle-fallback:insensitive { - background-color: #faf6eb; - color: rgba(92, 97, 108, 0.55); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view { - color: #5c616c; - background-color: #fdf6e3; } - .view.dim-label, .view.label.separator, .header-bar .view.subtitle { - color: rgba(92, 97, 108, 0.55); } - .view.dim-label:selected, .view.label.separator:selected, .header-bar .view.subtitle:selected, .view.dim-label:selected:focus, .view.label.separator:selected:focus, .header-bar .view.subtitle:selected:focus { - color: rgba(253, 246, 227, 0.65); - text-shadow: none; } - -.rubberband, GtkTreeView.view.rubberband, .content-view.rubberband { - border: 1px solid #1e6ea7; - background-color: rgba(30, 110, 167, 0.2); } - -.label.separator, .popover .label.separator, .sidebar .label.view.separator { - color: #5c616c; } - -.label:insensitive { - color: rgba(92, 97, 108, 0.55); } - -.dim-label, .label.separator, .popover .label.separator, .sidebar .label.view.separator, .header-bar .subtitle { - opacity: 0.55; } - -GtkAssistant .sidebar { - background-color: #fdf6e3; - border-top: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(ltr) { - border-right: 1px solid #dcdfe3; } - GtkAssistant .sidebar:dir(rtl) { - border-left: 1px solid #dcdfe3; } - -GtkAssistant.csd .sidebar { - border-top-style: none; } - -GtkAssistant .sidebar .label { - padding: 6px 12px; } - -GtkAssistant .sidebar .label.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -GtkTextView { - background-color: #f9f6ed; } - -.grid-child { - padding: 3px; - border-radius: 3px; } - .grid-child:selected { - outline-offset: -2px; } - -.popover.osd, .osd { - color: #657b83; - border: none; - background-color: rgba(7, 54, 66, 0.95); - background-clip: padding-box; - outline-color: rgba(101, 123, 131, 0.3); - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - .spinner:active { - opacity: 1; - animation: spin 1s linear infinite; } - .spinner:active:insensitive { - opacity: 0.5; } - -.entry { - border: 1px solid; - padding: 5px 8px; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry.image { - color: #7c7f84; } - .entry.image.left { - padding-left: 0; } - .entry.image.right { - padding-right: 0; } - .entry.flat, .entry.flat:focus { - padding: 2px; - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); - border: none; - border-radius: 0; } - .entry:focus { - background-clip: border-box; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; - background-image: linear-gradient(to bottom, #fdf6e3); } - .entry:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(253, 246, 227, 0.55); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.55)); } - .entry:selected, .entry:selected:focus { - background-color: #268bd2; - color: #fdf6e3; } - .entry.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - .entry.warning { - color: #fdf6e3; - border-color: #cb4b16; - background-image: linear-gradient(to bottom, #df8f68); } - .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); - box-shadow: none; } - .entry.warning:selected, .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .entry.error { - color: #fdf6e3; - border-color: #dc322f; - background-image: linear-gradient(to bottom, #e98077); } - .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); - box-shadow: none; } - .entry.error:selected, .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - .osd .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.35)); - background-color: transparent; } - .osd .entry.image, .osd .entry.image:hover { - color: inherit; } - .osd .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, #268bd2); } - .osd .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.2)); } - -GtkSearchEntry.entry { - border-radius: 20px; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -.button { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 5px 8px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .button.flat, .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(251, 251, 252, 0); - border-color: rgba(101, 123, 131, 0); - transition: none; } - .button.flat:hover, .sidebar-button.button:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - .button.flat:hover:active, .sidebar-button.button:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; - -gtk-image-effect: highlight; } - .button:active, .button:checked { - background-clip: border-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; - transition-duration: 50ms; } - .button:active:not(:insensitive) .label:insensitive, .button:checked:not(:insensitive) .label:insensitive { - color: inherit; - opacity: 0.6; } - .button:active { - color: #5c616c; } - .button:active:hover, .button:checked { - color: #fdf6e3; } - .button.flat:insensitive, .sidebar-button.button:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; } - .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button:insensitive > GtkLabel { - color: inherit; } - .button:insensitive:active, .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .button:insensitive:active > GtkLabel, .button:insensitive:checked > GtkLabel { - color: inherit; } - .button.osd { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(3, 24, 29, 0.95); } - .button.osd.image-button, .header-bar .button.osd.titlebutton, - .titlebar .button.osd.titlebutton { - padding: 10px; } - .button.osd:hover { - color: #268bd2; } - .button.osd:active, .button.osd:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .button.osd:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .osd .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd .button:active, .osd .button:checked { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd .button.flat, .osd .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd .button.flat:hover, .osd .sidebar-button.button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd .button.flat:insensitive, .osd .sidebar-button.button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); - background-image: none; } - .osd .button.flat:active, .osd .sidebar-button.button:active, .osd .button.flat:checked, .osd .sidebar-button.button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child), - .osd .linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active) + .button:not(:checked):not(:active) { - box-shadow: none; } - .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .button.suggested-action.flat, .suggested-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .button.suggested-action:active, .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .button.suggested-action.flat:insensitive, .suggested-action.sidebar-button.button:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.suggested-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .button.destructive-action.flat, .destructive-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .button.destructive-action:active, .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .button.destructive-action.flat:insensitive, .destructive-action.sidebar-button.button:insensitive { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - .button.destructive-action:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - .button.image-button, .header-bar .button.titlebutton, - .titlebar .button.titlebutton { - padding: 7px; } - .header-bar .button.image-button, .header-bar .button.titlebutton { - padding: 7px 10px; } - .button.text-button { - padding-left: 16px; - padding-right: 16px; } - .button.text-button.image-button, .header-bar .button.text-button.titlebutton, - .titlebar .button.text-button.titlebutton { - padding: 5px 8px; } - .button.text-button.image-button GtkLabel:first-child, .header-bar .button.text-button.titlebutton GtkLabel:first-child, - .titlebar .button.text-button.titlebutton GtkLabel:first-child { - padding-left: 8px; } - .button.text-button.image-button GtkLabel:last-child, .header-bar .button.text-button.titlebutton GtkLabel:last-child, - .titlebar .button.text-button.titlebutton GtkLabel:last-child { - padding-right: 8px; } - .stack-switcher > .button { - outline-offset: -3px; } - .stack-switcher > .button > GtkLabel { - 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 { - padding: 5px 10px; } - .stack-switcher > .button.image-button, .header-bar .stack-switcher > .button.titlebutton, - .titlebar .stack-switcher > .button.titlebutton { - padding: 2px 4px; } - .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; } - .stack-switcher > .button.needs-attention > .label, - .stack-switcher > .button.needs-attention > GtkImage, .button .sidebar-item.needs-attention > GtkLabel { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 4px; } - .stack-switcher > .button.needs-attention > .label:dir(rtl), - .stack-switcher > .button.needs-attention > GtkImage:dir(rtl), .button .sidebar-item.needs-attention > GtkLabel:dir(rtl) { - background-position: left 3px, left 4px; } - .inline-toolbar .button, .inline-toolbar .button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar GtkToolButton > .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .inline-toolbar GtkToolButton > .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .inline-toolbar GtkToolButton > .button:active, .inline-toolbar GtkToolButton > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .inline-toolbar GtkToolButton > .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .inline-toolbar GtkToolButton > .button:insensitive > GtkLabel { - color: inherit; } - .inline-toolbar GtkToolButton > .button:insensitive:active, .inline-toolbar GtkToolButton > .button:insensitive:checked { - color: rgba(253, 246, 227, 0.8); - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar GtkToolButton > .button:insensitive:active > GtkLabel, .inline-toolbar GtkToolButton > .button:insensitive:checked > GtkLabel { - color: inherit; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry { - border-left-color: rgba(101, 123, 131, 0.3); } - -.linked:not(.vertical):not(.path-bar) > .entry.error + .entry, -.linked:not(.vertical):not(.path-bar) > .entry + .entry.error { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > .entry.warning + .entry, -.linked:not(.vertical):not(.path-bar) > .entry + .entry.warning { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > .entry.error + .entry.warning, -.linked:not(.vertical):not(.path-bar) > .entry.warning + .entry.error { - border-left-color: #d43f23; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:last-child { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .entry, .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .button, -.linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:last-child { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .entry, .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .button, -.linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:last-child { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .entry, .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .button, -.linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > .button:active + .entry, -.linked:not(.vertical):not(.path-bar) > .button:checked + .entry { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > .button + .button { - border-left-style: none; } - -.linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 1px 0 #657b83; } - -.linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked:not(.vertical):not(.path-bar) > .button:active + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .button:checked + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .button.suggested-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .button.destructive-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > .entry + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child) { - box-shadow: none; } - -.linked:not(.vertical).path-bar > .button + .button { - border-left-style: none; } - -.linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4), inset -1px 0 rgba(101, 123, 131, 0.4); } - -.linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.4); } - -.linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4); } - -.linked.vertical > .entry + .entry { - border-top-color: rgba(101, 123, 131, 0.3); } - -.linked.vertical > .entry.error + .entry, -.linked.vertical > .entry + .entry.error { - border-top-color: #dc322f; } - -.linked.vertical > .entry.warning + .entry, -.linked.vertical > .entry + .entry.warning { - border-top-color: #cb4b16; } - -.linked.vertical > .entry.error + .entry.warning, -.linked.vertical > .entry.warning + .entry.error { - border-top-color: #d43f23; } - -.linked.vertical > .entry + .entry:focus:not(:last-child), -.linked.vertical > .entry + .entry:focus:last-child { - border-top-color: #268bd2; } - -.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: #268bd2; } - -.linked.vertical > .entry + .entry.warning:focus:not(:last-child), -.linked.vertical > .entry + .entry.warning:focus:last-child { - border-top-color: #cb4b16; } - -.linked.vertical > .entry.warning:focus:not(:only-child) + .entry, .linked.vertical > .entry.warning:focus:not(:only-child) + .button, -.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked.vertical > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-top-color: #cb4b16; } - -.linked.vertical > .entry + .entry.error:focus:not(:last-child), -.linked.vertical > .entry + .entry.error:focus:last-child { - border-top-color: #dc322f; } - -.linked.vertical > .entry.error:focus:not(:only-child) + .entry, .linked.vertical > .entry.error:focus:not(:only-child) + .button, -.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, -.linked.vertical > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-top-color: #dc322f; } - -.linked.vertical > .button:active + .entry, -.linked.vertical > .button:checked + .entry { - border-top-color: #268bd2; } - -.linked.vertical > .button + .button { - border-top-style: none; } - -.linked.vertical > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked.vertical > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 0 1px #657b83; } - -.linked.vertical > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked.vertical > .button:active + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .button:checked + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .button.suggested-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .button.destructive-action + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > .entry + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child) { - box-shadow: none; } - -.inline-toolbar.toolbar GtkToolButton > .button.flat, .inline-toolbar GtkToolButton > .button.flat, .inline-toolbar.toolbar GtkToolButton > .sidebar-button.button, .inline-toolbar GtkToolButton > .sidebar-button.button, .linked:not(.vertical) > .entry, -.linked:not(.vertical) > .entry:focus, .osd .button, .osd .button:hover, .osd .button:active, .osd .button:checked, .osd .button:insensitive, .inline-toolbar .button, .inline-toolbar .button:backdrop, .linked:not(.vertical) > .button, -.linked:not(.vertical) > .button:hover, -.linked:not(.vertical) > .button:active, -.linked:not(.vertical) > .button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .primary-toolbar .linked:not(.vertical).path-bar > .button, .header-bar .linked:not(.vertical).path-bar > .button, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:active, .header-bar .linked:not(.vertical).path-bar > .button:active, .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, .header-bar .linked:not(.vertical).path-bar > .button:checked, .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, .header-bar .linked:not(.vertical).path-bar > .button:insensitive, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive, .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) { - border-radius: 0; - border-right-style: none; } - -.linked:not(.vertical) > .entry:first-child, .osd .button:first-child, .inline-toolbar .button:first-child, .linked:not(.vertical) > .button:first-child, .inline-toolbar.toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar GtkToolButton:first-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:first-child > .sidebar-button.button, .inline-toolbar GtkToolButton:first-child > .sidebar-button.button, .linked > GtkComboBox:first-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:first-child, .primary-toolbar .linked:not(.vertical).path-bar > .button:first-child, .header-bar .linked:not(.vertical).path-bar > .button:first-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -.linked:not(.vertical) > .entry:last-child, .osd .button:last-child, .inline-toolbar .button:last-child, .linked:not(.vertical) > .button:last-child, .inline-toolbar.toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar GtkToolButton:last-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:last-child > .sidebar-button.button, .inline-toolbar GtkToolButton:last-child > .sidebar-button.button, .linked > GtkComboBox:last-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:last-child, .primary-toolbar .linked:not(.vertical).path-bar > .button:last-child, .header-bar .linked:not(.vertical).path-bar > .button:last-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - border-right-style: solid; } - -.linked:not(.vertical) > .entry:only-child, .osd .button:only-child, .inline-toolbar .button:only-child, .linked:not(.vertical) > .button:only-child, .inline-toolbar.toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar GtkToolButton:only-child > .button.flat, .inline-toolbar.toolbar GtkToolButton:only-child > .sidebar-button.button, .inline-toolbar GtkToolButton:only-child > .sidebar-button.button, .linked > GtkComboBox:only-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:only-child, .primary-toolbar .linked:not(.vertical).path-bar > .button:only-child, .header-bar .linked:not(.vertical).path-bar > .button:only-child, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:only-child { - border-radius: 3px; - border-style: solid; } - -.linked.vertical > .entry, -.linked.vertical > .entry:focus, .linked.vertical > .button, -.linked.vertical > .button:hover, -.linked.vertical > .button:active, -.linked.vertical > .button:checked, .linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox > .the-button-in-the-combobox { - border-radius: 0; - border-bottom-style: none; } - -.linked.vertical > .entry:first-child, .linked.vertical > .button:first-child, .linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -.linked.vertical > .entry:last-child, .linked.vertical > .button:last-child, .linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border-bottom-style: solid; } - -.linked.vertical > .entry:only-child, .linked.vertical > .button:only-child, .linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { - border-radius: 3px; - border-style: solid; } - -.menuitem.button.flat, .menuitem.sidebar-button.button, .button:link, .button:visited, .button:link:hover, .button:link:active, .button:link:checked, .button:visited:hover, .button:visited:active, .button:visited:checked, .menu.button, .notebook tab .button, .app-notification .button.flat, .app-notification .sidebar-button.button, -.app-notification.frame .button.flat, -.app-notification.frame .sidebar-button.button, .app-notification .button.flat:insensitive, .app-notification .sidebar-button.button:insensitive, -.app-notification.frame .button.flat:insensitive, -.app-notification.frame .sidebar-button.button:insensitive, TerminalWindow .notebook .active-page .button, TerminalWindow .notebook .prelight-page .button, TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover, TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -.menuitem.button.flat, .menuitem.sidebar-button.button { - transition: none; - outline-offset: -1px; - border-radius: 2px; } - .menuitem.button.flat:hover, .menuitem.sidebar-button.button:hover { - background-color: #edeff0; } - .menuitem.button.flat:checked, .menuitem.sidebar-button.button:checked { - color: #5c616c; } - -*:link, .button:link, .button:visited { - color: #1e6ea7; } - *:link:visited, .button:visited { - color: #16527c; } - *:selected *:link:visited, *:selected .button:visited:link, *:selected .button:visited { - color: #a7cbdc; } - *:link:hover, .button:hover:link, .button:hover:visited { - color: #268bd2; } - *:selected *:link:hover, *:selected .button:hover:link, *:selected .button:hover:visited { - color: #e8ebe1; } - *:link:active, .button:active:link, .button:active:visited { - color: #1e6ea7; } - *:selected *:link:active, *:selected .button:active:link, *:selected .button:active:visited { - color: #d2e1e0; } - *:link:selected, .button:selected:link, .button:selected:visited, .header-bar.selection-mode .subtitle:link, .header-bar.titlebar.selection-mode .subtitle:link, *:selected *:link, *:selected .button:link, *:selected .button:visited { - color: #d2e1e0; } - -.button:link > .label, .button:visited > .label { - text-decoration-line: underline; } - -.spinbutton { - border-radius: 3px; } - .spinbutton .button { - background-image: none; - border: 1px solid rgba(220, 223, 227, 0.6); - border-style: none none none solid; - color: #646872; - border-radius: 0; - box-shadow: none; } - .spinbutton .button:dir(rtl) { - border-style: none solid none none; } - .spinbutton .button:first-child { - color: red; } - .spinbutton .button:insensitive { - color: rgba(92, 97, 108, 0.55); } - .spinbutton .button:active { - background-color: #268bd2; - color: #fdf6e3; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:first-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - .spinbutton.vertical .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:active { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .spinbutton.vertical .button:last-child:insensitive > GtkLabel, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive > GtkLabel { - color: inherit; } - .spinbutton.vertical.entry, .spinbutton.vertical:dir(rtl).entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; } - .spinbutton.vertical .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive, .spinbutton.vertical:dir(rtl) .button:first-child, .spinbutton.vertical:dir(rtl) .button:first-child:active, .spinbutton.vertical:dir(rtl) .button:first-child:hover, .spinbutton.vertical:dir(rtl) .button:first-child:insensitive { - border-radius: 2px 2px 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:dir(rtl) .button:last-child:active, .spinbutton.vertical .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive, .spinbutton.vertical:dir(rtl) .button:last-child, .spinbutton.vertical:dir(rtl) .button:last-child:active, .spinbutton.vertical:dir(rtl) .button:last-child:hover, .spinbutton.vertical:dir(rtl) .button:last-child:insensitive { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; } - GtkTreeView .spinbutton.entry, GtkTreeView .spinbutton.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: #268bd2; - border-radius: 0; - box-shadow: none; } - -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; } - GtkComboBox > .the-button-in-the-combobox { - padding-top: 3px; - padding-bottom: 3px; } - GtkComboBox:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkComboBox .separator.vertical, GtkComboBox .sidebar .vertical.view.separator, .sidebar GtkComboBox .vertical.view.separator { - -GtkWidget-wide-separators: true; } - GtkComboBox.combobox-entry .entry:dir(ltr) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - border-right-style: none; } - GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: 1px 0 #268bd2; } - GtkComboBox.combobox-entry .entry:dir(rtl) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; } - GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: -1px 0 #268bd2; } - GtkComboBox.combobox-entry .button:dir(ltr) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - GtkComboBox.combobox-entry .button:dir(rtl) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #F5F6F7; } - .osd .toolbar, .osd .inline-toolbar, .toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.85); } - -.primary-toolbar { - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #eee8d5, rgba(228, 218, 188, 0.95)) 1 0 1 0; } - -.inline-toolbar { - background-color: #edeef0; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -.search-bar { - background-color: #F5F6F7; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 0 1px; - padding: 3px; } - -.action-bar { - background-color: #edeef0; } - -.header-bar { - padding: 5px 5px 4px 5px; - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: #e4dabc; - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; } - .csd .header-bar { - background-color: rgba(238, 232, 213, 0.95); - border-color: rgba(228, 218, 188, 0.95); } - .header-bar:backdrop { - color: rgba(82, 93, 118, 0.5); } - .header-bar .title { - padding-left: 12px; - padding-right: 12px; } - .header-bar .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - .header-bar.selection-mode, .header-bar.titlebar.selection-mode { - color: #fdf6e3; - background-color: rgba(38, 139, 210, 0.95); - border-color: rgba(35, 128, 193, 0.95); - box-shadow: none; } - .header-bar.selection-mode:backdrop, .header-bar.titlebar.selection-mode:backdrop { - background-color: rgba(38, 139, 210, 0.95); - color: rgba(253, 246, 227, 0.6); } - .header-bar.selection-mode .button, .header-bar.titlebar.selection-mode .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button.flat, .header-bar.selection-mode .sidebar-button.button, .header-bar.titlebar.selection-mode .button.flat, .header-bar.titlebar.selection-mode .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:hover, .header-bar.titlebar.selection-mode .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.05); - border-color: rgba(253, 246, 227, 0.5); } - .header-bar.selection-mode .button:active, .header-bar.selection-mode .button:checked, .header-bar.titlebar.selection-mode .button:active, .header-bar.titlebar.selection-mode .button:checked { - color: rgba(38, 139, 210, 0.95); - outline-color: rgba(38, 139, 210, 0.25); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .header-bar.selection-mode .button:insensitive, .header-bar.titlebar.selection-mode .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0); } - .header-bar.selection-mode .button:insensitive:active, .header-bar.selection-mode .button:insensitive:checked, .header-bar.titlebar.selection-mode .button:insensitive:active, .header-bar.titlebar.selection-mode .button:insensitive:checked { - color: rgba(38, 139, 210, 0.35); - background-color: rgba(253, 246, 227, 0.15); - border-color: rgba(253, 246, 227, 0.15); } - .header-bar.selection-mode .selection-menu, .header-bar.titlebar.selection-mode .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - .header-bar.selection-mode .selection-menu GtkArrow, .header-bar.titlebar.selection-mode .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - .header-bar.selection-mode .selection-menu .arrow, .header-bar.titlebar.selection-mode .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized .header-bar.selection-mode, .maximized .header-bar.titlebar.selection-mode { - background-color: #268bd2; } - .tiled .header-bar, .tiled .header-bar:backdrop, - .maximized .header-bar, .maximized .header-bar:backdrop { - border-radius: 0; } - .maximized .header-bar { - background-color: #eee8d5; - border-color: #e4dabc; } - .header-bar.default-decoration, - .csd .header-bar.default-decoration, .header-bar.default-decoration:backdrop, - .csd .header-bar.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: #eee8d5; - border-bottom-width: 0; } - .maximized .header-bar.default-decoration, .maximized - .csd .header-bar.default-decoration, .maximized .header-bar.default-decoration:backdrop, .maximized - .csd .header-bar.default-decoration:backdrop { - background-color: #eee8d5; } - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: 4px 4px 0 0; - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; - box-shadow: inset 0 1px rgba(242, 238, 224, 0.95); } - .csd .titlebar { - background-color: rgba(238, 232, 213, 0.95); } - .titlebar:backdrop { - color: rgba(82, 93, 118, 0.5); - background-color: #f2eee0; } - .csd .titlebar:backdrop { - background-color: rgba(242, 238, 224, 0.95); } - .maximized .titlebar { - background-color: #eee8d5; } - .maximized .titlebar:backdrop, .csd .maximized .titlebar:backdrop { - background-color: #f2eee0; } - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { - background-color: transparent; } - -.primary-toolbar .separator, .primary-toolbar .sidebar .view.separator, .sidebar .primary-toolbar .view.separator, .header-bar .header-bar-separator, -.header-bar > GtkBox > .separator.vertical, .sidebar -.header-bar > GtkBox > .vertical.view.separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(82, 93, 118, 0) 25%, rgba(82, 93, 118, 0.15) 25%, rgba(82, 93, 118, 0.15) 75%, rgba(82, 93, 118, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar .separator:backdrop, .header-bar .header-bar-separator:backdrop, - .header-bar > GtkBox > .separator.vertical:backdrop, .sidebar - .header-bar > GtkBox > .vertical.view.separator:backdrop { - opacity: 0.6; } - -.primary-toolbar .entry, .header-bar .entry { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - .primary-toolbar .entry.image, .header-bar .entry.image, .primary-toolbar .entry.image:hover, .header-bar .entry.image:hover { - color: inherit; } - .primary-toolbar .entry:backdrop, .header-bar .entry:backdrop { - opacity: 0.85; } - .primary-toolbar .entry:focus, .header-bar .entry:focus { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); - background-clip: border-box; } - .primary-toolbar .entry:focus.image, .header-bar .entry:focus.image { - color: #fdf6e3; } - .primary-toolbar .entry:insensitive, .header-bar .entry:insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - .primary-toolbar .entry:selected:focus, .header-bar .entry:selected:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar .entry.progressbar, .header-bar .entry.progressbar { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar .entry.warning, .header-bar .entry.warning { - color: white; - border-color: #cb4b16; - background-image: linear-gradient(to bottom, rgba(216, 134, 94, 0.98)); } - .primary-toolbar .entry.warning:focus, .header-bar .entry.warning:focus { - color: white; - background-image: linear-gradient(to bottom, #cb4b16); } - .primary-toolbar .entry.warning:selected, .header-bar .entry.warning:selected, .primary-toolbar .entry.warning:selected:focus, .header-bar .entry.warning:selected:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar .entry.error, .header-bar .entry.error { - color: white; - border-color: #dc322f; - background-image: linear-gradient(to bottom, rgba(227, 118, 109, 0.98)); } - .primary-toolbar .entry.error:focus, .header-bar .entry.error:focus { - color: white; - background-image: linear-gradient(to bottom, #dc322f); } - .primary-toolbar .entry.error:selected, .header-bar .entry.error:selected, .primary-toolbar .entry.error:selected:focus, .header-bar .entry.error:selected:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar .button, .header-bar .button { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - outline-offset: -3px; - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button:backdrop, .header-bar .button:backdrop { - opacity: 0.7; } - .primary-toolbar .button:hover, .header-bar .button:hover { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .primary-toolbar .button:active, .header-bar .button:active, .primary-toolbar .button:checked, .header-bar .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; - background-clip: border-box; } - .primary-toolbar .button:insensitive, .header-bar .button:insensitive { - color: rgba(82, 93, 118, 0.35); - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button:insensitive > GtkLabel, .header-bar .button:insensitive > GtkLabel { - color: inherit; } - .primary-toolbar .button:insensitive:active, .header-bar .button:insensitive:active, .primary-toolbar .button:insensitive:checked, .header-bar .button:insensitive:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button, .header-bar .linked:not(.vertical):not(.path-bar) > .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar) > .button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active, .header-bar .linked:not(.vertical):not(.path-bar) > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar) > .button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar) > .button:insensitive { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .header-bar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), .header-bar .linked:not(.vertical):not(.path-bar) > .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + .button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button, .primary-toolbar .linked:not(.vertical).path-bar > .button, .header-bar .linked:not(.vertical).path-bar > .button { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover { - background-color: rgba(255, 255, 255, 0.9); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:checked, .primary-toolbar .linked:not(.vertical).path-bar > .button:active, .header-bar .linked:not(.vertical).path-bar > .button:active, .primary-toolbar .linked:not(.vertical).path-bar > .button:checked, .header-bar .linked:not(.vertical).path-bar > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:insensitive, .primary-toolbar .linked:not(.vertical).path-bar > .button:insensitive, .header-bar .linked:not(.vertical).path-bar > .button:insensitive { - color: rgba(82, 93, 118, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button + .button, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button + .button, .primary-toolbar .linked:not(.vertical).path-bar > .button + .button, .header-bar .linked:not(.vertical).path-bar > .button + .button { - border-left-style: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):hover, .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1), inset -1px 0 rgba(82, 93, 118, 0.1); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .header-bar .linked:not(.vertical):not(.path-bar).stack-switcher > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .header-bar .linked:not(.vertical).path-bar > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry { - border-left-color: rgba(82, 93, 118, 0); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error { - border-left-color: #dc322f; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning { - border-left-color: #cb4b16; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry.warning, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error + .entry.warning, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry.error, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning + .entry.error { - border-left-color: #d43f23; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:last-child, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry:focus:last-child { - border-left-color: #268bd2; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .button, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #268bd2; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:last-child, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.warning:focus:last-child { - border-left-color: #cb4b16; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .button, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.warning:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #cb4b16; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:not(:last-child), .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:last-child, .header-bar .linked:not(.vertical):not(.path-bar) > .entry + .entry.error:focus:last-child { - border-left-color: #dc322f; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .button, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + .button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBox > .the-button-in-the-combobox, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox, .header-bar .linked:not(.vertical):not(.path-bar) > .entry.error:focus:not(:only-child) + GtkComboBoxText > .the-button-in-the-combobox { - border-left-color: #dc322f; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:active + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .button:active + .entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > .button:checked + .entry, .header-bar .linked:not(.vertical):not(.path-bar) > .button:checked + .entry { - border-left-color: #268bd2; } - -.primary-toolbar .button.suggested-action, .header-bar .button.suggested-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar .button.suggested-action.flat, .header-bar .button.suggested-action.flat, .primary-toolbar .suggested-action.sidebar-button.button, .header-bar .suggested-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; - outline-color: rgba(42, 161, 152, 0.3); } - .primary-toolbar .button.suggested-action:hover, .header-bar .button.suggested-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar .button.suggested-action:active, .header-bar .button.suggested-action:active, .primary-toolbar .button.suggested-action:checked, .header-bar .button.suggested-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar .button.suggested-action.flat:insensitive, .header-bar .button.suggested-action.flat:insensitive, .primary-toolbar .suggested-action.sidebar-button.button:insensitive, .header-bar .suggested-action.sidebar-button.button:insensitive, .primary-toolbar .button.suggested-action:insensitive, .header-bar .button.suggested-action:insensitive { - color: rgba(82, 93, 118, 0.35); - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button.suggested-action.flat:insensitive > GtkLabel, .header-bar .button.suggested-action.flat:insensitive > GtkLabel, .primary-toolbar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .suggested-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.suggested-action:insensitive > GtkLabel, .header-bar .button.suggested-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop, .primary-toolbar .button.suggested-action:backdrop, .header-bar .button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .button.destructive-action, .header-bar .button.destructive-action { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar .button.destructive-action.flat, .header-bar .button.destructive-action.flat, .primary-toolbar .destructive-action.sidebar-button.button, .header-bar .destructive-action.sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; - outline-color: rgba(220, 50, 47, 0.3); } - .primary-toolbar .button.destructive-action:hover, .header-bar .button.destructive-action:hover { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar .button.destructive-action:active, .header-bar .button.destructive-action:active, .primary-toolbar .button.destructive-action:checked, .header-bar .button.destructive-action:checked { - background-clip: border-box; - color: white; - outline-color: rgba(255, 255, 255, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar .button.destructive-action.flat:insensitive, .header-bar .button.destructive-action.flat:insensitive, .primary-toolbar .destructive-action.sidebar-button.button:insensitive, .header-bar .destructive-action.sidebar-button.button:insensitive, .primary-toolbar .button.destructive-action:insensitive, .header-bar .button.destructive-action:insensitive { - color: rgba(82, 93, 118, 0.35); - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar .button.destructive-action.flat:insensitive > GtkLabel, .header-bar .button.destructive-action.flat:insensitive > GtkLabel, .primary-toolbar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .header-bar .destructive-action.sidebar-button.button:insensitive > GtkLabel, .primary-toolbar .button.destructive-action:insensitive > GtkLabel, .header-bar .button.destructive-action:insensitive > GtkLabel { - color: inherit; } - -.primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop, .primary-toolbar .button.destructive-action:backdrop, .header-bar .button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar .spinbutton:focus .button, .header-bar .spinbutton:focus .button { - color: #fdf6e3; } - .primary-toolbar .spinbutton:focus .button:hover, .header-bar .spinbutton:focus .button:hover { - background-color: rgba(253, 246, 227, 0.1); - border-color: transparent; } - .primary-toolbar .spinbutton:focus .button:insensitive, .header-bar .spinbutton:focus .button:insensitive { - color: rgba(253, 246, 227, 0.4); } - -.primary-toolbar .spinbutton .button, .header-bar .spinbutton .button { - color: rgba(82, 93, 118, 0.8); } - .primary-toolbar .spinbutton .button:hover, .header-bar .spinbutton .button:hover { - background-color: rgba(82, 93, 118, 0.05); - border-color: transparent; } - .primary-toolbar .spinbutton .button:insensitive, .header-bar .spinbutton .button:insensitive { - color: rgba(82, 93, 118, 0.5); } - .primary-toolbar .spinbutton .button:active, .header-bar .spinbutton .button:active { - background-color: rgba(0, 0, 0, 0.1); } - -.primary-toolbar GtkComboBox:insensitive, .header-bar GtkComboBox:insensitive { - color: rgba(82, 93, 118, 0.2); } - -.primary-toolbar GtkComboBox.combobox-entry .button, .header-bar GtkComboBox.combobox-entry .button { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - .primary-toolbar GtkComboBox.combobox-entry .button.image, .header-bar GtkComboBox.combobox-entry .button.image, .primary-toolbar GtkComboBox.combobox-entry .button.image:hover, .header-bar GtkComboBox.combobox-entry .button.image:hover { - color: inherit; } - .primary-toolbar GtkComboBox.combobox-entry .button:hover, .header-bar GtkComboBox.combobox-entry .button:hover { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .button:insensitive, .header-bar GtkComboBox.combobox-entry .button:insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr), .header-bar GtkComboBox.combobox-entry .entry:dir(ltr) { - border-right-style: none; } - .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .entry:dir(ltr):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(ltr):focus { - box-shadow: 1px 0 #268bd2; } - -.primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl), .header-bar GtkComboBox.combobox-entry .entry:dir(rtl) { - border-left-style: none; } - .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: none; } - .primary-toolbar GtkComboBox.combobox-entry .entry:dir(rtl):focus, .header-bar GtkComboBox.combobox-entry .entry:dir(rtl):focus { - box-shadow: -1px 0 #268bd2; } - -.primary-toolbar GtkSwitch:backdrop, .header-bar GtkSwitch:backdrop { - opacity: 0.75; } - -.primary-toolbar GtkProgressBar.trough, .header-bar GtkProgressBar.trough, .primary-toolbar .level-bar.trough, .header-bar .level-bar.trough { - background-color: rgba(82, 93, 118, 0.15); } - -.primary-toolbar GtkProgressBar:backdrop, .header-bar GtkProgressBar:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale:backdrop, .header-bar .scale:backdrop { - opacity: 0.75; } - -.primary-toolbar .scale.trough, .header-bar .scale.trough { - background-image: linear-gradient(to bottom, rgba(82, 93, 118, 0.15)); } - .primary-toolbar .scale.trough:insensitive, .header-bar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(82, 93, 118, 0.1)); } - -.primary-toolbar .scale.slider, .header-bar .scale.slider { - background-image: linear-gradient(to bottom, #fbfbfc); - border-color: rgba(82, 93, 118, 0.3); } - .primary-toolbar .scale.slider:hover, .header-bar .scale.slider:hover { - background-image: linear-gradient(to bottom, white); - border-color: rgba(82, 93, 118, 0.3); } - .primary-toolbar .scale.slider:active, .header-bar .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .primary-toolbar .scale.slider:insensitive, .header-bar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, rgba(247, 246, 241, 0.985)); - border-color: rgba(82, 93, 118, 0.3); } - -.path-bar .button { - padding: 5px 10px; } - .path-bar .button:first-child { - padding-left: 10px; } - .path-bar .button:last-child { - padding-right: 10px; } - .path-bar .button:only-child { - padding-left: 14px; - padding-right: 14px; } - .path-bar .button GtkLabel:last-child { - padding-left: 4px; } - .path-bar .button GtkLabel:first-child { - padding-right: 4px; } - .path-bar .button GtkLabel:only-child, .path-bar .button GtkLabel { - padding-right: 0; - padding-left: 0; } - .path-bar .button GtkImage { - padding-top: 2px; - padding-bottom: 1px; } - -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: rgba(92, 97, 108, 0.15); - border-top-color: rgba(0, 0, 0, 0.1); } - GtkTreeView.view:selected { - border-radius: 0; - border-left-color: #92c1db; - border-top-color: rgba(92, 97, 108, 0.1); } - GtkTreeView.view:insensitive { - color: rgba(92, 97, 108, 0.55); } - GtkTreeView.view:insensitive:selected { - color: #7cb6d9; } - GtkTreeView.view.dnd { - border-style: solid none; - border-width: 1px; - border-color: #41769f; } - GtkTreeView.view.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - color: #adaca8; } - GtkTreeView.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - GtkTreeView.view.expander:hover { - color: #5c616c; } - GtkTreeView.view.expander:selected { - color: #bdd6de; } - GtkTreeView.view.expander:selected:hover { - color: #fdf6e3; } - GtkTreeView.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - GtkTreeView.view.progressbar, GtkTreeView.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-image: linear-gradient(to bottom, #268bd2); } - GtkTreeView.view.progressbar:selected, GtkTreeView.view.progressbar:selected:focus, GtkTreeView.view.progressbar:focus:selected, GtkTreeView.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-image: linear-gradient(to bottom, #fdf6e3); } - GtkTreeView.view.trough { - color: #5c616c; - background-image: linear-gradient(to bottom, #657b83); - border-radius: 3px; - border-width: 0; } - GtkTreeView.view.trough:selected, GtkTreeView.view.trough:selected:focus { - color: #fdf6e3; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); - border-radius: 3px; - border-width: 0; } - -column-header .button { - color: #7c7f84; - background-color: #fdf6e3; } - column-header .button:hover { - color: #268bd2; - box-shadow: none; - transition: none; } - column-header .button:active { - color: #5c616c; - transition: none; } - -column-header:last-child .button, column-header:last-child.button { - border-right-style: none; - border-image: none; } - -column-header.button.dnd, column-header .button.dnd, column-header.button.dnd:active, column-header.button.dnd:selected, column-header.button.dnd:hover { - transition: none; - color: #268bd2; - box-shadow: inset 1px 1px 0 1px #268bd2, inset -1px 0 0 1px #268bd2, inset 1px 1px #fdf6e3, inset -1px 0 #fdf6e3; } - -column-header .button, column-header .button:hover, column-header .button:active { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, transparent 80%) 0 1 0 0/0 1px 0 0 stretch; } - column-header .button:active, column-header .button:hover { - background-color: #fdf6e3; } - column-header .button:active:hover { - color: #5c616c; } - column-header .button:insensitive { - border-color: #F5F6F7; - background-image: none; } - -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #eee8d5; - color: rgba(82, 93, 118, 0.8); } - .menubar:backdrop { - color: rgba(82, 93, 118, 0.5); } - .menubar > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - .menubar > .menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - .menubar > .menuitem:insensitive { - color: rgba(82, 93, 118, 0.2); - border-color: transparent; } - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; } - .csd .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - .menu .menuitem { - padding: 5px; } - .menu .menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - .menu .menuitem:insensitive { - color: rgba(92, 97, 108, 0.55); } - .menu .menuitem.separator { - color: rgba(253, 246, 227, 0); } - .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 #ede7d7; } - .menu.button.bottom { - border-top: 1px solid #ede7d7; } - .menu.button:hover { - background-color: #ede7d7; } - .menu.button:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent; } - -.csd .popup { - border-radius: 2px; } - -.menuitem .accelerator { - color: alpha(currentColor,0.55); } - -.popover { - padding: 2px; - border: 1px solid #cdd2d7; - border-radius: 3px; - background-clip: border-box; - background-color: #fdf6e3; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } - .popover .separator, .popover .sidebar .view.separator, .sidebar .popover .view.separator { - color: rgba(253, 246, 227, 0); } - .popover > .list, - .popover > .view, - .popover > .toolbar, - .popover > .inline-toolbar, - .popover.osd > .toolbar, - .popover.osd > .inline-toolbar { - border-style: none; - background-color: transparent; } - -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - .entry.cursor-handle.top, - .cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - .entry.cursor-handle.bottom, - .cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -.notebook { - padding: 0; - background-color: #fdf6e3; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -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.frame { - border: 1px solid #dcdfe3; } - .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.header { - background-color: #F5F6F7; } - .notebook.header.frame { - border: 0px solid #dcdfe3; } - .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.top { - box-shadow: inset 0 -1px #dcdfe3; } - .notebook.header.bottom { - box-shadow: inset 0 1px #dcdfe3; } - .notebook.header.right { - box-shadow: inset 1px 0 #dcdfe3; } - .notebook.header.left { - box-shadow: inset -1px 0 #dcdfe3; } - .notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - outline-offset: 0; } - .notebook tab.top, .notebook tab.bottom { - padding: 4px 15px; } - .notebook tab.left, .notebook tab.right { - padding: 4px 15px; } - .notebook tab.reorderable-page.top, .notebook tab.reorderable-page.bottom { - padding-left: 12px; - padding-right: 12px; } - .notebook tab.reorderable-page.top, .notebook tab.top { - padding-top: 6px; - border-radius: 3.5px 2px 0 0; - border-width: 0; - border-top-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.top:hover, .notebook tab.reorderable-page.top.prelight-page, .notebook tab.top:hover, .notebook tab.top.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.top:active, .notebook tab.reorderable-page.top.active-page, .notebook tab.reorderable-page.top.active-page:hover, .notebook tab.top:active, .notebook tab.top.active-page, .notebook tab.top.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #fdf6e3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom, .notebook tab.bottom { - padding-bottom: 6px; - border-radius: 0 0 2px 3.5px; - border-width: 0; - border-bottom-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.bottom:hover, .notebook tab.reorderable-page.bottom.prelight-page, .notebook tab.bottom:hover, .notebook tab.bottom.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.bottom:active, .notebook tab.reorderable-page.bottom.active-page, .notebook tab.reorderable-page.bottom.active-page:hover, .notebook tab.bottom:active, .notebook tab.bottom.active-page, .notebook tab.bottom.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 -1px #fdf6e3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right, .notebook tab.right { - padding-right: 17px; - border-radius: 0 3.5px 3.5px 0; - border-width: 0; - border-right-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.right:hover, .notebook tab.reorderable-page.right.prelight-page, .notebook tab.right:hover, .notebook tab.right.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.right:active, .notebook tab.reorderable-page.right.active-page, .notebook tab.reorderable-page.right.active-page:hover, .notebook tab.right:active, .notebook tab.right.active-page, .notebook tab.right.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #fdf6e3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left, .notebook tab.left { - padding-left: 17px; - border-radius: 3.5px 0 0 3.5px; - border-width: 0; - border-left-width: 2px; - border-color: transparent; - background-color: rgba(253, 246, 227, 0); } - .notebook tab.reorderable-page.left:hover, .notebook tab.reorderable-page.left.prelight-page, .notebook tab.left:hover, .notebook tab.left.prelight-page { - background-color: rgba(253, 246, 227, 0.5); - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - .notebook tab.reorderable-page.left:active, .notebook tab.reorderable-page.left.active-page, .notebook tab.reorderable-page.left.active-page:hover, .notebook tab.left:active, .notebook tab.left.active-page, .notebook tab.left.active-page:hover { - background-color: #fdf6e3; - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #fdf6e3; } - .notebook tab GtkLabel { - padding: 0 2px; - color: rgba(92, 97, 108, 0.55); } - .notebook tab .prelight-page GtkLabel, .notebook tab GtkLabel.prelight-page { - color: rgba(92, 97, 108, 0.775); } - .notebook tab .active-page GtkLabel, .notebook tab GtkLabel.active-page { - color: #5c616c; } - .notebook tab .button { - padding: 0; - color: #92959d; } - .notebook tab .button:hover { - color: #ff4d4d; } - .notebook tab .button:active { - color: #268bd2; } - .notebook tab .button > GtkImage { - padding: 2px; } - .notebook.arrow { - color: rgba(92, 97, 108, 0.55); } - .notebook.arrow:hover { - color: rgba(92, 97, 108, 0.775); } - .notebook.arrow:active { - color: #5c616c; } - .notebook.arrow:insensitive { - color: rgba(92, 97, 108, 0.25); } - -.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: 6px; } - .scrollbar.overlay-indicator:not(.dragging):not(.hovering) .slider { - margin: 0; - background-color: #8a8e96; - border: 1px solid rgba(255, 255, 255, 0.6); - 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.99; } - .scrollbar .trough { - background-color: #fdf4de; - border: 1px none #dcdfe3; } - .scrollbar .slider { - background-color: #b8babf; } - .scrollbar .slider:hover { - background-color: #c7c9cd; } - .scrollbar .slider:prelight:active, .scrollbar .slider:active { - background-color: #268bd2; } - .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, #dcdfe3 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #fdf4de; } - .scrollbars-junction:dir(rtl), - .scrollbars-junction.frame:dir(rtl) { - border-image-slice: 0 1 0 0; } - -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 52; - -GtkSwitch-slider-height: 24; - outline-color: transparent; } - GtkSwitch.trough, GtkSwitch.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; } - GtkSwitch.trough:dir(rtl), GtkSwitch.slider:dir(rtl) { - background-position: left center; } - -GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough, -.menu .menuitem:hover GtkSwitch.trough, -.list-row:selected GtkSwitch.trough, -GtkInfoBar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -.header-bar GtkSwitch.trough, -.primary-toolbar GtkSwitch.trough { - background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } - -GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough:active, -.menu .menuitem:hover GtkSwitch.trough:active, -.list-row:selected GtkSwitch.trough:active, -GtkInfoBar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -.header-bar GtkSwitch.trough:active, -.primary-toolbar GtkSwitch.trough:active { - background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } - -GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough:insensitive, -.menu .menuitem:hover GtkSwitch.trough:insensitive, -.list-row:selected GtkSwitch.trough:insensitive, -GtkInfoBar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:insensitive, -.primary-toolbar GtkSwitch.trough:insensitive { - background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } - -GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough:active:insensitive, -.menu .menuitem:hover GtkSwitch.trough:active:insensitive, -.list-row:selected GtkSwitch.trough:active:insensitive, -GtkInfoBar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -.header-bar GtkSwitch.trough:active:insensitive, -.primary-toolbar GtkSwitch.trough:active:insensitive { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } - -.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check, -GtkFileChooserDialog .dialog-vbox > .frame .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check, -.menu .menuitem.check:hover, -GtkTreeView.view.check:selected, -.list-row:selected .check, -GtkInfoBar .check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:insensitive, -.menu .menuitem.check:insensitive:hover, -GtkTreeView.view.check:insensitive:selected, -.list-row:selected .check:insensitive, -GtkInfoBar .check:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:inconsistent, -.menu .menuitem.check:inconsistent:hover, -GtkTreeView.view.check:inconsistent:selected, -.list-row:selected .check:inconsistent, -GtkInfoBar .check:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:inconsistent:insensitive, -.menu .menuitem.check:inconsistent:insensitive:hover, -GtkTreeView.view.check:inconsistent:insensitive:selected, -.list-row:selected .check:inconsistent:insensitive, -GtkInfoBar .check:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:checked, -.menu .menuitem.check:checked:hover, -GtkTreeView.view.check:checked:selected, -.list-row:selected .check:checked, -GtkInfoBar .check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .check:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .check:checked:insensitive, -.menu .menuitem.check:checked:insensitive:hover, -GtkTreeView.view.check:checked:insensitive:selected, -.list-row:selected .check:checked:insensitive, -GtkInfoBar .check:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio, -GtkFileChooserDialog .dialog-vbox > .frame .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio, -.menu .menuitem.radio:hover, -GtkTreeView.view.radio:selected, -.list-row:selected .radio, -GtkInfoBar .radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:insensitive, -.menu .menuitem.radio:insensitive:hover, -GtkTreeView.view.radio:insensitive:selected, -.list-row:selected .radio:insensitive, -GtkInfoBar .radio:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:inconsistent, -.menu .menuitem.radio:inconsistent:hover, -GtkTreeView.view.radio:inconsistent:selected, -.list-row:selected .radio:inconsistent, -GtkInfoBar .radio:inconsistent { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:inconsistent:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:inconsistent:insensitive, -.menu .menuitem.radio:inconsistent:insensitive:hover, -GtkTreeView.view.radio:inconsistent:insensitive:selected, -.list-row:selected .radio:inconsistent:insensitive, -GtkInfoBar .radio:inconsistent:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:checked, -.menu .menuitem.radio:checked:hover, -GtkTreeView.view.radio:checked:selected, -.list-row:selected .radio:checked, -GtkInfoBar .radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .radio:checked:insensitive, -GtkFileChooserDialog .dialog-vbox > .frame .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .radio:checked:insensitive, -.menu .menuitem.radio:checked:insensitive:hover, -GtkTreeView.view.radio:checked:insensitive:selected, -.list-row:selected .radio:checked:insensitive, -GtkInfoBar .radio:checked:insensitive { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -.view.content-view.check:not(.list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); - background-color: transparent; } - -.view.content-view.check:checked:not(.list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-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: rgba(92, 97, 108, 0.55); } - -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; - color: alpha(currentColor,0.7); } - .scale.trough { - margin: 5px; } - .scale.fine-tune.trough { - border-radius: 5px; - margin: 3px; } - .scale.slider { - background-clip: border-box; - background-image: linear-gradient(to bottom, #fbfbfc); - border: 1px solid rgba(45, 55, 59, 0.5); - border-radius: 50%; - box-shadow: none; } - .scale.slider:hover { - background-image: linear-gradient(to bottom, white); - border-color: rgba(45, 55, 59, 0.5); } - .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #f9f6ec); - border-color: rgba(45, 55, 59, 0.3); } - .scale.slider:active { - background-image: linear-gradient(to bottom, #268bd2); - border-color: #268bd2; } - .osd .scale.slider { - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.95)); - border-color: #268bd2; } - .osd .scale.slider:hover { - background-image: linear-gradient(to bottom, #268bd2); } - .osd .scale.slider:active { - background-image: linear-gradient(to bottom, #1e6ea7); - border-color: #1e6ea7; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider, - .menu .menuitem:hover .scale.slider, - .list-row:selected .scale.slider, - GtkInfoBar .scale.slider { - background-image: linear-gradient(to bottom, #fdf6e3); - border-color: #fdf6e3; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider:hover, - .menu .menuitem:hover .scale.slider:hover, - .list-row:selected .scale.slider:hover, - GtkInfoBar .scale.slider:hover { - background-image: linear-gradient(to bottom, #dde6e0); - border-color: #dde6e0; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider:active, - .menu .menuitem:hover .scale.slider:active, - .list-row:selected .scale.slider:active, - GtkInfoBar .scale.slider:active { - background-image: linear-gradient(to bottom, #92c1db); - border-color: #92c1db; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.slider:insensitive, - .menu .menuitem:hover .scale.slider:insensitive, - .list-row:selected .scale.slider:insensitive, - GtkInfoBar .scale.slider:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); - border-color: #9cc6db; } - .scale.trough { - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, #657b83); } - .scale.trough.highlight { - background-image: linear-gradient(to bottom, #268bd2); } - .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, rgba(38, 139, 210, 0.55)); } - .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(101, 123, 131, 0.55)); } - .osd .scale.trough { - background-image: linear-gradient(to bottom, rgba(10, 80, 98, 0.95)); - outline-color: rgba(101, 123, 131, 0.2); } - .osd .scale.trough.highlight { - background-image: none; - background-image: linear-gradient(to bottom, #268bd2); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough, - .menu .menuitem:hover .scale.trough, - .list-row:selected .scale.trough, - GtkInfoBar .scale.trough { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.2)); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough.highlight, - .menu .menuitem:hover .scale.trough.highlight, - .list-row:selected .scale.trough.highlight, - GtkInfoBar .scale.trough.highlight { - background-image: linear-gradient(to bottom, #fdf6e3); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough.highlight:insensitive, - .menu .menuitem:hover .scale.trough.highlight:insensitive, - .list-row:selected .scale.trough.highlight:insensitive, - GtkInfoBar .scale.trough.highlight:insensitive { - background-image: linear-gradient(to bottom, #9cc6db); } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .scale.trough:insensitive, - .menu .menuitem:hover .scale.trough:insensitive, - .list-row:selected .scale.trough:insensitive, - GtkInfoBar .scale.trough:insensitive { - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -GtkProgressBar { - padding: 0; - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - GtkProgressBar.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; } - -.progressbar { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - .progressbar.osd { - background-color: #268bd2; } - .list-row:selected .progressbar, - GtkInfoBar .progressbar { - background-color: #fdf6e3; } - -.osd .scale.progressbar { - background-color: #268bd2; } - -GtkProgressBar.trough, .level-bar.trough { - border: none; - border-radius: 3px; - background-color: #657b83; } - GtkProgressBar.trough.osd, .osd.level-bar.trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - .list-row:selected GtkProgressBar.trough, .list-row:selected .level-bar.trough, - GtkInfoBar GtkProgressBar.trough, - GtkInfoBar .level-bar.trough { - background-color: rgba(0, 0, 0, 0.2); } - -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; } - GtkLevelBar.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; } - -.level-bar.trough { - padding: 3px; - border-radius: 4px; } - -.level-bar.fill-block { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - .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 { - border-color: #859900; - background-color: #859900; } - .level-bar.fill-block.level-low { - border-color: #cb4b16; - background-color: #cb4b16; } - .level-bar.fill-block.empty-fill-block { - background-color: rgba(92, 97, 108, 0.2); - border-color: rgba(92, 97, 108, 0.2); } - -.frame { - border: 1px solid #dcdfe3; - padding: 0; } - .frame.flat { - border-style: none; } - .frame.action-bar { - padding: 6px; - border-width: 1px 0 0; } - -GtkScrolledWindow GtkViewport.frame { - border-style: none; } - -.separator, .sidebar.separator, .sidebar .view.separator { - color: rgba(0, 0, 0, 0.1); } - GtkFileChooserButton .separator, GtkFileChooserButton .sidebar.separator, GtkFileChooserButton .sidebar .view.separator, .sidebar GtkFileChooserButton .view.separator, - GtkFontButton .separator, - GtkFontButton .sidebar.separator, - GtkFontButton .sidebar .view.separator, .sidebar - GtkFontButton .view.separator, - GtkFileChooserButton .separator.vertical, - GtkFileChooserButton .sidebar .vertical.view.separator, .sidebar - GtkFileChooserButton .vertical.view.separator, - GtkFontButton .separator.vertical, - GtkFontButton .sidebar .vertical.view.separator, .sidebar - GtkFontButton .vertical.view.separator { - -GtkWidget-wide-separators: true; } - -.list { - background-color: #fdf6e3; - border-color: #dcdfe3; } - -.list-row, -.grid-child { - padding: 2px; } - -.list-row.activatable:hover, GtkPlacesSidebar.sidebar .has-open-popup { - background-color: rgba(0, 0, 0, 0.05); } - -.list-row.activatable:active { - color: #5c616c; } - -.list-row.activatable:selected:active { - color: #fdf6e3; } - -.list-row.activatable:selected:hover, GtkPlacesSidebar.sidebar .has-open-popup:selected { - background-color: #227dbd; } - -.list-row.activatable:selected:insensitive { - color: rgba(253, 246, 227, 0.7); - background-color: rgba(38, 139, 210, 0.7); } - .list-row.activatable:selected:insensitive .label { - color: inherit; } - -.list-row, list-row.activatable { - transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - .list-row:hover, list-row.activatable:hover { - transition: none; } - -.app-notification, -.app-notification.frame { - padding: 10px; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: rgba(2, 16, 20, 0.95); } - .app-notification .button, - .app-notification.frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .app-notification .button.flat, .app-notification .sidebar-button.button, - .app-notification.frame .button.flat, - .app-notification.frame .sidebar-button.button { - border-color: rgba(38, 139, 210, 0); } - .app-notification .button:hover, - .app-notification.frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .app-notification .button:active, .app-notification .button:checked, - .app-notification.frame .button:active, - .app-notification.frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification .button:insensitive, - .app-notification.frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -.expander { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - .expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - .expander:hover { - color: #aaaeb7; } - .expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GtkCalendar { - color: #5c616c; - border: 1px solid #dcdfe3; - border-radius: 3px; - padding: 2px; } - GtkCalendar:selected { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 1.5px; } - GtkCalendar.header { - color: #5c616c; - border: none; - border-radius: 0; } - GtkCalendar.button, GtkCalendar.button:focus { - color: rgba(92, 97, 108, 0.45); - border-color: transparent; - background-color: transparent; - background-image: none; } - GtkCalendar.button:hover, GtkCalendar.button:focus:hover { - color: #5c616c; } - GtkCalendar.button:insensitive, GtkCalendar.button:focus:insensitive { - color: rgba(92, 97, 108, 0.55); - background-color: transparent; - background-image: none; } - GtkCalendar:inconsistent { - color: alpha(currentColor,0.55); } - GtkCalendar.highlight { - color: #5c616c; } - -.message-dialog .dialog-action-area .button { - padding: 8px; } - -.message-dialog { - -GtkDialog-button-spacing: 0; } - .message-dialog .titlebar { - background-color: rgba(238, 232, 213, 0.95); - border-bottom: 1px solid rgba(228, 218, 188, 0.95); } - .message-dialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - .message-dialog.csd .dialog-action-area .button { - padding: 8px; - border-radius: 0; } - .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 { - border-right-style: none; - border-bottom-style: none; } - .message-dialog.csd .dialog-action-area .button:last-child { - border-bottom-right-radius: 3px; } - .message-dialog.csd .dialog-action-area .button:first-child { - border-left-style: none; - border-bottom-left-radius: 3px; } - -GtkFileChooserDialog .search-bar { - background-color: #F5F6F7; - border-color: #dcdfe3; - box-shadow: none; } - -GtkFileChooserDialog .dialog-action-box { - border-top: 1px solid #dcdfe3; } - -.sidebar, .sidebar .view { - border: none; - background-color: #fbfbfc; } - -GtkSidebarRow.list-row { - padding: 0px; } - -GtkSidebarRow .sidebar-revealer { - padding: 3px 14px 3px 12px; } - -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 .sidebar-placeholder-row { - border: solid 1px #268bd2; } - -GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { - background-color: #d9dde0; } - -GtkPlacesSidebar.sidebar .list-row.activatable { - color: rgba(92, 97, 108, 0.8); - border-width: 0; - border-style: solid; } - -.sidebar-button.button { - outline-radius: 50%; - border-radius: 50%; } - .sidebar-button.button.image-button, .header-bar .sidebar-button.button.titlebutton, - .titlebar .sidebar-button.button.titlebutton { - padding: 3px; } - .sidebar-button.button:not(:hover):not(:active) > GtkImage { - opacity: 0.5; } - -.sidebar-item { - padding: 10px 4px; } - .sidebar-item > GtkLabel { - padding-left: 6px; - padding-right: 6px; } - .sidebar-item.needs-attention > GtkLabel { - background-size: 6px 6px, 0 0; } - -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); } - -GtkPlacesView .list-row.activatable:hover, GtkPlacesView GtkPlacesSidebar.sidebar .has-open-popup, GtkPlacesSidebar.sidebar GtkPlacesView .has-open-popup { - background-color: transparent; } - -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: #dcdfe3; } - -GtkPaned.wide { - -GtkPaned-handle-size: 5; - margin: 0; } - GtkPaned.wide .pane-separator { - background-color: transparent; - border-style: none solid; - border-color: #dcdfe3; - border-width: 1px; } - GtkPaned.wide.vertical .pane-separator { - border-style: solid none; } - -GtkInfoBar { - border-style: none; } - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: #268bd2; - color: #fdf6e3; } - -.list-row:selected .button, GtkInfoBar .button { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - .list-row:selected .flat.button, .list-row:selected .sidebar-button.button, GtkInfoBar .flat.button, GtkInfoBar .sidebar-button.button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .list-row:selected .button:hover, GtkInfoBar .button:hover { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - .list-row:selected .button:active, GtkInfoBar .button:active, .list-row:selected .button:active:hover, GtkInfoBar .button:active:hover, .list-row:selected .button:checked, GtkInfoBar .button:checked { - color: #268bd2; - outline-color: rgba(38, 139, 210, 0.3); - background-color: #fdf6e3; - border-color: #fdf6e3; } - .list-row:selected .button:insensitive, GtkInfoBar .button:insensitive { - color: rgba(253, 246, 227, 0.4); - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.2); } - .list-row:selected .button:insensitive:active, GtkInfoBar .button:insensitive:active, .list-row:selected .button:insensitive:checked, GtkInfoBar .button:insensitive:checked { - color: rgba(38, 139, 210, 0.4); - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.2); } - -.tooltip { - color: #657b83; - border-radius: 2px; } - .tooltip.background { - background-color: rgba(12, 92, 112, 0.95); - background-clip: padding-box; } - .tooltip.window-frame.csd { - background-color: transparent; } - -.tooltip * { - padding: 4px; - background-color: transparent; - color: inherit; } - -:selected GtkColorSwatch { - box-shadow: none; } - :selected GtkColorSwatch.overlay, :selected GtkColorSwatch.overlay:hover { - border-color: #fdf6e3; } - -GtkColorSwatch.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -GtkColorSwatch.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch.left, GtkColorSwatch:first-child, GtkColorSwatch:first-child .overlay { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -GtkColorSwatch.right, GtkColorSwatch:last-child, GtkColorSwatch:last-child .overlay { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; } - -GtkColorSwatch:only-child, GtkColorSwatch:only-child .overlay { - border-radius: 3px; } - -GtkColorSwatch:hover, GtkColorSwatch:hover:selected { - background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.2)); } - -GtkColorEditor GtkColorSwatch { - border-radius: 3px; } - GtkColorEditor GtkColorSwatch:hover { - background-image: none; } - -GtkColorSwatch.color-dark { - color: white; - outline-color: rgba(0, 0, 0, 0.3); } - -GtkColorSwatch.color-light { - color: black; - outline-color: rgba(255, 255, 255, 0.5); } - -GtkColorSwatch.overlay, GtkColorSwatch.overlay:selected { - border: 1px solid rgba(0, 0, 0, 0.15); } - GtkColorSwatch.overlay:hover, GtkColorSwatch.overlay:selected:hover { - border-color: rgba(0, 0, 0, 0.25); } - -GtkColorSwatch#add-color-button { - border-style: solid; - border-width: 1px; - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - GtkColorSwatch#add-color-button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - GtkColorSwatch#add-color-button .overlay { - border-color: transparent; - background-color: transparent; - background-image: none; } - -GtkColorButton.button { - padding: 5px; } - GtkColorButton.button GtkColorSwatch { - border-radius: 0; } - -.content-view { - background-color: #fdf6e3; } - .content-view:hover { - -gtk-image-effect: highlight; } - -.scale-popup .button { - padding: 6px; } - .scale-popup .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - -GtkVolumeButton.button { - padding: 8px; } - -.touch-selection, -.context-menu { - font: initial; } - -.monospace { - font: Monospace; } - -.overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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; } - -.window-frame { - border-radius: 4px 4px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 8px 8px 0 rgba(0, 0, 0, 0.2); - margin: 10px; } - .window-frame:backdrop { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 5px 5px 0 rgba(0, 0, 0, 0.2); } - .window-frame.tiled { - border-radius: 0; } - .window-frame.popup { - box-shadow: none; - border-radius: 0; } - .window-frame.ssd { - border-radius: 4px 4px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); } - .window-frame.ssd.maximized { - border-radius: 0; } - .window-frame.csd.popup { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } - .window-frame.csd.message-dialog { - border-radius: 3px; } - .window-frame.solid-csd { - border-radius: 0; - margin: 1px; - background-color: rgba(238, 232, 213, 0.95); - box-shadow: none; } - -.header-bar.default-decoration .button.titlebutton, -.titlebar.default-decoration .button.titlebutton { - padding-top: 0px; - padding-bottom: 0px; } - -.header-bar .button.titlebutton, -.titlebar .button.titlebutton { - padding-left: 4px; - padding-right: 4px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(238, 232, 213, 0); } - .header-bar .button.titlebutton:not(GtkMenuButton), - .titlebar .button.titlebutton:not(GtkMenuButton) { - padding-top: 8px; - padding-bottom: 8px; } - .header-bar .button.titlebutton:hover, - .titlebar .button.titlebutton:hover { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .header-bar .button.titlebutton:active, .header-bar .button.titlebutton:checked, - .titlebar .button.titlebutton:active, - .titlebar .button.titlebutton:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - .header-bar .button.titlebutton.close, .header-bar .button.titlebutton.maximize, .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.close, - .titlebar .button.titlebutton.maximize, - .titlebar .button.titlebutton.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; } - .header-bar .button.titlebutton.close:backdrop, .header-bar .button.titlebutton.maximize:backdrop, .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - opacity: 1; } - .header-bar .button.titlebutton.close, - .titlebar .button.titlebutton.close { - background-image: -gtk-scaled(url("assets/titlebutton-close.png"), url("assets/titlebutton-close@2.png")); } - .header-bar .button.titlebutton.close:backdrop, - .titlebar .button.titlebutton.close:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop.png"), url("assets/titlebutton-close-backdrop@2.png")); } - .header-bar .button.titlebutton.close:hover, - .titlebar .button.titlebutton.close:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover.png"), url("assets/titlebutton-close-hover@2.png")); } - .header-bar .button.titlebutton.close:active, - .titlebar .button.titlebutton.close:active { - background-image: -gtk-scaled(url("assets/titlebutton-close-active.png"), url("assets/titlebutton-close-active@2.png")); } - .header-bar .button.titlebutton.maximize, - .titlebar .button.titlebutton.maximize { - background-image: -gtk-scaled(url("assets/titlebutton-maximize.png"), url("assets/titlebutton-maximize@2.png")); } - .header-bar .button.titlebutton.maximize:backdrop, - .titlebar .button.titlebutton.maximize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop.png"), url("assets/titlebutton-maximize-backdrop@2.png")); } - .header-bar .button.titlebutton.maximize:hover, - .titlebar .button.titlebutton.maximize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover.png"), url("assets/titlebutton-maximize-hover@2.png")); } - .header-bar .button.titlebutton.maximize:active, - .titlebar .button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active.png"), url("assets/titlebutton-maximize-active@2.png")); } - .header-bar .button.titlebutton.minimize, - .titlebar .button.titlebutton.minimize { - background-image: -gtk-scaled(url("assets/titlebutton-minimize.png"), url("assets/titlebutton-minimize@2.png")); } - .header-bar .button.titlebutton.minimize:backdrop, - .titlebar .button.titlebutton.minimize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop.png"), url("assets/titlebutton-minimize-backdrop@2.png")); } - .header-bar .button.titlebutton.minimize:hover, - .titlebar .button.titlebutton.minimize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover.png"), url("assets/titlebutton-minimize-hover@2.png")); } - .header-bar .button.titlebutton.minimize:active, - .titlebar .button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active.png"), url("assets/titlebutton-minimize-active@2.png")); } - -.view:selected, .view:selected:focus, .view:selected:hover, .label:selected, .label:selected:focus, .label:selected:hover, .grid-child:selected, .menuitem.button.flat:active, .menuitem.sidebar-button.button:active, .menuitem.button.flat:selected, .menuitem.sidebar-button.button:selected, .list-row:selected, .sidebar:selected, .sidebar .view:selected, GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkEntry.gb-command-bar-entry.entry.flat:selected, -GtkEntry.gb-command-bar-entry.entry.flat:focus:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active, -NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected, -NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover, -NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected, -NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover, -NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); } - -GeditNotebook.notebook tab.reorderable-page.top:active, GeditNotebook.notebook tab.reorderable-page.top.active-page, GeditNotebook.notebook tab.reorderable-page.top.active-page:hover, GeditNotebook.notebook tab.top:active, GeditNotebook.notebook tab.top.active-page, GeditNotebook.notebook tab.top.active-page:hover, -ScratchMainWindow .notebook tab.reorderable-page.top:active, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page, -ScratchMainWindow .notebook tab.reorderable-page.top.active-page:hover, -ScratchMainWindow .notebook tab.top:active, -ScratchMainWindow .notebook tab.top.active-page, -ScratchMainWindow .notebook tab.top.active-page:hover, -EphyNotebook.notebook tab.reorderable-page.top:active, -EphyNotebook.notebook tab.reorderable-page.top.active-page, -EphyNotebook.notebook tab.reorderable-page.top.active-page:hover, -EphyNotebook.notebook tab.top:active, -EphyNotebook.notebook tab.top.active-page, -EphyNotebook.notebook tab.top.active-page:hover, -MidoriNotebook .notebook tab.reorderable-page.top:active, -MidoriNotebook .notebook tab.reorderable-page.top.active-page, -MidoriNotebook .notebook tab.reorderable-page.top.active-page:hover, -MidoriNotebook .notebook tab.top:active, -MidoriNotebook .notebook tab.top.active-page, -MidoriNotebook .notebook tab.top.active-page:hover, -TerminalWindow .notebook tab.reorderable-page.top:active, -TerminalWindow .notebook tab.reorderable-page.top.active-page, -TerminalWindow .notebook tab.reorderable-page.top.active-page:hover, -TerminalWindow .notebook tab.top:active, -TerminalWindow .notebook tab.top.active-page, -TerminalWindow .notebook tab.top.active-page:hover { - box-shadow: inset 0 1px #dcdfe3, inset 0 -1px #dcdfe3, inset 1px 0 #dcdfe3, inset -1px 0 #dcdfe3; } - -TerminalWindow .notebook tab.reorderable-page.top, TerminalWindow .notebook tab.top { - padding-top: 7px; - border-top-width: 3px; } - -TerminalWindow .notebook.header.top { - box-shadow: inset 0 1px #e4dabc, inset 0 -1px #dcdfe3; } - -GtkHTML { - background-color: #fdf6e3; - color: #5c616c; } - GtkHTML:active { - color: #fdf6e3; - background-color: #268bd2; } - -SushiFontWidget { - padding: 6px 12px; } - -TerminalWindow .background { - background-color: transparent; } - -TerminalWindow .scrollbar.vertical .slider { - margin-left: 3px; } - -TerminalWindow .scrollbar.trough { - border-width: 0; } - -TerminalWindow .notebook tab .button { - color: #92959d; } - TerminalWindow .notebook tab .button:hover { - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - -TerminalWindow .notebook .active-page .button:hover, TerminalWindow .notebook .prelight-page .button:hover { - color: #ff4d4d; } - -TerminalWindow .notebook .active-page .button:active, TerminalWindow .notebook .prelight-page .button:active { - color: #268bd2; } - -EelEditableLabel.entry { - transition: none; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active { - color: #5c616c; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected { - color: #fdf6e3; } - -.nautilus-canvas-item.dim-label, .nautilus-canvas-item.label.separator, .header-bar .nautilus-canvas-item.subtitle, -.nautilus-list-dim-label { - color: #a9acb2; } - .nautilus-canvas-item.dim-label:selected, .nautilus-canvas-item.label.separator:selected, .header-bar .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, .nautilus-canvas-item.label.separator:selected:focus, .header-bar .nautilus-canvas-item.subtitle:selected:focus, - .nautilus-list-dim-label:selected, - .nautilus-list-dim-label:selected:focus { - color: #d2e1e0; } - -NautilusNotebook.notebook { - background-color: #fdf6e3; } - NautilusNotebook.notebook tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; } - -NautilusQueryEditor .search-bar.toolbar, NautilusQueryEditor .search-bar.inline-toolbar { - padding: 5px; - box-shadow: none; - background-color: #fdf6e3; } - -.nautilus-circular-button.image-button.button, .header-bar .nautilus-circular-button.button.titlebutton, -.titlebar .nautilus-circular-button.button.titlebutton { - border-radius: 50%; - outline-radius: 50%; - padding: 8px; } - -.disk-space-display { - border-style: solid; - border-width: 1px; } - .disk-space-display.unknown { - background-color: rgba(92, 97, 108, 0.5); - border-color: rgba(69, 72, 80, 0.5); } - .disk-space-display.used { - background-color: rgba(38, 139, 210, 0.8); - border-color: rgba(30, 110, 167, 0.8); } - .disk-space-display.free { - background-color: #edeef0; - border-color: #d0d5da; } - -NemoWindow .sidebar .frame { - border-width: 0; } - -NemoWindow GtkSeparator.separator.horizontal, NemoWindow .sidebar GtkSeparator.horizontal.view.separator, .sidebar NemoWindow GtkSeparator.horizontal.view.separator { - color: #dcdfe3; } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { - color: rgba(82, 93, 118, 0.8); - outline-color: rgba(82, 93, 118, 0.1); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover { - background-color: rgba(255, 255, 255, 0.9); } - NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { - color: rgba(82, 93, 118, 0.4); } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1), inset -1px 0 rgba(82, 93, 118, 0.1); } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - -NemoWindow .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - -.gedit-headerbar-paned { - color: rgba(228, 218, 188, 0.95); } - -.open-document-selector-treeview.view { - padding: 3px 6px 3px 6px; - border-color: #fdf6e3; } - .open-document-selector-treeview.view:prelight { - background-color: #f2ecdb; } - .open-document-selector-treeview.view:prelight:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.open-document-selector-name-label { - color: #5c616c; } - -.open-document-selector-path-label { - color: #adaca8; - font-size: smaller; } - .open-document-selector-path-label:selected { - color: rgba(253, 246, 227, 0.9); } - -.gedit-document-panel .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; } - .gedit-document-panel .list-row .button GtkImage { - color: inherit; } - -.gedit-document-panel .prelight-row .button { - color: #92959d; } - -.gedit-document-panel .list-row .button:hover, -.gedit-document-panel .prelight-row .button:hover { - color: #ff4d4d; } - -.gedit-document-panel .prelight-row:selected .button:hover { - color: #ff6666; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; } - .gedit-document-panel .prelight-row:selected .button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel .prelight-row .button:active { - color: #5c616c; } - -.gedit-document-panel-dragged-row { - border: 1px solid #dcdfe3; - background-color: #d9dde0; - color: #5c616c; } - -GeditStatusbar { - border-top: 1px solid #dcdfe3; - background-color: #F5F6F7; } - -GeditStatusMenuButton.button.flat, GeditStatusMenuButton.sidebar-button.button, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton.sidebar-button.button:prelight, -GeditStatusMenuButton:checked.button.flat, -GeditStatusMenuButton.sidebar-button.button:checked { - border-bottom-style: none; - border-radius: 0; } - -GeditFileBrowserWidget .toolbar, GeditFileBrowserWidget .inline-toolbar { - border-bottom: 1px solid #dcdfe3; } - -.gedit-map-frame { - border-color: rgba(0, 0, 0, 0.3); } - -.gedit-search-entry-occurrences-tag { - color: rgba(92, 97, 108, 0.6); - border: none; - margin: 2px; - padding: 2px; } - -GeditViewFrame .gedit-search-slider { - background-color: #fbfbfc; - padding: 6px; - border-color: #dcdfe3; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -GbWorkbench .floating-bar { - color: #5c616c; } - -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr).image:hover, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl).image:hover { - color: inherit; } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):hover { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):active, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):checked { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); } - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):insensitive, - GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:first-child:dir(rtl):insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr), -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):hover, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):active, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(ltr):checked { - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; } - -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl), -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):hover, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):active, -GbSearchBox.linked:not(.vertical) > GtkMenuButton.button:last-child:dir(rtl):checked { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; } - -GbPreferencesPageLanguage .entry { - border-radius: 3px 3px 0 0; } - -GbPreferencesPageLanguage .frame { - border-top-width: 0; } - -GbEditorTweakWidget .linked.vertical > .entry { - border-bottom-style: solid; } - -GbEditorTweakWidget GtkScrolledWindow { - border-top: none; } - -GbViewStack GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbViewStack.focused GtkBox.header.notebook, -#project_sidebar_header.focused { - background-color: #fdf6e3; } - -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { - border-radius: 3px 0 0 3px; } - -GbWorkspacePane GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbWorkspacePane:not(.focused) GtkBox.header.notebook { - background-color: #F5F6F7; } - -DhSidebar GtkSearchEntry.entry, -SymbolTree GtkSearchEntry.entry { - border-left: none; - border-right: none; - border-top: none; - border-radius: 0px; } - -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: #657b83; - background-image: none; - background-color: #073642; - padding: 6px 6px 6px 6px; - border: none; } - -GbTerminalView { - background-color: #fdf6e3; - color: #5c616c; } - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; } - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; } - -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; } - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid #dcdfe3; } - -GbViewStack.focused GtkBox.header.notebook { - background-color: #fdf6e3; } - GbViewStack.focused GtkBox.header.notebook .button.dim-label, GbViewStack.focused GtkBox.header.notebook .button.label.separator, GbViewStack.focused GtkBox.header.notebook .header-bar .button.subtitle, .header-bar GbViewStack.focused GtkBox.header.notebook .button.subtitle { - opacity: 1; } - -EphyWindow .floating-bar { - color: #5c616c; } - -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon { - background-color: rgba(92, 97, 108, 0.3); - border-radius: 2px; } - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: #78b9e6; } - -.documents-entry-tag { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover { - color: #fdf6e3; - background-color: #3295da; } - .documents-entry-tag:active { - color: #fdf6e3; - background-color: #2380c1; } - .toolbar .linked .documents-entry-tag.button, .inline-toolbar .linked .documents-entry-tag.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; } - .toolbar .linked .documents-entry-tag.button:hover, .inline-toolbar .linked .documents-entry-tag.button:hover { - color: rgba(253, 246, 227, 0.7); } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -TotemGrilo.vertical GdMainView.frame { - border-width: 0; } - -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { - background-color: #268bd2; } - -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; } - -.gnome-panel-menu-bar.menubar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: #657b83; - background-color: #05242c; } - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: #657b83; } - -PanelApplet .button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); - border-color: rgba(0, 0, 0, 0.17); } - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: rgba(0, 0, 0, 0.25); - border-radius: 0; - border-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -PanelApplet:hover { - color: white; } - -PanelApplet:active, -PanelApplet:hover:active { - color: #268bd2; } - -WnckPager { - color: #333e42; } - WnckPager:selected { - color: #268bd2; } - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; } - -ClockBox { - color: #657b83; } - -.xfce4-panel.panel { - background-color: rgba(5, 36, 44, 0.95); - text-shadow: none; - icon-shadow: none; } - .xfce4-panel.panel .button.flat, .xfce4-panel.panel .sidebar-button.button { - color: #657b83; - background-color: rgba(5, 36, 44, 0); - border-radius: 0; - border: none; } - .xfce4-panel.panel .button.flat:hover, .xfce4-panel.panel .sidebar-button.button:hover { - border: none; - background-color: rgba(10, 74, 90, 0.95); } - .xfce4-panel.panel .button.flat:active, .xfce4-panel.panel .sidebar-button.button:active, .xfce4-panel.panel .button.flat:checked, .xfce4-panel.panel .sidebar-button.button:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - -.floating-bar { - background-color: #268bd2; - color: #fdf6e3; } - .floating-bar.top { - border-radius: 0 0 2px 2px; } - .floating-bar.right { - border-radius: 2px 0 0 2px; } - .floating-bar.bottom { - border-radius: 2px 2px 0 0; } - .floating-bar.left { - border-radius: 0 2px 2px 0; } - .floating-bar .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - background-color: transparent; - box-shadow: none; - border: none; } - -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; } - -MarlinViewWindow *:selected, MarlinViewWindow *:selected:focus { - color: #fdf6e3; - background-color: #268bd2; - outline-color: transparent; } - -MarlinViewWindow GtkIconView.view:selected, MarlinViewWindow GtkIconView.view:selected:focus, MarlinViewWindow GtkIconView.view:selected:hover, MarlinViewWindow GtkIconView.view:selected:focus:hover { - background-color: transparent; } - -MarlinViewWindow FMListView, MarlinViewWindow FMColumnView { - outline-color: transparent; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.9)); - background-color: transparent; } - .marlin-pathbar.pathbar.image, .marlin-pathbar.pathbar.image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: #268bd2; - background-image: linear-gradient(to bottom, #268bd2); } - .marlin-pathbar.pathbar:insensitive { - color: rgba(82, 93, 118, 0.35); - background-image: linear-gradient(to bottom, rgba(253, 246, 227, 0.75)); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel .maximized { - background-color: rgba(5, 36, 44, 0.95); - box-shadow: inset 0 -1px rgba(1, 10, 12, 0.95); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - .color-light .composited-indicator { - color: rgba(0, 0, 0, 0.65); - text-shadow: 0 0 2px rgba(255, 255, 255, 0.3), 0 1px 0 rgba(255, 255, 255, 0.25); - icon-shadow: 0 0 2px rgba(255, 255, 255, 0.3), 0 1px 0 rgba(255, 255, 255, 0.25); } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - font: initial; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .sidebar { - background: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; } - WingpanelWidgetsIndicatorPopover.popover .menuitem GtkLabel, WingpanelWidgetsIndicatorPopover.popover .menuitem GtkImage { - padding: 0 3px; } - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover, WingpanelWidgetsIndicatorPopover.popover .menuitem:active { - color: #fdf6e3; - background-color: #268bd2; } - WingpanelWidgetsIndicatorPopover.popover .menuitem *:insensitive { - color: rgba(92, 97, 108, 0.55); } - -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; } - -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: #5c616c; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration.top { - border: 1px solid rgba(0, 0, 0, 0.1); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #eee8d5); - color: rgba(82, 93, 118, 0.8); - box-shadow: inset 0 1px rgba(242, 238, 224, 0.95); } - UnityDecoration.top:backdrop { - border-bottom-width: 0; - color: rgba(82, 93, 118, 0.5); } - UnityDecoration.left, UnityDecoration.right, UnityDecoration.bottom, UnityDecoration.left:backdrop, UnityDecoration.right:backdrop, UnityDecoration.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1)); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: rgba(250, 248, 242, 0.95); - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; } - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar GtkLabel { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #dcdfe3; - border-right: 1px solid #dcdfe3; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -.secondary-toolbar.toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #dcdfe3; } - .secondary-toolbar.toolbar .button, .secondary-toolbar.inline-toolbar .button { - padding: 0 3px 0 3px; } - -.bottom-toolbar.toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #dcdfe3; - background-color: #F5F6F7; } - .bottom-toolbar.toolbar .button, .bottom-toolbar.inline-toolbar .button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view { - background-color: #F5F6F7; - color: #5c616c; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:prelight { - background-color: white; } - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: #F5F6F7; - background-image: none; } - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #5c616c; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -.dynamic-notebook .notebook tab .button > GtkImage { - padding: 0; } - -GraniteWidgetsWelcome { - background-color: #fdf6e3; } - -GraniteWidgetsWelcome GtkLabel { - color: #a9acb2; - font: open sans 11; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(92, 97, 108, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #fdf6e3); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry.entry { - padding: 4px; } - -.h1 { - font: open sans 24px; } - -.h2 { - font: open sans light 18px; } - -.h3 { - font: open sans 11px; } - -.h4, -.category-label { - color: #8a8e96; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: rgba(5, 36, 44, 0.95); - color: #657b83; - font: bold; - box-shadow: inset 0 -1px rgba(1, 10, 12, 0.95); } - #panel_window .menubar { - padding-left: 5px; } - #panel_window .menubar, #panel_window .menubar > .menuitem { - background-color: transparent; - color: #657b83; - font: bold; } - #panel_window .menubar .menuitem:insensitive { - color: rgba(101, 123, 131, 0.5); } - #panel_window .menubar .menuitem:insensitive GtkLabel { - color: inherit; } - #panel_window .menubar .menu .menuitem { - font: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: #5c616c; } - -#content_frame { - padding-bottom: 14px; - background-color: #F5F6F7; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame .button { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: #fbfbfc; } - #content_frame .button:hover { - color: #5c616c; - outline-color: rgba(92, 97, 108, 0.3); - border-color: #657b83; - background-color: white; } - #content_frame .button:active, #content_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: #268bd2; - background-color: #268bd2; } - #content_frame .button:insensitive { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - #content_frame .button:insensitive > GtkLabel { - color: inherit; } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: rgba(7, 54, 66, 0.95); - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px rgba(7, 54, 66, 0.95); } - -#buttonbox_frame .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - #buttonbox_frame .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - #buttonbox_frame .button:active, #buttonbox_frame .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - #buttonbox_frame .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -#login_window #user_combobox { - color: #5c616c; - font: 13px; } - #login_window #user_combobox .menu { - font: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - outline-color: rgba(0, 128, 0, 0.3); - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font: bold; } - -.titlebar .separator, .titlebar .sidebar .view.separator, .sidebar .titlebar .view.separator { - color: rgba(228, 218, 188, 0.95); } - -NemoWindow GtkEventBox { - background-color: #F5F6F7; } - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; } - -GtkFileChooserDialog.csd.background, GtkFileChooserDialog .list.sidebar, -NautilusWindow.csd.background, -NautilusWindow .list.sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar, -NautilusWindow GtkPlacesSidebar.sidebar { - background-color: rgba(7, 54, 66, 0.95); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-placeholder-row.list-row.activatable { - border: 1px solid #268bd2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-new-bookmark-row { - background-color: rgba(12, 92, 112, 0.95); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable { - border: none; - color: #657b83; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable .sidebar-icon { - color: rgba(101, 123, 131, 0.6); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:hover, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:hover, - NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup { - background-color: rgba(101, 123, 131, 0.15); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, GtkFileChooserDialog GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:selected:hover .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:selected .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .list-row.activatable:active:hover .sidebar-icon, - NautilusWindow GtkPlacesSidebar.sidebar .has-open-popup:active .sidebar-icon { - color: inherit; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button { - color: #657b83; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button:hover, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button:active, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button:active { - background-clip: padding-box; - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .sidebar-button.button:not(:hover):not(:active) > GtkImage, - NautilusWindow GtkPlacesSidebar.sidebar .sidebar-button.button:not(:hover):not(:active) > GtkImage { - opacity: 0.5; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .separator, GtkFileChooserDialog GtkPlacesSidebar.sidebar .view.separator, - NautilusWindow GtkPlacesSidebar.sidebar .separator, - NautilusWindow GtkPlacesSidebar.sidebar .view.separator { - color: transparent; } - -GtkFileChooserDialog.maximized GtkPlacesSidebar.sidebar, -NautilusWindow.maximized GtkPlacesSidebar.sidebar { - background-color: #073642; } - -NemoWindow.csd.background, -NemoWindow .source-list, NemoWindow .source-list.view, NemoWindow .source-list.view:prelight, -MarlinViewWindow.csd.background, -MarlinViewWindow .source-list, -MarlinViewWindow .source-list.view, -MarlinViewWindow .source-list.view:prelight { - background-color: transparent; } - -NemoWindow .sidebar, NemoWindow .source-list.sidebar.view, -MarlinViewWindow .sidebar, -MarlinViewWindow .source-list.sidebar.view { - background-color: rgba(7, 54, 66, 0.95); } - NemoWindow .sidebar .view, NemoWindow .sidebar row, NemoWindow .source-list.sidebar.view .view, NemoWindow .source-list.sidebar.view row, - MarlinViewWindow .sidebar .view, - MarlinViewWindow .sidebar row, - MarlinViewWindow .source-list.sidebar.view .view, - MarlinViewWindow .source-list.sidebar.view row { - background-color: transparent; - color: #657b83; } - NemoWindow .sidebar .view.image, NemoWindow .sidebar row.image, NemoWindow .source-list.sidebar.view .view.image, NemoWindow .source-list.sidebar.view row.image, - MarlinViewWindow .sidebar .view.image, - MarlinViewWindow .sidebar row.image, - MarlinViewWindow .source-list.sidebar.view .view.image, - MarlinViewWindow .source-list.sidebar.view row.image { - color: rgba(101, 123, 131, 0.7); } - NemoWindow .sidebar .view.cell:selected, NemoWindow .sidebar row.cell:selected, NemoWindow .source-list.sidebar.view .view.cell:selected, NemoWindow .source-list.sidebar.view row.cell:selected, - MarlinViewWindow .sidebar .view.cell:selected, - MarlinViewWindow .sidebar row.cell:selected, - MarlinViewWindow .source-list.sidebar.view .view.cell:selected, - MarlinViewWindow .source-list.sidebar.view row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - NemoWindow .sidebar.frame, NemoWindow .source-list.sidebar.view.frame, - MarlinViewWindow .sidebar.frame, - MarlinViewWindow .source-list.sidebar.view.frame { - color: #657b83; } - NemoWindow .sidebar .separator, NemoWindow .sidebar .view.separator, NemoWindow .source-list.sidebar.view .separator, - MarlinViewWindow .sidebar .separator, - MarlinViewWindow .sidebar .sidebar.separator, - MarlinViewWindow .sidebar .view.separator, - MarlinViewWindow .source-list.sidebar.view .separator { - color: transparent; } - -NemoWindow.maximized .sidebar, -MarlinViewWindow.maximized .sidebar { - background-color: #073642; } - -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { - background-color: rgba(7, 54, 66, 0.95); } - -NautilusWindow NautilusWindowSlot { - background-color: #fdf6e3; } - -NautilusDesktopWindow NautilusWindowSlot { - background-color: transparent; } - -GtkFileChooserDialog.background.csd, GtkFileChooserDialog.background { - background-color: rgba(7, 54, 66, 0.95); } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar { - background-color: transparent; } - -GtkFileChooserDialog GtkPaned > .vertical > .horizontal { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-action-box { - background-color: #F5F6F7; } - -GtkFileChooserDialog .dialog-vbox > .frame { - color: #657b83; - border-color: transparent; } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { - background-color: transparent; - border-color: rgba(4, 28, 34, 0.95); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkLabel, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame GtkComboBox, -GtkFileChooserDialog .dialog-vbox > .frame GtkLabel, -GtkFileChooserDialog .dialog-vbox > .frame GtkComboBox { - color: #657b83; } - -FeedReaderreaderUI.background.csd > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator, -FeedReaderreaderUI.background.csd > .titlebar .pane-separator:backdrop, -FeedReaderreaderUI.background.csd.maximized > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd > .titlebar .pane-separator, -GeditWindow.background.csd.maximized > .titlebar .pane-separator, -GeditWindow.background.csd > .titlebar .pane-separator:backdrop, -GeditWindow.background.csd.maximized > .titlebar .pane-separator:backdrop { - background-color: rgba(228, 218, 188, 0.95); } - -FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: rgba(238, 232, 213, 0.95); } - FeedReaderreaderUI.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: rgba(242, 238, 224, 0.95); } - -FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar, -GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: #eee8d5; } - FeedReaderreaderUI.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop, - GeditWindow.background.csd.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar:backdrop { - background-color: #f2eee0; } - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; } - -GeditWindow.background.csd { - background-color: transparent; } - -GeditWindow.background .gedit-side-panel-paned .pane-separator { - background-color: rgba(7, 54, 66, 0.95); } - -GeditWindow.background .gedit-bottom-panel-paned .pane-separator { - background-color: #dcdfe3; } - -.gedit-bottom-panel-paned { - background-color: #fdf6e3; } - -.gedit-document-panel { - background-color: rgba(7, 54, 66, 0.95); } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel .list-row { - color: #657b83; } - .gedit-document-panel .list-row { - background-color: rgba(101, 123, 131, 0); - border: solid rgba(101, 123, 131, 0); - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:hover { - border: solid rgba(101, 123, 131, 0.15); - border-width: 3px 2px 3px 2px; - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel .list-row:active { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .list-row:active .button { - color: #fdf6e3; } - .gedit-document-panel .list-row:selected, .gedit-document-panel .list-row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; - border: solid #268bd2; - border-width: 3px 2px 3px 2px; } - .gedit-document-panel .prelight-row .button:active { - color: #657b83; } - -GeditFileBrowserWidget { - background-color: rgba(7, 54, 66, 0.95); } - .maximized GeditFileBrowserWidget { - background-color: #073642; } - GeditFileBrowserWidget .horizontal { - background-color: transparent; - border-color: rgba(4, 28, 34, 0.95); } - GeditFileBrowserWidget .horizontal GtkComboBox { - color: #657b83; } - -GeditWindow.background.csd GeditFileBrowserView.view { - background-color: transparent; - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander { - color: #657b83; } - GeditWindow.background.csd GeditFileBrowserView.view.expander:hover { - color: #268bd2; } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button, -GtkFileChooserDialog .dialog-vbox > .frame .button, GeditFileBrowserWidget .horizontal .button { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:hover, - GtkFileChooserDialog .dialog-vbox > .frame .button:hover, GeditFileBrowserWidget .horizontal .button:hover { - color: #657b83; - outline-color: rgba(101, 123, 131, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:active, - GtkFileChooserDialog .dialog-vbox > .frame .button:active, GeditFileBrowserWidget .horizontal .button:active, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:checked, - GtkFileChooserDialog .dialog-vbox > .frame .button:checked, GeditFileBrowserWidget .horizontal .button:checked { - color: #fdf6e3; - outline-color: rgba(253, 246, 227, 0.3); - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .button:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .button:insensitive, GeditFileBrowserWidget .horizontal .button:insensitive { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry, -GtkFileChooserDialog .dialog-vbox > .frame .entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.35)); - background-color: transparent; } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry, GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .image.entry:hover, - GtkFileChooserDialog .dialog-vbox > .frame .image.entry:hover { - color: inherit; } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:focus, - GtkFileChooserDialog .dialog-vbox > .frame .entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-image: linear-gradient(to bottom, #268bd2); } - GtkFileChooserDialog GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame .entry:insensitive, - GtkFileChooserDialog .dialog-vbox > .frame .entry:insensitive { - color: rgba(101, 123, 131, 0.55); - background-image: linear-gradient(to bottom, rgba(18, 137, 167, 0.2)); } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -NautilusWindow GtkPlacesSidebar.sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, NemoWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, -MarlinViewWindow .sidebar .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider, GeditFileBrowserWidget .overlay-indicator.scrollbar:not(.dragging):not(.hovering) .slider { - background-color: #8da0a7; - border: 1px solid rgba(0, 0, 0, 0.3); } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .trough, -NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .trough, NemoWindow .sidebar .scrollbar .trough, NemoWindow .source-list.sidebar.view .scrollbar .trough, -MarlinViewWindow .sidebar .scrollbar .trough, -MarlinViewWindow .source-list.sidebar.view .scrollbar .trough, GeditFileBrowserWidget .scrollbar .trough { - background-color: rgba(0, 0, 0, 0.2); - border: none; } - -GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider, -NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider, NemoWindow .sidebar .scrollbar .slider, NemoWindow .source-list.sidebar.view .scrollbar .slider, -MarlinViewWindow .sidebar .scrollbar .slider, -MarlinViewWindow .source-list.sidebar.view .scrollbar .slider, GeditFileBrowserWidget .scrollbar .slider { - background-color: rgba(141, 160, 167, 0.7); } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:hover, - NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:hover, NemoWindow .sidebar .scrollbar .slider:hover, - MarlinViewWindow .sidebar .scrollbar .slider:hover, GeditFileBrowserWidget .scrollbar .slider:hover { - background-color: #9cacb2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, - NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:prelight:active, NemoWindow .sidebar .scrollbar .slider:prelight:active, - MarlinViewWindow .sidebar .scrollbar .slider:prelight:active, GeditFileBrowserWidget .scrollbar .slider:prelight:active { - background-color: #268bd2; } - GtkFileChooserDialog GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, - NautilusWindow GtkPlacesSidebar.sidebar .scrollbar .slider:insensitive, NemoWindow .sidebar .scrollbar .slider:insensitive, - MarlinViewWindow .sidebar .scrollbar .slider:insensitive, GeditFileBrowserWidget .scrollbar .slider:insensitive { - background-color: transparent; } - -@define-color theme_fg_color #5c616c; -@define-color theme_text_color #5c616c; -@define-color theme_bg_color #F5F6F7; -@define-color theme_base_color #fdf6e3; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #5c616c; -@define-color text_color #5c616c; -@define-color bg_color #F5F6F7; -@define-color base_color #fdf6e3; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #faf6eb; -@define-color insensitive_fg_color alpha(#5c616c, 0.5); -@define-color insensitive_base_color #fdf6e3; -@define-color theme_unfocused_fg_color #5c616c; -@define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #F5F6F7; -@define-color theme_unfocused_base_color #fdf6e3; -@define-color borders #dcdfe3; -@define-color unfocused_borders #dcdfe3; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #1e6ea7; -@define-color content_view_bg #fdf6e3; -@define-color wm_title alpha(#525d76, 0.8); -@define-color wm_unfocused_title alpha(#525d76, 0.5); -@define-color wm_bg #eee8d5; -@define-color wm_bg_unfocused #f2eee0; -@define-color wm_highlight #f2eee0; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #f46067; -@define-color wm_button_close_hover_bg #f68086; -@define-color wm_button_close_active_bg #f13039; -@define-color wm_icon_close_bg #657b83; -@define-color wm_button_hover_bg #fdfdfd; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #D1D3DA; -@define-color wm_icon_bg #90949E; -@define-color wm_icon_unfocused_bg #B6B8C0; -@define-color wm_icon_hover_bg #7A7F8B; -@define-color wm_icon_active_bg #fdf6e3; diff --git a/common/gtk-3.0/3.18/render-assets.sh b/common/gtk-3.0/3.18/render-assets.sh deleted file mode 100755 index d31fbb8..0000000 --- a/common/gtk-3.0/3.18/render-assets.sh +++ /dev/null @@ -1,34 +0,0 @@ -#! /bin/bash - -INKSCAPE="/usr/bin/inkscape" -OPTIPNG="/usr/bin/optipng" - -SRC_FILE="assets.svg" -ASSETS_DIR="assets" -INDEX="assets.txt" - -for i in `cat $INDEX` -do -if [ -f $ASSETS_DIR/$i.png ]; then - echo $ASSETS_DIR/$i.png exists. -else - echo - echo Rendering $ASSETS_DIR/$i.png - $INKSCAPE --export-id=$i \ - --export-id-only \ - --export-png=$ASSETS_DIR/$i.png $SRC_FILE >/dev/null \ - && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i.png -fi -if [ -f $ASSETS_DIR/$i@2.png ]; then - echo $ASSETS_DIR/$i@2.png exists. -else - echo - echo Rendering $ASSETS_DIR/$i@2.png - $INKSCAPE --export-id=$i \ - --export-dpi=180 \ - --export-id-only \ - --export-png=$ASSETS_DIR/$i@2.png $SRC_FILE >/dev/null \ - && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i@2.png -fi -done -exit 0 diff --git a/common/gtk-3.0/3.18/sass/_applications.scss b/common/gtk-3.0/3.18/sass/_applications.scss deleted file mode 100644 index ed61afe..0000000 --- a/common/gtk-3.0/3.18/sass/_applications.scss +++ /dev/null @@ -1,807 +0,0 @@ -// -// Tab overrides -// -GeditNotebook.notebook, -ScratchMainWindow .notebook, -EphyNotebook.notebook, -MidoriNotebook .notebook, -TerminalWindow .notebook { - - tab.reorderable-page.top, tab.top { - &:active, &.active-page, &.active-page:hover { - box-shadow: inset 0 1px $borders_color, - inset 0 -1px $borders_color, - inset 1px 0 $borders_color, - inset -1px 0 $borders_color; - } - } -} - -TerminalWindow .notebook { - - tab.reorderable-page.top, tab.top { - padding-top: 7px; - border-top-width: 3px; - } - - &.header.top { - box-shadow: inset 0 1px opacify($header_border, 1), - inset 0 -1px $borders_color; - } -} - -// -// Evolution -// -// needed for webkit/GtkStyle/Evolution compatibility -GtkHTML { - background-color: $base_color; - color: $text_color; - - &:active { - color: $selected_fg_color; - background-color: $selected_bg_color; - } -} - -// -// Sushi -// -// used by gnome-font-viewer and sushi -SushiFontWidget { - padding: 6px 12px; -} - -// -// GNOME Terminal -// -TerminalWindow { - .background { - background-color: transparent; - } - - .scrollbar { - &.vertical .slider { margin-left: 3px; } - &.trough { border-width: 0; } - } - - .notebook { - tab .button { - color: mix($bg_color, $fg_color, 35%); - - &:hover { - color: $fg_color; - border-color: $button_border; - background-color: $button_bg; - } - } - .active-page, .prelight-page { - .button { - @extend %undecorated_button; - &:hover { color: lighten(red, 15%); @extend %undecorated_button;} - &:active { color: $selected_bg_color; @extend %undecorated_button;} - } - } - } -} - -// -// Nautilus -// -EelEditableLabel.entry { transition: none; } // Workaround for invisible text in rename entry - -.nautilus-canvas-item { - border-radius: 2px; -} - -.nautilus-desktop.nautilus-canvas-item { - color: white; - text-shadow: 1px 1px transparentize(black, 0.4); - - &:active { color: $fg_color; } - &:selected { color: $selected_fg_color; } -} - -.nautilus-canvas-item.dim-label, -.nautilus-list-dim-label { - color: mix($fg_color, $bg_color, 50%); - - &:selected, &:selected:focus { color: mix($selected_fg_color, $selected_bg_color, 80%); } -} - -NautilusNotebook.notebook { - background-color: $base_color; - - tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - } -} - -NautilusQueryEditor .search-bar.toolbar { - padding: 5px; - box-shadow: none; - background-color: $base_color; -} - -.nautilus-circular-button.image-button.button { - border-radius: 50%; - outline-radius: 50%; - padding: 8px; -} - -$disk_space_unknown: transparentize($fg_color, 0.5); -$disk_space_used: transparentize($selected_bg_color, 0.2); -$disk_space_free: darken($bg_color, 3%); - -.disk-space-display { - border-style: solid; - border-width: 1px; - - &.unknown { - background-color: $disk_space_unknown; - border-color: darken($disk_space_unknown, 10%); - } - &.used { - background-color: $disk_space_used; - border-color: darken($disk_space_used, 10%); - } - &.free { - background-color: $disk_space_free; - border-color: darken($disk_space_free, 10%); - } -} - -// -// Nemo -// -.nemo-desktop.nemo-canvas-item { @extend .nautilus-desktop.nautilus-canvas-item; } - -NemoWindow { - - .sidebar .frame { border-width: 0; } - - GtkSeparator.separator.horizontal { color: $borders_color; } - - .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button { - - @include button(header-hover); - - &:hover { background-color: lighten($header_button_bg, 15%); } - &:active, &:checked { @include button(header-active); } - &:insensitive { color: transparentize($header_fg, 0.4); } - } - - .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button, - .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:hover, - .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:active, - .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:checked, - .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) > .button:insensitive { - @extend %linked; - } - - .primary-toolbar NemoPathBar.linked:not(.vertical):not(.path-bar) { - - $_linked_separator_color: $header_button_border; - - > .button:hover:not(:checked):not(:active):not(:only-child) { - - &:hover { - box-shadow: inset 1px 0 $_linked_separator_color, - inset -1px 0 $_linked_separator_color; - } - &:first-child:hover { box-shadow: inset -1px 0 $_linked_separator_color; } - &:last-child:hover { box-shadow: inset 1px 0 $_linked_separator_color; } - } - } -} - -// -// Gedit -// -.gedit-headerbar-paned { color: $header_border; } - -.open-document-selector-treeview.view { - padding: 3px 6px 3px 6px; - border-color: $base_color; // disable borders, making them transparent doesn't work for some reason - - &:prelight { - background-color: mix($fg_color, $base_color, 7%); - - &:selected { - color: $selected_fg_color; - background-color: $selected_bg_color; - } - } -} - -.open-document-selector-name-label { - color: $fg_color; -} - -.open-document-selector-path-label { - color: mix($fg_color, $base_color, 50%); - font-size: smaller; - - &:selected { color: transparentize($selected_fg_color, 0.1); } -} - -.gedit-document-panel { - - .list-row .button { - color: transparent; - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - padding: 4px; - & GtkImage { color: inherit; } - } - .prelight-row .button { - color: mix($bg_color, $fg_color, 35%); - } - .list-row .button:hover, - .prelight-row .button:hover { - color: lighten(red, 15%); - } - .prelight-row:selected .button:hover { - color: lighten(red, 20%); - background-image: none; - background-color: transparent; - border: none; - box-shadow: none; - &:active { color: $selected_fg_color; } - } - .prelight-row .button:active { - color: $fg_color; - } -} - -.gedit-document-panel-dragged-row { - border: 1px solid $borders_color; - background-color: darken($bg_color, 10%); - color: $fg_color; -} - -//.gedit-document-panel-placeholder-row { -//} - -GeditStatusbar { - border-top: 1px solid $borders_color; - background-color: $bg_color; -} - -GeditStatusMenuButton.button.flat, -GeditStatusMenuButton:prelight.button.flat, -GeditStatusMenuButton:checked.button.flat { - border-bottom-style: none; - border-radius: 0; -} - -GeditViewFrame .gedit-search-slider { @extend %search_slider } - -GeditFileBrowserWidget .toolbar { - border-bottom: 1px solid $borders_color; -} - -.gedit-map-frame { - @if $variant=='light' { border-color: transparentize(black, 0.7); } -} - -.gedit-search-entry-occurrences-tag { - color: transparentize($fg_color, 0.4); - border: none; - margin: 2px; - padding: 2px; -} - -%search_slider { - background-color: lighten($bg_color, 2%); - padding: 6px; - border-color: $borders_color; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; -} - -// -// Gnome Builder -// -GbWorkbench .floating-bar { color: $fg_color; } - -GbSearchBox.linked:not(.vertical) { - - > GtkMenuButton.button:last-child:dir(ltr), - > GtkMenuButton.button:first-child:dir(rtl) { - padding: 0 10px; - - @include entry(header-normal); - - &:hover { @include entry(header-focus); } - &:active, &:checked { @include entry(header-focus); } - &:insensitive { @include entry(header-insensitive); } - } - - > GtkMenuButton.button:last-child:dir(ltr), - > GtkMenuButton.button:last-child:dir(ltr):hover, - > GtkMenuButton.button:last-child:dir(ltr):active, - > GtkMenuButton.button:last-child:dir(ltr):checked { - border-left-style: none; - border-radius: 0 3px 3px 0; - outline-radius: 0 1px 1px 0; - } - - > GtkMenuButton.button:last-child:dir(rtl), - > GtkMenuButton.button:last-child:dir(rtl):hover, - > GtkMenuButton.button:last-child:dir(rtl):active, - > GtkMenuButton.button:last-child:dir(rtl):checked { - border-right-style: none; - border-radius: 3px 0 0 3px; - outline-radius: 1px 0 0 1px; - } -} - -// Preference page language style -GbPreferencesPageLanguage { - .entry { border-radius: 3px 3px 0 0; } - .frame { border-top-width: 0 } -} - -// Editor tweak widget -GbEditorTweakWidget { - .linked.vertical > .entry { border-bottom-style: solid; } - GtkScrolledWindow { border-top: none; } -} - -// View stack styling -GbViewStack GtkBox.header.notebook { - border-bottom: 1px solid $borders_color; -} - -GbViewStack.focused GtkBox.header.notebook, -#project_sidebar_header.focused { - background-color: $base_color; -} - -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid $borders_color; -} - -GbNewProjectDialog GtkFileChooserButton.linked-on-right .button { - border-radius: 3px 0 0 3px; -} - -// Workspace pane header styling -GbWorkspacePane GtkBox.header.notebook { - border-bottom: 1px solid $borders_color; -} - -GbWorkspacePane:not(.focused) GtkBox.header.notebook { - background-color: $bg_color; -} - -// Adjust devehlp and symbol panel styling -DhSidebar GtkSearchEntry.entry, -SymbolTree GtkSearchEntry.entry { - border-left: none; - border-right: none; - border-top: none; - border-radius: 0px; -} - -// Command Bar styling -GtkEntry.gb-command-bar-entry.entry.flat, -GtkEntry.gb-command-bar-entry.entry.flat:focus { - font-family: Monospace; - color: $osd_fg_color; - background-image: none; - background-color: opacify($osd_bg_color, 1); - padding: 6px 6px 6px 6px; - border: none; - - &:selected, - &:selected:focus { - @extend %selected_items; - } -} - -GbTerminalView { - background-color: $base_color; - color: $fg_color; -} - -GbSourceStyleSchemeWidget GtkSourceView { - font-family: Monospace; -} - -GtkScrolledWindow.gb-linked-scroller { - border-top: none; -} - -// Disable various animatinos that are enabled by default and really annoying -// to the overall flow of Builder. -GbSearchDisplayGroup GtkListBox .list-row, GbDocumentStack .button { - transition: none; -} - -GbViewStack GtkBox.header.notebook, -GbEditorWorkspace > GtkPaned > GtkBox > GtkBox.header.notebook { - border-bottom: 1px solid $borders_color; -} - -GbViewStack.focused GtkBox.header.notebook { - background-color: $base_color; - - .button.dim-label { opacity: 1; } -} - -// -// Epiphany -// -EphyWindow .floating-bar { // Epiphany overrides the floating-bar style, so reset it - color: $fg_color; -} - -// -// Gnome Documents -// -.documents-load-more.button { - border-width: 1px 0 0; - border-radius: 0; -} - -.documents-icon-bg { - background-color: $selected_bg_color; - color: $selected_fg_color; - border-radius: 2px; -} - -.documents-collection-icon { - background-color: transparentize($fg_color, 0.7); - border-radius: 2px; -} - -.documents-favorite.button:active, -.documents-favorite.button:active:hover { - color: lighten($selected_bg_color, 20%); -} - -.documents-entry-tag { - background-color: $selected_bg_color; - color: $selected_fg_color; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; - - &:hover { - color: $selected_fg_color; - background-color: lighten($selected_bg_color, 4%); - } - &:active { - color: $selected_fg_color; - background-color: darken($selected_bg_color, 4%); - } - - .toolbar .linked &.button { - background: none; - border: none; - box-shadow: none; - icon-shadow: none; - - &:hover { color: transparentize($selected_fg_color, 0.3) } - } -} - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; -} - -// -// Totem -// -TotemGrilo.vertical GdMainView.frame { - border-width: 0; -} - -// -// Synapse -// -SynapseGuiSelectionContainer *:selected, -SynapseGuiViewVirgilio *:selected { background-color: $selected_bg_color; } - -// -// Transmission -// -.tr-workarea .undershoot, -.tr-workarea .overshoot { - border-color: transparent; // Remove black border on over- and undershoot -} - -// -// Fallback Mode/Budgie Panel -// -.gnome-panel-menu-bar.menubar, -PanelApplet > GtkMenuBar.menubar, -PanelToplevel, -PanelWidget, -PanelAppletFrame, -PanelApplet { - color: $panel_fg; - background-color: opacify($panel_bg, 1); -} - -PanelApplet .button, PanelApplet .button:backdrop { - padding: 4px; - border: 2px solid transparent; - border-radius: 0; - background-image: none; - background-color: transparent; - color: $panel_fg; -} - -PanelApplet .button:hover { - color: lighten($panel_fg, 10%); - background-color: transparentize(black, 0.83); - border-color: transparentize(black, 0.83); -} - -PanelApplet .button:active, PanelApplet .button:active:backdrop, -PanelApplet .button:checked, PanelApplet .button:checked:backdrop { - background-clip: padding-box; - color: white; - background-color: transparentize(black, 0.75); - border-radius: 0; - border-color: transparentize(black, 0.75); - box-shadow: inset 0 -2px $selected_bg_color; -} - -PanelApplet:hover { - color: white; -} - -PanelApplet:active, -PanelApplet:hover:active { - color: $selected_bg_color; -} - -WnckPager { - color: mix($panel_fg, black, 50%); - &:selected { color: $selected_bg_color } -} - -NaTrayApplet { - -NaTrayApplet-icon-padding: 12; - -NaTrayApplet-icon-size: 16; -} - -ClockBox { - color: $panel_fg; -} - -// Xfce Panel -.xfce4-panel.panel { - background-color: $panel_bg; - - text-shadow: none; - icon-shadow: none; - - .button.flat { - color: $panel_fg; - background-color: transparentize($panel_bg, 1); - border-radius: 0; - border: none; - - &:hover { - border: none; - background-color: lighten($panel_bg, 10%); - } - &:active, &:checked { - color: $selected_fg_color; - border: none; - background-color: $selected_bg_color; - } - } -} - -// -// Floating Bar -// -.floating-bar { - background-color: $selected_bg_color; - color: $selected_fg_color; - - &.top { border-radius: 0 0 2px 2px; } - &.right { border-radius: 2px 0 0 2px; } - &.bottom { border-radius: 2px 2px 0 0; } - &.left { border-radius: 0 2px 2px 0; } - - .button { - -GtkButton-image-spacing: 0; - -GtkButton-inner-border: 0; - - background-color: transparent; - box-shadow: none; - border: none; - } -} - -// Elementary Apps - -// -// Birdie -// -BirdieWidgetsTweetList * { - background-image: none; - background-color: transparent; -} - -// -// Marlin / Pantheon Files -// -MarlinViewWindow { - - *:selected, *:selected:focus { - color: $selected_fg_color; - background-color: $selected_bg_color; - outline-color: transparent; - } - GtkIconView.view:selected { - &, &:focus, &:hover, &:focus:hover { background-color: transparent; } - } - FMListView, FMColumnView { outline-color: transparent; } -} - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - - @include entry(header-normal); - - &:focus { @include entry(header-focus) } - - &:insensitive { @include entry(header-insensitive) } - - &:active, &:checked { - color: $selected_bg_color; - } -} - -// -// Gala -// -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white); - background-color: transparent; - - .title, .label { - color: #5c616c; - } -} - -// -// Wingpanel -// -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px transparentize(black, 0.4); - icon-shadow: 0 1px 2px transparentize(black, 0.4); - - .maximized { - background-color: $panel_bg; - box-shadow: inset 0 -1px darken($panel_bg, 7%); - } - - &-shadow { - background-image: none; - background-color: transparent; - } - .menu { - box-shadow: none; - - .menuitem { - font-weight: normal; - text-shadow: none; - icon-shadow: none; - } - - .window-frame.menu.csd, - .window-frame.popup.csd { - box-shadow: 0 0 0 1px transparentize(black, 0.8), - 0 10px 20px transparentize(black, 0.81), - 0 6px 6px transparentize(black, 0.77); - } - } - .menubar > .menuitem { - padding: 3px 6px; - &:hover { background-color: transparent; } - } - .window-frame.menu.csd, - .window-frame.popup.csd { box-shadow: none; } -} - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px transparentize(black, 0.4); - icon-shadow: 0 1px 2px transparentize(black, 0.4); - - > GtkWidget > GtkWidget:first-child { padding: 0 2px; } - - .menuitem:active, .menuitem:prelight { - border-style: none; - background-image: none; - box-shadow: none; - } - > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; - } - - .color-light & { - color: transparentize(black, 0.35); - - text-shadow: 0 0 2px transparentize(white, 0.7), 0 1px 0 transparentize(white, 0.75); - icon-shadow: 0 0 2px transparentize(white, 0.7), 0 1px 0 transparentize(white, 0.75); - } -} - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; -} - -.panel .menu .spinner, -.menu .spinner { opacity: 1 } // Fixes sound indicator buttons - -// -// Wingpanel Popover -// -WingpanelWidgetsIndicatorPopover.popover { - padding: 0; - - font: initial; - text-shadow: none; - icon-shadow: none; - - .sidebar { background: none; } - - .menuitem { - padding: 5px; - outline-color: transparent; - text-shadow: none; - icon-shadow: none; - - GtkLabel, GtkImage { padding: 0 3px; } - - &:hover, &:active { - color: $selected_fg_color; - background-color: $selected_bg_color; - } - *:insensitive { color: $insensitive_fg_color; } - } -} - -// -// Pantheon Terminal -// -PantheonTerminalPantheonTerminalWindow.background { - background-color: transparent; -} - -// -// Switchboard -// -SwitchboardCategoryView .view:selected, -SwitchboardCategoryView .view:selected:focus { - color: $fg_color; -} diff --git a/common/gtk-3.0/3.18/sass/_colors-public.scss b/common/gtk-3.0/3.18/sass/_colors-public.scss deleted file mode 100644 index 7d0abba..0000000 --- a/common/gtk-3.0/3.18/sass/_colors-public.scss +++ /dev/null @@ -1,67 +0,0 @@ -//apps rely on some named colors to be exported - -// Sass thinks we're using the colors in the variables as strings and may shoot -// warning, it's innocuous and can be defeated by using "" + $var -@define-color theme_fg_color #{"" + $fg_color}; -@define-color theme_text_color #{"" + $text_color}; -@define-color theme_bg_color #{"" + $bg_color}; -@define-color theme_base_color #{"" + $base_color}; -@define-color theme_selected_bg_color #{"" + $selected_bg_color}; -@define-color theme_selected_fg_color #{"" + $selected_fg_color}; -@define-color fg_color #{"" + $fg_color}; -@define-color text_color #{"" + $text_color}; -@define-color bg_color #{"" + $bg_color}; -@define-color base_color #{"" + $base_color}; -@define-color selected_bg_color #{"" + $selected_bg_color}; -@define-color selected_fg_color #{"" + $selected_fg_color}; -@define-color insensitive_bg_color #{"" + $insensitive_bg_color}; -@define-color insensitive_fg_color alpha(#{"" + opacify($insensitive_fg_color, 1)}, 0.5); -@define-color insensitive_base_color #{"" + $base_color}; -@define-color theme_unfocused_fg_color #{"" + $fg_color}; -@define-color theme_unfocused_text_color #{"" + $text_color}; -@define-color theme_unfocused_bg_color #{"" + $bg_color}; -@define-color theme_unfocused_base_color #{"" + $base_color}; -@define-color borders #{"" + $borders_color}; -@define-color unfocused_borders #{"" + $borders_color}; - -@define-color warning_color #{"" + $warning_color}; -@define-color error_color #{"" + $error_color}; -@define-color success_color #{"" + $success_color}; -@define-color placeholder_text_color #{#A8A8A8}; -@define-color link_color #{"" + $link_color}; - -@define-color content_view_bg #{"" + $base_color}; - -//WM -$wm_highlight: lighten(opacify($header_bg, 1), 3%); -$wm_bg_unfocused: opacify($header_bg_backdrop, 1); - -@define-color wm_title alpha(#{"" + opacify($header_fg, 1)}, 0.8); -@define-color wm_unfocused_title alpha(#{"" + opacify($header_fg, 1)}, 0.5); - -@define-color wm_bg #{"" + opacify($header_bg, 1)}; -@define-color wm_bg_unfocused #{"" + $wm_bg_unfocused}; - -@define-color wm_highlight #{"" + $wm_highlight}; -@define-color wm_shadow alpha(#{black}, 0.35); - -//WM Buttons - -// Close -@define-color wm_button_close_bg #{"" + $wm_button_close_bg}; -@define-color wm_button_close_hover_bg #{"" + $wm_button_close_hover_bg}; -@define-color wm_button_close_active_bg #{"" + $wm_button_close_active_bg}; - -@define-color wm_icon_close_bg #{"" + $wm_icon_close_bg}; - -// Minimize, Maximize -@define-color wm_button_hover_bg #{"" + $wm_button_hover_bg}; -@define-color wm_button_active_bg #{"" + $wm_button_active_bg}; - -@define-color wm_button_hover_border #{"" + $wm_button_hover_border}; - -@define-color wm_icon_bg #{"" + $wm_icon_bg}; -@define-color wm_icon_unfocused_bg #{"" + $wm_icon_unfocused_bg}; -@define-color wm_icon_hover_bg #{"" + $wm_icon_hover_bg}; -@define-color wm_icon_active_bg #{"" + $wm_icon_active_bg}; - diff --git a/common/gtk-3.0/3.18/sass/_colors.scss b/common/gtk-3.0/3.18/sass/_colors.scss deleted file mode 100644 index fac334a..0000000 --- a/common/gtk-3.0/3.18/sass/_colors.scss +++ /dev/null @@ -1,101 +0,0 @@ -// When color definition differs for dark and light variant, -// it gets @if ed depending on $variant - - -$base_color: if($variant =='light', #fdf6e3, #073642); -$text_color: if($variant == 'light', #5c616c, #657b83); -$bg_color: if($variant =='light', #F5F6F7, #002b36); -$fg_color: if($variant =='light', #5c616c, #657b83); - -$selected_fg_color: #fdf6e3; -$selected_bg_color: #268bd2; -$selected_borders_color: darken($selected_bg_color, 20%); -$borders_color: if($variant =='light', darken($bg_color,9%), darken($bg_color,6%)); - -$link_color: if($variant == 'light', darken($selected_bg_color,10%), - lighten($selected_bg_color,20%)); -$link_visited_color: if($variant == 'light', darken($selected_bg_color,20%), - lighten($selected_bg_color,10%)); - -$selection_mode_bg: if($transparency == 'true', transparentize($selected_bg_color, 0.05), $selected_bg_color); -$selection_mode_fg: $selected_fg_color; -$warning_color: #cb4b16; -$error_color: #dc322f; -$warning_fg_color: white; -$error_fg_color: white; -$success_color: #859900; -$destructive_color: #dc322f; -$suggested_color: #2aa198; -$destructive_fg_color: white; -$suggested_fg_color: white; - -$drop_target_color: #b58900; - -//insensitive state derived colors -$insensitive_fg_color: if($variant == 'light', transparentize($fg_color, 0.45), transparentize($fg_color, 0.55)); -$insensitive_bg_color: if($variant == 'light', mix($bg_color, $base_color, 40%), lighten($bg_color, 2%)); - -$header_bg: red; -@if $transparency=='true' and $variant=='light' { $header_bg: transparentize(#eee8d5, 0.05); } -@if $transparency=='false' and $variant=='light' { $header_bg: #eee8d5; } -@if $transparency=='true' and ($variant=='dark' or $darker=='true') { $header_bg: transparentize(#002b36, 0.03); } -@if $transparency=='false' and ($variant=='dark' or $darker=='true') { $header_bg: #002b36; } - -$header_bg_backdrop: if($darker == 'true' or $variant == 'dark', lighten($header_bg, 1.5%), lighten($header_bg, 3%)); - -$header_border: if($variant == 'light' and $darker=='false', darken($header_bg, 7%), darken($header_bg, 4%)); - -$header_fg: if($variant == 'light', saturate(transparentize($fg_color, 0.2), 10%), saturate(transparentize($fg_color, 0.2), 10%)); -$header_fg: if($darker == 'true', saturate(transparentize(#657b83, 0.2), 10%), $header_fg); - -$dark_sidebar_bg: if($transparency == 'true', transparentize(#073642, 0.05), #073642); -$dark_sidebar_fg: #657b83; -$dark_sidebar_border: if($variant == 'light', $dark_sidebar_bg, darken($dark_sidebar_bg, 5%)); - -$osd_fg_color: $dark_sidebar_fg; -$osd_bg_color: $dark_sidebar_bg; - -$osd_button_bg: transparentize(lighten($osd_bg_color, 22%), 0.6); -$osd_button_border: transparentize(darken($osd_bg_color, 12%), 0.6); - -$osd_entry_bg: transparentize(lighten($osd_bg_color, 22%), 0.6); -$osd_entry_border: transparentize(darken($osd_bg_color, 12%), 0.6); - -$osd_insensitive_bg_color: darken($osd_bg_color, 3%); -$osd_insensitive_fg_color: mix($osd_fg_color, opacify($osd_bg_color, 1), 30%); -$osd_borders_color: transparentize(black, 0.3); - -$panel_bg: darken($dark_sidebar_bg, 4.7%); -$panel_fg: $dark_sidebar_fg; - -$entry_bg: if($variant=='light', $base_color, lighten($base_color, 0%)); -$entry_border: if($variant == 'light', #657b83, darken($borders_color, 0%)); - -$header_entry_bg: if($darker == 'true' or $variant == 'dark', transparentize(lighten($header_bg, 22%), 0.6), transparentize($base_color, 0.1)); -$header_entry_border: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 12%), 0.6), transparentize($header_fg, 0.7)); - -$button_bg: if($variant == 'light', lighten($bg_color, 2%), lighten($base_color, 2%)); -$button_border: $entry_border; - -$header_button_bg: if($darker == 'true' or $variant == 'dark', transparentize(lighten($header_bg, 22%), 0.6), transparentize($button_bg, 0.1)); -$header_button_border: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 12%), 0.6), transparentize($header_fg, 0.7)); - -//WM Buttons - -// Close -$wm_button_close_bg: if($variant == 'light' and $darker == 'false', #f46067, #dc322f); -$wm_button_close_hover_bg: if($variant == 'light' and $darker == 'false', #f68086, #cb4b16); -$wm_button_close_active_bg: if($variant == 'light' and $darker == 'false', #f13039, #dc322f); - -$wm_icon_close_bg: if($variant == 'light' and $darker == 'false',#657b83 , #002b36); - -// Minimize, Maximize -$wm_button_hover_bg: if($variant == 'light' and $darker == 'false', #fdfdfd, #657b83); -$wm_button_active_bg: $selected_bg_color; - -$wm_button_hover_border: if($variant == 'light' and $darker == 'false', #D1D3DA, #002b36); - -$wm_icon_bg: if($variant == 'light' and $darker == 'false', #90949E, #93a1a1); -$wm_icon_unfocused_bg: if($variant == 'light' and $darker == 'false', #B6B8C0, #657b83); -$wm_icon_hover_bg: if($variant == 'light' and $darker == 'false', #7A7F8B, #93a1a1); -$wm_icon_active_bg: $selected_fg_color; diff --git a/common/gtk-3.0/3.18/sass/_common.scss b/common/gtk-3.0/3.18/sass/_common.scss deleted file mode 100644 index 86ae0b7..0000000 --- a/common/gtk-3.0/3.18/sass/_common.scss +++ /dev/null @@ -1,2875 +0,0 @@ -@function gtkalpha($c,$a) { - @return unquote("alpha(#{$c},#{$a})"); -} - -$ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94); -$asset_suffix: if($variant=='dark', '-dark', ''); // use dark assets in dark variant -$darker_asset_suffix: if($darker=='true', '-dark', $asset_suffix); - -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: $error_color; - - -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: $link_color; - -GtkWidget-visited-link-color: $link_visited_color; - - -GtkWidget-focus-padding: 2; // FIXME: do we still need these? - -GtkWidget-focus-line-width: 1; // - - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - - -GtkStatusbar-shadow-type: none; - - // We use the outline properties to signal the focus properties - outline-color: transparentize($fg_color, 0.7); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - outline-radius: 2px; -} - - -// -// Base States -// -.background { - color: $fg_color; - background-color: if($transparency == 'true', transparentize($bg_color, 0.001), $bg_color); // without this headerbar transparency doesn't seem to work -} - -*:insensitive { - -gtk-image-effect: dim; -} - -.gtkstyle-fallback { - background-color: $bg_color; - color: $fg_color; - &:prelight { - background-color: lighten($bg_color, 10%); - color: $fg_color; - } - &:active { - background-color: darken($bg_color, 10%); - color: $fg_color; - } - &:insensitive { - background-color: $insensitive_bg_color; - color: $insensitive_fg_color; - } - &:selected { - background-color: $selected_bg_color; - color: $selected_fg_color; - } -} - -.view { - color: $text_color; - background-color: $base_color; - - &:selected, - &:selected:focus, - &:selected:hover { - @extend %selected_items; - } - &.dim-label { - color: transparentize($text_color, 0.45); - - &:selected, &:selected:focus { - color: transparentize($selected_fg_color, 0.35); - text-shadow: none; - } - } -} - -.rubberband { - border: 1px solid darken($selected_bg_color, 10%); - background-color: transparentize(darken($selected_bg_color, 10%), 0.8); -} - -.label { - &.separator { - color: $fg_color; - @extend .dim-label; - } - &:selected, - &:selected:focus, - &:selected:hover { - @extend %selected_items; - } - &:insensitive { - color: $insensitive_fg_color; - } -} - -.dim-label { - opacity: 0.55; -} - -GtkAssistant { - .sidebar { - background-color: $base_color; - border-top: 1px solid $borders_color; - &:dir(ltr) { border-right: 1px solid $borders_color; } - &:dir(rtl) { border-left: 1px solid $borders_color; } - } - &.csd .sidebar { border-top-style: none; } - .sidebar .label { - padding: 6px 12px; - } - .sidebar .label.highlight { - background-color: $selected_bg_color; - color: $selected_fg_color; - } -} - -GtkTextView { // This will get overridden by .view, needed by gedit line numbers - background-color: mix($bg_color, $base_color, 50%); -} - -.grid-child { - padding: 3px; - border-radius: 3px; - &:selected { - @extend %selected_items; - outline-offset: -2px; - } -} - -%osd, .osd { - color: $osd_fg_color; - border: none; - background-color: $osd_bg_color; - background-clip: padding-box; - outline-color: transparentize($osd_fg_color, 0.7); - box-shadow: none; -} - -// -// Spinner Animations -// -@keyframes spin { - to { -gtk-icon-transform: rotate(1turn); } -} - -.spinner { - background-image: none; - background-color: blue; - opacity: 0; // non spinning spinner makes no sense - -gtk-icon-source: -gtk-icontheme('process-working-symbolic'); - - &:active { - opacity: 1; - animation: spin 1s linear infinite; - - &:insensitive { - opacity: 0.5; - } - } -} - -$vert_padding: 5px; -// -// Text Entries -// -.entry { - border: 1px solid; - padding: $vert_padding 8px; - - border-radius: 3px; - transition: all 200ms $ease-out-quad; - @include entry(normal); - - &.image { // icons inside the entry - color: mix($fg_color,$base_color,80%); - - &.left { padding-left: 0; } - &.right { padding-right: 0; } - } - - &.flat, &.flat:focus { - padding: 2px; - @include entry(normal); - border: none; - border-radius: 0; - } - - &:focus { - background-clip: border-box; - @include entry(focus); - } - - &:insensitive { @include entry(insensitive); } - - &:selected, - &:selected:focus { - background-color: $selected_bg_color; - color: $selected_fg_color; - } - - &.progressbar { - margin: 2px 12px; - border-radius: 0; - border-width: 0 0 2px; - border-color: $selected_bg_color; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; - } - - @each $e_type, $e_color, $e_fg_color in (warning, $warning_color, $warning_fg_color), - (error, $error_color, $error_fg_color) { - &.#{$e_type} { - color: $selected_fg_color; - border-color: if($variant=='light', $e_color, $entry_border); - background-image: linear-gradient(to bottom, mix($e_color, $base_color, 60%)); - - &:focus { - color: $e_fg_color; - background-image: linear-gradient(to bottom, $e_color); - box-shadow: none; - } - &:selected, &:selected:focus { - background-color: $e_fg_color; - color: $e_color; - } - } - } - - .osd & { - @include entry(osd); - &:focus { @include entry(osd-focus); } - &:insensitive { @include entry(osd-insensitive); } - } - - .linked:not(.vertical) > &, - .linked:not(.vertical) > &:focus { @extend %linked; } - - .linked.vertical > &, - .linked.vertical > &:focus { @extend %linked_vertical; } -} - -GtkSearchEntry.entry { border-radius: 20px; } - -// -// Buttons -// -// stuff for .needs-attention -$_dot_color: $selected_bg_color; - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, - center center, 0, - center center, 0.01, - to($_dot_color), - to(transparent)); - } - to { - background-image: -gtk-gradient(radial, - center center, 0, - center center, 0.5, - to($selected_bg_color), - to(transparent)); - } -} - -.button { - $_button_transition: all 200ms $ease-out-quad; - - transition: $_button_transition; - border: 1px solid; - border-radius: 3px; - padding: $vert_padding 8px; - - @include button(normal); - - &.flat { - @include button(undecorated); - background-color: transparentize($button_bg, 1); - border-color: transparentize($button_border, 1); - // to avoid adiacent buttons borders clashing when transitioning, the transition on the normal state is set - // to none, while it's added back in the hover state, so the button decoration will fade in on hover, but - // it won't fade out when the pointer leave the button allocation area. To make the transition more evident - // in this case the duration is increased. - transition: none; - &:hover { - transition: $_button_transition; - transition-duration: 350ms; - &:active { transition: $_button_transition; } - } - } - &:hover { - @include button(hover); - -gtk-image-effect: highlight; - } - &:active, &:checked { - background-clip: if($variant=='light', border-box, padding-box); - @include button(active); - transition-duration: 50ms; - - &:not(:insensitive) .label:insensitive { color: inherit; opacity: 0.6; } - } - - //Webkitgtk workaround start - &:active { color: $fg_color; } - &:active:hover, &:checked { color: $selected_fg_color; } - //Webkitgtk workaround end - - &.flat:insensitive { - @include button(undecorated); - } - &:insensitive { - @include button(insensitive); - &:active, &:checked { - @include button(insensitive-active); - } - } - // big standalone buttons like in Documents pager - &.osd { - color: $osd_fg_color; - outline-color: transparentize($osd_fg_color, 0.7); - background-color: $osd_bg_color; - border-color: darken($osd_bg_color, 8%); - - &.image-button { padding: 10px; } - - &:hover { color: $selected_bg_color; } - &:active, &:checked { @include button(osd-active); } - &:insensitive { @include button(osd-insensitive); } - } - - //overlay / OSD style - .osd & { - @include button(osd); - - &:hover { @include button(osd-hover); } - &:active, &:checked { - background-clip: padding-box; - @include button(osd-active); - } - &:insensitive { @include button(osd-insensitive); } - - &, &:hover, &:active, &:checked, &:insensitive { @extend %linked; } - - &.flat { - @include button(undecorated); - box-shadow: none; - &:hover { - @include button(osd-hover); - } - &:insensitive { - @include button(osd-insensitive); - background-image: none; - } - &:active, &:checked { - @include button(osd-active); - } - } - } - .osd .linked:not(.vertical):not(.path-bar) > &:hover:not(:checked):not(:active):not(:only-child), - .osd .linked:not(.vertical):not(.path-bar) > &:hover:not(:checked):not(:active) + &:not(:checked):not(:active) { box-shadow: none; } - - // Suggested and Destructive Action buttons - @each $b_type, $b_color, $b_fg in (suggested-action, $suggested_color, $suggested_fg_color), - (destructive-action, $destructive_color, $destructive_fg_color) { - &.#{$b_type} { - @include button(suggested_destructive, $b_color, $b_fg); - - &.flat { - @include button(undecorated); - color: $b_color; - outline-color: transparentize($b_color, 0.7); - } - &:hover { - @include button(suggested_destructive, lighten($b_color, 10%), $b_fg); - } - &:active, &:checked { - @include button(suggested_destructive, darken($b_color, 10%), $b_fg); - } - &.flat:insensitive { - @include button(undecorated); - color: $insensitive_fg_color; - } - &:insensitive { @include button(insensitive); } - } - } - - &.image-button { padding: 2px + $vert_padding; } - .header-bar &.image-button { padding: 2px + $vert_padding 10px; } - - &.text-button { - padding-left: 16px; - padding-right: 16px; - } - - &.text-button.image-button { - // those buttons needs uneven horizontal padding, we want the icon side - // to have the image-button padding, while the text side the text-button - // one, so we're adding the missing padding to the label depending on - // its position inside the button - padding: $vert_padding 8px; // same as .button - GtkLabel:first-child { padding-left: 8px; } - GtkLabel:last-child { padding-right: 8px; } - } - - .stack-switcher > & { - // to position the needs attention dot, padding is added to the button - // child, a label needs just lateral padding while an icon needs vertical - // padding added too. - - outline-offset: -3px; // needs to be set or it gets overridden by GtkRadioButton outline-offset - - > GtkLabel { - padding-left: 6px; // label padding - padding-right: 6px; // - } - > GtkImage { - padding-left: 6px; - padding-right: 6px; - padding-top: $vert_padding - 2px; - padding-bottom: $vert_padding - 2px; - } - - &.text-button { padding: $vert_padding 10px; } // needed or it will get overridden - - &.image-button { padding: $vert_padding - 3px 4px; } - - &.needs-attention > .label, - &.needs-attention > GtkImage { @extend %needs_attention; } - &.needs-attention:active > .label, - &.needs-attention:active > GtkImage, - &.needs-attention:checked > .label, - &.needs-attention:checked > GtkImage { - animation: none; - background-image: none; - } - } - - %needs_attention { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, - center center, 0, - center center, 0.5, - to($_dot_color), - to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - @if $variant == 'light' { background-position: right 3px, right 4px; } - @else { background-position: right 3px, right 2px; } - &:dir(rtl) { - @if $variant == 'light' { background-position: left 3px, left 4px; } - @else { background-position: left 3px, left 2px; } - } - } - - //inline-toolbar buttons - .inline-toolbar &, .inline-toolbar &:backdrop { - border-radius: 2px; - border-width: 1px; - @extend %linked; - } - - .linked:not(.vertical) > &, - .linked:not(.vertical) > &:hover, - .linked:not(.vertical) > &:active, - .linked:not(.vertical) > &:checked { - @extend %linked; - } - - .linked.vertical > &, - .linked.vertical > &:hover, - .linked.vertical > &:active, - .linked.vertical > &:checked { - @extend %linked_vertical; - } -} - -// all the following is for the +|- buttons on inline toolbars, that way -// should really be deprecated... -.inline-toolbar GtkToolButton > .button { // redefining the button look is - // needed since those are flat... - @include button(normal); - &:hover { @include button(hover); } - &:active, - &:checked{ @include button(active); } - &:insensitive { @include button(insensitive); } - &:insensitive:active, - &:insensitive:checked { @include button(insensitive-active); } -} - -// More inline toolbar buttons -.inline-toolbar.toolbar GtkToolButton { - & > .button.flat { @extend %linked_middle; } - &:first-child > .button.flat { @extend %linked:first-child; } - &:last-child > .button.flat { @extend %linked:last-child; } - &:only-child > .button.flat { @extend %linked:only-child; } -} - -// Some crazy linking stuff -@mixin linking_rules($a:0.7, $var:$variant, $vert:'false', $entry_rules:'true', $button_rules:'true', - $e_border:$entry_border, $b_border:$button_border) { - - $_border: if($vert=='false', left, top); - - @if $entry_rules=='true' { - > .entry + .entry { border-#{$_border}-color: transparentize($e_border, $a); } - - > .entry.error + .entry, - > .entry + .entry.error { border-#{$_border}-color: if($var=='light', $error_color, transparentize($e_border, $a)); } - - > .entry.warning + .entry, - > .entry + .entry.warning { border-#{$_border}-color: if($var=='light', $warning_color, transparentize($e_border, $a)); } - - > .entry.error + .entry.warning, - > .entry.warning + .entry.error { border-#{$_border}-color: if($var=='light', mix($error_color, $warning_color, 50%), transparentize($e_border, $a));} - - @each $e_type, $e_color in ('',$selected_bg_color), - ('.warning', $warning_color), - ('.error', $error_color) { - - > .entry + .entry#{$e_type}:focus:not(:last-child), - > .entry + .entry#{$e_type}:focus:last-child { border-#{$_border}-color: if($var=='light', $e_color, $e_border); } - - > .entry#{$e_type}:focus:not(:only-child) { - + .entry, + .button, - + GtkComboBox > .the-button-in-the-combobox, - + GtkComboBoxText > .the-button-in-the-combobox { border-#{$_border}-color: if($var=='light', $e_color, $e_border); } - } - } - > .button:active + .entry, - > .button:checked + .entry { border-#{$_border}-color: if($var=='light', $selected_bg_color, $e_border); } - } - @if $button_rules=='true' { - $_uncolored_button: '.button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action)'; - - > .button + .button { border-#{$_border}-style: none; } - - > #{$_uncolored_button}:hover:not(:only-child), - > #{$_uncolored_button}:hover + #{$_uncolored_button} { box-shadow: inset if($vert=='false', 1px 0, 0 1px) $b_border; } - - > #{$_uncolored_button}:first-child:hover, - > .button:active + #{$_uncolored_button}:hover, - > .button:checked + #{$_uncolored_button}:hover, - > .button.suggested-action + #{$_uncolored_button}:hover, - > .button.destructive-action + #{$_uncolored_button}:hover, - > .entry + #{$_uncolored_button}:hover:not(:only-child) { box-shadow: none; } - } -} - -// special case, because path-bars are bugged -@mixin pathbar_linking_rules($sep_color:if($variant=='light', transparentize($button_border, 0.6), transparentize($button_border, 0.5))) { - - > .button + .button { border-left-style: none; } - - > .button:hover:not(:checked):not(:active):not(:only-child) { - - &:hover { - box-shadow: inset 1px 0 $sep_color, - inset -1px 0 $sep_color; - } - &:first-child:hover { box-shadow: inset -1px 0 $sep_color; } - &:last-child:hover { box-shadow: inset 1px 0 $sep_color; } - } -} - -// Apply the rules defined above -.linked:not(.vertical) { - &:not(.path-bar) { @include linking_rules(); } - &.path-bar { @include pathbar_linking_rules(); } -} - -.linked.vertical { @include linking_rules($vert:'true'); } - -%linked_middle { - border-radius: 0; - border-right-style: none; -} - -%linked { - @extend %linked_middle; - &:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - } - &:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - border-right-style: solid; - } - &:only-child { - border-radius: 3px; - border-style: solid; - } -} - -%linked_vertical_middle { - border-radius: 0; - border-bottom-style: none; -} - -%linked_vertical{ - @extend %linked_vertical_middle; - &:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - } - &:last-child { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border-bottom-style: solid; - } - &:only-child { - border-radius: 3px; - border-style: solid; - } -} - -%undecorated_button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; -} - -// menu buttons -.menuitem.button.flat { - transition: none; - @extend %undecorated_button; - outline-offset: -1px; - border-radius: 2px; - - &:hover { background-color: if($variant=='light', mix($fg_color,$bg_color,5%), mix($fg_color,$bg_color,10%)); } - &:active, &:selected { - @extend %selected_items; - } - &:checked { color: $fg_color; } -} - -// -// Links -// -*:link { - color: $link_color; - &:visited { - color: $link_visited_color; - *:selected & { color: mix($selected_fg_color, $selected_bg_color, 60%); } - } - &:hover { - color: lighten($link_color,10%); - *:selected & { color: mix($selected_fg_color, $selected_bg_color, 90%); } - } - &:active { - color: $link_color; - *:selected & { color: mix($selected_fg_color, $selected_bg_color, 80%); } - } - &:selected, *:selected & { - color: mix($selected_fg_color, $selected_bg_color, 80%); - } -} - -.button:link, .button:visited { - @extend %undecorated_button; - @extend *:link; - &:hover, &:active, &:checked { - @extend %undecorated_button; - } - > .label { text-decoration-line: underline; } -} - -// -// Spinbuttons -// -.spinbutton { - border-radius: 3px; - - .button { - background-image: none; - border: 1px solid transparentize($borders_color,0.4); - border-style: none none none solid; - color: mix($fg_color,$base_color,95%); - border-radius: 0; - box-shadow: none; - - &:dir(rtl) { border-style: none solid none none; } - &:first-child { color: red; } - - &:insensitive { - color: $insensitive_fg_color; - } - &:active { - background-color: $selected_bg_color; - color: $selected_fg_color; - } - } - -// .osd & { -// .button { -// @include button(undecorated); -// color: $osd_fg_color; -// border-style: none none none solid; -// border-color: transparentize($osd_borders_color, 0.3); -// border-radius: 0; -// box-shadow: none; -// &:dir(rtl) { border-style: none solid none none; } -// &:hover { -// @include button(undecorated); -// color: $osd_fg_color; -// border-color: transparentize(opacify($osd_borders_color, 1), 0.5); -// background-color: transparentize($osd_fg_color, 0.9); -// box-shadow: none; -// } -// &:insensitive { -// @include button(undecorated); -// color: $osd_insensitive_fg_color; -// border-color: transparentize(opacify($osd_borders_color, 1), 0.5); -// box-shadow: none; -// } -// &:last-child { border-radius: 0 2px 2px 0; } -// &:dir(rtl):first-child { border-radius: 2px 0 0 2px; } -// } -// } - - &.vertical, &.vertical:dir(rtl) { - .button { - &:first-child { - @extend %top_button; - @include button(normal); - &:active { - @extend %top_button; - @include button(active); - } - &:hover { - @extend %top_button; - @include button(hover); - } - &:insensitive { - @extend %top_button; - @include button(insensitive); - } - } - &:last-child { - @extend %bottom_button; - @include button(normal); - &:active { - @extend %bottom_button; - @include button(active); - } - &:hover { - @extend %bottom_button; - @include button(hover); - } - &:insensitive { - @extend %bottom_button; - @include button(insensitive); - } - } - } - &.entry { - border-radius: 0; - padding-left: 5px; - padding-right: 5px; - } - %top_button { - border-radius: 2px 2px 0 0; - border-style: solid solid none solid; - } - %bottom_button { - border-radius: 0 0 2px 2px; - border-style: none solid solid solid; - } - } - GtkTreeView & { - &.entry, &.entry:focus { - padding: 1px; - border-width: 1px 0; - border-color: $selected_bg_color; - border-radius: 0; - box-shadow: none; - } - } -} - -// -// Comboboxes -// -GtkComboBox { - -GtkComboBox-arrow-scaling: 0.5; - -GtkComboBox-shadow-type: none; - - > .the-button-in-the-combobox { // Otherwise combos - padding-top: $vert_padding - 2px; // are bigger than - padding-bottom: $vert_padding - 2px; // buttons - } - - &:insensitive { - color: $insensitive_fg_color; - } - .separator.vertical { -GtkWidget-wide-separators: true; } - - &.combobox-entry .entry { - &:dir(ltr) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - border-right-style: none; - - @if $variant=='light' { &:focus { box-shadow: 1px 0 $selected_bg_color; } } - } - &:dir(rtl) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - border-left-style: none; - - @if $variant=='light' { &:focus { box-shadow: -1px 0 $selected_bg_color; } } - } - } - &.combobox-entry .button { - &:dir(ltr) { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - } - &:dir(rtl) { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - } -} - -.linked > GtkComboBox > .the-button-in-the-combobox, -.linked > GtkComboBoxText > .the-button-in-the-combobox { - // the combo is a composite widget so the way we do button linkind doesn't - // work, special case needed. See - // https://bugzilla.gnome.org/show_bug.cgi?id=733979 - &:dir(ltr), - &:dir(rtl) { @extend %linked_middle; } // specificity bump -} -.linked > GtkComboBox:first-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:first-child > .the-button-in-the-combobox { - @extend %linked:first-child; -} -.linked > GtkComboBox:last-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:last-child > .the-button-in-the-combobox { - @extend %linked:last-child; -} -.linked > GtkComboBox:only-child > .the-button-in-the-combobox, -.linked > GtkComboBoxText:only-child > .the-button-in-the-combobox { - @extend %linked:only-child; -} - -.linked.vertical > GtkComboBoxText > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox > .the-button-in-the-combobox { @extend %linked_vertical_middle; } -.linked.vertical > GtkComboBoxText:first-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:first-child > .the-button-in-the-combobox { @extend %linked_vertical:first-child; } -.linked.vertical > GtkComboBoxText:last-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:last-child > .the-button-in-the-combobox { @extend %linked_vertical:last-child; } -.linked.vertical > GtkComboBoxText:only-child > .the-button-in-the-combobox, -.linked.vertical > GtkComboBox:only-child > .the-button-in-the-combobox { @extend %linked_vertical:only-child; } - -// -// Toolbars -// -.toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: $bg_color; - .osd &, &.osd { - padding: 7px; - border: 1px solid transparentize(black, 0.5); - border-radius: 3px; - background-color: transparentize($osd_bg_color, 0.1); - } -} - -.primary-toolbar { - color: $header_fg; - background-color: opacify($header_bg, 1); - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, opacify($header_bg, 1), - darken($header_bg, 7%)) 1 0 1 0; //temporary hack for rhythmbox 3.1 - - //&:backdrop { background-color: opacify($header_bg_backdrop, 1); } - - .separator { @extend %header_separator; } - - @extend %header_widgets; -} - -.inline-toolbar { - @extend .toolbar; - background-color: darken($bg_color, 3%); - border-style: solid; - border-color: $borders_color; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; -} - -.search-bar { - background-color: $bg_color; - border-style: solid; - border-color: $borders_color; - border-width: 0 0 1px; - padding: 3px; - //box-shadow: inset 0 1px 2px rgba(0,0,0,0.25); -} - -.action-bar { background-color: darken($bg_color, 3%) } - -// -// Headerbars -// -.header-bar { - padding: 5px 5px 4px 5px; - - border-width: 0 0 1px; - border-style: solid; - border-radius: 0; - border-color: opacify($header_border, 1); - - color: $header_fg; - background-color: opacify($header_bg, 1); - - .csd & { // Transparent header-bars only in csd windows - background-color: $header_bg; - border-color: $header_border; - } - - &:backdrop { color: transparentize($header_fg, 0.3); } - - .title { - padding-left: 12px; - padding-right: 12px; - } - - .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; - @extend .dim-label; - } - - // Selectionmode - &.selection-mode, - &.titlebar.selection-mode { - color: $selection_mode_fg; - background-color: $selection_mode_bg; - border-color: darken($selection_mode_bg, 4%); - box-shadow: none; - - &:backdrop { - background-color: $selection_mode_bg; - color: transparentize($selection_mode_fg, 0.4); - } - - .subtitle:link { @extend *:link:selected; } - - .button { - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - background-color: transparentize($selected_fg_color, 1); - border-color: transparentize($selected_fg_color, 1); - - &.flat { - @include button(undecorated); - color: $selected_fg_color; - background-color: transparentize($selected_fg_color, 1); - } - &:hover { - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - background-color: transparentize($selected_fg_color, 0.95); - border-color: transparentize($selected_fg_color, 0.5); - } - &:active, &:checked { - color: $selection_mode_bg; - outline-color: transparentize($selection_mode_bg, 0.7); - background-color: $selected_fg_color; - border-color: $selected_fg_color; - } - &:insensitive { - color: transparentize($selected_fg_color, 0.6); - background-color: transparentize($selected_fg_color, 1); - border-color: transparentize($selected_fg_color, 1); - - &:active, &:checked { - color: transparentize($selection_mode_bg, 0.6); - background-color: transparentize($selected_fg_color, 0.85); - border-color: transparentize($selected_fg_color, 0.85); - } - } - } - - .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; - GtkArrow { -GtkArrow-arrow-scaling: 1; } - .arrow { - -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); - } - } - .maximized & { background-color: opacify($selection_mode_bg, 1); } - } - - .tiled &, .tiled &:backdrop, - .maximized &, .maximized &:backdrop { - border-radius: 0; // squared corners when the window is max'd or tiled - } - - .maximized & { - background-color: opacify($header_bg, 1); - border-color: opacify($header_border, 1); - } - - &.default-decoration, - .csd &.default-decoration, // needed under wayland, since all gtk3 windows are csd windows - &.default-decoration:backdrop, - .csd &.default-decoration:backdrop { - padding-top: 5px; - padding-bottom: 5px; - background-color: opacify($header_bg, 1); - border-bottom-width: 0; - - .maximized & { background-color: opacify($header_bg, 1); } - } -} - -.titlebar { - padding-left: 7px; - padding-right: 7px; - border-radius: if($darker=='false' and $variant=='light', 4px 4px 0 0, 3px 3px 0 0); - color: $header_fg; - background-color: opacify($header_bg, 1); - box-shadow: inset 0 1px lighten($header_bg, 3%); - - .csd & { background-color: $header_bg; } - - &:backdrop { - color: transparentize($header_fg, 0.3); - background-color: opacify($header_bg_backdrop, 1); - - .csd & { background-color: $header_bg_backdrop; } - } - - .maximized & { - background-color: opacify($header_bg, 1); - - &:backdrop, .csd &:backdrop { background-color: opacify($header_bg_backdrop, 1); } - } -} - -.titlebar .titlebar, -.titlebar .titlebar:backdrop { background-color: transparent; } - -// Only extending .header-bar avoids some problems (Gnome Documents searchbar) -.header-bar { - .header-bar-separator, - & > GtkBox > .separator.vertical { @extend %header_separator; } - - @extend %header_widgets; -} - -%header_separator { - -GtkWidget-wide-separators: true; - -GtkWidget-separator-width: 1px; - border-width: 0 1px; - border-image: linear-gradient(to bottom, - transparentize($header_fg, 1) 25%, - transparentize($header_fg, 0.65) 25%, - transparentize($header_fg, 0.65) 75%, - transparentize($header_fg, 1) 75%) 0 1/0 1px stretch; - - &:backdrop { opacity: 0.6; } -} - -%header_widgets { - // Headerbar Entries - .entry { - @include entry(header-normal); - - &:backdrop { opacity: 0.85; } - - &:focus { - @include entry(header-focus); - background-clip: if($darker=='false' and $variant=='light', border-box, padding-box); - - &.image { color: $selected_fg_color; } - } - &:insensitive { @include entry(header-insensitive); } - - &:selected:focus { - background-color: $selected_fg_color; - color: $selected_bg_color; - } - - &.progressbar { - border-color: $selected_bg_color; - background-image: none; - background-color: transparent; - } - - @each $e_type, $e_color, $e_fg_color in (warning, $warning_color, $warning_fg_color), - (error, $error_color, $error_fg_color) { - &.#{$e_type} { - color: $e_fg_color; - border-color: if($darker=='false' and $variant=='light', $e_color, $header_entry_border); - background-image: linear-gradient(to bottom, mix($e_color, $header_bg, 60%)); - - &:focus { - color: $e_fg_color; - background-image: linear-gradient(to bottom, $e_color); - } - &:selected, &:selected:focus { - background-color: $e_fg_color; - color: $e_color; - } - } - } - } - - // Headerbar Buttons - .button { - - @include button(header-normal); - - &:backdrop { opacity: 0.7; } - - &:hover { @include button(header-hover); } - &:active, &:checked { - @include button(header-active); - background-clip: if($darker=='false' and $variant=='light', border-box, padding-box); - } - &:insensitive { @include button(header-insensitive); } - &:insensitive:active, &:insensitive:checked { @include button(header-insensitive-active); } - } - - // Linking stuff - - // Reset buttons - .linked:not(.vertical):not(.path-bar) > .button { - &, &:hover, &:active, &:checked, &:insensitive { - border-radius: 3px; - border-style: solid; - } - } - .linked:not(.vertical):not(.path-bar) { - $_uncolored_button: '.button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action)'; - - > #{$_uncolored_button}:hover:not(:only-child), - > #{$_uncolored_button}:hover + #{$_uncolored_button} { box-shadow: none; } - } - - // special case for path-bars and stack-switchers - .linked:not(.vertical):not(.path-bar).stack-switcher, - .linked:not(.vertical).path-bar { - - > .button { - @include button(header-hover); - - &:hover { background-color: lighten($header_button_bg, 15%); } - &:active, &:checked { @include button(header-active); } - &:insensitive { color: transparentize($header_fg, 0.4); } - - &, &:hover, &:active, &:checked, &:insensitive { @extend %linked; } - } - - @include pathbar_linking_rules($sep_color:$header_button_border); - } - // use linking rules for entries only - .linked:not(.vertical):not(.path-bar) { - @include linking_rules( $a:0.5, - $var:if($variant=='light' and $darker=='false', 'light', 'dark'), - $button_rules:'false', - $e_border:$header_entry_border, - $b_border:$header_button_border ); - } - - // Headerbar Suggested and Destructive Action buttons - @each $b_type, $b_color, $b_fg in (suggested-action, $suggested_color, $suggested_fg_color), - (destructive-action, $destructive_color, $destructive_fg_color) { - .button.#{$b_type} { - @include button(suggested_destructive, $b_color, $b_fg); - - &.flat { - @include button(undecorated); - color: $b_color; - outline-color: transparentize($b_color, 0.7); - } - &:hover { - @include button(suggested_destructive, lighten($b_color, 10%), $b_fg); - } - &:active, &:checked { - @include button(suggested_destructive, darken($b_color, 10%), $b_fg); - } - &.flat:insensitive, - &:insensitive { @include button(header-insensitive); } - } - .button.#{$b_type}:backdrop, - .button.#{$b_type}:backdrop { - opacity: 0.8; - } - } - - // Headerbar Spinbuttons - & .spinbutton { - - &:focus .button { - color: $selected_fg_color; - - &:hover { background-color: transparentize($selected_fg_color, 0.9); border-color: transparent; } - &:insensitive { color: transparentize($selected_fg_color, 0.6); } - } - .button { - color: $header_fg; - - &:hover { background-color: transparentize($header_fg, 0.75); border-color: transparent; } - &:insensitive { color: transparentize($header_fg, 0.3); } - &:active { background-color: rgba(0,0,0,0.1); } - } - } - - // Headerbar ComboBoxes - & GtkComboBox{ - &:insensitive { color: transparentize($header_fg, 0.6); } - - &.combobox-entry .button { - @include entry(header-normal); - - &:hover { @include entry(header-focus); box-shadow: none; } - &:insensitive { @include entry(header-insensitive); } - } - &.combobox-entry .entry { - &:dir(ltr) { - border-right-style: none; - - &:focus { box-shadow: none; } - @if $variant=='light' and $darker=='false' { &:focus { box-shadow: 1px 0 $selected_bg_color; } } - } - &:dir(rtl) { - border-left-style: none; - - &:focus { box-shadow: none; } - @if $variant=='light' and $darker=='false' { &:focus { box-shadow: -1px 0 $selected_bg_color; } } - } - } - - } - - // Headerbar Switches - GtkSwitch { - &:backdrop { opacity: 0.75; } - } - - GtkProgressBar { - - &.trough { background-color: if($variant=='light' and $darker=='false', opacify($header_button_border, 0.05), $header_button_border); } - - &:backdrop { opacity: 0.75; } - } - - // Headerbar Scale - .scale { - - &:backdrop { opacity: 0.75; } - - &.trough { - $_trough_bg: if($variant=='light' and $darker=='false', opacify($header_button_border, 0.05), $header_button_border); - background-image: linear-gradient(to bottom, $_trough_bg); - - &:insensitive { background-image: linear-gradient(to bottom, if($variant=='light' and $darker=='false', transparentize($_trough_bg, 0.05), transparentize($_trough_bg, 0.1))); } - } - &.slider { - $_slider_border: if($variant=='light' and $darker=='false', opacify($header_button_border, 0.2), opacify($header_button_border, 0.3)); - $_slider_bg: if($variant=='light' and $darker=='false', opacify($header_button_bg,1), lighten(opacify($header_bg,1), 10%)); - - background-image: linear-gradient(to bottom, $_slider_bg); - border-color: $_slider_border; - - &:hover { - background-image: linear-gradient(to bottom, lighten($_slider_bg, 5%)); - border-color: $_slider_border; - } - &:active { - background-image: linear-gradient(to bottom, $selected_bg_color); - border-color: $selected_bg_color; - } - &:insensitive { - background-image: linear-gradient(to bottom, mix($_slider_bg, $header_bg, 70%)); - border-color: $_slider_border; - } - } - } -} - -// -// Pathbars -// -.path-bar .button { - padding: 5px 10px; - - &:first-child { padding-left: 10px; } - &:last-child { padding-right: 10px; } - &:only-child { - padding-left: 14px; - padding-right: 14px; - } - - // the following is for spacing the icon and the label inside the home button - GtkLabel:last-child { padding-left: 4px; } - GtkLabel:first-child { padding-right: 4px; } - GtkLabel:only-child, GtkLabel { padding-right: 0; padding-left: 0; } - GtkImage { padding-top: 2px; padding-bottom: 1px; } -} - -// -// Tree Views -// -GtkTreeView.view { // treeview grid lines and expanders, unfortunatelly - // the tree lines color can't be set - -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: transparentize($fg_color, 0.85); // this is actually the tree lines color, - border-top-color: transparentize(black, 0.9); // while this is the grid lines color, better then nothing - - &.rubberband { @extend .rubberband; } // to avoid borders being overridden by the previously set props - - &:selected { - border-radius: 0; - border-left-color: mix($selected_fg_color, $selected_bg_color, 50%); - border-top-color: transparentize($fg_color, 0.9); // doesn't work unfortunatelly - } - - &:insensitive { - color: $insensitive_fg_color; - &:selected { - color: mix($selected_fg_color, $selected_bg_color, 40%); - } - } - - &.dnd { - border-style: solid none; - border-width: 1px; - border-color: mix($fg_color, $selected_bg_color, 50%); - } - - &.expander { - -gtk-icon-source: -gtk-icontheme('pan-end-symbolic'); - &:dir(rtl) { -gtk-icon-source: -gtk-icontheme('pan-end-symbolic-rtl'); } - - color: mix($fg_color, $base_color, 50%); - - &:hover { color: $fg_color; } - - &:selected { - color: mix($selected_fg_color, $selected_bg_color, 70%); - &:hover { color: $selected_fg_color; } - } - - &:checked { - -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); - } - } - - &.progressbar, &.progressbar:focus { // progress bar in treeviews - color: $selected_fg_color; - border-radius: 3px; - background-image: linear-gradient(to bottom, $selected_bg_color); - - &:selected, &:selected:focus { - color: $selected_bg_color; - box-shadow: none; - background-image: linear-gradient(to bottom, $selected_fg_color); - } - } - &.trough { // progress bar trough in treeviews - color: $fg_color; - background-image: linear-gradient(to bottom, $button_border); - border-radius: 3px; - border-width: 0; - - &:selected, &:selected:focus { - color: $selected_fg_color; - background-image: linear-gradient(to bottom, transparentize(black, 0.8)); - border-radius: 3px; - border-width: 0; - } - } -} - -column-header { - .button { - @extend %column_header_button; - $_column_header_color: mix($fg_color,$base_color,80%); - color: $_column_header_color; - background-color: $base_color; - &:hover { - @extend %column_header_button; - color: $selected_bg_color; - box-shadow: none; - transition: none; //I shouldn't need this - } - &:active { - @extend %column_header_button; - color: $fg_color; - transition: none; //I shouldn't need this - } - &.dnd { - @extend column-header.button.dnd; - } - } - &:last-child .button, - &:last-child.button { //treeview-like derived widgets in Banshee and Evolution - border-right-style: none; - border-image: none; - } -} - -column-header.button.dnd { // for treeview-like derive widgets - transition: none; - color: $selected_bg_color; - box-shadow: inset 1px 1px 0 1px $selected_bg_color, - inset -1px 0 0 1px $selected_bg_color, - inset 1px 1px $base_color, inset -1px 0 $base_color;; - &:active { @extend column-header.button.dnd; } - &:selected { @extend column-header.button.dnd; } - &:hover { @extend column-header.button.dnd; } -} - -%column_header_button { - padding: 3px 6px; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, - transparentize(if($variant == 'light', black, white), 1) 20%, - transparentize(if($variant == 'light', black, white), 0.89) 20%, - transparentize(if($variant == 'light', black, white), 0.89) 80%, - transparentize(if($variant == 'light', black, white), 1) 80%) 0 1 0 0 / 0 1px 0 0 stretch; - - &:active, &:hover { background-color: $base_color; } - &:active:hover { color: $fg_color; } - &:insensitive { - border-color: $bg_color; - background-image: none; - } -} - -// -// Menus -// -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: opacify($header_bg, 1); - color: $header_fg; - - &:backdrop { - color: transparentize($header_fg, 0.3); - //background-color: opacify($header_bg_backdrop, 1); - } - - & > .menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; - - &:hover { //Seems like it :hover even with keyboard focus - background-color: $selected_bg_color; - color: $selected_fg_color; - } - &:insensitive { - color: transparentize($header_fg, 0.6); - border-color: transparent; - } - } -} - -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: if($variant=='light', $base_color, $bg_color); - border: 1px solid $borders_color; - - .csd & { - padding: 4px 0px; - border-radius: 2px; - border: none; - } - - .menuitem { - padding: 5px; - &:hover { - color: $selected_fg_color; - background-color: $selected_bg_color; - } - &:insensitive { - color: $insensitive_fg_color; - } - - &.separator { color: transparentize($base_color, 1); } - - //submenu indicators - &.arrow { -gtk-icon-source: -gtk-icontheme('pan-end-symbolic'); } - &.arrow:dir(rtl) {-gtk-icon-source:-gtk-icontheme('pan-end-symbolic-rtl'); } - } - &.button { // overlow buttons - @extend %undecorated_button; - border-style: none; - border-radius: 0; - &.top { border-bottom: 1px solid mix($fg_color, $base_color, 10%); } - &.bottom { border-top: 1px solid mix($fg_color, $base_color, 10%); } - &:hover { background-color: mix($fg_color, $base_color, 10%); } - &:insensitive { - color: transparent; - background-color: transparent; - border-color: transparent ; - } - } -} - -.csd .popup { border-radius: 2px; } - -.menuitem .accelerator { color: gtkalpha(currentColor,0.55); } - -// -// Popovers -// -.popover { - padding: 2px; - border: 1px solid darken($borders_color, 5%); - border-radius: 3px; - background-clip: border-box; - background-color: if($variant=='light', $base_color, $bg_color); - - box-shadow: 0 2px 6px 1px if($variant=='light', transparentize(black, 0.93), transparentize(black, 0.65)); - - & .separator { color: transparentize($base_color, 1); } - .label.separator { @extend .label.separator; } // Noice - - > .list, - > .view, - > .toolbar, - &.osd > .toolbar { - border-style: none; - background-color: transparent; - } - &.osd { @extend %osd; } -} - -//touch selection handlebars for the Popover.osd above -.entry.cursor-handle, -.cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; - &.top { -gtk-icon-source: -gtk-icontheme('selection-start-symbolic'); } - &.bottom { -gtk-icon-source: -gtk-icontheme('selection-end-symbolic'); } -} - -// -// Notebooks and Tabs -// -.notebook { - padding: 0; - background-color: $base_color; - -GtkNotebook-initial-gap: 4; - -GtkNotebook-arrow-spacing: 5; - -GtkNotebook-tab-curvature: 0; - -GtkNotebook-tab-overlap: 1; - -GtkNotebook-has-tab-gap: false; - -GtkWidget-focus-padding: 0; - -GtkWidget-focus-line-width: 0; - transition: all 200ms $ease-out-quad; - - &.frame { - border: 1px solid $borders_color; - - &.top { border-top-width: 0; } - &.bottom { border-bottom-width: 0; } - &.right { border-right-width: 0; } - &.left { border-left-width: 0; } - } - &.header { - background-color: $bg_color; - - // this is the shading of the header behind the tabs - &.frame { - border: 0px solid $borders_color; - &.top { border-bottom-width: 0; } - &.bottom { border-top-width: 0; } - &.right { border-left-width: 0; } - &.left { border-right-width: 0; } - } - - $_header_border: $borders_color; - &.top { box-shadow: inset 0 -1px $_header_border; } - &.bottom { box-shadow: inset 0 1px $_header_border; } - &.right { box-shadow: inset 1px 0 $_header_border; } - &.left { box-shadow: inset -1px 0 $_header_border; } - } - tab { - border-width: 0; - border-style: solid; - border-color: transparent; - background-color: transparent; - outline-color: transparent; - - outline-offset: 0; - - // tab sizing - $vpadding: 4px; - $hpadding: 15px; - - //FIXME: we get double border in some cases, not considering the broken - //notebook content frame... - &.top, &.bottom { padding: $vpadding $hpadding; } - &.left, &.right { padding: $vpadding $hpadding; } - - &.reorderable-page { - &.top, &.bottom { - padding-left: 12px; // for a nicer close button - padding-right: 12px; // placement - } - } - @each $_tab in (top, bottom, right, left) { - &.reorderable-page.#{$_tab}, &.#{$_tab} { - - @if $_tab==top or $_tab==bottom { - padding-#{$_tab}: $vpadding + 2; - } - @else if $_tab==left or $_tab==right { - padding-#{$_tab}: $hpadding + 2; - } - - @if $_tab==top { border-radius: 3.5px 2px 0 0; } - @else if $_tab==bottom { border-radius: 0 0 2px 3.5px; } - @else if $_tab==left { border-radius: 3.5px 0 0 3.5px; } - @else if $_tab==right { border-radius: 0 3.5px 3.5px 0; } - - border-width: 0; - border-#{$_tab}-width: 2px; - border-color: transparent; - background-color: transparentize($base_color, 1); - - &:hover, &.prelight-page { - background-color: transparentize($base_color, 0.5); - box-shadow: inset 0 1px $borders_color, - inset 0 -1px $borders_color, - inset 1px 0 $borders_color, - inset -1px 0 $borders_color; - } - &:active, &.active-page, &.active-page:hover { - background-color: $base_color; - - @if $_tab==top { - box-shadow: inset 0 1px $borders_color, - inset 0 -1px $base_color, - inset 1px 0 $borders_color, - inset -1px 0 $borders_color; - } - @else if $_tab==bottom { - box-shadow: inset 0 -1px $base_color, - inset 0 -1px $borders_color, - inset 1px 0 $borders_color, - inset -1px 0 $borders_color; - } - @else if $_tab==left { - box-shadow: inset 0 1px $borders_color, - inset 0 -1px $borders_color, - inset 1px 0 $borders_color, - inset -1px 0 $base_color; - } - @else if $_tab==right { - box-shadow: inset 0 1px $borders_color, - inset 0 -1px $borders_color, - inset 1px 0 $base_color, - inset -1px 0 $borders_color; - } - } - } - } - GtkLabel { //tab text - padding: 0 2px; // needed for a nicer focus ring - color: $insensitive_fg_color; - } - .prelight-page GtkLabel, GtkLabel.prelight-page { - // prelight tab text - color: mix($fg_color, $insensitive_fg_color, 50%); - } - .active-page GtkLabel, GtkLabel.active-page { - // active tab text - color: $fg_color; - } - .button { //tab close button - padding: 0; - @extend %undecorated_button; - color: mix($bg_color, $fg_color, 35%); - - &:hover { - color: lighten(red, 15%); - } - &:active { - color: $selected_bg_color; - } - & > GtkImage { // this is a hack which makes tabs grow - padding: 2px; - } - } - } - &.arrow { - color: $insensitive_fg_color; - &:hover { color: mix($fg_color, $insensitive_fg_color, 50%); } - &:active { color: $fg_color; } - &:insensitive { - color: transparentize($insensitive_fg_color,0.3); - } - } -} - -// -// Scrollbars -// -$_scrollbar_bg_color: darken($base_color, 1%); - -.scrollbar { - -GtkRange-slider-width: 13; - -GtkRange-trough-border: 0; - -GtkScrollbar-has-backward-stepper: false; - -GtkScrollbar-has-forward-stepper: false; - -GtkScrollbar-min-slider-length: 42; // minimum size for the slider. - // sadly can't be in '.slider' - // where it belongs - -GtkRange-stepper-spacing: 0; - -GtkRange-trough-under-steppers: 1; - - $_slider_margin: 3px; - $_slider_fine_tune_margin: 4px; - - .button { - border: none; - } - - &.overlay-indicator { - &:not(.dragging):not(.hovering) { // Overlay scrolling indicator - opacity: 0.4; - - -GtkRange-slider-width: 6px; - - .slider { - margin: 0; - background-color: mix($fg_color, $bg_color, 70%); - border: 1px solid if($variant == 'light', transparentize(white, 0.4), transparentize(black, 0.7)); - background-clip: padding-box; - } - - .trough { - border-style: none; - background-color: transparent; - } - - // w/o the following margin tweaks the slider shrinks when hovering/dragging - &.vertical .slider { - margin-top: $_slider_margin - 1px; - margin-bottom: $_slider_margin - 1px; - } - - &.horizontal .slider { - margin-left: $_slider_margin - 1px; - margin-right: $_slider_margin - 1px; - } - - } - - &.dragging, - &.hovering { opacity: 0.99; } - } - - // trough coloring - .trough { - background-color: $_scrollbar_bg_color; - border: 1px none $borders_color; - } - - // slider coloring - .slider { - background-color: mix($fg_color, $bg_color, 40%); - - &:hover { background-color: mix($fg_color, $bg_color, 30%); } - - &:prelight:active, - &:active { background-color: $selected_bg_color;} - - &:insensitive { - background-color: transparent; - } - } - - // sizing - .slider { - border-radius: 100px; - margin: $_slider_margin; - } - - &.fine-tune .slider { margin: $_slider_fine_tune_margin; } - - &.vertical { - - .slider { - margin-left: 1px + $_slider_margin; - - &:dir(rtl) { - margin-left: $_slider_margin; - margin-right: 1px + $_slider_margin; - } - } - - &.fine-tune .slider { - margin-left: 1px + $_slider_fine_tune_margin; - - &:dir(rtl) { - margin-left: $_slider_fine_tune_margin; - margin-right: 1px + $_slider_fine_tune_margin; - } - } - - .trough { - border-left-style: solid; - - &:dir(rtl) { - border-left-style: none; - border-right-style: solid; - } - } - } - - &.horizontal { - - .slider { margin-top: 1px + $_slider_margin; } - - &.fine-tune .slider { margin-top: 1px + $_slider_fine_tune_margin; } - - .trough { border-top-style: solid; } - } -} - -.scrollbars-junction, -.scrollbars-junction.frame { // the small square between two scrollbars - border-color: transparent; - // the border image is used to add the missing dot between the borders, details, details, details... - border-image: linear-gradient(to bottom, $borders_color 1px, transparent 1px) 0 0 0 1 / 0 1px stretch; - background-color: $_scrollbar_bg_color; - - &:dir(rtl) { border-image-slice: 0 1 0 0; } -} - - -// -// Switches -// -GtkSwitch { - font: 1; - -GtkSwitch-slider-width: 52; - -GtkSwitch-slider-height: 24; - outline-color: transparent; - - &.trough, &.slider { - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: right center; - color: transparent; - border-color: transparent; - border-image: none; - border-style: none; - box-shadow: none; - - &:dir(rtl) { background-position: left center; } - } -} - -@each $k,$l in ('',''), - (':active','-active'), - (':insensitive','-insensitive'), - (':active:insensitive','-active-insensitive') { - - // load switch troughs from .png files in assets directory - - GtkSwitch.trough#{$k} { - background-image: -gtk-scaled(url("assets/switch#{$l}#{$asset_suffix}.png"),url("assets/switch#{$l}#{$asset_suffix}@2.png")); - } - - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover GtkSwitch.trough#{$k}, - .menu .menuitem:hover GtkSwitch.trough#{$k}, - .list-row:selected GtkSwitch.trough#{$k}, - GtkInfoBar GtkSwitch.trough#{$k} { - background-image: -gtk-scaled(url("assets/switch#{$l}-selected.png"),url("assets/switch#{$l}-selected@2.png")); - } - - .header-bar GtkSwitch.trough#{$k}, - .primary-toolbar GtkSwitch.trough#{$k} { - background-image: -gtk-scaled(url("assets/switch#{$l}-header#{$darker_asset_suffix}.png"),url("assets/switch#{$l}-header#{$darker_asset_suffix}@2.png")); - } -} - -// -// Check and Radio items * -// -@each $w,$a in ('check', 'checkbox'), - ('radio','radio') { - - //standard checks and radios - @each $s,$as in ('','-unchecked'), - (':insensitive','-unchecked-insensitive'), - (':inconsistent', '-mixed'), - (':inconsistent:insensitive', '-mixed-insensitive'), - (':checked', '-checked'), - (':checked:insensitive','-checked-insensitive') { - .#{$w}#{$s} { - -gtk-icon-source: -gtk-scaled(url("assets/#{$a}#{$as}#{$asset_suffix}.png"), - url("assets/#{$a}#{$as}#{$asset_suffix}@2.png")); - } - - %osd_check_radio { - .#{$w}#{$s} { - -gtk-icon-source: -gtk-scaled(url("assets/#{$a}#{$as}-dark.png"), - url("assets/#{$a}#{$as}-dark@2.png")); - } - } - // the borders of checks and radios are - // too similar in luminosity to the selected background color, hence - // we need special casing. - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover .#{$w}#{$s}, - .menu .menuitem.#{$w}#{$s}:hover, - GtkTreeView.view.#{$w}#{$s}:selected, - .list-row:selected .#{$w}#{$s}, - GtkInfoBar .#{$w}#{$s} { - -gtk-icon-source: -gtk-scaled(url("assets/#{$a}#{$as}-selected.png"), - url("assets/#{$a}#{$as}-selected@2.png")); - } - } -} - -// Selectionmode -@each $s,$as in ('','-selectionmode'), - (':checked', '-checked-selectionmode') { - .view.content-view.check#{$s}:not(.list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox#{$as}#{$asset_suffix}.png"), - url("assets/checkbox#{$as}#{$asset_suffix}@2.png")); - background-color: transparent; - } -} - -GtkCheckButton.text-button, GtkRadioButton.text-button { - // this is for a nice focus on check and radios text - padding: 1px 2px 4px; - outline-offset: 0; - &:insensitive, - &:insensitive:active, - &:insensitive:inconsistent { - // set insensitive color, which is overriden otherwise - color: $insensitive_fg_color; - } -} - -// -// GtkScale -// -.scale { - -GtkScale-slider-length: 15; - -GtkRange-slider-width: 15; - -GtkRange-trough-border: 0; - outline-offset: -1px; - outline-radius: 2px; - - color: gtkalpha(currentColor, 0.7); - - &.trough { margin: 5px; } - &.fine-tune { - &.trough { border-radius: 5px; margin: 3px; } - } - &.slider { - $_slider_border: if($variant=='light', transparentize(darken($button_border,25%), 0.5), darken($button_border,2%)); - - background-clip: border-box; - background-image: linear-gradient(to bottom, $button_bg); - border: 1px solid $_slider_border; - border-radius: 50%; - box-shadow: none; - - &:hover { - background-image: linear-gradient(to bottom, lighten($button_bg, 5%)); - border-color: $_slider_border; - } - &:insensitive { - background-image: linear-gradient(to bottom, mix($entry_bg, $bg_color, 55%)); - border-color: transparentize($_slider_border, 0.2); - } - &:active { - background-image: linear-gradient(to bottom, $selected_bg_color); - border-color: $selected_bg_color; - } - //OSD sliders - .osd & { - background-image: linear-gradient(to bottom, $osd_bg_color); - border-color: $selected_bg_color; - - &:hover { background-image: linear-gradient(to bottom, $selected_bg_color); } - &:active { - background-image: linear-gradient(to bottom, darken($selected_bg_color, 10%)); - border-color: darken($selected_bg_color, 10%); - } - } - //selected list-row and infobar sliders - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover &, - .menu .menuitem:hover &, - .list-row:selected &, - GtkInfoBar & { - background-image: linear-gradient(to bottom, $selected_fg_color); - border-color: $selected_fg_color; - - &:hover { - background-image: linear-gradient(to bottom, mix($selected_fg_color, $selected_bg_color, 85%)); - border-color: mix($selected_fg_color, $selected_bg_color, 85%); - } - &:active { - background-image: linear-gradient(to bottom, mix($selected_fg_color, $selected_bg_color, 50%)); - border-color: mix($selected_fg_color, $selected_bg_color, 50%); - } - &:insensitive{ - background-image: linear-gradient(to bottom, mix($selected_fg_color, $selected_bg_color, 55%)); - border-color: mix($selected_fg_color, $selected_bg_color, 55%); - } - } - } - &.trough { - - $_scale_trough_bg: if($variant == 'light', $button_border, darken($bg_color, 5%)); - - border: none; - border-radius: 2.5px; - background-image: linear-gradient(to bottom, $_scale_trough_bg); - &.highlight { - background-image: linear-gradient(to bottom, $selected_bg_color); - - &:insensitive { - background-image: linear-gradient(to bottom, transparentize($selected_bg_color, 0.45)); - } - } - &:insensitive { - background-image: linear-gradient(to bottom, transparentize($_scale_trough_bg, 0.45)); - } - - //OSD troughs - .osd & { - background-image: linear-gradient(to bottom, lighten($osd_bg_color, 7%)); - outline-color: transparentize($osd_fg_color, 0.8); - &.highlight { - background-image: none; - background-image: linear-gradient(to bottom, $selected_bg_color); - } - &:insensitive { } - } - // troughs in selected list-rows and infobars - WingpanelWidgetsIndicatorPopover.popover .menuitem:hover &, - .menu .menuitem:hover &, - .list-row:selected &, - GtkInfoBar & { - background-image: linear-gradient(to bottom, transparentize(black, 0.8)); - - &.highlight { - background-image: linear-gradient(to bottom, $selected_fg_color); - - &:insensitive { background-image: linear-gradient(to bottom, mix($selected_fg_color, $selected_bg_color, 55%)); } - } - &:insensitive { background-image: linear-gradient(to bottom, transparentize(black, 0.9)); } - } - } -} - -// -// Progress bars -// -GtkProgressBar { - padding: 0; - font-size: smaller; - color: transparentize($fg_color, 0.3); - - &.osd { - -GtkProgressBar-xspacing: 0; - -GtkProgressBar-yspacing: 0; - -GtkProgressBar-min-horizontal-bar-height: 3; - } -} - -// moving bit -.progressbar { - background-color: $selected_bg_color; - border: none; - border-radius: 3px; - box-shadow: none; //needed for clipping - &.left.right { - - } - &.osd { - background-color: $selected_bg_color; - } - .list-row:selected &, - GtkInfoBar & { background-color: $selected_fg_color; } -} - -.osd .scale.progressbar { - background-color: $selected_bg_color; -} - -// background -GtkProgressBar.trough { - border: none; - border-radius: 3px; - background-color: if($variant == 'light', $button_border, darken($bg_color, 5%)); - - &.osd { - border-style: none; - background-color: transparent; - box-shadow: none; - } - .list-row:selected &, - GtkInfoBar & { background-color: transparentize(black, 0.8); } -} - -// -// Level Bar -// -GtkLevelBar { - -GtkLevelBar-min-block-width: 34; - -GtkLevelBar-min-block-height: 3; - - &.vertical { - -GtkLevelBar-min-block-width: 3; - -GtkLevelBar-min-block-height: 34; - } -} - -.level-bar { - &.trough { - @extend GtkProgressBar.trough; - padding: 3px; - border-radius: 4px; - } - &.fill-block { - // FIXME: it would be nice to set make fill blocks bigger, but we'd need - // :nth-child working on discrete indicators - border: 1px solid $selected_bg_color; - background-color: $selected_bg_color; - border-radius: 2px; - - &.indicator-discrete { - &.horizontal { margin: 0 1px; } - &.vertical { margin: 1px 0; } - } - &.level-high { - border-color: $success_color; - background-color: $success_color; - } - &.level-low { - border-color: $warning_color; - background-color: $warning_color; - } - &.empty-fill-block { - background-color: if($variant=='light', transparentize($fg_color,0.8), $base_color); - border-color: if($variant=='light', transparentize($fg_color,0.8), $base_color); - } - } -} - - -// -// Frames -// -.frame { - border: 1px solid $borders_color; - &.flat { border-style: none; } - padding: 0; - &.action-bar { - padding: 6px; - border-width: 1px 0 0; - } -} - -GtkScrolledWindow { - GtkViewport.frame { // avoid double borders when viewport inside - // scrolled window - border-style: none; - } -} - -//vbox and hbox separators -.separator { - // always disable separators - // -GtkWidget-wide-separators: true; - color: transparentize(black, 0.9); - - // Font and File button separators - GtkFileChooserButton &, - GtkFontButton &, - GtkFileChooserButton &.vertical, - GtkFontButton &.vertical { - // always disable separators - -GtkWidget-wide-separators: true; - } -} - -// -// Lists -// -.list { - background-color: $base_color; - border-color: $borders_color; -} - -.list-row, -.grid-child { - padding: 2px; -} - -.list-row.activatable { - // let's take care of background colors - &:hover { - background-color: if($variant == 'light', transparentize(black, 0.95), transparentize(white, 0.97)); - } - &:active { - color: $fg_color; - } - &:selected { - &:active { color: $selected_fg_color; } - &:hover { background-color: mix(black, $selected_bg_color, 10%); } - &:insensitive { - color: transparentize($selected_fg_color, 0.3); - background-color: transparentize($selected_bg_color, 0.3); - .label { color: inherit; } - } - } -} - -.list-row:selected { - @extend %selected_items; - .button { @extend %selected-button } -} - -// transition -.list-row, list-row.activatable { - transition: all 150ms $ease-out-quad; - &:hover { transition: none; } -} - -// -// App Notifications -// -.app-notification, -.app-notification.frame { - padding: 10px; - color: $dark_sidebar_fg; - background-color: $dark_sidebar_bg; - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: darken($dark_sidebar_bg, 10%); - - .button { - @include button(osd); - &.flat { - @extend %undecorated_button; - border-color: transparentize($selected_bg_color, 1); - &:insensitive { @extend %undecorated_button; } - } - &:hover { @include button(osd-hover); } - &:active, &:checked { @include button(osd-active); background-clip: padding-box; } - &:insensitive { @include button(osd-insensitive); - } - } -} - -// -// Expanders -// -.expander { - -gtk-icon-source: -gtk-icontheme('pan-end-symbolic'); - &:dir(rtl) { -gtk-icon-source: -gtk-icontheme('pan-end-symbolic-rtl'); } - &:hover { color: lighten($fg_color,30%); } //only lightens the arrow - &:checked { -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); } -} - -// -// Calendar -// -GtkCalendar { - color: $fg_color; - border: 1px solid $borders_color; - border-radius: 3px; - padding: 2px; - - &:selected { - background-color: $selected_bg_color; - color: $selected_fg_color; - border-radius: 1.5px; - } - &.header { - color: $fg_color; - border: none; - border-radius: 0; - } - &.button, &.button:focus { - color: transparentize($fg_color,0.55); - @include button(undecorated); - - &:hover { - color: $fg_color; - } - &:insensitive { - color: $insensitive_fg_color; - background-color: transparent; - background-image: none; - } - } - &:inconsistent { color: gtkalpha(currentColor,0.55); } - &.highlight { - color: $fg_color; - } -} - -// -// Dialogs -// -.message-dialog .dialog-action-area .button { - padding: 8px; -} - -.message-dialog { // Message Dialog styling - -GtkDialog-button-spacing: 0; - - .titlebar { background-color: $header_bg; border-bottom: 1px solid darken($header_bg, 7%) } - - &.csd { // rounded bottom border styling for csd version - &.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; - } - .dialog-action-area .button { - padding: 8px; - border-radius: 0; - - @extend %middle_button; - - &:hover, &:active, &:insensitive { - @extend %middle_button; - } - - &:first-child{ @extend %first_button; } - &:last-child { @extend %last_button; } - } - %middle_button { - border-right-style: none; - border-bottom-style: none; - } - %last_button { - border-bottom-right-radius: 3px; - } - %first_button { - border-left-style: none; - border-bottom-left-radius: 3px; - } - } -} - -GtkFileChooserDialog { - .search-bar { - background-color: $bg_color; - border-color: $borders_color; - box-shadow: none; - } - .dialog-action-box { - border-top: 1px solid $borders_color; - } -} - -// -// Sidebar -// -.sidebar, .sidebar .view { - border: none; - background-color: lighten($bg_color, 2%); - - &:selected { @extend %selected_items; } - &.separator { @extend .separator; } -} - -GtkSidebarRow { - // Needs overriding of the GtkListBoxRow padding - - &.list-row { - padding: 0px; - } - // Using margins/padding directly in the SidebarRow - // will make the animation of the new bookmark row jump - .sidebar-revealer { - padding: 3px 14px 3px 12px; - } - .sidebar-icon { - &:dir(ltr) { padding-right: 8px; } - &:dir(rtl) { padding-left: 8px; } - } - .sidebar-label { - &:dir(ltr) { padding-right: 2px; } - &:dir(rtl) { padding-left: 2px; } - } -} - -GtkPlacesSidebar.sidebar { - - .sidebar-placeholder-row { border: solid 1px $selected_bg_color; } - - .sidebar-new-bookmark-row { background-color: darken($bg_color, 10%); } - - // Preserve everything else of the list-row class - .list-row.activatable { - color: transparentize($fg_color, 0.2); - border-width: 0; - border-style: solid; - - &:selected { @extend %selected_items; } - } - - @at-root .sidebar-button.button { // @at-root needded to not change the specificity making button styling inheritance broken - // so istead of "GtkPlacesSidebar.sidebar .sidebar-button.button" [specificity 0,0,3,1] - // the extended selector ".sidebar-button.button" [specificity 0,0,2,0] - - &.image-button { padding: 3px; } - - outline-radius: 50%; - border-radius: 50%; - - @extend .button.flat; - - &:not(:hover):not(:active) > GtkImage { opacity: 0.5 }; - } - // this is for indicating which sidebar row generated a popover - // see https://bugzilla.gnome.org/show_bug.cgi?id=754411 - .has-open-popup { @extend .list-row.activatable:hover; } -} - -.sidebar-item { - padding: 10px 4px; - > GtkLabel { - padding-left: 6px; - padding-right: 6px; - } - &.needs-attention > GtkLabel { - @extend %needs_attention; - background-size: 6px 6px, 0 0; - } -} - -// -// File chooser -// -GtkPlacesView { - .server-list-button > GtkImage { - transition: 200ms $ease-out-quad; - -gtk-icon-transform: rotate(0turn); - } - - .server-list-button:checked > GtkImage { - transition: 200ms $ease-out-quad; - -gtk-icon-transform: rotate(-0.5turn); - } - - .list-row.activatable:hover { background-color: transparent; } -} - -// -// Paned -// -GtkPaned { // this is for the standard paned separator - - -GtkPaned-handle-size: 1; // sets separator width - - -gtk-icon-source: none; // removes handle decoration - margin: 0 8px 8px 0; // drag area of the separator, not a real margin - - &:dir(rtl) { - margin-right: 0; - margin-left: 8px; - } - .pane-separator { - background-color: $borders_color; - } -} - -GtkPaned.wide { // this is for the paned with wide separator - -GtkPaned-handle-size: 5; // wider separator here - margin: 0; // no need of the invisible drag area so, reset margin - .pane-separator { - background-color: transparent; - border-style: none solid; - border-color: $borders_color; - border-width: 1px; - } - &.vertical .pane-separator { border-style: solid none;} -} - -// -// GtkInfoBar -// -GtkInfoBar { - border-style: none; - - .button { @extend %selected-button } -} - -.info, -.question, -.warning, -.error, -GtkInfoBar { - background-color: $selected_bg_color; - color: $selected_fg_color; -} - - -// -// Buttons on selected backgrounds -// -%selected-button { - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - background-color: transparentize($selected_fg_color, 1); - border-color: transparentize($selected_fg_color, 0.5); - - &.flat { - @include button(undecorated); - color: $selected_fg_color; - background-color: transparentize($selected_fg_color, 1); - } - &:hover { - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - background-color: transparentize($selected_fg_color, 0.8); - border-color: transparentize($selected_fg_color, 0.2); - } - &:active, &:active:hover, &:checked { - color: $selected_bg_color; - outline-color: transparentize($selected_bg_color, 0.7); - background-color: $selected_fg_color; - border-color: $selected_fg_color; - } - &:insensitive { - color: transparentize($selected_fg_color, 0.6); - background-color: transparentize($selected_fg_color, 1); - border-color: transparentize($selected_fg_color, 0.8); - - &:active, &:checked { - color: transparentize($selected_bg_color, 0.6); - background-color: transparentize($selected_fg_color, 0.8); - border-color: transparentize($selected_fg_color, 0.8); - } - } -} - -// -// Tooltips -// -.tooltip { - &.background { - // background-color needs to be set this way otherwise it gets drawn twice - // see https://bugzilla.gnome.org/show_bug.cgi?id=736155 for details. - background-color: lighten($osd_bg_color, 10%); - background-clip: padding-box; - } - - color: $osd_fg_color; - border-radius: 2px; - - &.window-frame.csd { - background-color: transparent; - } -} - -.tooltip * { //Yeah this is ugly - padding: 4px; - background-color: transparent; - color: inherit; // just to be sure -} - -// -// Color Chooser -// - -GtkColorSwatch { - // This widget is made of two boxes one on top of the other, the lower box is GtkColorSwatch {} the other one - // is GtkColorSwatch .overlay {}, GtkColorSwatch has the programmatically set background, so most of the style - // is applied to the overlay box. - - // take care of colorswatches on selected elements - :selected & { - box-shadow: none; - &.overlay, &.overlay:hover { - border-color: $selected_fg_color; - } - } - - // border rounding - &.top { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - } - &.bottom { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - } - &.left, &:first-child, &:first-child .overlay { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - } - &.right, &:last-child, &:last-child .overlay { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - } - &:only-child, &:only-child .overlay { - border-radius: 3px; - } - // nth-child works just on the custom colors row - - // hover effect - &:hover, - &:hover:selected { - background-image: linear-gradient(to bottom, transparentize(white, 0.8)); - } - - // no hover effect for the colorswatch in the color editor - GtkColorEditor & { - border-radius: 3px; // same radius as the entry - &:hover { - background-image: none; - } - } - - // indicator and keynav outline colors, color-dark is a color with luminosity lower then 50% - &.color-dark { - color: white; - outline-color: transparentize(black, 0.7); - } - &.color-light { - color: black; - outline-color: transparentize(white, 0.5); - } - - // border color - &.overlay, - &.overlay:selected { - border: 1px solid transparentize(black, 0.85); - &:hover { border-color: transparentize(black, 0.75); } - } - - // make the add color button looks like, well, a button - &#add-color-button { - border-style: solid; // the borders are drawn by the overlay for standard colorswatches to have them semi - border-width: 1px; // translucent on the colored background, here it's not necessary so they need to be set - @include button(normal); - &:hover { @include button(hover); } - .overlay { @include button(undecorated); } // reset the overlay to not cover the button style underneath - } -} - -GtkColorButton.button { - padding: 5px; // Uniform padding on the GtkColorButton - - GtkColorSwatch { border-radius: 0; } -} - -// -// Misc -// -//content view (grid/list) -.content-view { - background-color: $base_color; - &:hover { -gtk-image-effect: highlight; } - &.rubberband { @extend .rubberband; } -} - -.scale-popup .button { // +/- buttons on GtkVolumeButton popup - padding: 6px; - &:hover { - @include button(hover); - } -} - -GtkVolumeButton.button { padding: 8px; } - -// Decouple the font of context menus from their entry/textview -.touch-selection, -.context-menu { font: initial;} - -.monospace { font: Monospace; } - -// -// Overshoot -// -// This is used by GtkScrolledWindow, when content is touch-dragged past boundaries. -// This draws a box on top of the content, the size changes programmatically. -.overshoot { - &.top { @include overshoot(top); } - &.bottom { @include overshoot(bottom); } - &.left { @include overshoot(left); } - &.right { @include overshoot(right); } -} - -// -// Undershoot -// -// Overflow indication, works similarly to the overshoot, the size if fixed tho. -.undershoot { - &.top { @include undershoot(top); } - &.bottom { @include undershoot(bottom); } - &.left { @include undershoot(left); } - &.right { @include undershoot(right); } -} - -// -// Window Decorations -// - -.window-frame { - border-radius: if($darker=='false' and $variant=='light', 4px 4px 0 0, 3px 3px 0 0); - border-width: 0px; - - $_wm_border: if($variant=='light', transparentize(black, 0.9), transparentize(black, 0.45)); - - box-shadow: 0 0 0 1px if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), $_wm_border), - 0 8px 8px 0 if($variant == 'light', opacify($_wm_border, 0.1), transparentize($_wm_border, 0.2)); - - // this is used for the resize cursor area - margin: 10px; - - &:backdrop { - box-shadow: 0 0 0 1px if($darker=='true' or $variant == 'dark', transparentize(darken($header_bg, 7%), 0.1), $_wm_border), - 0 5px 5px 0 if($variant == 'light', opacify($_wm_border, 0.1), transparentize($_wm_border, 0.2)); - } - &.tiled { - border-radius: 0; - } - &.popup { - box-shadow: none; - border-radius: 0; - } - // server-side decorations as used by mutter - &.ssd { - border-radius: if($darker=='false' and $variant=='light', 4px 4px 0 0, 3px 3px 0 0); - box-shadow: 0 0 0 1px if($darker=='true' or $variant == 'dark', transparentize(black, 0.35), $_wm_border); - - &.maximized { border-radius: 0; } - } - &.csd { - &.popup { - border-radius: 2px; - box-shadow: 0 3px 6px if($variant == 'light', $_wm_border, transparentize($_wm_border, 0.1)), - 0 0 0 1px if($variant == 'light', $_wm_border, darken($bg_color, 10%)); - } - &.tooltip { - border-radius: 2px; - box-shadow: 0 1px 3px 1px if($variant == 'light', $_wm_border, transparentize($_wm_border, 0.3)); - } - &.message-dialog { border-radius: 3px; } - } - &.solid-csd { - border-radius: 0; - margin: 1px; - background-color: $header_bg; - box-shadow: none; - } -} - -// -// Titlebuttons -// -.header-bar, -.titlebar { - - &.default-decoration .button.titlebutton { // no vertical padding for ssd buttons - padding-top: 0px; // already handled by the titlebar-padding - padding-bottom: 0px; - } - - .button.titlebutton { - @extend .image-button; - - &:not(GtkMenuButton) { - padding-top: 8px; - padding-bottom: 8px; - } - padding-left: 4px; - padding-right: 4px; - - @include button(undecorated); - background-color: transparentize($header_bg, 1); - - &:hover { - @include button(header-hover); - } - &:active, &:checked { - @include button(header-active); - } - &.close, &.maximize, &.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; - - &:backdrop { opacity: 1; } - } - // Load png assets for each button - @each $k in ('close','maximize', 'minimize') { - @each $l, $m in ('',''), (':backdrop','-backdrop'), (':hover','-hover'), (':active','-active') { - - &.#{$k}#{$l} { background-image: -gtk-scaled(url('assets/titlebutton-#{$k}#{$m}#{$darker_asset_suffix}.png'), - url('assets/titlebutton-#{$k}#{$m}#{$darker_asset_suffix}@2.png')); } - } - } - } -} - -// catch all extend -%selected_items { - background-image: none; - background-color: $selected_bg_color; - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); -} diff --git a/common/gtk-3.0/3.18/sass/_drawing.scss b/common/gtk-3.0/3.18/sass/_drawing.scss deleted file mode 100644 index 36a5f36..0000000 --- a/common/gtk-3.0/3.18/sass/_drawing.scss +++ /dev/null @@ -1,366 +0,0 @@ -// Drawing mixins - -// Entries - -@mixin entry($t) { -// -// Entries drawing function -// -// $t: entry type -// - - @if $t==normal { - // - // normal entry - // - color: $text_color; - border-color: $entry_border; - background-color: $entry_bg; - background-image: linear-gradient(to bottom, $entry_bg); - } - - @if $t==focus { - // - // focused entry - // - color: $text_color; - border-color: if($variant=='light', $selected_bg_color, $button_border); - background-color: $entry_bg; - background-image: linear-gradient(to bottom, $entry_bg); - - @if $variant == 'dark' { - box-shadow: inset 1px 0 $selected_bg_color, - inset -1px 0 $selected_bg_color, - inset 0 1px $selected_bg_color, - inset 0 -1px $selected_bg_color; - } - } - - @if $t==insensitive { - // - // insensitive entry - // - color: $insensitive_fg_color; - border-color: transparentize($entry_border, 0.45); - background-color: transparentize($entry_bg, 0.45); - background-image: linear-gradient(to bottom, transparentize($entry_bg, 0.45)); - } - - @if $t==header-normal { - // - // normal header-bar entry - // - - color: $header_fg; - border-color: $header_entry_border; - background-image: linear-gradient(to bottom, $header_entry_bg); - background-color: transparent; - - &.image, &.image:hover { color: inherit; } - } - - @if $t==header-focus { - // - // focused header-bar entry - // - color: $selected_fg_color; - border-color: if($darker=='false' and $variant=='light', $selected_bg_color, transparent); - background-image: linear-gradient(to bottom, $selected_bg_color); - } - - @if $t==header-insensitive { - // - // insensitive header-bar entry - // - color: transparentize($header_fg, 0.45); - background-image: linear-gradient(to bottom, transparentize($header_entry_bg, 0.15)); - } - - @else if $t==osd { - // - // normal osd entry - // - color: $osd_fg_color; - border-color: $osd_entry_border; - background-image: linear-gradient(to bottom, $osd_entry_bg); - background-color: transparent; - - &.image, &.image:hover { color: inherit; } - } - - @else if $t==osd-focus { - // - // active osd entry - // - color: $selected_fg_color; - border-color: $osd_entry_border; - background-image: linear-gradient(to bottom, $selected_bg_color); - } - - @else if $t==osd-insensitive { - // - // insensitive osd entry - // - color: transparentize($osd_fg_color, 0.45); - background-image: linear-gradient(to bottom, transparentize($osd_entry_bg, 0.15)); - } -} - -// Buttons - -@mixin button($t, $actionb_bg:red, $actionb_fg: green) { -// -// Button drawing function -// -// $t: button type, -// $actionb_bg, $actionb_fg: used for destructive and suggested action buttons - - @if $t==normal { - // - // normal button - // - color: $fg_color; - outline-color: transparentize($fg_color, 0.7); - border-color: $button_border; - background-color: $button_bg; - } - - @else if $t==hover { - // - // hovered button - // - color: $fg_color; - outline-color: transparentize($fg_color, 0.7); - border-color: $button_border; - background-color: lighten($button_bg, 5%); - } - - @else if $t==active { - // - // pushed button - // - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - - border-color: if($variant=='light', $selected_bg_color, $button_border); - background-color: $selected_bg_color; - } - - @else if $t==insensitive { - // - // insensitive button - // - color: $insensitive_fg_color; - border-color: transparentize($button_border, 0.45); - background-color: transparentize($button_bg, 0.45); - - > GtkLabel { color: inherit; } - } - - @else if $t==insensitive-active { - // - // insensitive pushed button - // - color: transparentize($selected_fg_color, 0.2); - border-color: transparentize($selected_bg_color, 0.25); - background-color: transparentize($selected_bg_color, 0.25); - - opacity: 0.6; - - > GtkLabel { color: inherit; } - } - - @if $t==header-normal { - // - // normal header-bar button - // - color: $header_fg; - outline-color: transparentize($header_fg, 0.7); - outline-offset: -3px; - background-color: transparentize($header_bg, 1); - border-color: transparentize($header_bg, 1); - } - - @else if $t==header-hover { - // - // hovered header-bar button - // - color: $header_fg; - outline-color: transparentize($header_fg, 0.7); - border-color: $header_button_border; - background-color: $header_button_bg; - } - - @else if $t==header-active { - // - // pushed header-bar button - // - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - border-color: if($darker=='false' and $variant=='light', $selected_bg_color, transparent); - background-color: $selected_bg_color; - } - - @else if $t==header-insensitive { - // - // insensitive header-bar button - // - color: transparentize($header_fg, 0.45); - background-color: transparentize($header_bg, 1); - border-color: transparentize($header_bg, 1); - - > GtkLabel { color: inherit; } - } - - @else if $t==header-insensitive-active { - // - // header-bar insensitive pushed button - // - color: transparentize($selected_fg_color, 0.25); - border-color: transparentize($selected_bg_color, 0.35); - background-color: transparentize($selected_bg_color, 0.35); - } - - @else if $t==osd { - // - // normal osd button - // - color: $osd_fg_color; - outline-color: transparentize($osd_fg_color, 0.7); - border-color: $osd_button_border; - background-color: $osd_button_bg; - } - - @else if $t==osd-hover { - // - // active osd button - // - color: $osd_fg_color; - outline-color: transparentize($osd_fg_color, 0.7); - border-color: $osd_button_border; - background-color: opacify(lighten($osd_button_bg, 7%), 0.1); - } - - @else if $t==osd-active { - // - // active osd button - // - color: $selected_fg_color; - outline-color: transparentize($selected_fg_color, 0.7); - border-color: $osd_button_border; - background-color: $selected_bg_color; - } - - @else if $t==osd-insensitive { - // - // insensitive osd button - // - color: $osd_insensitive_fg_color; - border-color: $osd_button_border; - background-color: transparentize($osd_button_bg, 0.15); - } - - @else if $t==suggested_destructive { - // - // suggested or destructive action buttons - // - background-clip: border-box; - - color: $actionb_fg; - outline-color: transparentize($actionb_fg, 0.7); - background-color: $actionb_bg; - border-color: $actionb_bg; - } - - @else if $t==undecorated { - // - // reset - // - border-color: transparent; - background-color: transparent; - background-image: none; - } -} - -// -// Overshoot -// -@mixin overshoot($p, $c:$selected_bg_color) { -// $p: position -// $c: base color -// -// possible $p values: -// top, bottom, right, left -// - - $_big_gradient_length: 60%; - - $_position: center top; - $_big_gradient_size: 100% $_big_gradient_length; - - @if $p==bottom { - $_position: center bottom; - } - - @else if $p==right { - $_position: right center; - $_big_gradient_size: $_big_gradient_length 100%; - } - - @else if $p==left { - $_position: left center; - $_big_gradient_size: $_big_gradient_length 100%; - } - - background-image: -gtk-gradient(radial, - $_position, 0, - $_position, 0.6, - from(transparentize($c, 0.8)), - to(transparentize($c, 1))); - - background-size: $_big_gradient_size; - background-repeat: no-repeat; - background-position: $_position; - - background-color: transparent; // reset some properties to be sure to not inherit them somehow - border: none; // - box-shadow: none; // -} - -// -// Undershoot -// -@mixin undershoot($p) { -// $p: position -// -// possible $p values: -// top, bottom, right, left -// - - $_undershoot_color_dark: transparentize(black, 0.8); - $_undershoot_color_light: transparentize(white, 0.8); - - $_gradient_dir: left; - $_dash_bg_size: 10px 1px; - $_gradient_repeat: repeat-x; - $_bg_pos: center $p; - - background-color: transparent; // shouldn't be needed, but better to be sure; - - @if ($p == left) or ($p == right) { - $_gradient_dir: top; - $_dash_bg_size: 1px 10px; - $_gradient_repeat: repeat-y; - $_bg_pos: $p center; - } - - background-image: linear-gradient(to $_gradient_dir, // this is the dashed line - $_undershoot_color_light 50%, - $_undershoot_color_dark 50%); - - padding-#{$p}: 1px; - background-size: $_dash_bg_size; - background-repeat: $_gradient_repeat; - background-origin: content-box; - background-position: $_bg_pos; -} diff --git a/common/gtk-3.0/3.18/sass/_granite.scss b/common/gtk-3.0/3.18/sass/_granite.scss deleted file mode 100644 index c6c59dd..0000000 --- a/common/gtk-3.0/3.18/sass/_granite.scss +++ /dev/null @@ -1,225 +0,0 @@ -// Granite Widgets - -// -// Overlay Bar -// -.overlay-bar { - background-color: $selected_bg_color; - border-color: $selected_bg_color; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; - - GtkLabel { color: $selected_fg_color; } -} - -// -// Thin Pane Separator -// -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid $borders_color; - border-right: 1px solid $borders_color; - -} - -// avoid borders when a viewport is -// packed into a Static Notebook, or Popover -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; -} - -// -// Help Button -// -.help_button { - border-radius: 100px; - padding: 3px 9px; -} - -// -// Secondary Toolbars -// -.secondary-toolbar.toolbar { - padding: 3px; - border-bottom: 1px solid $borders_color; - - .button { padding: 0 3px 0 3px; } -} - -// -// Bottom Toolbars -// -.bottom-toolbar.toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: $borders_color; - background-color: $bg_color; - - .button { padding: 2px 3px 2px 3px; } -} - -// -// Sidebar & Source List -// -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; -} - -.source-list, -.source-list.view { - background-color: $bg_color; - color: $fg_color; - -gtk-icon-style: regular; -} - -.source-list.category-expander { - color: transparent; -} - -.source-list.view:prelight { - background-color: lighten($bg_color, 5%); -} - -.source-list.view:selected, -.source-list.view:prelight:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: $selected_fg_color; - background-color: $selected_bg_color; -} - -.source-list .scrollbar.trough, -.source-list .scrollbars-junction { - border-image: none; - border-color: transparent; - background-color: $bg_color; - background-image: none; -} - -.source-list.badge, -.source-list.badge:prelight, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-image: none; - background-color: $selected_bg_color; - color: $selected_fg_color; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; -} - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:prelight:selected { - background-color: $selected_fg_color; - color: $selected_bg_color; -} - -// -// Expander -// -.source-list.category-expander { - color: $fg_color; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; -} - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; -} - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); -} - -// -// Notebook -// -.dynamic-notebook .notebook tab { - .button > GtkImage { padding: 0; } -} - -// -// Welcome -// -GraniteWidgetsWelcome { - background-color: $base_color; -} - -GraniteWidgetsWelcome GtkLabel { - color: mix($fg_color, $bg_color, 50%); - font: open sans 11; - text-shadow: none; -} - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: transparentize($fg_color, 0.2); -} - -// -// Help Button -// -.help_button { - border-radius: 0; -} - -// -// Popover -// -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - - border: 1px solid transparentize(black, 0.7); - margin: 0; -} - -.popover_bg { - background-image: linear-gradient(to bottom, $base_color); - border: 1px solid transparentize(black, 0.7); -} - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; -} - -// -// Xs Entry -// -GraniteWidgetsXsEntry.entry { padding: 4px; } - -// -// Text Styles -// -.h1 { font: open sans 24px; } -.h2 { font: open sans light 18px; } -.h3 { font: open sans 11px; } -.h4, -.category-label { - color: mix($bg_color, $text_color, 30%); - font-weight: 600; -} - -.h4 { - padding-bottom: 6px; - padding-top: 6px; -} - -GtkListBox .h4{ - padding-left: 6px; -} diff --git a/common/gtk-3.0/3.18/sass/_lightdm.scss b/common/gtk-3.0/3.18/sass/_lightdm.scss deleted file mode 100644 index bb7214a..0000000 --- a/common/gtk-3.0/3.18/sass/_lightdm.scss +++ /dev/null @@ -1,113 +0,0 @@ -// the panel widget at the top -#panel_window { - background-color: $panel_bg; - color: $panel_fg; - font: bold; - box-shadow: inset 0 -1px darken($panel_bg, 7%); - - // the menubars/menus of the panel, i.e. indicators - .menubar { - padding-left: 5px; - - &, > .menuitem { - background-color: transparent; - color: $panel_fg; - font: bold; - } - } - - .menubar .menuitem:insensitive { - color: transparentize($panel_fg, 0.5); - - GtkLabel { color: inherit; } - } - .menubar .menu .menuitem { font: normal; } -} - -// the login window -#login_window, -#shutdown_dialog, -#restart_dialog { - font: normal; - border-style: none; - background-color: transparent; - color: $fg_color; -} - -// the top half of the login-window, in GtkDialog terms, the content -#content_frame { - padding-bottom: 14px; - background-color: $bg_color; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid transparentize(black, 0.9); - border-width: 1px 1px 0 1px; -} - -#content_frame .button { - @include button(normal); - - &:hover { @include button(hover); } - &:active, &:checked { @include button(active); } - &:insensitive { @include button(insensitive); } -} - -// the lower half of the login-window, in GtkDialog terms the buttonbox or action area -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: if($variant=='light', $osd_bg_color, $header_bg); - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid transparentize(black, 0.9); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px if($variant=="light", $dark_sidebar_border, $header_border); -} - -#buttonbox_frame .button{ - @include button(osd); - - &:hover { @include button(osd-hover); } - &:active, &:checked { @include button(osd-active); } - &:insensitive { @include button(osd-insensitive); } -} - -#login_window #user_combobox { - color: $fg_color; - font: 13px; - - .menu { font: normal; } - .arrow {} -} - -// the user's avatar box -#user_image { - padding: 3px; - border-radius: 2px; -} - -// the border around the user's avatar box -#user_image_border {} - -// the shutdown button -#shutdown_button.button { - @include button(suggested_destructive, $destructive_color); - - &:hover { @include button(suggested_destructive, lighten($destructive_color, 10%)); } - &:active, &:checked { @include button(suggested_destructive, darken($destructive_color, 10%)); } -} - -// the restart button -#restart_button.button { - @include button(suggested_destructive, $suggested_color); - - &:hover { @include button(suggested_destructive, lighten($suggested_color, 10%)); } - &:active, &:checked { @include button(suggested_destructive, darken($suggested_color, 10%)); } -} - -// the warning, in case a wrong password is entered or something else goes wrong according to PAM -#greeter_infobar { - border-bottom-width: 0; - font: bold; -} diff --git a/common/gtk-3.0/3.18/sass/_transparent_widgets.scss b/common/gtk-3.0/3.18/sass/_transparent_widgets.scss deleted file mode 100644 index aeae067..0000000 --- a/common/gtk-3.0/3.18/sass/_transparent_widgets.scss +++ /dev/null @@ -1,285 +0,0 @@ -.titlebar .separator { - color: $header_border; //fixes separator in gnome-tweak-tool -} - -NemoWindow GtkEventBox { background-color: $bg_color; } // fixes nemo statusbar - -GtkFileChooserDialog *, -NautilusWindow *, -NemoWindow { - -GtkPaned-handle-size: 0; -} - -@if $variant==dark { - GtkFileChooserDialog, - NautilusWindow , - NemoWindow { - .sidebar { border-right: 1px solid $dark_sidebar_border; } - - .sidebar:dir(rtl) { border-left: 1px solid $dark_sidebar_border; } - } -} - -// Dark transparent sidebars -GtkFileChooserDialog, -NautilusWindow { - - &.csd.background, .list.sidebar { background-color: transparent; } - - GtkPlacesSidebar.sidebar { - background-color: $dark_sidebar_bg; - - .sidebar-placeholder-row.list-row.activatable { border: 1px solid $selected_bg_color; } - - .sidebar-new-bookmark-row { background-color: lighten($dark_sidebar_bg, 10%); } - - .list-row.activatable { - border: none; - color: $dark_sidebar_fg; - - .sidebar-icon { color: transparentize($dark_sidebar_fg, 0.4); } - - &:hover { background-color: transparentize($dark_sidebar_fg, 0.85); } - - &:selected, &:selected:hover, &:active:hover { - @extend %selected_items; - .sidebar-icon { color: inherit; } - } - } - - .sidebar-button.button { - color: $dark_sidebar_fg; - - &:hover { @include button(osd-hover); } - &:active { - background-clip: padding-box; - @include button(osd-active); - } - - &:not(:hover):not(:active) > GtkImage { opacity: 0.5 }; - } - - .separator { color: transparent; } - - .scrollbar { @extend %dark_sidebar_scrollbar } - } - - &.maximized GtkPlacesSidebar.sidebar { background-color: opacify($dark_sidebar_bg, 1); } -} - - -NemoWindow, -MarlinViewWindow { - - &.csd.background, - .source-list, .source-list.view, .source-list.view:prelight { background-color: transparent; } - - .sidebar, .source-list.sidebar.view { - background-color: $dark_sidebar_bg; - - .view, row { - background-color: transparent; - color: $dark_sidebar_fg; - - &.image { color: transparentize($dark_sidebar_fg, 0.3); } - - &.cell:selected { - background-color: $selected_bg_color; - color: $selected_fg_color; - } - } - - &.frame { - color: $dark_sidebar_fg; - } - - .separator { color: transparent; } - - .scrollbar { @extend %dark_sidebar_scrollbar } - } - &.maximized .sidebar { background-color: opacify($dark_sidebar_bg, 1); } - -} - -NemoWindow.background > GtkGrid > GtkPaned > .pane-separator, -MarlinViewWindow.background > GtkBox > GtkPaned > .pane-separator { background-color: $dark_sidebar_border } - -// Fix Nautilus transparency issues -NautilusWindow NautilusWindowSlot { background-color: $base_color; } -NautilusDesktopWindow NautilusWindowSlot { background-color: transparent; } - -GtkFileChooserDialog { - - &.background.csd, &.background { background-color: $dark_sidebar_bg } - GtkPlacesSidebar.sidebar { background-color: transparent } - - // Yeah, this is ugly, but prevents a transparent background in the image preview box - GtkPaned > .vertical > .horizontal { background-color: $bg_color; } - - // fix for non gnome environments - .dialog-action-box { background-color: $bg_color } - - .dialog-vbox > .frame { - color: $dark_sidebar_fg; - border-color: transparent; - } - GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame { - background-color: transparent; - border-color: if($variant =='light', darken($dark_sidebar_bg, 7%), darken($dark_sidebar_bg, 15%)); - } - - GtkFileChooserWidget > GtkActionBar > GtkRevealer > .action-bar.frame, - .dialog-vbox > .frame { - - .button { @extend %dark_sidebar_button; } - .entry { @extend %dark_sidebar_entry; } - - @extend %osd_check_radio; - - GtkLabel, GtkComboBox { color: $dark_sidebar_fg; } - } -} - -// -// Paned Headerbars -// -FeedReaderreaderUI.background.csd, -GeditWindow.background.csd { - - > .titlebar .pane-separator, - &.maximized > .titlebar .pane-separator, - > .titlebar .pane-separator:backdrop, - &.maximized > .titlebar .pane-separator:backdrop { background-color: $header_border; } - - > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: $header_bg; - - &:backdrop { background-color: $header_bg_backdrop; } - } - - &.maximized > .titlebar > GtkHeaderBar.header-bar.titlebar { - background-color: opacify($header_bg, 1); - - &:backdrop { background-color: opacify($header_bg_backdrop, 1); } - } -} - -FeedReaderreaderUI.background.csd > FeedReaderreaderHeaderbar.titlebar, -GeditWindow.background.csd > .titlebar { - background-color: transparent; -} - -// Gedit -GeditWindow.background { - &.csd { background-color: transparent; } - - .gedit-side-panel-paned .pane-separator { background-color: $dark_sidebar_border; } - .gedit-bottom-panel-paned .pane-separator { background-color: $borders_color; } -} - -.gedit-bottom-panel-paned { background-color: $base_color; } - -.gedit-document-panel { - background-color: $dark_sidebar_bg; - - .maximized & { background-color: opacify($dark_sidebar_bg, 1); } - - .list-row { color: $dark_sidebar_fg; } - - .list-row { - background-color: transparentize($dark_sidebar_fg, 1); - border: solid transparentize($dark_sidebar_fg, 1); - border-width: 3px 2px 3px 2px; - } - .list-row:hover { - border: solid transparentize($dark_sidebar_fg, 0.85); - border-width: 3px 2px 3px 2px; - background-color: transparentize($dark_sidebar_fg, 0.85); - } - .list-row:active { - color: $selected_fg_color; - background-color: $selected_bg_color; - border: solid $selected_bg_color; - border-width: 3px 2px 3px 2px; - - .button { color: $selected_fg_color; } - } - .list-row:selected, .list-row:selected:hover { - color: $selected_fg_color; - background-color: $selected_bg_color; - border: solid $selected_bg_color; - border-width: 3px 2px 3px 2px; - } - .prelight-row .button:active { - color: $dark_sidebar_fg; - } -} - -GeditFileBrowserWidget { - background-color: $dark_sidebar_bg; - - .maximized & { background-color: opacify($dark_sidebar_bg, 1); } - - .scrollbar { @extend %dark_sidebar_scrollbar; } - - .horizontal { - background-color: transparent; - border-color: darken($dark_sidebar_bg, 7%); - - .button { @extend %dark_sidebar_button; } - GtkComboBox { color: $dark_sidebar_fg; } - } -} - -GeditWindow.background.csd GeditFileBrowserView.view { - - background-color: transparent; - color: $dark_sidebar_fg; - - &.expander { - color: $dark_sidebar_fg; - &:hover { color: $selected_bg_color; } - } -} - -%dark_sidebar_button { - @include button(osd); - - &:hover { @include button(osd-hover); } - &:active, &:checked { @include button(osd-active); } - &:insensitive { @include button(osd-insensitive); } -} - -%dark_sidebar_entry { - @include entry(osd); - - &:focus { @include entry(osd-focus); } - &:insensitive { @include entry(osd-insensitive); } -} - -%dark_sidebar_scrollbar { - - &.overlay-indicator:not(.dragging):not(.hovering) .slider { - background-color: lighten($dark_sidebar_fg, 15%); - border: 1px solid transparentize(black, 0.7); - } - - // trough coloring - .trough { - background-color: transparentize(black, 0.8); - border: none; - } - - // slider coloring - .slider { - background-color: transparentize(lighten($dark_sidebar_fg, 15%), 0.3); - - &:hover { background-color: lighten($dark_sidebar_fg, 20%); } - - &:prelight:active { background-color: $selected_bg_color; } - - &:insensitive { - background-color: transparent; - } - } -} diff --git a/common/gtk-3.0/3.18/sass/_unity.scss b/common/gtk-3.0/3.18/sass/_unity.scss deleted file mode 100644 index 501d480..0000000 --- a/common/gtk-3.0/3.18/sass/_unity.scss +++ /dev/null @@ -1,159 +0,0 @@ -// Decorations -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: $selected_bg_color; - - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; - - &.top { - border: 1px solid if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), transparentize(black, 0.9)); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - - background-image: linear-gradient(to bottom, opacify($header_bg, 1)); - color: $header_fg; // The foreground color will be used to paint the text - - box-shadow: inset 0 1px lighten($header_bg, 3%); - - &:backdrop { - border-bottom-width: 0; - //background-image: linear-gradient(to bottom, opacify($header_bg_backdrop, 1)); - color: transparentize($header_fg, 0.3); - } - } - &.left, &.right, &.bottom, - &.left:backdrop, &.right:backdrop, &.bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), transparentize(black, 0.9))); - } -} - -// Panel Style -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36); - color: lighten($panel_fg, 20%); - box-shadow: none; - - &:backdrop { color: lighten($panel_fg, 1%); } -} - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: $selected_fg_color; - background-image: linear-gradient(to bottom, $selected_bg_color); - border-bottom: none; -} - -// Unity Greeter -.lightdm.menu { - background-image: none; - background-color: transparentize(black, 0.6); - border-color: transparentize(white, 0.2); - border-radius: 4px; - padding: 1px; - color: white; -} - -.lightdm-combo .menu { - background-color: lighten($header_bg, 8); - border-radius: 0px; - padding: 0px; - color: white; -} - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; -} - -.lightdm.menubar { - color: transparentize(white, 0.2); - background-image: none; - background-color: transparentize(black, 0.5); - - & > .menuitem { - padding: 2px 6px; - } -} - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: transparentize(black, 0.7); - border-color: transparentize(white, 0.6); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; -} - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focused, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focused { - background-image: none; - border-image: none; -} - -.lightdm.button:focused, -.lightdm.entry:focused { - border-color: transparentize(white, 0.9); - border-width: 1px; - border-style: solid; - color: white; -} - -.lightdm.entry:selected { - background-color: transparentize(white, 0.2); -} - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; -} - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; -} - -.lightdm.toggle-button { - background: none; - border-width: 0; - - &.selected { - background-color: transparentize(black, 0.3); - border-width: 1px; - } -} - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); - } -} diff --git a/common/gtk-3.0/3.18/sass/gtk-dark.scss b/common/gtk-3.0/3.18/sass/gtk-dark.scss deleted file mode 100644 index 529ee3d..0000000 --- a/common/gtk-3.0/3.18/sass/gtk-dark.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'dark'; -$darker: 'false'; -$transparency: 'true'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.18/sass/gtk-darker.scss b/common/gtk-3.0/3.18/sass/gtk-darker.scss deleted file mode 100644 index 34b8f81..0000000 --- a/common/gtk-3.0/3.18/sass/gtk-darker.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'light'; -$darker: 'true'; -$transparency: 'true'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.18/sass/gtk-solid-dark.scss b/common/gtk-3.0/3.18/sass/gtk-solid-dark.scss deleted file mode 100644 index 959d8b1..0000000 --- a/common/gtk-3.0/3.18/sass/gtk-solid-dark.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'dark'; -$darker: 'false'; -$transparency: 'false'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.18/sass/gtk-solid-darker.scss b/common/gtk-3.0/3.18/sass/gtk-solid-darker.scss deleted file mode 100644 index 45b7dbe..0000000 --- a/common/gtk-3.0/3.18/sass/gtk-solid-darker.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'light'; -$darker: 'true'; -$transparency: 'false'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.18/sass/gtk-solid.scss b/common/gtk-3.0/3.18/sass/gtk-solid.scss deleted file mode 100644 index 28ff2b6..0000000 --- a/common/gtk-3.0/3.18/sass/gtk-solid.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'light'; -$darker: 'false'; -$transparency: 'false'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.18/sass/gtk.scss b/common/gtk-3.0/3.18/sass/gtk.scss deleted file mode 100644 index 9bb0348..0000000 --- a/common/gtk-3.0/3.18/sass/gtk.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'light'; -$darker: 'false'; -$transparency: 'true'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.20/assets.svg b/common/gtk-3.0/3.20/assets.svg deleted file mode 100644 index 7c8db61..0000000 --- a/common/gtk-3.0/3.20/assets.svg +++ /dev/null @@ -1,5965 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/common/gtk-3.0/3.20/assets.txt b/common/gtk-3.0/3.20/assets.txt deleted file mode 100644 index a11af04..0000000 --- a/common/gtk-3.0/3.20/assets.txt +++ /dev/null @@ -1,84 +0,0 @@ -checkbox-checked -checkbox-checked-insensitive -checkbox-unchecked -checkbox-unchecked-insensitive -checkbox-mixed -checkbox-mixed-insensitive -radio-checked -radio-checked-insensitive -radio-unchecked -radio-unchecked-insensitive -radio-mixed -radio-mixed-insensitive -checkbox-checked-selected -checkbox-checked-insensitive-selected -checkbox-unchecked-selected -checkbox-unchecked-insensitive-selected -checkbox-mixed-selected -checkbox-mixed-insensitive-selected -checkbox-checked-selectionmode -checkbox-selectionmode -radio-checked-selected -radio-checked-insensitive-selected -radio-unchecked-selected -radio-unchecked-insensitive-selected -radio-mixed-selected -radio-mixed-insensitive-selected -switch -switch-active -switch-insensitive -switch-active-insensitive -switch-header -switch-active-header -switch-insensitive-header -switch-active-insensitive-header -switch-selected -switch-active-selected -switch-insensitive-selected -switch-active-insensitive-selected -titlebutton-close -titlebutton-close-backdrop -titlebutton-close-hover -titlebutton-close-active -titlebutton-maximize -titlebutton-maximize-backdrop -titlebutton-maximize-hover -titlebutton-maximize-active -titlebutton-minimize -titlebutton-minimize-backdrop -titlebutton-minimize-hover -titlebutton-minimize-active -checkbox-checked-dark -checkbox-checked-insensitive-dark -checkbox-unchecked-dark -checkbox-unchecked-insensitive-dark -checkbox-mixed-dark -checkbox-mixed-insensitive-dark -checkbox-checked-selectionmode-dark -checkbox-selectionmode-dark -radio-checked-dark -radio-checked-insensitive-dark -radio-unchecked-dark -radio-unchecked-insensitive-dark -radio-mixed-dark -radio-mixed-insensitive-dark -switch-dark -switch-active-dark -switch-insensitive-dark -switch-active-insensitive-dark -switch-header-dark -switch-active-header-dark -switch-insensitive-header-dark -switch-active-insensitive-header-dark -titlebutton-close-dark -titlebutton-close-backdrop-dark -titlebutton-close-hover-dark -titlebutton-close-active-dark -titlebutton-maximize-dark -titlebutton-maximize-backdrop-dark -titlebutton-maximize-hover-dark -titlebutton-maximize-active-dark -titlebutton-minimize-dark -titlebutton-minimize-backdrop-dark -titlebutton-minimize-hover-dark -titlebutton-minimize-active-dark diff --git a/common/gtk-3.0/3.20/assets/checkbox-checked-dark.png b/common/gtk-3.0/3.20/assets/checkbox-checked-dark.png deleted file mode 100644 index a2fd5a91697a611ad6ad03e9a8a1600527a87038..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 360 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(T7XZ8 zE09*}xun*0Nwxd3TK6R=YB{dfdP1%3lv?{4wa#-uLG_&Z>P0KmE4QduZBwt^tzNfB zz44HG#~Cd{8!bayEh}#=D<3V}04>`kACCBE&ER_dRAYQ$`F%1g7)Et^_rs#ov))!4Ko mclAWB^Y>rs7}#{quV<_g=89tV-`EGVjKR~@&t;ucLK6VHk8`&G diff --git a/common/gtk-3.0/3.20/assets/checkbox-checked-dark@2.png b/common/gtk-3.0/3.20/assets/checkbox-checked-dark@2.png deleted file mode 100644 index 949c3696e63efaa6c6272bba30f74e7834a2f84c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 487 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ET>(BJ zu0Wb$)hdUE{c3#|R5~wew4Yb&zogoINxkc`diQ0uo{MVTm%!+yZu~BeoN0Rzp?sNv18lxoQpYsj~?99f7s^s1(`hzn{s!|Kh(>=0 zWfw$T&Yx$~6?%XAk>84TBAb`Zd=WP1+S+$PIj7yq_vn3jljb9l&o7wXW|zPDo5kY2 TrE}*4J;31U>gTe~DWM4fh1tK6 diff --git a/common/gtk-3.0/3.20/assets/checkbox-checked-insensitive-dark.png b/common/gtk-3.0/3.20/assets/checkbox-checked-insensitive-dark.png deleted file mode 100644 index 423046a6a0639ace67bf9c4d0ac1abfc9cf371fb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 369 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(RDe&2 zE09*}xun{8R<-}Kde0^G?n`Rf^VEu0s8wuHtJRhIVEXmh1$YE>{xd7tElc zsaaFog9E&)Hqr;GjQ4bL43P-W?f2wsP~c(EZc@_92)y&*|NSoxiUM?83(oF@gQ^^n-V{bvv%_IQ_WXHSyNDnKmqM{}i$=pLntI(~gjRWg6$TI#WIV h*v?IDHUIkD{{L-WjW0QF^+2l_JYD@<);T3K0RZb6gDU_4 diff --git a/common/gtk-3.0/3.20/assets/checkbox-checked-insensitive-dark@2.png b/common/gtk-3.0/3.20/assets/checkbox-checked-insensitive-dark@2.png deleted file mode 100644 index 2a982990ce17180cbdd274d916ebfea9e65b9502..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 502 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Ebpbvh zu0Wch0SNvpb(~S^xU1c8Or!0jTF(`=&I@XNS5><&s)5jDwXQ2_xeL^aSE$wPQLEdl z*05i#^@Ljc8MUs98u9HKNs~0vrfOu(*2tc#k-to%bhVbDjh2sWZ3741*}IzX!=$S;_IiHV-DpW0v#Bi&o}Wc0|#I~!Wh>dZS@dHa>%QOD~q5^Y)vFZ6SYe-q$5cc+q3d5VqNucs?`f$nGUboFyt I=akR{0P+#RTL1t6 diff --git a/common/gtk-3.0/3.20/assets/checkbox-checked-insensitive-selected.png b/common/gtk-3.0/3.20/assets/checkbox-checked-insensitive-selected.png deleted file mode 100644 index 36f2199386b77b3af29730bd2b2a5d6a3591f59c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 386 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(T7XZ8 zE0F&G>DkZE5B~pr_V@dvzh55#Nwuzv8a)@adM@kqT(p^b*=G7>yXlvmXI^%lec5l` z)qn+8BbQx`UUoHh#q}*0?;N~&@8Y8emml4``sBf#XAkZ@fAsA2qxbJ0efsd|%ZEol zK0W#S?TOg=%;i9vluCm9f*CY4HEU{XdvJqG=ezxYsuMh29780+bI(WeH7M|~1h{N? z_q(rQ?|)TQMoyRK`Ei%Fs6Lr&;wQp8nHueV+8O2cOHWcw1EOKbN0yKy(vp*A!i#T@0SCelF{r5}E)( C0Io;? diff --git a/common/gtk-3.0/3.20/assets/checkbox-checked-insensitive-selected@2.png b/common/gtk-3.0/3.20/assets/checkbox-checked-insensitive-selected@2.png deleted file mode 100644 index 55cc55f4cd47d14b2a6b69df0b16087ab41db77f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 490 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)E)d4;s zu0Z-f5WKq!#Q#5D{r~Cu|6h-OeS7@>*JB|0_d5uwbzRixxv151S*P!!{)CH$lP=p# zz3epeviIDpAq%dCEV`Pw^6I36w-=naz3kMT^%w4Jyl`jR#XEbh-Z^;l-tpV_?mT;N z@7aS#&mTQ{`RM)oNAEv8`tsq?-)~Q5UW;o0TCZ6WUoih&CeAsLgiB}kF8vHUPWq|#SzOtovUAqT(2xUw)0f$2|bDHUPnKfJqUlS z@gQxphEM9^hVNNhB{Uv1U&zyb@Z9hBt)Pl6_jI@FUCXo9-MGvytjoXR{8ahn^Oo%W z|JYHny6vQKm&!qlSM0Wa?%&<+`yaXEe?;TsbKX_K35=oYp^QLxGkCiCxvXPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE09*}xun{8R<-}Kde0^G?n`Q27j^nB>QA_AIO($Kq{}u_FT2jZ>^}FZ@4Tx43$7-u zyq>%M=JDJ2PTaY7@zI0Jj~?86{^;4uN6%hA`tjw-uWyfjeS7lv+mk&qy>oy@%a#QB z1v6-9YSz^DUIt@7wZEU{1Fd54boFyt=akR{0H<`8D*ylh diff --git a/common/gtk-3.0/3.20/assets/checkbox-checked-insensitive@2.png b/common/gtk-3.0/3.20/assets/checkbox-checked-insensitive@2.png deleted file mode 100644 index 89045dee464b3a946cf4f3e7178e4f8c02e6778e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 502 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EjR8I( zu0Wch0SNvpb(~S^xU1c8Or!0jTF(`=&I@XNS5><&s)5jDwXQ2_T^IEyTsEC_*=hP^ zrsXJ3t7b~S0`^^DawbJyQ2-gvWg^UazqH=B3ep0NM+;hXm^+`D(-!GoJm9z1&f z=-KN>&tE_K@Zr&?50Acldi3MdlV9H+{r>jk@3$w}2U-<@ZqP0X@(X5QV&dl)5;iq6 zGjC{U?7;`PI*+#kwQcZpaSYKozxMJ?p(X_pwge7eUB#*2Y;V8W^Pib*7H@}p+N^)K z^V^>4wEQsUI_Af8>s3qlybn(nGkLC=TGSIG_Z#H1Jk9>QJNtg)5w`2PTy;gbXK~tv$6NR>uZR^sbw@R6%8$=%0#o%uH!3_g P2Zg(*tDnm{r-UW|q9^Cz diff --git a/common/gtk-3.0/3.20/assets/checkbox-checked-selected.png b/common/gtk-3.0/3.20/assets/checkbox-checked-selected.png deleted file mode 100644 index 82e8ca00f493b364db3c63cae0b327f18b562911..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 363 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(W`IwK zE0F&4^)VPd`TOlL1gUjj(&)LQ*>hRD_mb_jE4I_G*iFCUJoAd{tSkQWuLdr-8nyIV z^s;NQ%dc;}bobzmdzT(Qxcu<`wZ{+cJbQ5O`NL7XgpFTYL^6}A+&md## zGxLFVF|d~e`2{n0dU-#3{3P0Z%?hAUqNj^vh(vg9|4F_E1s<2xO*`IOYu)(&--BOa z;lc9R(|wk)a(D!le2`$Us4`%1Xwv`U)GGJ+r|>JsE0b3&6%D_6-%NU8)J0yk+ox`F t1bWt|YHyl*PEI@M;SX!uZ#>Zuoc5!lIL8@MUQTpt6Hc~)Ey#YQU zu0Z-f1bln^|J#%Q-|zqb@$k?0M_}~$&)3I)zd?~&_a*i2OBy|wG(Afac;W80OLzBN zyL<4)y<@lT-+lJr-m?dfUOasC^5OgUkKTWH^yT9tphe}jg-?JE;wuUA3ua(uk(Nj%TBQrACso-%0re!S{+J)}BfTd39k z;Q6!kitH}d&(nK&(yEr+qAXP8FD1G)j8!4co>Hwb* zS0Js{b4ji1l4|#5weCw$RJ%v5VZU0(IknESYF!u9x-J66)$^CAm#$N<+OA%^OTBKN zdc#5W#slgdXVg2+YJ^s5WX#aWTd3)oqUoKX8CpG2FlSpgK<;_2cTVsZNJm779M z3L%r3aaa1>-Om2B^+(L+ xrp$N8BiEmlkiTw!;rC>&wMMgep8l?5?)+(cy5U#&QlR@8JYD@<);T3K0RVLgx?TVP diff --git a/common/gtk-3.0/3.20/assets/checkbox-checked-selectionmode-dark@2.png b/common/gtk-3.0/3.20/assets/checkbox-checked-selectionmode-dark@2.png deleted file mode 100644 index f1a962347af325beb7948daf93369417bd9963d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 680 zcmeAS@N?(olHy`uVBq!ia0vp^-XP4u3?%s{blm__%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Es{?#O zT!FMo+d1X#i>f`BRk|*#bzf5Jxun{C3CL9kvb%vI7u7)|gndb^dWTxWezm5qG}<&muAm8xxEt!?h6 zZRw?L7ua=Y$~T~M1xkYaf*C}`T-{RB(lg5I8(KPEzuD^G=fJ?g80_id7!q;#?Ty^v zLk2wTAAFy?9MII#=vv?t_>uGIs{8*Zzszfo4W2z^%k!T~|G)o^-IW(PU1g$2%*~9q z1(&>XwQfs)3Q7qJjd>;AJT;g9=gG#ad>d{Zc*PPSyYa}c`Cj zU|ndSKys8RtHC_e2#wTaoz?$W)D_95#p;=qT61lR5y_k?>>+EL`RZ{^Z>`Ss`Rof; ziMxkR3DuiwWY}_OZI_W@kJH*&SxLb?ht`NLHJo#3jdtzBzlt#nb~Z1$I{UTv>Ql?s zXN3OvYh*a-(D%Zc>k(=j9X|cc3Udo}wfnw5QLn2;KKG30#agDMyi<#x&yaBX`DOjH zJgc$``^8_K%5yt-|E*|S@I2dH$I^ZWo)Z=|v+gZ1dwKT0=BfYICU%pH7e*xg-6;CG z-a3VE1M72P*F8U7CKYZ>x-55SNo9HY-;&QEZizza`xs_CZ(yEr+qAXP8FD1G)j8!4comH?j+ zS0Js{b4ji1l4|#5weCxBq~3i=qvw)N-zDAtOM3m6^(S1mpMJ$*#udkzSDa^FahrYB zW6o8dxmTl>UQ1tnJ!jpGiY+%Pw%%BJ>dw;BcUGLav--^4z1QyTyMFJ`&3lJ$-am5l z-qBn49=&+@_~pabZy)~n{P^dW$G^Tj`u+9s-*1m?Zrt_-x`VwW$S;_|)64tO<0sMP zYgPb-c6z!vhFF}wd*!B3lY$6af-$eAZtmr8M@>HO`TzUs!GoR(3Cpx?!_Ry;Tc09$ z{H15Fx=ZlB+fMT{PG>6`USUYsvZXmNZe4D|4CaEB%`fbV@|qsX%F3*i%1eHicjhf~ z>FX_8LS{4K_I*~F5ys%t<=4=ye$Fn*Xm{DKQ=O5$pO3!Md2;gpj^t0O&osmCrgT-V zs(rHQb%^x65_^_sx0`3GXBD5_6jfw@uFARnNAX|gwep(b+Is`z=e;+d_Er1Cd+D@R QpeGnSUHx3vIVCg!0CD}``v3p{ diff --git a/common/gtk-3.0/3.20/assets/checkbox-checked-selectionmode@2.png b/common/gtk-3.0/3.20/assets/checkbox-checked-selectionmode@2.png deleted file mode 100644 index 42f89c171574822708d8c79751dfb2b2895e8c27..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 685 zcmV;e0#f~nP)002t}0{{R350Hx300003b3#c}2nYz< z;ZNWI000SaNLh0L02{9W02{9XUK)`c0000PbVXQnQ*UN;cVTj60C#tHE@^ISb7Ns} zWiD@WXPfRk8UO$Qu24)=MF0Q*B!9aSIF!^ml+-$v(>#{c zK$z4+nbb#|)k>YzOP$qBoz+dA)vL|juFl-T+1|w2-p=3O&)?tB;Na2V;L_pW(&6CL z;^5ch;M?Wk-R9uo=;7n(;pgk&>Fwg`?cwX~;q30={r2P4gq}tK000nlQchC<6&6KC zWoBn+cYlC{i0kaNKu$ma00C7=L_t(o!|mAHQo=A02H;j}MZk&{5f31ELc}8~nD>7% z?Q|f`#_X0&#_?kR`+l?OwrRRiB$2qX)!5^t5!+O9(BUOZtg5)w4+bmS?eLQVtLb4i zfz|S`T4IUyKdt^@FzfW??kJGedr}HuT&tiU#-4d(jNqO$HiS`~i3OpK)PJ`Ue2%bem1B%iNpWmHw3pbyL5-yf)+e4T*ZSQZMb{fklOybNpq#Po7 TLvG}T00000NkvXXu0mjf)PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(a)3{W zE09*}xun*0Nwxd3TK6S5((b#YKjE_B#LFg=E}KreY&-3W>#Qs8bFTW%zZ$sUYSPN< zdFyW+yLIpQ?fWP1+`shj!Iei3?md5a|HZ?nuO2>o{qV<^$G^Tl`t|kk-*1o48a4R> ztzj<-@(X70^zwf6_(`<+niW8yL{AsT5Q*^I^O1ZF3OpjT zU+H;y+64bkPD=`2HF66)b6nss!IsT3_AvLVFSRA@eF3+ZcG))Ex?|NY=RWJMZuoc5!lIL8@MUQTpt6Hc~)ET>(BJ zu0Wb$)hdUE{c3#|R5~wew4Yb&zogoINxkc`diQ0uo{MVTm%!*Ukkp@W*<|8nlS!8y zXIycddBt`1Rkzt!W0ze^T6sNv^^M&1H;OjiDA{zQX6w!7owp_&xP9ox{qy(lUwH7~ z=932xUp##F`r-4}4?li*^y%ZHFP|R$`26_S*GIp23;GAHI?2J$lF3=Zi+)>cH=sWv?B-H<|I=N%NI3pWb1- a+Ft)~yT1FQri*EyaQ1Zdb6Mw<&;$S~MB%mo diff --git a/common/gtk-3.0/3.20/assets/checkbox-mixed-dark.png b/common/gtk-3.0/3.20/assets/checkbox-mixed-dark.png deleted file mode 100644 index 8759a900058d7cfab50ecd5cb3ef68b2d9b245a1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF%Ig>+6LAMTGmZKY4(yJzhDMWFYiZ>pG2FlSpgK%_jGX#;fPL7 zXkdKyrAR>|G$BEkotd4jjAJo_{bFX00LhlpgKHDG*e|Lw6@)V|^y}*!WsTXR0MyFh M>FVdQ&MBb@05EAp0{{R3 diff --git a/common/gtk-3.0/3.20/assets/checkbox-mixed-dark@2.png b/common/gtk-3.0/3.20/assets/checkbox-mixed-dark@2.png deleted file mode 100644 index 795faee14060c26a064d217756abc82e699a59eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Wb$)hdUE{c3#|R5~wew4Yb&zogoINxkc`diQ0uo{MVTm%!*Ukkm+?pc&h)ZD6f! z?dNT-R|3?_R}$nG%)rbdEu)~6n3SCI^405AlQw?`%A|X`IEHAPzdPAls6l~;HJ*n< z!+!7oMBOP&ip|?{b{lIN{cbSqj*=D;-Q9XaamR5tMs5ZXmA9M>?t*L!QrD_qc)7+y ze{O%*AAkNn{~uQzeTurQ85<^V+3CD}-|UT=#)^6FN4_N1ivLklXMc1r#~0)iPgg&e IbxsLQ0J14>S^xk5 diff --git a/common/gtk-3.0/3.20/assets/checkbox-mixed-insensitive-dark.png b/common/gtk-3.0/3.20/assets/checkbox-mixed-insensitive-dark.png deleted file mode 100644 index a8e008bc6d521e5077b93dd5677054e2884502a3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 232 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF}RWL_sGpd3d@kY6x^hNfmsZBNfi`vbdxVtSq~ zjv*Y;$q5aN&o-DSc!VY-_%buIvzc)yGukhf;RujyDLuG0fhl^H5<@vF!$nKAnS4qa Rhk!a6JYD@<);T3K0RWuxK&Joz diff --git a/common/gtk-3.0/3.20/assets/checkbox-mixed-insensitive-dark@2.png b/common/gtk-3.0/3.20/assets/checkbox-mixed-insensitive-dark@2.png deleted file mode 100644 index c220ca88e4e396793d60316db94d08ea7ac97c1b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Wch0SNvpb(~S^xU1c8Or!0jTF(`=&I@XNS5><&s)5jDwXQ2_T^BWyCTPXB>*!nQ zSoyinY}*agD_j!f7tFxK#Lq7zY-(m^-q6t40|H0Rx>f?E(>+}rLp09coop@Cpuoc# z&%>c%zxRKl?i41)=50BTUlMD@|EQ_6Kf0IW3-XSq LtDnm{r-UW|e1mXd diff --git a/common/gtk-3.0/3.20/assets/checkbox-mixed-insensitive-selected.png b/common/gtk-3.0/3.20/assets/checkbox-mixed-insensitive-selected.png deleted file mode 100644 index 793f169fbfec7e071901ed8c8bf8eae3eb4d8a40..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 237 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFZuoc5!lIL8@MUQTpt6Hc~)E#sNMd zu0Z-f5WKq!#Q#5D{r~Cu|6h-OeS7@>*JB|0_d5uwbzO9retFWt+w+d!{`>98Uao=_ zKy890L4LsuO#J*p!lq_s<_(QKARzSnSRha`#nZ(xMC1J3$=-Yo3Op{$Ss5K0f6u?x zI-h0X%Dl?k)6XrM$yjniN470*_cAMm*3)5({0vi6WH}ka1=$i(bJZ`T=4 z;uyjaot)6X_-uoTf=6gVf-f^OJDVAYGNb)s8IAzSmePZ36PTiBDKV6@GF-G&o5`n? RaR{iB!PC{xWt~$(69DH{L?!?L diff --git a/common/gtk-3.0/3.20/assets/checkbox-mixed-insensitive@2.png b/common/gtk-3.0/3.20/assets/checkbox-mixed-insensitive@2.png deleted file mode 100644 index 44d6c7e1f503d4ccae37b03b887eca6669cd1863..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Wch0SNvpb(~S^xU1c8Or!0jTF(`=&I@XNS5><&s)5jDwXQ2_T^E~o-JZ1n_LG;7 z{(gJ%j?dN-s8_fo$S;_IiHVoOP`PN~e3eIEHAPzdPAls6l~; zHJ*n?t*L!QrD_q zc)7wufA0CNKmPoE{y(lb`V@6pGd4`#veS9{zS$c!jTQ6Uk9Bm!WkHTxEWsjB(2Q~)XL!L L>gTe~DWM4fwZTuW diff --git a/common/gtk-3.0/3.20/assets/checkbox-mixed-selected@2.png b/common/gtk-3.0/3.20/assets/checkbox-mixed-selected@2.png deleted file mode 100644 index 37cf7f00ead03d5f5766fdcd638953de1ec62034..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Z-f1bln^|J#%Q-|zqb@$k?0M_}~$&)3I)zd?~&_a%oJS0*03HUIc+px~#j@~=S6 zd?i7C!3@kS(lQE4iAl*RFJHZ0HEHvApiH`_i(`n!`MZ-1g&GuiSoGOgL_~i4Pu88n zq}aSIXScDYQT2ftu4{R_y6!r?6S$MSxq+2|YtlEChRqzz7dBlJeo+#(WO|>w>!0Q9 z$JJ|IDX3WU64g0v4Z_{7i6KZ-JXeEQEtDnm{r-UW| DpEQj$ diff --git a/common/gtk-3.0/3.20/assets/checkbox-mixed.png b/common/gtk-3.0/3.20/assets/checkbox-mixed.png deleted file mode 100644 index feb67c4361557a4169b675777dc2e8cc4855ae12..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 235 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF%Ig>f4@Ec(-xrzlx8mp@(X70^zwf6_(`<+niW7HeNPw15RT~N zga*cEUy2koLK6~n*_qkd$~YD?*e_=02#{zopr08i#e1ONa4 diff --git a/common/gtk-3.0/3.20/assets/checkbox-mixed@2.png b/common/gtk-3.0/3.20/assets/checkbox-mixed@2.png deleted file mode 100644 index f2557d08c2bb28f3597d6c5b69f91d0884eb862a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 328 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EmH|E? zu0Wb$)hdUE{c3#|R5~wew4Yb&zogoINxkc`diQ0uo{MVTm%!*UkZjp?Ytn(+k6%9g z`|YtE1MfkgUcQnbzhDMt7HJs;rNpG+xN}hsA;U2=YHf%Vy*ZeHFfq4pEo&zeB$Zq K=d#Wzp$P!C^mXw7 diff --git a/common/gtk-3.0/3.20/assets/checkbox-selectionmode-dark.png b/common/gtk-3.0/3.20/assets/checkbox-selectionmode-dark.png deleted file mode 100644 index ea0568fae1ead991fa4c4bf1c654cfda23f92ecd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 493 zcmeAS@N?(olHy`uVBq!ia0vp^8X(NU3?z3ec*FxK=3*z$5DpHG+YkL80J)q69+AZi z417mGm~pB$pEOWVvcxr_Bsf2(yEr+qAXP8FD1G)j8!4comH?j+ zS0J5S-I7t!5MNdwS6UZWRv%wlXA~5jQrT<}7;O*~!=P=(sAJ9qLKaNA7RdhTHc9^uAbk;Yz8CP3sJm0I2Gt|BA=bO(1ykY6x^yu$GlCr|zP^Y`!B_ixyN z!bdz^978NlU%hf$s7XP9Ex}h;=*p?SsK}YBzy7@scM-hgbf#o-^=Wha=cRMzT~TmY zyKTaIE(;m;h-l9j+#Ni8k2!@l96grxU;G%iwZ!!4Q+a#5yyjoxn7RA(OY;-5cZDVL zF0H$rb#2Dgt8;cQp7Nb@^Q=qlA#=FW!_BJv3QHzEXBGO~)*F7>*_=N@d3wmn=CZ%j zg5)at^luhEXe{2jxx&^*?8vj3PkUdLlZuoc5!lIL8@MUQTpt6Hc~)Ey8?Vd zT!D0M?xeKJwv?LY^vbrh>Za71=CtaT)T-u`s^&Bh8zcghO$9Q5B0#bl$Zn1)sbSDI zW708a*0EsLwO|1uOBOu~Ry|8rJu7y7AhPDrx8XDZB3n*FTP|ZDvQx14RkZh2a|%>* z4p8$9*6Z3DR^4)&e5eU~RV$9S{oD10we@eUC7G&u{||Ac`;uj5Y+KpcoUc zD4+vcCtAD*x?ZFt$S;_IT|-kVCpWLWzM-|Fr?;>F&)G{ygGk%L_-?}ez#QHvQ< zd3o0?+&m}s{H&wb)^vYgeq++q97Pp_+SLm@d~R!LGF{%P#dX|d?M>-F=bLAi?pwQZ z{?ds@mx-+Tv8iyK!K>fPj@lhteLj2Ds_?YXBJDUwkE9r{G*OYxkD8sKK^D_;c1*dk zYK4?=VAAW2bsrvg#VPD-=DJoBZXXpgZ4bw)Nq^&1)E1`v-tptmw4H*w0S{{)PVHPB zWbs|6$5(Stzi*H8$}gN!j|07I+mGy+67~O3`Q)9=xmAg=k=soE-Ct)Qxb)6qZ=Ky+ zi{@)=(AipIKJ$HDaQ62(uCLy;o-3Nxl=^wMnL~B<{o8EC4V(3BLpTI)WS>#zW9Xe- xJh}7Pos>6*%M4=cOD>ry?|;sgsQ2d&qmXN7>zgGx9l%Ip@O1TaS?83{1OVA*C8YoW diff --git a/common/gtk-3.0/3.20/assets/checkbox-selectionmode.png b/common/gtk-3.0/3.20/assets/checkbox-selectionmode.png deleted file mode 100644 index 8cc926316963a71f9858967342a2bebb95ab11eb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 522 zcmeAS@N?(olHy`uVBq!ia0vp^8X(NU3?z3ec*FxK=3*z$5DpHG+YkL80J)q69+AZi z417mGm~pB$pEOWVvcxr_Bsf2(yEr+qAXP8FD1G)j8!4co$pJng zu0T4ux+SBcA-}l`i1L7_r7ORwE4`*Ay{2{Zt}Q^cb@$fP>gEGS_Z&R7_Yer}J9=XO ziPHy9oIZ5%(y@z|j$gcd{1OPAxOC;j_3Njv-#Byg=Gmu@uRMEv<>j;Muby9j|N7Ra zcXvL&zx(Cgy)WxX;aKHU5H>EX}M4}X6FqDQ~KKKk?Z(cf>6KTlii~^?UVuwy$xHquBQoT$Q(02u%LbF)4%#I z>9!qDXIQUh} z<|EJNzKMT-ns4vS_yuL&FL$p}GuZuoc5!lIL8@MUQTpt6Hc~)Ey8?Vd zT!D0M?xeKJwv?LY^vbrh>Za71=CtaT)T-u`s^&Bh8zcghO$9Q5B0#bl$Zjrd?I~*O z0Wvo4+PVdZc5gj!bkC9F`;VU3f9&Le6Q>WJIDP2knM0?}9y)#Y@R@T!bmYwWBWKSa zJqJV=j$XWU?BeC)*RP+xasBkWSGV53zV+$toloz8=ay2h(_jWzkjN1R#Um5TSJ8hdh z;q;&HHN{R31pHQ~CLi{_ZXJF;a=M~rT|aT>!}!mdtd)Fqbxj@f>U`bonVToYCx;b%|C4^g%I=6^>eLco2XR63Cmnk=@j*8!tTfv$)_1E>fM*Xwe-t$>PPreiH^whX%_byNC zbWFDxN5#HXQ#)5P*?iaO@nyW{F7-HIf?eS83Xv7hCrC_h`nvvAo>6(gQt?NpeuOsu z&g$&cDCpPQ@Uwm5XP3US_Pld_zj1Re{Um#<_GaE6%#Ei`b_8x+$_|Vp22WQ% Jmvv4FO#oyvX*d7? diff --git a/common/gtk-3.0/3.20/assets/checkbox-unchecked-dark.png b/common/gtk-3.0/3.20/assets/checkbox-unchecked-dark.png deleted file mode 100644 index fca122668c47bfbcb14d76825d404da4c777f8a5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 268 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF3MnTajmCXi$(FQ>=4BBQ)x)#j3mZ{av-_PiL0&3tc z3GxeOkXJZ<;^e76fBybG`~D3(P}s`T#W92Zuoc5!lIL8@MUQTpt6Hc~)Eu>n3I zu0T31ZDwdgLvHS*q_WQ3hK7`ehQ#WYjEaV&iiWhR=G5vIFltJzZc3>Fl0cE>__8_% zZ8J7~Yc>Nbx1?;hq#U>8Y_HTjpY#IXjKa9GI-mlevb}u~p+F0SOM?7@8CcoadHG~y z6_ln-oqqGy?Jr;d9kBfT9w^=H>EaloasKUOYoR6s23C1RrehsHHD}Ez|DPOmAYg(; zkagbfw|WH)+w9-Jxa~V{OKRiQqOIopE@!)+kr7}2bI0!{gO5xMhju;CZpo2ike$4K z(hWuliPu&|KVILz9AET9VzTksNsmH4KJ;W|n4lahSafR7x`p1Ur+9lN-Bw>T$3tdj aKHCyri_cTvs^14Xhr!d;&t;ucLK6UyfR)?; diff --git a/common/gtk-3.0/3.20/assets/checkbox-unchecked-insensitive-dark.png b/common/gtk-3.0/3.20/assets/checkbox-unchecked-insensitive-dark.png deleted file mode 100644 index 75dc9bc30c0cce890592332ee758ac0ea9fdeda4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF3=bSnfu=Bcy85}Sb4q9e E03wG|5dZ)H diff --git a/common/gtk-3.0/3.20/assets/checkbox-unchecked-insensitive-dark@2.png b/common/gtk-3.0/3.20/assets/checkbox-unchecked-insensitive-dark@2.png deleted file mode 100644 index 15efb6c8fb887bfd1c5b8d68ff695aa25d34095a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 394 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EApt%i zu0T38bd^H`2qb{X%!-Q4iuUZvwzP(ZlXx*c=G5w@R1n#cP~O0xZOX21#cp8b zmXz(5l;fF}=bK*On_d`ORv%whpH|&s_FlmnXs%32kY6wZGYbm`hoGRaNMv+V^Q6f$ zW+K4pRowDGbq$^_jv*T7-%hp`YF1!io$qzU;fEXZ!@K|IX%^_Ps9&3zv-_=HL1W@B z`5A4o_ok$_h9+&E_5O>MfN|-^uG5#pTc!#zRK0G>7ufWYp~q*R=Od1Uw4B!`ey*?g zuRr diff --git a/common/gtk-3.0/3.20/assets/checkbox-unchecked-insensitive-selected.png b/common/gtk-3.0/3.20/assets/checkbox-unchecked-insensitive-selected.png deleted file mode 100644 index 7cdc8ee502e3ab61d45722b15b784cb65891bbb9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFZuoc5!lIL8@MUQTpt6Hc~)EP60k4 zu0Z<#|Azk{u>b%6`~Uwx{{R2#|DO;3|9tlI^TYpNpZ)s!=-0Q$K=dDoem(yE{o(KL zPyT;@0wjNbdHDawvx)j2b%3Ubl?3?(GcYl+aB%WyYHAsqn3G$jVm(?xj9QmSqboU|k qCwE$GaupA^UCIk++G}=^(ckNdD1Yxpmf1kt89ZJ6T-G@yGywo!6r8{S diff --git a/common/gtk-3.0/3.20/assets/checkbox-unchecked-insensitive.png b/common/gtk-3.0/3.20/assets/checkbox-unchecked-insensitive.png deleted file mode 100644 index 36ee76b78351fe78e57d112112671b0a646330f4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 272 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF2=NNb*-CsZ{4zc%eLLyQfiuieR}lw+mlY$uhW4V z_)CKPf*Ayba`W=?ySlo%yL)=2-I;J~);vI2LC z5+3YePui24@Su{Nja?)40B=exchVh`goG~)k+*ah%2^qBCk0tB*xWq;G=;&_)z4*} HQ$iB}r!Zc) diff --git a/common/gtk-3.0/3.20/assets/checkbox-unchecked-insensitive@2.png b/common/gtk-3.0/3.20/assets/checkbox-unchecked-insensitive@2.png deleted file mode 100644 index 142d61872336fb6e643ca7783b224ccb6f8937cc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 406 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Eu>n3I zu0T38bXDl8RSgXdxw(@P8XD3%I)G$yVMAPHWomUxN=-A6Os#27t8PjIGg7LX@|wDU z;<=5Txy_xO(`R6hv4>CB;)jD%L3<{@edD zitUqbudemmE!G@)0;)F~Rc<|X&#K5cX&${O?>BR9YtmPt!}lw1F#gP$X?9KUhF9z4 zzKa%<*gh@^F4^*K!oFXXzm(c9&p0D=d5+Sn@eoM<`SRq?mxuqqKm7CM(ciB?^!V79-G_l1 z_)CKPf*JS)1cZcKTwUYh;}dEdPIPTG1xi_Yx;Tb#L?rZ9NA`njxg HN@xNAxVUNZ diff --git a/common/gtk-3.0/3.20/assets/checkbox-unchecked-selected@2.png b/common/gtk-3.0/3.20/assets/checkbox-unchecked-selected@2.png deleted file mode 100644 index b01c60a92fa85ad359257f5e4f9f7fc9b944eec9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 395 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)E;Q>A& zu0Z<#|5g7%VE_OBxBvft`~ThD|NnvL{{R0E|Nnpf`SYFsKOX=2`sB~ohkw35`TzaN zpYIR*GJ)f#M+Y@3+T)f#mlmAoTUo->;8z=dF1OG+MSK$S;_InVE&1kDp&a zP*lvz+b1?QE-57?H8r=QvZ}ga;fmERK!vrQE{-7@=ig4=E!3{a* b%y+iueG2KnU03u29m3%0>gTe~DWM4f8Q#9i diff --git a/common/gtk-3.0/3.20/assets/checkbox-unchecked.png b/common/gtk-3.0/3.20/assets/checkbox-unchecked.png deleted file mode 100644 index 43ca15f878639e5a6dad3702c08747f560cc692f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 285 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkaez;V zE09jEZpo-<$ZzffqC6mK>B?{FO0Q{2uW8-9YYPx<-Muxny7}j)hd)0*{QK>()r}v2 zf!cUWg8YIRK+4A3f$%eh_zieh$^ljc|B^9|ViCmvP T`9*&P8pq)2>gTe~DWM4firj4o diff --git a/common/gtk-3.0/3.20/assets/checkbox-unchecked@2.png b/common/gtk-3.0/3.20/assets/checkbox-unchecked@2.png deleted file mode 100644 index e7a1da3702ba588b688a0c35521c59da22984778..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 408 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EX#qYV zt{^&XW@tl0ZtkR{vd-LwhLnbe#OjueiiV_$hP0~Y)an*6YD%ktuz_TAZgXc|a~Fuw z)RET&WOsJXnAtURR`;ygy>sSHTCia9f(26+F8K2P-q-i{{(gJ>#Y|8iXp=}ukY6wZ zD;qm6pNy=6(v+#wZ{E87}m%28Zi8DJOK#d%w74v9r;* h>aWYm&MWhN-aG6Ppnh-%Zz0e<44$rjF6*2UngBb`rMLh9 diff --git a/common/gtk-3.0/3.20/assets/radio-checked-dark.png b/common/gtk-3.0/3.20/assets/radio-checked-dark.png deleted file mode 100644 index b9fd269e7740506f0090e992be057056f056e00f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 373 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE09)cJEz=zQE|d$^`49BU6<6mFROK3R_(q7XRCEzQtQ45CV>oeq+Ym8y>Pik!BQE!kd~~TF;%oaPi}(&tLw%bb2ubs370d z#W6%elJ%e`-ys7527`39+zAc;|8Ev*Hag+q&ZcjE26gMP!7 zT~Omxp~|pzrB;e&@?tK|iG>Fg85&f5B(nKutg1^YU%>sHVZr@NacddAZB^NPo#C&P iNXNA0>34tu^Kb5I4TJW&i7$XwGkCiCxvXZuoc5!lIL8@MUQTpt6Hc~)E>jHd2 zT!A#h|NjgP{~1=TGM;%xyWy&K-&Kva>uNn`RNBsI^j=W!yr|Z5Nu%e2dKZYH)^$m> z`?6}+W%aI0>fM*sx-Y7BUsCJ2tOk|^OI=h4igaC41Cc;+FuMmV2o!-!0gdWL5(J4~ z02$JKNh58VMmi8p*T|Tz>7AkJlcD94spXTUZD9R*jlwISgY`;+{DK)6nV4DGgoH&z z)zmfIJv_aSs>y)It@~8L`@LI5M6Xy#?EBxXdDKng>7nB9-)rJCE;*dAj|iK1akus}#)_Pq z7mI^l-)@+*EOq4zIiojcw&YqU9DHS;eQUzw0MTt**jc0Bu0FmX<;U9-f!Wi(TyJK& z6|>$jKF_gWe?m;b*$cnc^V?OOdR{8_@!umGmv4`DM@Q&*lytCveBl%6UXgI*Xza=# z!71UvF}f$>dUfi1Z4bSuJZkZHSFp*nG^3DZ+safWe|fBBf8zu6{1- HoD!MPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(NPtg> zE0ET1*sneHs(R-U_3q1R9p}_~uc&riRq45+-gQyE@2XnQCAF?gYTXyqx-Y5qTmY%* zx~SH5S*`mbh+Vi$t#AcUL?eHhmX)`bm9LJz)sb?M`9O1JN`m}?8F+Yj_4M@(+&w%z z3yX@1TUuM&x_cnNY`Xkypt=H27sn6@N!Ejoe9a013<%gSAFgAVGrho}Gp2xpQ*f!1D8m6EwVu84GY&P( z*nB`BihY4;=6Yj>&%0HMQ<}cjY6^tU`*qulf#DBhUbUuNP7hBv&~64#S3j3^P6Zuoc5!lIL8@MUQTpt6Hc~)E^8#9ocRgIoY>Ye9QdM~Q>TvqM6sL^{xz2~BO*Cn;CORC+MfP(71 zmw{}x?u%;OK*mKipfaGDJwTBQY9Iwbl^1~G8fjBCGJt5hmUo7hFA!zv=v#Sp=YIvd z(6l7TFPMRmiJ6&;iEaloaenIL>tam?JPzGPBBI~f+%>g4rab&#KRZYzAya-&{=<38Jf%2( zvY!r;tbMeRLm}y1M80S4Gv=b(B`r(Re>_Yvd#k{}n0EczmxV`{wtt`Jcqs7qD^ZWg z8f&g6v!?#_b!MTnvu;zL#shzF*MMz`)(DCpQH>|FKYF z?#gR!6Kz6N`At1DZ{}wnSu5@RN#;CL&Q7`2$BcB^Pd&NzewuUqsjqvgE=)cnw~Aer zE%)|9;e%y|}gBB!JK&W;DWu61<0d-F1VpW@x#UH|{P1l^mU8UO9f{*~RJ OSoL)Eb6Mw<&;$Tr$^3@^ diff --git a/common/gtk-3.0/3.20/assets/radio-checked-insensitive-selected.png b/common/gtk-3.0/3.20/assets/radio-checked-insensitive-selected.png deleted file mode 100644 index 2ccd53f23dfd646cd8beb182f61e6d2a7190e22e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 383 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE0F&G>gxahul~Qj@&C)?Utga5|Mle8m;3*JJp29SF_8T8_3__tkHF{&i2VBG?^hW4 zgySZ{Y6X;aONz zRNT_q+Sc6z1?tv&jsg`Hdb&7bP0l+XkK DKYX%2 diff --git a/common/gtk-3.0/3.20/assets/radio-checked-insensitive-selected@2.png b/common/gtk-3.0/3.20/assets/radio-checked-insensitive-selected@2.png deleted file mode 100644 index decbba7801478f48bf6621d1031614ccae98cda8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 602 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EivoN? zT!Hj|C|CuepFIQO|1Vzre|7c$=jZ?bKmY&v#g9)`ts!e zF9>@2|Le0~UmyMY_5>*P=iB4|KOg`3_TKmPj#NIv=d6-<7A z^!w|hzuz7Mky_Wql$F=hR$tEmp_?nt+*t`k=kEOe_T=xkCv$JFpA2-RSxJyzFaskK zGcy+#H;<^On7W3Brlyv@zJZ~!iA7Lwa7buqT6#uiMP+4GRdr2AXAd0M{gXTbG~tD( zi(`n!`KgnSi!~VtxH@Wf?fu@QxS}KE`Tu%fVU-pYor>KjZJ(#ETDEm!uDM`x)geZQ zhJIn^reAlMmp$L6JmcO1wd;>w9$-{!od4H zQYOoOoO$FwOXX#ID|?sW;`bkxcNDsOuA7=D74$S!X2PA^v}qz1Y5Yq{!;H;3D-~v> zn-=SB?YOXH-mJ1UT&Evftme8MXp@xw(on58yp<@vX3 zl-F{<`g}SqmNh*%Cgol8akuH`6KWiu@LZ_7l3VZMRm*sLdd|tK)3;9t`kBGg)z4*} HQ$iB}$FM%4 diff --git a/common/gtk-3.0/3.20/assets/radio-checked-insensitive.png b/common/gtk-3.0/3.20/assets/radio-checked-insensitive.png deleted file mode 100644 index f1f7c1e3c5773c3504b7da6ff08503ce608bd806..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 378 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(NPtg> zE0ET1*sneHs(R-U_3q1R9p}_~uc&riRq45+-gQyE@2XnQCAF?gYTXyqx-Y5qTmY%* zx~SH5S*`mbgq^hVddkY{PhLKH21KtP{r&dj*xQNp{mpCPe{;1B;}^g}?s)Z*uc6&xHt9h6Rpx zpC8`4?sm9BHR8Yd$sa5N$H4hL z%J1_qis6j6m8sN&8t+Z%{095G*$h9O-@6VNkoF?>+8T0a6xx7xGkCiCxvXZuoc5!lIL8@MUQTpt6Hc~)EivoN? zT!A#h|NjgP4WX-6g|7N<+;GOY;hA3dMeT#9ocRgIoY>Ye9QdM~Q>TvqM6sL^{xz2~BO*Cn;CORC+MfP(71 zmw{}x?u%;OK*mKipfaGDJwTBQY9Iwbl@~R7E>>*0S+(V6&6b;cuHM;m_1<0}x_C7tFxO#LUda#myrsDyFWXp{c2*uWw*zY+?}<92^pwmY$JWQCV44 zRbA83(b)qB7Rx-1fhN52ba4!kkeqt(ZB&y11M7p$EMZ|$-{#&=4!JOs>Db@D5B-Gfrl8_tsxf+MaWh#iCGpqjUd74ySoPceSZ*d$Uo@ zqAGQL`jtH$d$+WoQfBuFh`eN&Ic;g%IT=yk(|<&lHZNQnAhdtWrA6D8Pvu~kPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE0F&G`T76PFaCeI_vhOa7<%;g>k}Ay^!M9i1p11^{`Od{`;zUnD|XYb*iXN*@A|#{ z*Y6#;aSy0i>ie~1pwXfwL4LsuqGIA9p<&@o%`L6x&R@9r@zduo|6V%1m;zK#=;`7Z zA`zb3|5~g;K%gbCBy`P^?(g;I)~xV5{yqKd99cF+)m4c`Zr?($@&4!#^VGN7_+bbC zKgZ1pJpY`Zuoc5!lIL8@MUQTpt6Hc~)E8v}eo zT!Hj|1UU2m|JDB=AOHXK=y|e1f-QPf~!P-0QPs9QptydD{7tFxO#LUVjBrGDTrmo@c z;pye=6B-r~6&sf}ZTgIvvu5wwv+uy|J9qEhfAH}8kDp&!rp*EBeDCSv7$PA#_2Ap6 zCIbf62gbq?k(oEkqw0Dh6PHNrI`=m|qCvV};m?QKLLtqIhjv$9_AXj^oSDBgNn+EN zuQhF4mgz@z4m6%-%`V|zs_sj_8!z~(=SoWZu;|2pJmIwH3U}mU zy#j?9o01+acH$BBp6}088dtwW$tY<3_1G;FgqHtcXS`o#VQQ^e2lP6Fr>mdKI;Vst E0IrBhu>b%7 diff --git a/common/gtk-3.0/3.20/assets/radio-checked.png b/common/gtk-3.0/3.20/assets/radio-checked.png deleted file mode 100644 index 6b3b2e13aaa07d05fbb04c6680255876fdf8d11a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 373 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(cz{oc zE09)cJEz=zQE|d$^`49BU6<6mFROK3R_(q7XRCEzQtQ45CV>oel)UnK%Bt(BtFAwJ z_3-JdhtFO={QK?ktSS7yK%+%Vg8YIRM8(8ILc_wFnp;}WoxgDLZuoc5!lIL8@MUQTpt6Hc~)E8v}eo zT!A#h|NjgP{~1=TGM;%xyWy&K-&Kva>uNn`RNBsI^j=W!yr|Z5Nu%e2dKZYH)^$m> z`?6}+W%aI0>fM*sx-Y7BUsCJ2tOk|^OI=h4igaC41Cc;+FuMmV2o!-!0gdWL5(G;D zHEQ%+s@!^`YRk>)tv747-rRll-kxiB_guTT_u9RE*YExP_P8*7dJ)jgdL==A!3>N{ z%&cre!Xlz->Kg7Io?hNQp1QE5}Uq!t!d-3Oh2k~pz$KmrRK&$D7Nc3yZZ4g9gTe~DWM4fFc%I{ diff --git a/common/gtk-3.0/3.20/assets/radio-mixed-dark.png b/common/gtk-3.0/3.20/assets/radio-mixed-dark.png deleted file mode 100644 index 08a8f5c771e22b06a1e84013d7ebddfe3aca69b0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 342 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE09)cJEz=zQE|d$^`49BU6<6mFROK3R_(q7XRCEzQtQ45CV>oeq-|h*vLUDhXpm@0 zkY6x^sF-+2Xjphtb4%;F^A|3D{Pg+Dzn4xgrT`TrdAc};NJ!=$jOJ@m5O6)X_(zyq z#?E*3E0aBre@GOaf9T)tbvsz^Zuoc5!lIL8@MUQTpt6Hc~)EGXs1= zT!A#h|NjgP{~1=TGM;%xyWy&K-&Kva>uNn`RNBsI^j=W!yr|Z5Nu%e2dKZYH)^$m> z`?6}+W%aI0>fM*sx-Y7BUsCJ2tOk|^OI=h4igaC41Cc;+FuMmV2o!-!0gdWL5(G~NiX_+<$sPnR?i(`m{W$rTY5Nq1ak z5*qE#{r`XAGp5zuQ=T;LEfh?iut0uajPJEPyNfS^FE`D-|6QBqOj~1VpYV3o>N^~B z_dJ;SK3j&@tS3TKW{=S;$?9DxQ!Wei`$#zJ%rIy!@Y(R;iu~R*@r)N&xf&K`Y;T;V z#6BT-%WVhmiHrfFV2Mz!dC5(!GmIZHCmm|B=6EX+%CqtNp%v;fJlA?6v}97JrF%7> zTanPe_h4tu(E~=#4!*k9_W4}3RW_SNBX6GnttixUQ1u^UhF6kc(iBI3P^@{n`njxg HN@xNAiVx%6 diff --git a/common/gtk-3.0/3.20/assets/radio-mixed-insensitive-dark.png b/common/gtk-3.0/3.20/assets/radio-mixed-insensitive-dark.png deleted file mode 100644 index fed746c85272f8f6f4661ac008df90803f15d817..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 344 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE0ET1*sneHs(R-U_3q1R9p}_~uc&riRq45+-gQyE@2XnQCAF?gYTXyqx-Y5qTmY%* zx~SH5S*`mbgsr1*HSLv?HqapPk|4ie1|A+>J$-!xcMlKG!lI($me$s`?w+1GaRIDA zB}twxjv*3~xd)^9S`-9a4=(-@=9aPZUH!^rkK-Q_Mdu&-w|m_V);l??KDn5R?=A2q+^kn}UIyC6;OXk;vd$@?2>{fRdtCqk diff --git a/common/gtk-3.0/3.20/assets/radio-mixed-insensitive-dark@2.png b/common/gtk-3.0/3.20/assets/radio-mixed-insensitive-dark@2.png deleted file mode 100644 index 2658ab5f7b7afac319ff5c6a026cb6067ab672d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 558 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ElLLH0 zT!A#h|NjgP4WX-6g|7N<+;GOY;hA3dMeT#9ocRgIoY>Ye9QdM~Q>TvqM6sL^{xz2~BO*Cn;CORC+MfP(71 zmw{}x?u%;OK*mKipfaGDJwTBQY9Iwbl@~RVCTPXB>*!nQSozg2UT6q(m0?McUoZnB z6Eiax7dMZnsF=EjhNh;LzP^E>v57@caBxUyT6#uiMP+4GRdr2AM`sTR^n2@00cyVB z>Eak7AvyKn&9FlTBCHpRRdWSI1=43;4#~0A{qz6&Oor9nQ=T;LEfiimaltb0=*e4S zeMEkxgl+izyRyCEp3#Prg%1~|^vf=sEWYQH@sXK1k{iY5>@j{N>b@#vO6Z4qGY#6d zryP=*m)g{*TwgNFdBMV9ZU*1=ciE$=EF0#;?dIR|#fTy3VkTc>o1bcdjxf(2R^fdQ zd}n;%@Q-v8WtQ1%_=;71Q{oY?f@zX*nxUd_WeQ?jf~zRAvX-t4Y5 hXTD!%;EZ}K_P@9_cH^#B9IHX`<>~6@vd$@?2>_ca+GYR% diff --git a/common/gtk-3.0/3.20/assets/radio-mixed-insensitive-selected.png b/common/gtk-3.0/3.20/assets/radio-mixed-insensitive-selected.png deleted file mode 100644 index 8714335ace22f7c45427d8a1ad7ccd626714c911..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 344 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE0F&G>gxahul~Qj@&C)?Utga5|Mle8m;3*JJp29SF_8T8_3__tkHF{&i2VBG?^hW4 zbZEDL|v z7~3mqakZntbNgf-gO_DNOn#n diff --git a/common/gtk-3.0/3.20/assets/radio-mixed-insensitive-selected@2.png b/common/gtk-3.0/3.20/assets/radio-mixed-insensitive-selected@2.png deleted file mode 100644 index 67afea7fd6292f75c7f42889ae04fc11ddc0eaf6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 558 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ElLLH0 zT!Hj|C|CuepFIQO|1Vzre|7c$=jZ?bKmY&v#g9)`ts!e zF9>@2|Le0~UmyMY_5>*P=iB4|KOg`3_TKmPj#NIv=d6-<7A z^!w|hzuz7Mky_V9hv}Cm9lSm7`0c;np5$+LNCi5}uq4PYn1PXrnVE}=n@3bsOkG1m zQ&US{-@wq=#3Cp-I3zSQEj=T%qO!88s=B75vj+q!U(S30)O^9y#W6%ea_YgGVTTMv zST7W-=8A|4q&rGp66v`x@Be=*;e^tOlWaDauUlklbmhryt4lY3MlAGSCThK3-n`?5 zsq$)}^mp0cZYWx%9_5}LJ?F$MPVa*kr67-)o{1F;uf5>W{x-vUj^^|p9WIxYtQ$A?asRrKktXx<%=O0%l2MPP{%>zdezt6i Rmk!Wx44$rjF6*2UngEhr9@_u_ diff --git a/common/gtk-3.0/3.20/assets/radio-mixed-insensitive.png b/common/gtk-3.0/3.20/assets/radio-mixed-insensitive.png deleted file mode 100644 index 06d4d8da9890ec27a7f4e0416ed01021920ea8be..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 344 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE0ET1*sneHs(R-U_3q1R9p}_~uc&riRq45+-gQyE@2XnQCAF?gYTXyqx-Y5qTmY%* zx~SH5S*`mbg#Gv16K#VzD}e@ymjw9*Gw|^6>gnqnxO;eb78Vs1x3splb@%kli3?x_ zDoOHmaSV}=%sm***PZuoc5!lIL8@MUQTpt6Hc~)ElLLH0 zT!A#h|NjgP4WX-6g|7N<+;GOY;hA3dMeT#9ocRgIoY>Ye9QdM~Q>TvqM6sL^{xz2~BO*Cn;CORC+MfP(71 zmw{}x?u%;OK*mKipfaGDJwTBQY9Iwbl^2_L-JZ1n_LG;7{(gIM%|vQ5&{c*dL4Lsu zj7-eTTwL5dqM~Bz8XB6KTKf71hQ=lqLBYWxp=s$EnH80lRaMnB9UYxLAkgovI|Zou zf~SjPh=koXZvcTaiJxVKPv?ZgGkyrU;? zjr9@vl@hk$^Y6;`hI>XEP8L2~n9?u1aI*NGPsT@P=16W7o3qFGm8kowlqsPf=FK!{ z+n#brW?pJjqjG)8tl9+&gSi=e*W0p0RarL7iL2(=^2LZD=wjx##x_6I0v%zVJ*>j} z9{A4qz~LY1Cdw?c*YFjq`liGqUIo)6<1|gJ7B|^GlN0}B%DkF~ai(NhnS7I->Acxp iYtDSX%)lA-SnPjsYwX605qm(9%i!ti=d#Wzp$Py2ci@Bo diff --git a/common/gtk-3.0/3.20/assets/radio-mixed-selected.png b/common/gtk-3.0/3.20/assets/radio-mixed-selected.png deleted file mode 100644 index 83243896bdad9bcd894e88b9db5eccc60761dcf6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 342 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE0F&G`T76PFaCeI_vhOa7<%;g>k}Ay^!M9i1p11^{`Od{`w~!U)kT2_ph2P~L4Lsu zqGIA9p<&@o%`L6x&R@9r@zduo|6V%1m;zLg}vle6lRi>dfdqfZ>m!rwK<_KI3u?P&1aKAFehWmyoDpQ+M@ zl^YopUr)7?3!bRWe04_XQpW4++iz|xsrkvguZU-!xcT1=K-(BRUHx3vIVCg!0RBmy ATmS$7 diff --git a/common/gtk-3.0/3.20/assets/radio-mixed-selected@2.png b/common/gtk-3.0/3.20/assets/radio-mixed-selected@2.png deleted file mode 100644 index 0088a2bd7fc3cc9f248dedcb0d8118e3dd53d5df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 564 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EGXs1= zT!Hj|1UU2m|JDB=AOHXK6HZe1v4-*F|)D>35$rTscX1^pG#&fR))&FMGN;hDbVIkTZvGfjo%NgP?zDk))S#6lR7QktNGlDg#Nt; zJ8O;}FmiVA)wQPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE09)cJEz=zQE|d$^`49BU6<6mFROK3R_(q7XRCEzQtQ45CV>oe^!MB2P#wb?K!Zd} zg8YIRM8(8ILc_wFnp;}WoxgDL1%d#LQ zKU1X*D>pJIzMg6&7d%m$`Ra_&rHt3tx8K}YQuC9!e-n?J^-9jmK-(BRUHx3vIVCg! E09O5i#Q*>R diff --git a/common/gtk-3.0/3.20/assets/radio-mixed@2.png b/common/gtk-3.0/3.20/assets/radio-mixed@2.png deleted file mode 100644 index 62350cc5b7258aabbac222059f1d69c96642cc24..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 564 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EGXs1= zT!A#h|NjgP{~1=TGM;%xyWy&K-&Kva>uNn`RNBsI^j=W!yr|Z5Nu%e2dKZYH)^$m> z`?6}+W%aI0>fM*sx-Y7BUsCJ2tOk|^OI=h4igaC41Cc;+FuMmV2o!-!0gdWL5(G=N z?7B7S!0pE`AO8LJxLiXAC~usm z#6BT-%WenniHrfFV2Mz!dC5(!GmIZHCmm|B=6EX+%CqtNp%v;fJlA?6v}97JrF%7> zTanPe_h4tu(E~=#4!*k9_W4}3RW_SNBX6GnttixUQ1u^UhF6l{`o*eqL9yoP>gTe~ HDWM4f`@iaU diff --git a/common/gtk-3.0/3.20/assets/radio-unchecked-dark.png b/common/gtk-3.0/3.20/assets/radio-unchecked-dark.png deleted file mode 100644 index ec5fac5e771d552604d45502e30b21b0808d256e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 445 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(OMp*^ zE09jCZb>U|$f#&YscBBCXh;T<)lJFOO-WUaKr*4cF215Zp{zckydklyA-=ROuBo*Wg*~NDNsJPD4#W6%eGWVdTP?Ld(!$I~%Mp}y;+1hK8T^|1XK6z14 zr SVTBmTB@CXfelF{r5}E*{M5ado diff --git a/common/gtk-3.0/3.20/assets/radio-unchecked-dark@2.png b/common/gtk-3.0/3.20/assets/radio-unchecked-dark@2.png deleted file mode 100644 index b9b8a2f07b7b0ff37db2c489b1f71d9c29922044..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 933 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc|`>jI{wi zA+A8h3=IDp8X7`FSEZ%R%*~yY(9n?9(2&*8kW|*0S<#-{(2!W!mR8l8QQeZ#(2!Bl zkW$l}T+xtT)0_$vuWSQyQ!1O%t6Neln}F=ps-_em8%(A_7%;&!5Th9=2vm>;WB|F< z%^)q+Ao0}dCLozo-INC8LP;Q_B^9g-q!J_!l1c$9gD8e*1d4#PLlr=jH78d#C0Bt2 z8MMt9w9OfH%$am7m~<_e^(4DMoTMGRWE{O^oqS}SedL^c<(z%> z1EP#WVoiW3G|n|h=8sFIqdL@t-pc6?^6=w7tFxO z#LUXh!NtQXC?qN=Eu)~QqN=8$X=`Wi5EdR08K01tR8Ux6QB}Qo$$Y-;I{PWeJ>K!%VuR5djj*>oG2xE-p2w>zULIN#wj#I8MrOkNH+K);i@Wek zHKw9N;r8G)E_;Q6yZfsxvjwu_IOFUiuT-G@yGywqCLx_n0 diff --git a/common/gtk-3.0/3.20/assets/radio-unchecked-insensitive-dark.png b/common/gtk-3.0/3.20/assets/radio-unchecked-insensitive-dark.png deleted file mode 100644 index a37d47225cb040b0106a2efe536f45ca94edc210..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 423 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(et=Ji zE0E5tXiqL|$gXTlYiLNWZb_+WNUCZ~D6dT@Z-_6ei?3)*EN_S_sfz=$%j*+>WNCeL zQB`6^ePTsJLS;j8Rg-CGyjf^`a%H1QNUTXnd`eXlgSIKNt|ha+C9kPHuc@PurL&Nw zi;$H|-{*f}^xL_|l&baZrfbx)c+dCJsj)22$jGbR z18S)Bba4!kkjy=JTc}Av#Np!FO8w0SS9+Qw{`@z8X29dW?&!)#-%Oqr>UL!9{kP`t zx?O53rc6Gtvdh`ds`Jha=C?X0?=Y3?cfM~t>9xuCz!uM>`ws6_KiXcVzZbRtRo99aY{_l!4$ZVbn<>!!>fwe*Ku0imy85}Sb4q9e0G(u? AqW}N^ diff --git a/common/gtk-3.0/3.20/assets/radio-unchecked-insensitive-dark@2.png b/common/gtk-3.0/3.20/assets/radio-unchecked-insensitive-dark@2.png deleted file mode 100644 index 704bd30e78e2b20637f3fb51a53e0dad3bc11404..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 915 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc|`>i~#{Y zA+A8h3=IE)prN55G;|e^OiN1(ZD`1yG${edZfJ-tDM>2pOe^mwXlTf+sK~Bt0}D1} zG&H1CwPuxerB$^ils2c=G^bWJq&BoARW~G6x1?4yrPj8m*EXeAH>6g#Bv&>iSGA@B z)l{{DR93a7R07GSl$z!=APHnw168&FxhYl6DK(90RbY|YmK2~-Rn2KYEg%I=Kz2%H zQwoFuA{(K)z_Q6eE?6;xwkdrS{DK)68JU<_SlQS)xVU-w1q6jf z#KgoUBvn<_)J#lFO)aggtesulJv_aVl2bCXva;(Nnwp#2JG#1i`}+GQOq?`z+Vtr& zX3UsLEO?bzlm?7fOHUWa5RLOwFNX&o3J_s=pyBIqv~6!Qt9C-O$3~ZRjIII#qOQGN zZq2{{-&bK&Q87QfWBq-fXMSb;hyN(2O+TIEaIST20Fy_{Hu1SuTh<<7@LUt(!r8I@ z)~&01nb%G6o)k6d`gfVKyIFHP9{ue4qx!e$MT$3jDChThDNRxOVkin6b-rp5wPf=ef-c_|y^EdVRw3Lb=ym?>)s$_Wijxee3TCl`A## zW@X*!=C|6vc)fACtYl4$jbUk>)MMwyW2`?!<{c95Jv}3EhkDG}SEkXt*Xy+&A6&g} zl6i$xZ{(jHSBnJyr7b+ekjgi4;kB4!e2Oc)e7QS%Rv$N$Y56k2|Kzk&Q!QBBZ!OP? zoz(s(RK6(Z=Bnsj$$5_-_}Dd{t!%$2_*Gg?&~*RdlS^9OrSoxv@`R_WpUXO@geCwr CBX*ns diff --git a/common/gtk-3.0/3.20/assets/radio-unchecked-insensitive-selected.png b/common/gtk-3.0/3.20/assets/radio-unchecked-insensitive-selected.png deleted file mode 100644 index 077be10014c8136b93f8bdd71b4e82a0c59af0ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 395 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(Y=BRQ zE0F&G|Negvc>MqWvllNeg1PTMe0caDi2gtM^y%jRPtU%6d-5NM-ah^R?dks?uYY`c z`v22?p!olv&whS>@cY}t-`}48{{Ha)_h-MqKl%Ut$?q=@|9^QX?as`??nPKV9pt~?`Jd-J=Q+>W&S@?#$_wE} zaWM=FQRd4_(7ew#I4tDB_Og3uVl~Q?Y7U3p}Nza8HHg1yyD|(92J94O620^B4xDA+_0n@)6`^td9(GCmH zOJ17rIYXfS2rpyxZkW9r=tjh{Kkza(U~GN|_mbC10K!dpomQ{g3T~=anL3G{L!&P# zQegpsfvjz8_VyhdPEZh+%L@(-3)_Vh8Oi7KqmTrG=;)Xjp(rlyP(p%4au_KwF)1lo zDosgAO-nzTk&&5sEGru+Cnq;oCX?ehu23kl$YT-c?cV{C)N)RaC&*VYp3&Cr|`IatLn2u&bj)wzN1>2 zp2`?)sy>pftP%=GKe!p@ZI ry!QB%tg(gU^S?yZd%u1&#-62FRC-QPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(X@F0N zE09iTXeelCNG@zhZfJ8AJXv=Tv$ZKxTYwpZ# z>Bwp9tmy0q%4XEJtlqkQ?Y52SbMxH6AxG7&`zb9iUJ$JkY4spSbtAJurDvV6L9OaXVS_c3)-Yc< zH|dP-giQ5|(dju}PgM$5sjT>VwkrSqE;X%R7iVm=-|(EjQCN8E^)8{gKvyt$y85}S Ib4q9e0Ku@gy#N3J diff --git a/common/gtk-3.0/3.20/assets/radio-unchecked-insensitive@2.png b/common/gtk-3.0/3.20/assets/radio-unchecked-insensitive@2.png deleted file mode 100644 index 95d1ff7f9d0695f73e20c4a2959b166204b3f47d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 904 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc|`>j9vjg zA+A8h3=IE)prN55G;|e^Oq)3~7X&617WSn91+yBWfr8~7X&oKOg$>C-c5wqxJh8GZ zqog~fsx_siIkTcYt+Y9Hm={XdE1_C7cL&Z2t=2UU%q_e z*^|r9pIm+Z?COsX4}N@l@axl~-`{}f$=`2J`YtR{1%_o_NswPK10y37GYcy_J0}+p zA3wj4kcfz=n7E>nva-H`p^2%fnXR3ple0@?RCGdOVp2(Ic|}D{ZC!nRV^ec;OKWRq zS64R>^biSb7#Dv7#;2L5i(`n!`Kg!FgAX}KusjInVA3*MbK^i4>jowvm!mooti4D2 zA~Lw{{r{iEyOHYpYC z$jJ`{xkee@Om8f3s49uIE-)pT0H~mA^WLdy&KKPfZHn zPurdNTDI==2h%HZzTqnrr(RwWo67%AQ<;B8*v)>W?(Pq(_bAtG`0=^syZdh8$Wv#Y zZghPZ7qjuFRPEfIr@uUQpLTA)TiAzVkIL7qvT3#cwz(qYUFVWhZo12rd)-yzp7cz8 z^57~LuLQTQ!U9n*Hi_a6Ueo7BWekzwS*~t5G4|UY3Y?SMs%gi`(YwWOYV?Dtit!#n zZjwg(PfYw~k#_By-xT8;@$*Y($Oi6zDQNhaS5WMd;sep8ZJ>FVdQ&MBb@05Z#% A4gdfE diff --git a/common/gtk-3.0/3.20/assets/radio-unchecked-selected.png b/common/gtk-3.0/3.20/assets/radio-unchecked-selected.png deleted file mode 100644 index d66b77bb282b32ee00b1979a0c43efc74d22f17a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 428 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(QGic~ zE0F&G?(YBpK=kha|NH+xJpBLv;ipg6|NnpT>C?^c-|zna{_Okrd;fvx$D{KBc`M*XN@>FX{Ee@+eD<0VZv5)h;&#)=<5#1BIA)l7zJr>wZarpqme|N z8btz8<0~ozHR@n)6SFK!oG~CF3xhIB@4Zls0|ajGwYROuUkN?=&Ue0Z@}2X?@7JQr z&k=@-LNN>zDtBdTP)+cqAP8~TOvyP^f`}}oP9P9i?FAF44XNK%OkmjR2fhp_5uIOy zhVf=aky*R1(rhU+=`oANl3ZO^LsXR2>y!7Hsyb#eL>Ly3tIE?UkQtVu6X3aDqiO|; z0-)f{8+i9GOj`k_0sfnvwE@`Ry&b?lH}?-R%+C+QJPm*_1q)W-rZ{dKd_ckmJ~#jz z;BvSYNN|xZhH^3EE*Hf!<2*wHPxFjzNjN8fp9Ge6BXD+f0m03YZpQ9$Qt$yCAw4Vw zEahjrhowCWK1N#}771h^ft_4r5;)q!**!j9)K1F#f##iduaoqFrTn11ENXr1W{_CY zUUt%Npu8OAWoR$A2(*g?x`u{+e%aV3M6X$A*5qrkfWV;O;AP8KgoJ!13=dx!5fK>~ z6%`#F9TS@%7K_)R*qoHKB{^9plcl7jq^72SnUS$=d$v+ppwVcxIvtMV-xd}X6&LR< z`M$JNUs?4-jiI)#-e@!t1YtJsKVUi7&~WJR;ije|N19{fwzs1Hlq<7$=%fRehTh5p z)p5(-SL4@fVnSQ~->vCM8nGN#uRqbgX)62*Kv#RNmY|G%AN$4}R~JlUUzZzy+p_jW z?9&&QkD5N3{?cc<8$(p48*O+qC;YLC7iV&gj9XCyhGXR5gJEO*@J(8hSa?p-J}N8g zko?Njw(kB@`19=uNo`A_zMBXOwDteqT(oEH1<{6+!T8_T=VI~&i8*b9=|?wyE-Npf zPLmaL6FEJdoA|u820pFum(`r1Z|8u`pm}8Izgsz7&GgjYed%a5iN}XBqIKFiz?Ao&?ynkZ)(8$Q!Q;qV3$S-X82Ccle>6I9L OAf{C0XW!2%J@yG+%@id7 diff --git a/common/gtk-3.0/3.20/assets/radio-unchecked.png b/common/gtk-3.0/3.20/assets/radio-unchecked.png deleted file mode 100644 index 0e1275cb07590f330b41cf773d5850b248a15d32..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 463 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBJPgaDrq zS0J5O-I7+`kWtZ)Qq!DN(U4KsmR{SE)zFez*9;_c8rpIi+JPv$5yZ%E>db5E$ZH0o z_MFC!^3J|&kSs_F$jEMN&!}t3sB6urZC$-}{hDnXGHP4aZr!+U>xOmPHm=*g>B0Sr z4<7*0rAH4hJ%4ib#nWpqpI!g{@&1pG4}N@l@b}x}?up_5fNoMP3GxeOkd;$VR7%gt z%FdZIdHRf*j~+jH_WaA&uV24?`}y-+pHZuoc5!lIL8@MUQTpt6Hc|`>jI{wi zA+A8h3=IDp8X7`FSEZ%R%*~yY(9n?9(2&*8kW|*0S<#-{(2!W!mR8l8QQeZ#(2!Bl zkW$l}T+xtT)0_$vuWSQyQ!1O%t6Neln}F=ps-_em8%(A_7%;&!5Th9=2vm>;WB|F< z%^)q+Ao0}dCLozo-INC8LP;Q_B^9g-q!J_!(giXWi3FR|0x=C_6cS3WZOy1{gX*ej zNe80Zmdx7L%sL=y%c^TD@9Zn@>aPHz?*7W|{;Hk{?bBy=OrO~`b5{S{c@yW&pR{1X zw##;rfqw+UAT1Y;-%vkFCV{j z`S|54C$3yM`SkIX=TEM_czW%}#|J+?J^1cvZzE?d80eHhzuLVlvpu oXD99Zx9yb3ib&%*VSf&*-_rfyykAk#43twmUHx3vIVCg!0K4Aa}aaaFVDnrhcomEH>~T^Ch*E~|81*66vQ)^$m>`?6}+W%b^R zs$Cb=doBXGKvJ#el3F(q0aadtu^}Q*QoS3f5ksmADyvYlN1@(X5Ql$Mc` zH!w7Eb#wRf_VEi2$;&UCHD~Vp1zWdmKXmli|G&`l zvPs;!@5$eL>!0(UU8||HaLu{4Jq4f6q(m$W)P7oY>uB8--rG0WPH)jl(ai5XBy?uO z8RvO9KM!-3@GOm3HdVdd=@$EB?Q=n)uYx*vGxU6zf4*GI)Z@Yz=8jEk*UsOw>A@V9 zuLcdG|E^wJnXzGk3sWwq!z5q%<>q%ld=J&eSu7h4FMF;N`!d92N4r(yEr+qAXP8FD1G)j8z}|`rm_H^ z5LcjLhX4N=8vZk^TIJBN-+1O3?S`u=lWyyEU(}v@RlV~Dkge2lMxp<_Zu=$ezN^|@ zS2g>usdt`J>${-Rc~QCdvReNo<-V($UFS7=FR1lgQt7&=(Q`?y=ZaeA1@*2gYCRWJ zx-MySUsmtDqTYQ`ts5wHNww#)YS%^eo{Q>Tm(;s2t94yg>%OQ8k^-_X0%g^^E~<51 z0xDJoN`XwfqzY69RMP`g4-!`calve$vL3LpATCG{s1jrpOc@dzVhC6YXlD0Cm{Cy0 zXk3^HAXx@&GX`yQ1|1->U<4vvD<%V5CIfpWLm+Zs1|lOzW+P{2V<#3!=}FgydfPF?~gyrhyKzhDMNCT12^Hg;|vUOs*SK_LlADQOv5 zB^6aQ4I^VyGiw`r2S+EDfS}-z(6I1`sMxrS% z2Xj|9C(TDaN?v-^>G`dvJYKeymrHtTC@O2GyjRv%o+-&0?soI)%XeSpf8JYJTv~qr zy{(;nwcShmLdJ)yPG~SrTvf-oM5pA?ovBqEmzSTByx*QuBDJ-|*5#(1-TEEhSG*Fx zrr-Hh{k+u?HODDW|2@npGkCM>6Q6d{iOKgqE3R5;(jF_i@4%seBI6WZ7u&nX-p>6o z)2ioI=VgZpZ)Y{$eOs|UFjzWEmL<}Eqx9| z-JEf$H_Eqh#jf5rcO!iki9L+!usUYcbM@B0FX1*WS0y6P1^Otr&wKgdNYOLtDKQC= z$9`>*OEG7g_s8x4YrNw5X{SHEQ|Nn>cBpyT-ZL>5I3lmES-@d@LQn9W&hN+~)=#G* z4yLJ0IO5N|{Mm8)g!G%oC#?=B=$u+}_JxOwV?oxf!#_(Ibbdz^iF$cObV@e5i0~|r zJ~QXL!CuI?uV)&VD+KdOy-fNyz zySYzNc{IO0@=X9&{FIGNz8(s@XBGs`J2^@EgQuyshLg?B-nP}J&(v`2+nASHxqYG9 z?gb?~j8f%V*6VH3N&b7wp=d^*ncac(t!~qbS%P1#uaoMqI%m|AZ(6(ZXiCSgO%wN8 zw|8DyR0e-;l_U4^GZzdm--ndt%Ro!p)OQ1(tcwGc}trrIat&)rGSoptW?_|CYau XU0JD%3U79mgNk8KS3j3^P6n$ diff --git a/common/gtk-3.0/3.20/assets/switch-active-header-dark.png b/common/gtk-3.0/3.20/assets/switch-active-header-dark.png deleted file mode 100644 index 5f33bac36986d12daba88036d6067ff021de6bfb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 807 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42=2# zJ|V6^#SH)dtMy$_>Aa}aaaFVDnrhcomEH>~T^Ch*E~|81*66vQ)^$m>`?6}+W%b^R zs$Cb=doBXGKvJ#el3F(q0aadtu^}Q*QoS3f5ksmADyvwxSFvsn*aUdUi7>c5@dFa~Do44^AsjPHQhtTVF0~A1)goF8d%ZhhQG3FdpX!9_L6N zmqEEnm7F4SAPg82Z)|DQGKfpb}S^&1RsNBw%K&8_DV zz|9o#FkW}ANi%DukjQj~BR9VkmK_H1U9~u`STx9**)D(SrGEB-oEB%_c1E4g+jpBx zOeQ`~$rY&fS?S})|= z`9$H?AI)i%XC~^F8}N1K&rOXxcQWYamxIrE-fr?)92RiZDOca3!EfD451&L%Rk4{R c5BJwHZckCqOKiCN9+Xf$UHx3vIVCg!0O8_EDF6Tf diff --git a/common/gtk-3.0/3.20/assets/switch-active-header-dark@2.png b/common/gtk-3.0/3.20/assets/switch-active-header-dark@2.png deleted file mode 100644 index 7690f3fa6adfaa3fd61a1fe5d404232697d00542..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1529 zcmeAS@N?(olHy`uVBq!ia0vp^NkFX2!3<)R`n3Wn=3*z$5DpHG+YkL80J)q69+AZi z4ASdCm@!Ujq6|<_vcxr_Bsf2(yEr+qAXP8FD1G)j8z}|`rrZFZ z5LcjLhX4N=8vZk^TIJBN-+1O3?S`u=lWyyEU(}v@RlV~Dkge2lMxp<_Zu=$ezN^|@ zS2g>usdt`J>${-Rc~QCdvReNo<-V($UFS7=FR1lgQt7&=(Q`?y=ZaeA1@*2gYCRWJ zx-MySUsmtDqTYQ`ts5wHNww#)YS%^eo{Q>Tm(;s2t94yg>%OQ8k^-_X0%g^^E~<51 z0xDJoN`XwfqzY69RMP`g4-!`calve$vL3LpATCG{s1jrpOc@dzVhC6YXlD0Cm{Cy0 zXk3^HAX#=ZCw4Puc5`QT3pWmP7fvfrPHQht8*ffqUrt*;E^8ky8y_zFATEbsZif(V z#}IC(P;RGi9;Yx~*Jxh1SU#_0KJQdM?=*f8O6T`U=l9Lx_sbRt$P)yjzPj{ zq2OYnkW!&gASxFM1ELDy@G9Ym8sW%Vk*GS6sCtp829cO%(dY)z*k;k#7SXsCvDg-| zxK^>aHnI42vBWO1#BT9~F7d=3@uXgfl!+3l6C^XHOJ&cJ%9$^nGfz5qzI5&a>D-0V zc?+fU7s=!=mMH+DrLx5LB4#WeB~DTs;vr@n-!|ID^zb&sM(=V zvs1BlmtyU1#X2C`qg20Nso{W9;{oNygUXGEl$(I)uyXSe<+c+lEyq<_PpY(?QfWV} z(tbv@#!jw&#{C6xsE1v4-*F|)9;v2*kA^6?7@3Q0&xNz2G8si>-H z7#W+IS=-n(0IV4<5dJ_2$dhZ{L6Z`u*qcKOTwFqrhZ7!PCVtL_+fI!SC^B3T43H5V`?BJxPg{4r`q=&JzDK<9 zOXqc8J9^qRK2H|DnWHSb=NqH6(ut{#rxjOyeJ58o6e%OO21_B zN-2ulaoTJl>)ZbWrCsN`EOnglRA={;uV%SQmKRim^U=SV!J;c9|T?6O&_u|2C|6#ic!I z*0x_0&(@TDVwL-?vvE@J4DYv2TLeN6aV`0NOYusgnakf3z@SM|`+M11Zjsi_wKl;{ z@|&dR@dSq7=)KFUseHn*g|A8H`HiJ-qVBT1Qt<+YezcJFY13tHLE?+eoI}3ay>qfk z_LB1UW7BKa_`G-Sn-v?xw3$v${qR-bYFOl+_S_}TY|7Vq)y->^!d?R-f9;rrPLHcgzt3k;{466{lb_1)eL8EP|@q@>gTe~ HDWM4f3XG7= diff --git a/common/gtk-3.0/3.20/assets/switch-active-header.png b/common/gtk-3.0/3.20/assets/switch-active-header.png deleted file mode 100644 index f8e9eb1dc66ac434bfc3fbef9eaf747c1e51a831..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 807 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42=2# zJ|V6^#SH)dtMy$_>Aa}aaaFVDnrhcomEH>~T^Ch*E~|81*66vQ)^$m>`?6}+W%b^R zs$Cb=doBXGKvJ#el3F(q0aadtu^}Q*QoS3f5ksmAD(gP`s{5QPU=t9!+-5^XVpm*` zUvVRP$+hUE*MMsDCtS9he#L(J6{ne3oM&Efopr@^_EoppS3?(Fi(GmwYAHxr?DFez z%YnMCC#<-Zv+hRco?DX++@5sk_KYL9mz}<|{LGydXYQ;#duP>|yT@+bJAUi_@!R)L z+_``2$%ETZAKZER;NG(bk6%7~`s(4EcMspafAs$SqmLgRfByLB%g0AQzdZi+<O$_n*IiwHaDEak7A-VTpW;A1>2-|~nry#HH31Ygp zjF&vkn7PGswaGQ1-Z}sOOHW#sxhLlR@psby&pn+V9qj28JNN7Egy(ZSC;6Dg=bCAs z|EPthITnu{1D7TT{& z7D|nr@R5OIqUzH9b0!5|tz0ygR+M8Bxc-eYX@Q&(C wpLIDBPw&JfFqEBJSrDSiX(~0ZN_odZg!p00i_>zopr0J?vUmH+?% diff --git a/common/gtk-3.0/3.20/assets/switch-active-header@2.png b/common/gtk-3.0/3.20/assets/switch-active-header@2.png deleted file mode 100644 index c6e287a3f3653fb5be6acc1b77d65805570f987c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1552 zcmZ9M2~bm46o#V#0V^29Dj;qUUXmfALe*AL1QRu2Sp*`Yf*=7=3bHFzi%Shz1PQwm z1QbPN2`W`w1`Ue{VM+2{60(s5i$DRPY|0{ip>^8n%(?ge=ltLNGk50BrFppRGhA%G z7=b_-lJ*l0!ez72Fz}*?%|&fml_kT?_op(=6bj zSuD{v)+;h3HX$&Yf=Eb6unmhi9djb^48=AwI`r0%gE<1R@Uq7NZz2pM=H?JdbBNN? z-AT3fxjdUB2+fk&GWa%`5QZj!wPiAIU26LVs=y`%vY|t`R1t>O2BdVLX?&~eLLgOO zl>*`D?bz!b08@ab^RY|;zytwW2Zjy;%nmeNfMp0VG!Vn!0}R*_STlvzbUud3$It~B zh7h0&0S4b%Yr&ciyBInjpbKEw8n(1)0&5t9879nY=YY1I*D%JMkJYx?AxvtczGDB; ze}~Lla3+KQHR>Puf9=?!QDBab1t|i7u=Tz?azZqY|w=by0W1IZ0N^)$o)3taa-hB0C^Qc zK1HHKcSOE-MThT-j@%Okl!yaM#6b_l!KLD`GV$qhad?H~r%FjAM;ytKL~$h1Rg#!T zlC#y4i%&bLFFKQ7cBa%yQ{j3oO?x9{y_RKiWjS@SoO)Sqz3e7j4YIsOc|nt`ut{F@ zPJXvpUfd$T&y$z(6lJZ7@-}&8yP~Q?@tCiu7AT&9${JAl98$g%DQhK4uB59`s(dT$ zdMoQ{l6N&Lx}a{A19SzbrA0Yk=QAi$rkpHZ>c3Ga0~( zvd|lT>SAU<{pMsnNhML&el9@CWovy%k>OSb)~e}hN5j;qUFj=yT%LpY zvy8|KO18_t;QuyW^t5=IgT3j{_dT*mP;oIZw8tt3%9W4#8+pEUta?Z{w3%Wtd<}KV zYa%EKYbQ>D;8j08r)zoxp0n!}>!OQXE|8q^pOHSn3;cKK3WBV)!gH@coP*eB#!E`lkM7aW6)9?tNOB!qn!8&XvM~#!4 zT+1ovR-#;s-E=v03@~g{#I_|$qE_wzAO#7 zSlhx|W|HAEkEPWvGSa=yn_*i6p9+|n;VvUqB!@3M6ixAmRE!|9N9yNbdjq$&nc#Pn zPw4D#y)9G1uf0Buvv;IMF1dYJd9LIgfHrH3m`Pj^kog$z+S7de(XAvPo*VjN1O5Z9 zk-yg1JUOx64nMu+Sa0QKRCW2KS1+!3j=4W0NJ``pJo0jNVHluw)g`Bt|fC%2+% zRPeL*HPC9%r~m-X_5EU6n}<$C9}H?DR#H%L16D6MyLi5QsysHw$g|P4dZ4U-Q^>V6 z405G2_?(LgkhD!TW?a#oeaA@Z{UI^gF1&psc6-#i)l;3wS<+s~FwS7RzR>!>niVe1 l3+sH+W_1XqT;zjXPM2{xRi1M^EMEH~lZbAF3g_dO{{nU`AAkS= diff --git a/common/gtk-3.0/3.20/assets/switch-active-insensitive-dark.png b/common/gtk-3.0/3.20/assets/switch-active-insensitive-dark.png deleted file mode 100644 index 85ecc9eed73c04daa9db6c198a7057007cc44e6a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 802 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42*mM zJ|V6^#SH)dD|MVv>bR@We_yx#l6vP2wZ02#eK(bQFDUh1SMR*2+Id#B|FTNYRjs}Y z>fLA6yDzKtTvhA3sM>Q$z3Y;CH&F1hTJL4G?u#Hs*G09SD{5Vr)VeRJc3n{Ix~$QA zSsf?^6afidRO`O1+I>mBb~jXU_eG_;J!;(-fTqb5u8=8QrP_U2wqy;1jyaQ#1(UuF zlc56(2syDBJF%F$vzU9bTKKYB__12~aXQ6vIs;KWe?T#RKq-GvsX%yxP-L@EbhB7| zmsIvV>B1G#g)60tSIQQzmMvW?Te@DhY@=e$9>qE!+N;>GSGi%oa^pdj_ERdIXMir( zZwtB$43MajAirP+Mt*()K`CizH8pijO)YIbJsVrQ(6F%Zh~$)%?3~<^lG3t@%F3qZ zme#h8j?S*GuI?V?detr^|sdL)%@KjP$Nt=;L-&@$a$*jQq%Wf@sqQ;o>n`dr$NyznydpQ@JIP<5pGTUrT$&xMxt}|!W zi|#U;l~@wRu;J*LGv7sxqz*sNW$-8!&tH*b)YcurWN%WdD7 z$LJ8U?&9&t4Q`L?wcZq;O+Quqch>Qz7hmwW9X@${ZzI=IKG$nyxl41tTUd(CxqH;d jPwsn6nxf68{TK9?-Q!HUcu03WD2;l$`njxgN@xNAsRT!i diff --git a/common/gtk-3.0/3.20/assets/switch-active-insensitive-dark@2.png b/common/gtk-3.0/3.20/assets/switch-active-insensitive-dark@2.png deleted file mode 100644 index 135cf60cbe0e26a5f1d4a7185831209b84f37a4c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1488 zcmcK4iBnTY7y$4`I6}}sj4_392{|InS^zWsLh+waZ1*?IEV=nZ%~ ziX8+&c#%*L55_dmy=*PbQGRqa7%X#nq6Ax8+ll8flVFNFAWY7MAZLxaTkN1TxPV2c zyzr#FO*t8Pg{g;jLxqKfY{~xY-1O7~yV*I1_MCVZOo1Q_AvQ8093(>v3y>7Fh0Sek zo7)ybrTv~#Bdopxt0&y0&s^&6aqFfy(h-LI5m;GKJF=qosk`a{Q+A)O7=hJeR8&W= zdko8URHXszGF1;5s18O9)EXnT&bR_GtweRqIz0m&WuOLn?HFA-PD6~a(#TZk8S*h0 z)iY}!Fc4szf$HfBJsmaB6b1&WHRmH*I;fA1(-h+jxt^gk&=p!5s%Ib|7^kCp7}3!c zIy$1KA>fFCfq)n3!PI=pyk(%FI)=F>C<5aD0`pW$Q|M_R-%JOd5X&E81z-SnAjUfw z;~k3e3AHlgS^4m-I6N!g4OadlYqO2k0YDTsI2Ie6fa4|OcquqOuoD-ax+pviFB0QL znfQ%B7Jg$kJ_^|95DnxwL?3jB&2@;+cZe?_BmhN(M4*(grJQIcB_>x8w^b2Ss!1s| zv%}jvI1rYSmXV!ZT;1F~s4z@pd9m5v-m85$Yq^0z zK{2s$@rj9Bl9H0QZBI!}6YrK}W#{D=6c!bilpHRVN-JeGwQ>YOQN{n%5*9ZlfO}ma z5`-lUu5h0$<2oUqgCU z^aU;3(|+vz%`@MItUDYcsrY#S_v$W;lfRl9fXP42zb+0s|9D3Ac5Ao|Ir%c;K0W{E zyT6}WPBDiglW zq`l3M#7^9oH0X6Tt%=L3u3u}sdp)9`yq~r%!&7`?(tY^1Ev5$58;tnI)Y+3uKmD3% zDj%YFJ)bOCs#3^VclCLMb^=$gDCNHb7`dOlsOt7HHFu;rGI^m(5U3YiF(= zIh9Um*_EEtu-?r{+hkhZor{s#B%igfxlhH;wDz`3s=K1eOunDw_OiLi+0U|?t#^+5 z+4gh}{XkqVi2D%t{*aLg^~!wr5hUUz{*eL_{)~ObrO&wDj4_kjZO7t-NnIGn-A<2$f{A)27?P#;S#oWivem-!(T{M>IsaIejn;xM`NC z!^kcCz~a4C{YOW(tF)0Rd(v}ud8nA4pZn(Ac*YT#%ekXbYo`gX=4AECfJZ}RF7BEl z>&tFk7K8P~7|v{%Nkg=M$DP%-)B5U-17Y03nIq~46i=~lF5#i9Bl~^~f>&QW-FfM9 z`2_j+o#s%Jrz!4bV*JWq{z2=FhZ`+@qey$t7bm(^v3k!{elgBY2^PN*g)B;LOu@f= zn?LyS-my`VKrk!`5=VV`{nyt=oYnU8tuGF&A#`&%8iL+#W=)}>F-d%q>m%YdbJ=RL aa2{(B=26PBdcrsVQAOd=f=j$zmHz^b=XRq2 diff --git a/common/gtk-3.0/3.20/assets/switch-active-insensitive-header-dark.png b/common/gtk-3.0/3.20/assets/switch-active-insensitive-header-dark.png deleted file mode 100644 index 1b3ab46fc5e28e36ee8f0f2854b465d27a7ac955..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 788 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42-M+ zJ|V6^#SH)dD|MVv>bR@We_yx#l6vP2wZ02#eK(bQFDUh1SMR*2+Id#B|FTNYRjs}Y z>fLA6yDzKtTvhA3sM>Q$z3Y;CH&F1hTJL4G?u#Hs*G09SD{5Vr)VeRJc3n{Ix~$QA zSsf?^6afidRO`O1+I>l}elJvU_eG_KJ!;(-fTqcntWoX0EMK}ozI+3_xf8p&GpCg& zrUqDbwT3Ss_T~kv_TTjo%)-E(GEIcAPB_%s2x1^-BtfI2Askx=Kt)ru} ztE;=ahX~Mhq00~$=5n4cjv*GO_g=XfcE~`0?LnA>K!J0acz|PBz_O{UrZAN{yPCcI zZO_FSaI0mGWsKqW$?un>8`Z03UVqvhcPCV5iPq20EBY1hU9n|b zw$nIvMSigp6_7gkJeAW+XLkOAj-CVo!=|Ry?~VuTDYN;tNO`*c$K!7|9^0{~U;F1r z(^*+>q~7Ll-C(b`)OOB|Y`J5L4b5^c>$c5xs1z!-X<4?9BeACc?7K*-_T#qG`zp%+ biO*u*n94LiaLTb?pj7GU>gTe~DWM4fP-aGU diff --git a/common/gtk-3.0/3.20/assets/switch-active-insensitive-header-dark@2.png b/common/gtk-3.0/3.20/assets/switch-active-insensitive-header-dark@2.png deleted file mode 100644 index 506f801e90ac924e51f7efea43fd4b21d6a5a46a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1471 zcmcJPi&xTD9KZ=PK{Fg9W+KVs$D?Ih(^Aw@Nm9dCh$xz=gicYXhKQLJKEdA)%-J|@ zxn zzd|)ey3Pz%*(ZKxAw~!`)72Jwt%U|pZ$gahS`!NyVhVrZvWH71tM%+yXY5EBaq#uO7VL9mgj zH8Non0|q5#77R8r0oPh(T{1HeBg@(oGy(Pp!|F~lv?d0~w_*g+&WCH~v)j&>hxH4` z`th-Tk=Ot}HUP*dY>)sOBy<390U`%(ydziS$V+nMCFA%K9AAp#XW;mmxJZBu7nSW4 zlj{_d=Oie=3*~sB0xtp-;YG#x_!4}4DPDYxU`0hpt{^6CQeHDDuZ1jcCCe|87477rPPd{ix8feRk{)XD6>7;< zYAK+XT6&#&4A4hc_0!7$x9DX9^ol{cdKjv>162(}>QP8-fNI9UElIt0D8V!6C=^7+ zqE?~NHa4r**x6yQSbN8HIGoeRg!M#{D|sV@N{1kZ`xXxmPtUE}yu3Mn{{GQ1`vf9U zd_saaX@7E>M4Fx@%Pv$DDT@!6lpHBlsmiO>ni?2J5bggkj%x(q)uR>RA;CiD4bN^Z z2bv39?Oytrx~3krD%iZ1x5WErx$0?U;~SsmibD58Aq^eI^8;|mc4^z#V$;%(X}a9G ziH%K7JDYlfX6GYfMOQ1`V}~So{>;(WePq+p`p}|FG%{isjH}zR>%qSdHZCJ=^L-HP zLG4`I{mv~(#tFNz@UBdLji7twD_uTdDe%1$|82xM49O#Sx`7lhcWzGKn0dO?w!1`F zTex^Z(!w$97=HSwRaTvov`IUH7Ef@h6DRZvf}|HEe!*#(xe2FxX9r3nh4P%}u7(V0 zBDMWHMeD${#rqPfdr#c78LlAo+%C_27tN%a2CoY{(>b;|q295P_nuS*kr$63rS|L) z!p*madrvAZrx7!U((KthXvJpQ_iX10TUiYERERA#_IV)YrGLUgWsnb2tY1yr8?1S; z(I*1+Ar@wb6sJ;Xbnfg{`Fqd5$sGm3tvcSGRH&Iyxwg%)Kk#v?&Ot(UpD!!Z;MZ67 z#%0_bb@^m|a*TFzFFI@QtCarH;2WAyH;1V+m1z5qT2j&@J?B3&pvTx}RJoWp<=-SZ zU0CdRK{gQTB*DE6Pj~;+jwmk9-d$twSIHT2`eB>?ubz2S|&lAN%}|>Pee!j~=Z1{dn@7ho`FZY5L|7j)OS%eXhdw`&q@|{0y(by04D> zwk~U-;(2sa|8i=e{$!Y+KuOfkP{u?DdIrKIBY(DZbR@We_yx#l6vP2wZ02#eK(bQFDUh1SMR*2+Id#B|FTNYRjs}Y z>fLA6yDzKtTvhA3sM>Q$z3Y;CH&F1hTJL4G?u#Hs*G09SD{5Vr)VeRJc3n{Ix~$QA zSsf?^6afidRO`O1+I`7w&J~Y2SD@-af)`xpTmc%W+I=~0#kGVLH=-6_jamw_MSsF& zyXlu5reAiNdD(g9W!Kq2bTw?z)yQR6qnBNcU2#2r#r4D$SF_jO?A&vE(*E0%4&R=B z^!Bn-cUGLavl58T-8p{y-ibT+Za;Z&``Lp#&mP=+_Tb6ON6%h9di(y-`}dDNe0cKd z!=o=B9{u_PL{I*Hd-6%ZQ5zU6F(pBM!3>Q2`~ref($Z>b>YAEb+Io66wsxUmVc`+U zDJj`Gxg{l~Wfhf`P0h_Mt!*70on2jB-Q7LJ0qLusxPkGY=;`7ZVsU!!m78IQ3lH7J6$y=d{#RQ})b%ZP+xu|;+&Xp3nKQF)ZF$U{o7&Cd zX}DSPlVwNwV;1HoEAPE3oBb^EjIrVA-x@pfHza1{Wu`R!Fnr1zZJo8Xq$Q&hNw_{J)e#Xg3XPCP<+v@I|dg1Gq#&Tg^!j0#1d!mf8mNAG{ zynMBHnc0zP6Jr^sJYU)_R~;y2{_7O;t-mWnt9&x=T;DvYVNvrVhXV6Thp{mA>$F=11{ zycdS2crI_sJ#Eu_#-hC3cHXh;wzBb`{r>8I;caSsDA(SyYa1xBdb;|#taD0e0sv@k BiJ1TZ diff --git a/common/gtk-3.0/3.20/assets/switch-active-insensitive-header@2.png b/common/gtk-3.0/3.20/assets/switch-active-insensitive-header@2.png deleted file mode 100644 index e9f7b102c1bc6dd8f83c03c06a95c3fa674a22c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1558 zcmchX|3A}t9KaVB;~qM?x-ye*`=S++dK9`lG_lCHQQOgVQ%7*VT#aJY0n(RqS zrp84kr!o>FP^qb@_E8sNl1?+?Bkbc6&t89h2!lfDxCHnHdm_cC^>tJ>a@Irm{1E=S zTXy%ZYzW8gz;Tt9*;ClUKIg)xPT682YaEGKGsV`-Nz1Dvws`{tju^)swgDuBLIsW` zu_*wNtnF1f5s={6piMqxQwUkJ$94h|+d?T37$O27fjLYlkm1=7t^l&-NQtar93Zu2 zju6=hG9n-)aHIqP#B)F*FsiL*j}nmifDF%(5m{1V0Z8DC;sGgFF?b4<|JRl)zXCgxo`;(z{NAVmf9;w$N`Lsx4%aM>cpnZ|Vz6f+E z0v)*$CoZ_33mzy1UCO{iW#BjEpj$cUQ2`#V0KIq+g$Gi2kPi>^;X%g`svy5AC;*`v z3a*BZ*FYx_Y9V?p6nYanRVQcE$;0dAXX@qAx8*U7@|Y&Y`6fkNi#)DHk+hSY3+3Ze>xol8exzEE6cp5roPLq4K&=$?J!!MapUsTqA;O2jQE8aGe;g z7sI!Q;l^ROX%uc5h3`nR9%p&TcHvtRQ*bo2v!ZkDo8V}&`hhIPpf9t z)3a*ztXlI@{rshRZb7}Us9r=^QZH%IyjfDed!v5;R{efiy{1L;@3LkkCz6d^o`=an zepJ*39UWcW&-C>5(FO*FMw`C)!uZQATfZ{Hn(wf*vcci-yY1}l9US&JI_-0Iadq_% z2n;%Y`~;0g4-GrX2tN}M6&;hDaxwK%T6%g$W_ET?UOtn>W&;4{e>n+Tv-*+uaD_s4 z58iIN(6e$%oPgC|O2ykGM8)@+{Qg9>Gcc?5ugk9*5Oy zAEz=G`AL)SvKIeZ?VK&?W13l<-X}ENV|t^%}1A+*6nHa23DHT01rL#z@N&samwmMvfh35z&1f7lWXy|)pZRYTYz&&T6UK~7W4J( z2Qzl0d6!zgYUx$o^Y@9w2xD`rKgj2)>l^1h5>L0e$()vNG|fNSooJxc4NM(xiu0tG zoO>M2Y&B}W?9j~36KdRKu4C1~8sA%16yubm3_FYFYn3-?)4+$;E$LOQ1Yu-_?sPEExQ#K+jvS*}Z!9L6uTNsn+{#Cj&F5ZtVVrS- zp~mh8zLy(`=B3XSF-+k7j!CXMCF>>alerbxUc2}e@+#AgihAT zPt_kz%u}aUD>v?A({t*)3^V3P<(ox<`3J@+&s;MCR9hlO@D9`i?xkTfT1<$RS^PxaE(( k1ssr{EJo_^#%JbuXe4>^V!vj6}9 diff --git a/common/gtk-3.0/3.20/assets/switch-active-insensitive-selected.png b/common/gtk-3.0/3.20/assets/switch-active-insensitive-selected.png deleted file mode 100644 index f128fe1b2f65a32f348d2d25d68712371936a23f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 826 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42%i^ zJ|V6^#s7ie-CZF5|Ns5}4-fx;ef|I2K0W>U`N996&whS>2tr>T z{|BP)&whV@1Vn$nJ^b_e;s0+>{(pP==i8(I-yi?^4wQZT>+7Sx-yVa}qrX3%LfPLR z|NZjh@AoIafwJG9+EMU9@z zT0NKbCtNn1bkTIuW%DVQ?WSLLn10!H_Eq<}S3T!m_MCe)dfC-jAX))L*DJQ%tlDz3 zX3NdGZ8y92-kh-i_N0TiXCJ-2?ed+&H}4${IISDF5MdvkR|(%px=y03WhSG~xRyAY9I z^?i-;A4k{zM<;qy-zII}bv-2f$a&R;OkH;8Qj(vx|F2K%U-tXD&7Rg(;omc_7$rUu z>v+3x&D$G2H_thibex!3+-dUf&gIU?$vnH{clk;!{vIdP4vZHDPgg&ebxsLQ0DY{` Ap#T5? diff --git a/common/gtk-3.0/3.20/assets/switch-active-insensitive-selected@2.png b/common/gtk-3.0/3.20/assets/switch-active-insensitive-selected@2.png deleted file mode 100644 index 14044f651243a2e8cafb6a285f0141f35d1529b7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1586 zcmciB`BPIz902erA|O|lqk@P*@MuB6qNRwaKu`|LJ&=evAPI_TK_CzX4@8b|s9X+3 zhtjbHIlRK9P?14o)JO$<2KxF!2rnU&JB1t&lG$z?r+-3sKD*!Ve&@UU!<)AS!GXsN zH&|{U5D12TzNAnXPs6!KS4)$n1?Iw_mFndeuB)qyjRy(fR`0woC6z$f@>nz1oU$yn zf<+6451A2`6whGBrqBpXCetw?k)9eCd!FW)lyc_o{6R|sVQoPq7;S zE&$l4d<+PM00@Ct48RPSgT*;8KMKG+SQrC~BVZBM#b9X?Ed34Svp_Ba@(G|A1&T?a z5C91dmht6fA^2ov315*4As`hhr6QmdDWzj@1{J zswG$vsg`h+9QI5=DtL)PLnR$oNpThIgtK)T}am^}ilXGXA-LS-7)sXlL=z?&6`ZixG#LLrx{g-m)Q=GGu=l;#z@xSAiU= zM2=JMI- zveC2_G#zS1FSMeUTG1=*XjVIV?HPKl6TRMvBL0M)=TkpL45cw&KI62~WT(G)I*X7EX94xgIC=N9kBV*$)OiWG9 z%(qx=wI3}n^Y&*pYqUZAGv^9(~2Xp`;M2HS>#Z&=L}Y-Z(?oD84MHq!=8&TSUE zN&*g&x?I?I!pNQ;N6&Z_sBzb`9h}DF?ZqLYea8N?w38~c=}vv}X!NVnu(hU)+s>)U zI^k{Xyp#vq@7o!~AMR2LGF|udk?odQ4=P(%l_QZ*e$4Q>&>F;Ucm&UaYEk~lv=F8(}f7=vDO}aT;T3Dh@4{ato*wbXHm=EG@bv5QYV(uL3ugTM0)#+)* VeS4_GCh&m~{ComQkGx{C{{>Kpnj8QC diff --git a/common/gtk-3.0/3.20/assets/switch-active-insensitive.png b/common/gtk-3.0/3.20/assets/switch-active-insensitive.png deleted file mode 100644 index 59cf2607347acd7edca601cfefca1a6e53b283ae..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 811 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42&WH zJ|V6^#SH)dD|MVv>bR@We_yx#l6vP2wZ02#eK(bQFDUh1SMR*2+Id#B|FTNYRjs}Y z>fLA6yDzKtTvhA3sM>Q$z3Y;CH&F1hTJL4G?u#Hs*G09SD{5Vr)VeRJc3n{Ix~$QA zSsf?^6afidRO`O1+I`7w&J~Y2SD@-af)`xpTmc%W+I=~0#kGVLH=-6_jamw_MSsF& zyXlu5reAiNdD(g9W!Kq2bTw?z)yQR6qnBNcU2#2r#r4D$SF_jO?A&vE(*E0%4&R=B z^!Bn-cUGLavl58T-8p{y-ibT+Za;Z&``Lp#&mP=+_Tb6ON6%h9di(y-`}dDNe0cKd z!=o=B9{u_PL{I*Hd-6%ZQ5zU6F(pBM!3>Q2`~ref($Z>b>YAEb+Io66wsxUmVc`+U zDJj`Gxg{l~Wfhf`P0h_Mt!*70on2jB-Q7LJ0qLusxPkGY=;`7ZVsU!!m78IQ3lH7J6$y=d{#RQ})b%ZP+xu|;+&Xp3nKQF)ZF$U{o7&Cd zX}DSPlVwNwV;1HoEAPE3oBb^EjIrVA-x@pfHza1{Wu`R!Fnr1zZJo8Xq$Q&hNw_{J)e#Xg3XPCP<+v@I|dg1Gq#&Tg^!j0#1d!mf8mNAG{ zynMBHnc0zP6Jr^sJYU)_R~;y2{_7O;t-mWnt9&x=T;DvYVNvrVhXV6Thp{mA>$F=11{ zycdS2crI_sJ#Eu_#-hC3cHXh;wzBb`{r>8I;caSsDA(SyYa1xBdb;|#taD0e0sv@k BiJ1TZ diff --git a/common/gtk-3.0/3.20/assets/switch-active-insensitive@2.png b/common/gtk-3.0/3.20/assets/switch-active-insensitive@2.png deleted file mode 100644 index e9f7b102c1bc6dd8f83c03c06a95c3fa674a22c8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1558 zcmchX|3A}t9KaVB;~qM?x-ye*`=S++dK9`lG_lCHQQOgVQ%7*VT#aJY0n(RqS zrp84kr!o>FP^qb@_E8sNl1?+?Bkbc6&t89h2!lfDxCHnHdm_cC^>tJ>a@Irm{1E=S zTXy%ZYzW8gz;Tt9*;ClUKIg)xPT682YaEGKGsV`-Nz1Dvws`{tju^)swgDuBLIsW` zu_*wNtnF1f5s={6piMqxQwUkJ$94h|+d?T37$O27fjLYlkm1=7t^l&-NQtar93Zu2 zju6=hG9n-)aHIqP#B)F*FsiL*j}nmifDF%(5m{1V0Z8DC;sGgFF?b4<|JRl)zXCgxo`;(z{NAVmf9;w$N`Lsx4%aM>cpnZ|Vz6f+E z0v)*$CoZ_33mzy1UCO{iW#BjEpj$cUQ2`#V0KIq+g$Gi2kPi>^;X%g`svy5AC;*`v z3a*BZ*FYx_Y9V?p6nYanRVQcE$;0dAXX@qAx8*U7@|Y&Y`6fkNi#)DHk+hSY3+3Ze>xol8exzEE6cp5roPLq4K&=$?J!!MapUsTqA;O2jQE8aGe;g z7sI!Q;l^ROX%uc5h3`nR9%p&TcHvtRQ*bo2v!ZkDo8V}&`hhIPpf9t z)3a*ztXlI@{rshRZb7}Us9r=^QZH%IyjfDed!v5;R{efiy{1L;@3LkkCz6d^o`=an zepJ*39UWcW&-C>5(FO*FMw`C)!uZQATfZ{Hn(wf*vcci-yY1}l9US&JI_-0Iadq_% z2n;%Y`~;0g4-GrX2tN}M6&;hDaxwK%T6%g$W_ET?UOtn>W&;4{e>n+Tv-*+uaD_s4 z58iIN(6e$%oPgC|O2ykGM8)@+{Qg9>Gcc?5ugk9*5Oy zAEz=G`AL)SvKIeZ?VK&?W13l<-X}ENV|t^%}1A+*6nHa23DHT01rL#z@N&samwmMvfh35z&1f7lWXy|)pZRYTYz&&T6UK~7W4J( z2Qzl0d6!zgYUx$o^Y@9w2xD`rKgj2)>l^1h5>L0e$()vNG|fNSooJxc4NM(xiu0tG zoO>M2Y&B}W?9j~36KdRKu4C1~8sA%16yubm3_FYFYn3-?)4+$;E$LOQ1Yu-_?sPEExQ#K+jvS*}Z!9L6uTNsn+{#Cj&F5ZtVVrS- zp~mh8zLy(`=B3XSF-+k7j!CXMCF>>alerbxUc2}e@+#AgihAT zPt_kz%u}aUD>v?A({t*)3^V3P<(ox<`3J@+&s;MCR9hlO@D9`i?xkTfT1<$RS^PxaE(( k1ssr{EJo_^#%JbuXe4>^V!vj6}9 diff --git a/common/gtk-3.0/3.20/assets/switch-active-selected.png b/common/gtk-3.0/3.20/assets/switch-active-selected.png deleted file mode 100644 index ee2bfb61596e7f04dfc28268e6492e2d697c2a92..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 814 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42-4$ zJ|V6^#s7ie+vES=p8Ws*41~Ts`TzCl|F6$}|9JTO$D`k09{u_H_|MlTVD#wEx5t0J zJ^B0XF&I7h`~C6XuMqU)@7G8FzCVT_uri>^#~=j|HBc=OjUe*Qvj=ycK0uSb`|Kf5 z>gcU|K=Sa-`zP<*J9YQITK6T5p39m*)O%Tf!exUAmyIS~GMRMQbkb$>$ye;AUvZdm z#dY>o_c>QR=3MohdnJ15wdiHnVt{D*wb&=?2H*2@u?Am*C!hu^8 z58j$}^!E14cY(GXxp@z0C;K6`Kvh@L-u@Z#aa7Z0DjdieC! z!!I8n0Ufq#dD1Lkz?qi>`2{mDO3TQ}8yFh7y19FK`}hTi2Q#gi5=Gb^s84lC z@l^Gm_9lvhz4zFKMQ)qaqK_Fp|No!G(`|3*UisbmU*=pk-z=2edE?WT^PORRD^*U1 zc+Cvas@^HR<*?DFV@6wTOhwJwE2uqi;?AK(yQg~b#^E?-sDf{{6E7gla1R*<%AwXN73EuH+5$N`Q0Ky z8i5SaG2g3Pt^>K{0UiZ=I1?t;-;oyp@=i@qFy~h|z-wNTQ6R1=6ywVz@g%-n|IS%v zPPw}bIh%Es2G2e;hqrW{#p#+k0o-!jYJkYUTRur}n80-w5u6{1-oD!M<>oLe9 diff --git a/common/gtk-3.0/3.20/assets/switch-active-selected@2.png b/common/gtk-3.0/3.20/assets/switch-active-selected@2.png deleted file mode 100644 index 07387dda8f0e8154a79f3aa56e8e43eb0dc682f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1552 zcmaizX;4#F6o4bBAOQuf%H{$kfTL0c5d{PjgBV$4UqwZbC|E@n83wI_NI?)GVw6Rz zAe$l(KtL-ZTScH0laS;kWO?reS&R}a39^LO7duYt^hfV}=bm%VJ?G55bMDRXaCg?y z(AU6VFj}MoL@!hyM`f$Js?v&gzlti=SOUpMU0t0A9ulF;Wzh!$V=)+m8l@~cqMvJs zI`!h50^+>SM#LqA#+<+;BqUgzIujKe78-rR;%p4L@T0vx2BVVV;p*dr1|#2$J_H#= z5FUbzBFH#`yjR*E`N)J2k%Gu1j7$j;nFx_Vh#W@bVnjZSdq}%Gdg+Ay!PIS>KjYmPJ$kRs8>K(@eT)7Tqk9Zk|Qol*QO|ov|gGzAcAgnM=3I zW$ZwqFsvyIo14sCc}$1f%)NJ*_&|9~88*1#KKbJ0R!;1h09*9=@=bFYFTt`-Q>* zk%$h87?6+&iCD0REf#UaB0vms#UkFYXlPg@8U?{o5FP`?T>;Xfy#sYyuo36g(;XJycwOxY&13$HKVeTBZl<8fZ@-k3!ys*9H_ zRl{m(EnlInvr<=2-@tI4u?f!9+|tT=r=7jyUOa*5;pOe)>*pU36msO`si@OAlsszD z-Fx>Rl$4fLRMyrtHMh34cQ9CNfIB1*iomgP$&^e!Ju^EuuUOF3jqgI=K7~ZY`{?R@ zXq!ITcg|2v+EkpCYTOkVh$Bz5kj*!j8np092la3zd0T_Q)5hTuCPg8Qy*ew~RhirdOshGv)OST|7@8XPXTKox2g`4EjXcECO zW;;<8f2m)O!>8WXx3(@};d5l_NqGxIoAjcJl}6(xNx74e@rPngHW?OI*ZT)Y-EJ&3 zg*QI3z20J%y`5=JzsPGmuHLuOo@O|wi7OAF(oAW40L?3A zRF!_k;>6ba0D-TjQQ;=({h!RNMpy*D)tk*b!|O7x+Vxsci;`b>`PHt+lAxO8jv71R zv9LE`ZvxHDLvcqbiga_`m$VFfyz>*+xwuO4%QnvxNSrAF^RaffK3KG`Ev?$P z4*MoTqi86ogW@73DNkflr>8+K&rkf}LKwgMQ#IagXB#Ox!cvk}b1jfci}2M3+=x~a zqIw(j!W-a9eDl)c?;+865lf+7Yt%X@2PusNxIVf zNqf3U4Qo=WoPm<8a&9s+D@fS@15QZx?%ipJr-BxFuGm?R?Etx{FU4iBYkJ+`{^R5& zH@4g5*=Gc4dODt6-yLq(asH-W=F*(CTT4d9jCy7t6u*!N>TO3y_RrkR8qi@t@!DmX tzu4NR<}FFBoSj-b;JkXxUS!!ER%;>c``YLIO!O~cNKWp=YQnLUzW}2gpq2mt diff --git a/common/gtk-3.0/3.20/assets/switch-active.png b/common/gtk-3.0/3.20/assets/switch-active.png deleted file mode 100644 index f8e9eb1dc66ac434bfc3fbef9eaf747c1e51a831..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 807 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42=2# zJ|V6^#SH)dtMy$_>Aa}aaaFVDnrhcomEH>~T^Ch*E~|81*66vQ)^$m>`?6}+W%b^R zs$Cb=doBXGKvJ#el3F(q0aadtu^}Q*QoS3f5ksmAD(gP`s{5QPU=t9!+-5^XVpm*` zUvVRP$+hUE*MMsDCtS9he#L(J6{ne3oM&Efopr@^_EoppS3?(Fi(GmwYAHxr?DFez z%YnMCC#<-Zv+hRco?DX++@5sk_KYL9mz}<|{LGydXYQ;#duP>|yT@+bJAUi_@!R)L z+_``2$%ETZAKZER;NG(bk6%7~`s(4EcMspafAs$SqmLgRfByLB%g0AQzdZi+<O$_n*IiwHaDEak7A-VTpW;A1>2-|~nry#HH31Ygp zjF&vkn7PGswaGQ1-Z}sOOHW#sxhLlR@psby&pn+V9qj28JNN7Egy(ZSC;6Dg=bCAs z|EPthITnu{1D7TT{& z7D|nr@R5OIqUzH9b0!5|tz0ygR+M8Bxc-eYX@Q&(C wpLIDBPw&JfFqEBJSrDSiX(~0ZN_odZg!p00i_>zopr0J?vUmH+?% diff --git a/common/gtk-3.0/3.20/assets/switch-active@2.png b/common/gtk-3.0/3.20/assets/switch-active@2.png deleted file mode 100644 index c6e287a3f3653fb5be6acc1b77d65805570f987c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1552 zcmZ9M2~bm46o#V#0V^29Dj;qUUXmfALe*AL1QRu2Sp*`Yf*=7=3bHFzi%Shz1PQwm z1QbPN2`W`w1`Ue{VM+2{60(s5i$DRPY|0{ip>^8n%(?ge=ltLNGk50BrFppRGhA%G z7=b_-lJ*l0!ez72Fz}*?%|&fml_kT?_op(=6bj zSuD{v)+;h3HX$&Yf=Eb6unmhi9djb^48=AwI`r0%gE<1R@Uq7NZz2pM=H?JdbBNN? z-AT3fxjdUB2+fk&GWa%`5QZj!wPiAIU26LVs=y`%vY|t`R1t>O2BdVLX?&~eLLgOO zl>*`D?bz!b08@ab^RY|;zytwW2Zjy;%nmeNfMp0VG!Vn!0}R*_STlvzbUud3$It~B zh7h0&0S4b%Yr&ciyBInjpbKEw8n(1)0&5t9879nY=YY1I*D%JMkJYx?AxvtczGDB; ze}~Lla3+KQHR>Puf9=?!QDBab1t|i7u=Tz?azZqY|w=by0W1IZ0N^)$o)3taa-hB0C^Qc zK1HHKcSOE-MThT-j@%Okl!yaM#6b_l!KLD`GV$qhad?H~r%FjAM;ytKL~$h1Rg#!T zlC#y4i%&bLFFKQ7cBa%yQ{j3oO?x9{y_RKiWjS@SoO)Sqz3e7j4YIsOc|nt`ut{F@ zPJXvpUfd$T&y$z(6lJZ7@-}&8yP~Q?@tCiu7AT&9${JAl98$g%DQhK4uB59`s(dT$ zdMoQ{l6N&Lx}a{A19SzbrA0Yk=QAi$rkpHZ>c3Ga0~( zvd|lT>SAU<{pMsnNhML&el9@CWovy%k>OSb)~e}hN5j;qUFj=yT%LpY zvy8|KO18_t;QuyW^t5=IgT3j{_dT*mP;oIZw8tt3%9W4#8+pEUta?Z{w3%Wtd<}KV zYa%EKYbQ>D;8j08r)zoxp0n!}>!OQXE|8q^pOHSn3;cKK3WBV)!gH@coP*eB#!E`lkM7aW6)9?tNOB!qn!8&XvM~#!4 zT+1ovR-#;s-E=v03@~g{#I_|$qE_wzAO#7 zSlhx|W|HAEkEPWvGSa=yn_*i6p9+|n;VvUqB!@3M6ixAmRE!|9N9yNbdjq$&nc#Pn zPw4D#y)9G1uf0Buvv;IMF1dYJd9LIgfHrH3m`Pj^kog$z+S7de(XAvPo*VjN1O5Z9 zk-yg1JUOx64nMu+Sa0QKRCW2KS1+!3j=4W0NJ``pJo0jNVHluw)g`Bt|fC%2+% zRPeL*HPC9%r~m-X_5EU6n}<$C9}H?DR#H%L16D6MyLi5QsysHw$g|P4dZ4U-Q^>V6 z405G2_?(LgkhD!TW?a#oeaA@Z{UI^gF1&psc6-#i)l;3wS<+s~FwS7RzR>!>niVe1 l3+sH+W_1XqT;zjXPM2{xRi1M^EMEH~lZbAF3g_dO{{nU`AAkS= diff --git a/common/gtk-3.0/3.20/assets/switch-dark.png b/common/gtk-3.0/3.20/assets/switch-dark.png deleted file mode 100644 index 279c8a007f9e007930798e9ea6f894c26f050f1f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 782 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42%i^ zJ|V6^#Xt}jR~?3MAbk> zRAO~ZGLWo^PO1irR0A2&AVDw#$W8`H0kuQK!EBHeLP1isZ&ZPAL;+k1!tjkO@Q*11 zvYmr7!DNPONESqjLEDT`$DB#Wf=SncMc0x=&yrQoicKGgtl150_>3L-O&rB6+{G;2 z#Vy?>EIpJR0+byBRe;D5h=Np|g4CRX)ty4rokKL7Lp5DOwOqrrUBh(TBAkLVor5!g zHadr7x`t-^MHTu*6#+dCw3kb~#S|DomL)-c!3>PjGIH_;hDNS#?q1$Le!(Gm`GvFQ z%$>hr>$dHOjvl*w6@{Dw83U6X1>XPO-+E@&$(FNc{ymZDiPhM* zZTaS=eY>Uj4{Glyy1Kzjb@kQMsi#92*6my@Wx2|JO_2e&`rHS?`oBG?ii`=zl{$~wt-rEy<-tQ@ z4RaiYn*ZK%@!zlWgkg?^%Fgut{ENi?TeEG*ow($Xo!Qp=D-Iu0Ye;EU(SH-XW#(IJ zv1yDx<(`+4mvS)V{+;L+5}E0IIN-;dMw>H?tDmSV9^q2kdB$#a%=yEDwreIYwo91$ zS0kqJiR{t$WU*0nP^^NKpeRUD zf@o2w?Vy6gGZ~?LJ)-2YSYrvAV^Ef z%}q&>Ls?p}xQNTuLTSZ9p_Y?b0!g$$@Y0klv6jzQaiv<8NW~GC@FXQ1p_-ps$`+RL zL`sfS!xd^c5*1fc$`-5GqEenz%@He8L||6)Bx;US%@eD*z)Dm+v62glNR(WO@{1L# zI3hLI7zu=u3j)MSo|(mH?EeAt4KV@uZ87x=H3J|+&5>c|{$UnI!k73*EC~p=42ZBqq2VaB6)JKmU=wCp zAjUc{$~Gw4b~Dy4IL1CWW<>~oWoYcGFoI(k!6}UB6b>LEBFHZ2xHahbHIWIfk@2pW z1UC%DEsE-np}I#=J+QQOSehp`(K8xA_uk6zF#>JCK^t+&et0G_mgP@i2M{?ZB4-nk z8yv?Ei4%mx3qliwp$Vce07V>OM1rPD(KJaURT@bHq+)1N3@tS(F)f;&9+Q-@H7OIv z$ig$SVxepTltW0)Au@AF%v>^nl^4g#k7MU2a0;m0Z8WYdkta(`k<)o{h+hN=ijoDz z$$}ClKv=>Oma;^p;HR@eCjb_|?GKLKm7veWaylgmW@2h)Zn4C2nYE3roxQ_yCuhWJ zmo*-qUh91VgMvdM&{5dv7#xkB#DJ2SEKUkPBQravs=B7OzTwz+O(*m%t*1K9oxgD9 z+V$SSp$EecM;||V`s~%j>vuE%%)X!hu<-GdwUgo|Xz*`IxM+rx^W?Qz!QDa^%jqrd z>)fRcx;p997qc6?j)_3QiAgsQkI{%%o!qC3bfiCfriPC1g zClJW(lV_%KP=)nfZIdq!9YmM?78rLb`@+Id=(7>qUGhU+%a7h!+fa?k!@@1@>qgnu z;v~Va1EZ(>2>k;QX&AB_ZtX9s>!Oc&Vjt)Q6gOIDSy%0BRXB$--v1HxQ2s|k${;rm zrE#3@z4>UmKV125gyNSer2FPQ4Z3^n`HiE#+uyvUG3W30h{VTdsz`e?@7LCb78caB m23K^-r}RzTUR?(lPELBWyfAAEzYl3K-nt|_1$Q<^xbr_Ot8k_O diff --git a/common/gtk-3.0/3.20/assets/switch-header-dark.png b/common/gtk-3.0/3.20/assets/switch-header-dark.png deleted file mode 100644 index 8d2dde720ac9b2f2f8b6a017b30de578d7ac9f7d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 767 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42&WH zJ|V6^#Xt}jR~?3MAbk> zRAO~ZGLWo^PO1irR0A2&AVDw#$W8`H0kuQK!EBHeLP1isUrdo-R1sVX!T<^e#FhZr zu3YP^>lLl*6{F`Jqwf`K;1lN(mIJiNH9W^XBF{gj z80ascUAPm8S(23aKyg+9Dvbm{l$IL!Oja`M; zH)NTvHcgm%JBDT7QsZ`;zSCOj-5-`{sr@`7xY}lo!;IY~ng>cEm&zQU5w_woOZ!wV zsfJehNjwpnj0)fVCaJZD*w5TAA9;eoVuMFgp-20!+N=#5*cYTsIPzeF*~Q!X+^P)X zY@YKh-*m4y`u`l`n`o7dmP`EK@|8y3V4aXV;YqXeD%)rGgt=ccJY!dp+!VyruO| ojDp6lY5K3$ED-;^I?(5~yuXX+Cdryz+@R#=>FVdQ&MBb@05Gg7VgLXD diff --git a/common/gtk-3.0/3.20/assets/switch-header-dark@2.png b/common/gtk-3.0/3.20/assets/switch-header-dark@2.png deleted file mode 100644 index 2fbc761e1884e2223889b86fa8513e2687779a26..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1515 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 diff --git a/common/gtk-3.0/3.20/assets/switch-insensitive-dark@2.png b/common/gtk-3.0/3.20/assets/switch-insensitive-dark@2.png deleted file mode 100644 index c19fc0b921e38a73c5e11ede9fa1a5e77e8a1249..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1471 zcmb`Hi%(Nm9LFyp78qFN4Z;v9DivD_R!S*_l@=&SDW$L5+vja5ZvpB1F|P)kfanGz zXmqIYS=6ya(G7fzK-^H7iYUG|brV@wbn0RpI(6r|e__9TPR{pt&-Z*!a!ztvg@XK` zfam}Sf`a%3ToIU2Fjo2b;L0p$0h3P?hcEW?^Sk@72(d|l=}4*yPmS5A;{~EaIKgJ%%I-Ce~)391h2jv zTwweZS6cG%bi8!?^Eu2PxQYA0gA}4VVmdD^a&X>rj+C)OxqV;8vkd7`21#2xxUq zrQVL9P7tC*9l(j`oVZ!k+yT8C2SKv0(gXub1;a4Jz;EA%dqfao2- zuLMHpz+>?=mjXB7s|wWdVb^~N;7~V|obHXomFp6~y0m>AhEP;U~L|H-uTWH7;8abj$j<_;cT+IVW zYx1Qvd>Npw2&cXXt}lk`1xS++paPghDzj8$k!ox*fX)WvIACxCsB8I900q3g$0QPz zL0(?oK0fp269|6({sBP?h{S~>Kq4h3ucA<>)RYuj+Ug8uW{I#= zB$dkKau`vnbf}@cs=CHxwpeX;hr{W@uuYpk+tS+B*51DL|E+=VlYWID?~Q!!C*sJc zC&P2u*BfI9&#Y2%5^rjd8vL`>bhzuMm*z9)P>)GdX}Y?P)V8b|rJWo9<4SE!tmcF} zJBywD%5`zWYthV5PyfU>_p+#x$<*{eGgX4R=|pGxl|_WEsW3^(*m_c@oRUoU7M6g)0i8b!F(M6}TRlV_Paom{cT&#R&FD$8mmPzr zE>iz0${uOmK3Eu0aCzO$k=BeHRp#{JoxOYg^T)-}Q70qQVjgLFqk;!E9&fNDuI;wi z-foSo;RMyaNbJLidl&A#=zP$*C-4n+^yKY?(jVkOEo=JZ){W#1e=ou;cVfEzdT8^y z!^s`@eEXhy*@`j~c-)C7tZjSsO*i-KLtE9-&SCbE)z9LZ&p^GYg3VhFq(R+zeeVAJ z=G(*1C%B{Kfw>1;3Z=0^J0T^rs^UPwC{3EXuY-I)&bwPBjn!JNJwCz>dlnz+EuMqK zmM&>*!&hsD605T`Be!p)NbZ#0823BsML#*#b;MM1wRyjh+!44f)wtrv^OOT)B|~!J z^2d<*$>%%l7a~FyM0+mnSb4tow-Ayni>pE&o%S5gt6$==PD)tC@8rMF&GLfBC#PZ3 znv8>I)uhSLLx(2lse;~Xn)cSqJ(J~+3U?<~a3s}wGjy)xE|E-per#KnrVRgm@_7R8*BtGpe*w~OLGJ(n diff --git a/common/gtk-3.0/3.20/assets/switch-insensitive-header-dark.png b/common/gtk-3.0/3.20/assets/switch-insensitive-header-dark.png deleted file mode 100644 index f0bd5856b3c065100060870eb9706af2ff19ea38..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 769 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#T$MgIeQ zLR^6~5QK)7ho*HT6f{I-RzxH9a{bYf*>d~IY(Rb)y- zWKwlZN^MkfbyPxiOj1=$Qf+i1kX;p;`M)H{FPMRmpI<;wN?KY?O6J@_){kbwx> zh4oBIU5}a?9`tF42wquzA!5;{#Y|uK{oj1zh~M%h#y?M5M(lFgR+727u{Q9Ont+)7 zit;;Qr{DVCc(PHzIpKBKB>$?MqP?8)%M>*f(sDlSVNQMP7trzH#*%4A=9KDWHl{32 z=00$YKT|Dd3RA!j72oN~vyz{^7Y{39I2U_qhm7HZhcm3!%wbw#wWQEumH(HIr@cfS zjw<#(SfRg2?*D2Ai(=2q&pHghvYVtlWpUW&Jj>4A#Qn_T@UU-;Yy3ToQx}Ucy#6p( z%)`uTlfm>o^@{}_ZuHC*^@6%)3vc`{H?Rw*x+zRsUw*sq@;kqqPZYN|ZTJzlF=umQ etlqn08*}O(hcGE-NGqNMB|uMCKbLh*2~7acCMfv; diff --git a/common/gtk-3.0/3.20/assets/switch-insensitive-header-dark@2.png b/common/gtk-3.0/3.20/assets/switch-insensitive-header-dark@2.png deleted file mode 100644 index 4af14c49d1b732b211048a2329efede55b1a94ce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1443 zcmb`HiBl6-9LIww1T%1j%cy9Xgxt~E7S`e1O+QIUbMDa5Bk>r3;oUK&HMh|`@Zj+ot=5LVo@5) zo$bzGFj!D}iUiCA7!gcoT3JM^!Q@=Zhh$79vu|MOBhb1nPlrnx4Bun)aLQ#j`hi6s zb83!RT5K>|@e)15YPE8WUlo>W@#T7MaY^2`7l~{J!|A0sOO^`EpvK0=D2kHP)tXET z3M!&YqXF6^H<^S6iXdtc1hiJUp+>Bsa&s$SLn&;aaJ&M;%(=NFqN8$fQf{zn^2;%u zU8%OH4R%ypj%q2D#*S%ih`|BtY_N_}5)PDbs5CZ}-j=I%sB{jDAYq~c97jNllc=@= zAxIE{5;ovOaFRA_9jJ~}5#S=ANffsu8XJn+5W=nkT1$QwBuda)rL}_uL~8?n6bRf# z$I@wb6>Xq*RfO&Hss9qdr4Cmf-<2nD;|V6l0a96jgtRF%(9{HIdLrbRnCX=yWG9Q* ze336-?9Uem@@0VnNsvGmOrr=+RfNzeLjh^Zc{K1m2o8ska0ugOBHTFUcOt@GGn}mo- zgp`Ugiv*yy$kY~vx=f)iSK#GJ8XHVwhrw49_RVjv^n(Ar&nyv18BR{)oSnzJxVkdk z+}v4{r%ajZ;psWU%h%68U{+9Ya7f6U@CYt9GIGI!sF>LJghflm*%F09nUez}D25X{ zy|JLsY$>yrSJ-T%ouaDNtgWf7tE;bH_y5)Jl8-AGjByqyWr@t&=lS_}>TZ*t>nol# zJtb`TD!g$%Z)m?bKDvLs@^O7wUH;AQ8vJ0E(a3QW{_shBbVk47ePv?OVlruHvEy0A z3whzfBPCDw*Q?5|osW6bt57?3=^EpjPQ6ZXUVCoBqUx5b-j;>U^GcwSm^zM6<^6SW z-yZGR-PW^uW7ciF(ztT_yIZ^4_S_r&X4BKPAJU&p%vRoDL&vW%-*32BIuc!{-#XY4 z-~oM6BauFIIbk9%gi4s=JC}w=k<0f6Lihf;vZM8B*VmZ6rk6XmtIa<;>{$Cu(T867 z*_6S*PO#ShbEvQ(tLbHJCroAhG_BrLJ?+!Lmbp>LTlUSiFAt3d7-}A04(Qx_BeXV5 zKi~6$?A`cs!IOi5uYNWBcv1GtD!!}y$To@>dw=pH|DrB^bGJ9u<-uX~Gro^tB;@B^ z_iW5s(=vEq>u*&}r<=Kgl#_RzH?x{w_QdQndobFiWpq`> z?V?W7Ie*fvn@wSlIr;pSYR;ac)amXHR;-Ir%8lB$Y&E}$v!t_6xcmt#S;WLek78s@BQCoH}nr9UGg@~cxBYzfV$1W*XVBnDb1O%p zy}I{qx3B8G?lf|rD>W!p!t`gs7Ws|F{>`>?+tP!Qu^oCsn$xG9edv95K`R#72 z3VB`Cv2HeWeDJ}Bz*>9INGlw%0$yIDMl{x;O{rL#S4Q-N19$&E;$s?qxYWzC9i1C? z#=YUrA9=;fyjP_m8Q7aE?&zRqp#5ZPLc!s~oW8Ad3XJhDKAd8YK8!bx?rc{(_Wx}B Sm_uBmpGYWGl+wo6RQ(IMG*M>& diff --git a/common/gtk-3.0/3.20/assets/switch-insensitive-header.png b/common/gtk-3.0/3.20/assets/switch-insensitive-header.png deleted file mode 100644 index 9beee2f8f79272736cab4900bf40f160d1fe8ab6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 809 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#TC42&WH zJ|V6^#s7ie-CZF5|Ns5}4-fx;ef|I2K0W>U`N996&whS>2tr>T z{|BP)&whV@1Vn$nJ^b_e;s0+>{(pP==i8(I-yi?^4wQZT>+7Sx-yVa}qrX3%LfPLR z|NZjh?{^@2{QK*pXHTv?d35zJQ03PrVDiz^$Jbsyy#Y~t_3FtRH%|Zk_7K8NscFt` zY|n1&%x&zij&l?V53 zJG_6#Q6M_J>o^GQIdOE)iQ_=D_tc5KmoJ~VdKHLH-Mo3``ID=^zX6^7#542mc3`-~ zlmz(&GcfY=3kXU{ORK4=Yiep~>*?9p+J%ONg-0Z(q-5vhmXws1Ra90sHZ`}jw6wN$ zbaZrf0YP^U5n$!%T^zu8koRf;V=X>!Vb*E>BRZ`+NlK zfX@X>S6O|2nLKG{e5-opy`*{De2tcS{!qHvm6 ad;ipIQNG(T{gZ)F!r6!b&WJC&9c%qGYd^qlL|F-^ETBY zgtVGwNC@ki<7%zqg)xFLQUVdbAZFzy%=I=N}pAhZ8zOv%ukUN4W!z@N#$pUuQ4+{n9dBkv*v56QoT&%aE75U=JHrsm(x zC@jt_EY7}LdZV~B{{bnVL?V*NL^8RQN-d+&NL7E3s;kJ*s;ekuGKB)6P-?2FR0_4W zhDM{(YHO;hXjP2bY9_s!$*8HWs$tP<*$hSllgX%MHnLdES{9SeYGSilbT*5@Ze};I z84b-1jSb8uNF%GciS>6ggx$(%ZfkAev^H|OT06NfyG*okd2KyB4v)_f^mg|4b_oR> zp`cSJ?CKM8MZKM(-Y$`-M#Qqeo26pkwUMo0QSj`WRbTt1ZN^=W^fDrO3yMgGn zuSvLSdD$)^xq#Mr#7BwE3SWR_b$aabY_4waPHjne-d(AT#~LiLC5t`F-?d#zUlZ-U zL%*~spd;MkRh1K69vW1)r;ixvKzsDry=22yUFq(UBJ{9F&Nv*MU;Q%h4c zm0`Z&gAWonI31MQA1|F&FUqQXL#6U|bZ8x?E0T|V>$LJkR!H(mK~auntnY?Ys_H;H z7Nvikn~3M2Y+X(uvA0;EpU0d;n9z(U^!STdSBo9Qy^$ibH4|n<1q8HW?Ng$sd;Sf= zFZC5#`Lp>0yVC?{hdYF)^^QOmRG3@7KNmB1tn~9T8@KY@^n0#rz^d9$*~Jr$x#^6q z+Zh<=!w#EU+BvrI6^P$@B=dvcs`??XjU9*iyPw8b*hi@RC9ks)xw~JC;9<_Lp=ILe zPXsPjWLRLvdF)~380g?oG9!(PejcjI)E91j_#?u2Ac%PKO?^MFypJy=aNm4KAtj#r zA;nqq{@(F^ZqakwidrjU8`-61>S=$e$?fh+Z*R8rY9dSi>ufFEQTu|)` zkBVNuu6r^r*l>m{70Xi!avvqV`}t

y64U8UO2aZ;le5N=1p7-M2jb` zTQzIbs(I^I&)>d&@s_m0on-=Zdwru<6C406m+p~4m-fgSz-8^yc=E?gv zkKYH9w~jx$b?W|&6K|hge*f&++hZa#E9l z09%5H$Q4JS?~>nZua`+575)5=U$u!#B_ulTkH6)U)g`-jslL43c|>@Z;{=H+B{@!^ zwfk&h*8g_xT@diu&~kfne-5{X_i6vdf9BrQejXnpc+~XbqVoo2ryi@i$xgYo!J+I& zu;z2;(ql`zR{!31mA+^Q2!41`H1L1{|murT2yGsf&&5olt$bMo;dLF|58vWR9hRQ4THfD2oM4ehZ`G% zj8P~f6bgm5ut1|N?Cj8Xc6J!dUMvQK#bR8XoLpR-2m~C7sL&+B- zD0KR{xELCP5y@agr6$IvCdMTvUuG&WvYCvGj6^1rk;P=>fwGcs-b^gGnQ}Wf`R?tk z!u<5Y!t~O@bXIXDt2np3B)hCEhsDZ!c(35$y~65>;<{?qGxmdq`bth?RZ~M{>+`Bs zPW5X}HMjZktJb>LTy`7xY1_*uyqERu@1F7%o_D@$>}qT1;x%=*H}>&4J^bc=esfP} z%TRBNpqo3~|7LXH?bvYJ2f-WRaNERin{bdP8s-V#^F*VdzeS_`$x;6FSf_%pOCsu; z74=F)-BMAHbh1}E-T!HN0JJC_mPrR?(jn0Dm(k?~;mVgW(6_}2`O<$DMe?PowUsIP zl4yNJF(~%s$+czi`q$}=RmsM8$;RqT(8jS{V6J5`Cy5?_lCp}bn))UPbhCyQOnd7# zogKPxgdS2~U*EvMz|hdp$Oufy*wob2%*-52YL}(uA695<>)pF;z}mAHEL+=s`@r1n z?e`zR96adY=yVwCjKkrMy5jN2{vr?v$BAz4?k7&1^zb_6eTGaXpFQj2nSOzsZ3^OW@gryP0lI+C{yvyhdsUD$qMDyn%Zu;VZP6PGOE8PCt?w8na4PlA>a_`I;@gO2hn2bi3!c<2pPx0RkN& z!HnjN#=W3=dF|HDs+eZ&?jov-vX#D$$=va^mb=@DFUm8vl!j#Cj&v0ARDa-DO(lGp zmz4Gk@+q1%-&pR8*J?1soim#GEpR3WCYX0{BSTCbO^%f2njoyTqv+peBq_PIy({=r zn_R5+D9g5JX%t*cf?e|bcuObpY`%%QvRPllO4|@|q#jPwq2-&f)bRbqFLcGZ>zw%kY=z_cqGw zr^U9$heXZ&OXg5RUB<2a;;m3{2iT*bjSVKcj95?YyEpfDG;puQlALlg;PB zx{Dk4PZb}zv6{%8DGMWc^i9dwj{yq%ZO1<~okHs~S0~4+G#n3o&~P(9-ele*8>cLY xxEe?m@g3X7`ASXIgoAqo(>{y;oU4&c&)Jtm>wH#;n{!uudUzbsxen`>{4Znue_;Rs diff --git a/common/gtk-3.0/3.20/assets/switch-insensitive.png b/common/gtk-3.0/3.20/assets/switch-insensitive.png deleted file mode 100644 index 10ad419b7d17daa257b83883ab3687496c571f53..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 775 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#T$MgIeQ zLR^6~kd;>6k=D^s(9n=s(Vo=M8CTtsQQeYS*^t`MmQ>T6Qq!CWWY;#ORJEoww5COrK0mXrAAS1n|IjyQG4X6glsBTKFX-)-_K*eA#P*-YIb81a1P%x#Y zv9@m#P`s{xGE`+%b5-wzn*K>3*{bHWn&$4AGrMQb?wLEcZ|+>6V0?CIA`lf;B^A~r z71sbw02y1;T+=hD3#e@NT!_m3NB0~&zW4C)y;rZEx_bT8^{c0@Uq5y8=9wptEkMup91_L%|3|j?s0o`H|DIgDp**;p52Ty zY~JzZop=4C-;dYJy}T11)UhVM-@;^z=X0a}fQKg^cU)JTd)=2MEYG&@W6q__RKwIO zY&PjGQKrlXZmDZmEt$$3@N)B^g)EAlDYqBR6l%E4seNpULhF=AbD54a%(Bz2@!GIN zAYWc2gDK<3njec*G+VZ4Two|LN^JG!4D!%aVeMm>@_S8zhNH*nNx9u=WejV+MO;)} zE5q>k!R+Tep06()2>JGGda}*zlBm-hB67BU6|$EqZ#Zbwe?7dg(br16(k19=`th%| w*I!OL7n{jh`0{PmT@~KVad*9vFaBfX)qnjzGB+2Pd>I%#UHx3vIVCg!0N8g~1poj5 diff --git a/common/gtk-3.0/3.20/assets/switch-insensitive@2.png b/common/gtk-3.0/3.20/assets/switch-insensitive@2.png deleted file mode 100644 index 15b7e098f039a92a3e8cadf712e99b32773ac6df..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1578 zcmcgs`BPI@6b?m!qyvv8W96X zL0JTiAVX6jLxBd7I#C-bWf8)r0-_ReC@}4fKlD%NneU$ao$s7`?!7bbT`?x)q&31B z0fWJ;gH8p6gBb^grMOs-|4ULD6fe?P-R9qGe=5pIK%o3f8T!DzB z1;)}Ms3aN_dyxoZGMT8<3`!Ordx40eUL=>j_H~BAKJmkxi3|kAFxWr9AP9W1$1Bw zKnOYzIecOcpUmZbBqB0b2y`+KO<5kE!zXb>M6eO4l;5onxNgPu* z;6Vzk`Y&Z#@=*i??2<&GCs7z!3LOi4Is;2(VW}K!CI?4l;egM|#?f8ghX{;Z z0w63NfdgP_Yq~GEW3C_#%A)}A0L1A$F%>`{q322IVktvh$dJfb5*bG-%PlO_U&m)~y_gJgf_v-b1`hmW|!G6Qo<4MEQ=}7?n%jtoaGXt|TgA21mZ{~;I%@4m@ z7&b19E&;q5T`?L~mH;N#mL?5j=6dk?XlUUf5im2ePt48NSy)HlNv^Utk;e?lG;a#sYI-2Sokx+F$zM9)n1YNM>JPk3Ct#zB+q}uxDgB@rfFd@VeDF#PXFHI~D{@D&y%7{E19en03N>zuHcMucMEu zOLwT~)x8g{`QpZ4577x?iY;Q?E7T|0sc;sz&TI}5Bl3y^0mD1Cz{WWH>$lt{tc41+4 z{BKJuX5|*TSc{Fsabc}*kH5#_zD17vgB?|80s?CgY2*5Mt;;byGGKD=Qhr~8N8oCI zqJJ~f?Ur;pa`*FFn?)21e5JJAWe26Sy$oA)5+3muZC{0f@8=3&tEThZ5MtXmHeX6%kYH5@4 z;o)J0G3^6-!0GSC_l7MC?u`w)sf-hsj7HbxU8#|1#ZAXJg5$ONBKg*r}exi7P9)X|?+?mE)n{W1pke(JZcUR)h13P-AKr!X{L%v)>h8@M=Dt34!k?`8 c(OA)1F>!_5vGzc+XnLxH0z(3t(8>IN0nM!cu>b%7 diff --git a/common/gtk-3.0/3.20/assets/switch-selected.png b/common/gtk-3.0/3.20/assets/switch-selected.png deleted file mode 100644 index 652844e8646928ab43230987d41c558b75ef81cb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 726 zcmeAS@N?(olHy`uVBq!ia0vp^CO|B~!3-puPUuYmQq09po*^6@9Je3(KLBz$3p^r= z85sDEfH31!Z9ZwBpk#?_L`iUdT1k0gQ7S`udAVL@UUqSEVnM22eo^}DcQ#T$MNa~J zLR^6~RRAk1YkqcOb$M=0Wqxr%T4h;INnys^8QpWHbwm^W$hf+lSWazi7*b#oIP4-nwzo_RULnY+1Tz+wwg-R_@)t`rh>u z_imiHd;R$Ro5vsAI`QDv$p^PjKD>GI?XxRD^yb-BAbR)w+LyPt!07hRPxpc7*XIYn zK0W;X1%&>7dwim@%^m1T?~)+DU^Uy7|f9`|VDVx0a+gNdH?M z^TgWo*%=pscd~|`CIoQ`nTqyyr2b7k%8-&=DQ zK523-mfO1UYQw(0ei0hUn@&8Lc#l=$2K&Sw^mH46Us?+j|6?0_HTGT(y zh;Y`}-;g+q?Sbiql=;Xf;P1^E!ApMTRI6wXvBUHt=(8kOkyv!r3O(XMXa%xDr#-C zmTHQk_BAMKn;`b3=U9r0E==cZ=6{%bKKI`D?s-4n^Wtvf4bBKk2!cSMGe(BG=0GO^ zsQ@`~d^JPywNIYG^zyJRyz}ANw#d zHat0w!bpfrNsLNQqGlx1veV*n(&;%_^xTZNysY@Vti*!cDb9(2e`xd9!fTbDs^6bF!?BEJ_aBY5QePMWg zapdFT$mZ%8U}JTBYi(k8gR{HI`Mfy|;B9kx+q1k+vj;nKfUmp9zU|HbYXPX=KQA2a zFCOuh{?kYCSOr#u6=;sP0P*pkI0^pgXNcgb(`ST)p(3JZ&q-f^U%VtEds*(v)$52G z3Q8)-o4=w^C^TACRZU%8{WlE^MpN?^7ORcZF*GtVHZjGUTUc4y*xDV(@AeK3j*d=u zom~h7S0a(*=Hcb-6A(lW2@MOUP$Hsfv`4XYdVFG13L`ZwJtI3OFR!q;q@<*@to-?N z=8G3EUslz;VzJ)TH#fJo_4N-7a%SfjR#w+HHn%_R?C$OFA07S87|-+q);-EdSKHFI zV>8RfUQ}D`k?3NouI#BAVKEg+q>fniD`Nu!jyhVt$ zL{fh3PSQ5%;BkD&!N#?{ME1CB^^8_TffAOlWzxs>`yoXRx`Ab+I%^&5tsoPYynyuxR;cbojVFt)ghK(|$oK!fK-yi6D#`-M=}mDMbtFj0j4Z%Vnq+p;DVv$!?;@($$pSL)R38`%~Rw~G>UL*Mr_qXy7w7e$ls?U zQduK@!oL2Afgjwe;J}lWKajM^_EVLY)bwc@pV#5ktqp&8Rj38={WA^xB^Y||hq2t= zcfIqI=w>!`bjSO>t@1^O)@C`=$~jh@%e0hVrpg7GfT}Qa<>HH9whRTpavG}E+Y!w* cyk1-c2zKr(T+z3kq=(n7#5qU(1LkYHjQ{`u diff --git a/common/gtk-3.0/3.20/assets/switch.png b/common/gtk-3.0/3.20/assets/switch.png deleted file mode 100644 index 7368c5dd10ea5df128d48e0e75661b7879d54c28..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 788 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 diff --git a/common/gtk-3.0/3.20/assets/titlebutton-close-active-dark.png b/common/gtk-3.0/3.20/assets/titlebutton-close-active-dark.png deleted file mode 100644 index ef7c8bd2087a2f9d7048f1ccb0d298782d067c3e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 446 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(b%0NZ zE0F%rz;MRc_@=S(Z9~I5dU|(_^luyL-8MG3ZKQw4*x-(l0Z`z;7XCW84inSo{uy4MjEu-SE;53!W?Devj oPik8~opJ9)&HC5BH6PE{Usx!@7_l}z73dfSPgg&ebxsLQ0Na|Wng9R* diff --git a/common/gtk-3.0/3.20/assets/titlebutton-close-active-dark@2.png b/common/gtk-3.0/3.20/assets/titlebutton-close-active-dark@2.png deleted file mode 100644 index 56b81c04834301e61735bff55e8405d59ad523d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 655 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ED*}8% zT!Hj|Fgjyw{7_f-v8DEPGmV?Z#&-=2?wRP{G19vYM8*cUjeu2gOKm~U}Dh+_@K~jbWw~ax1f$TdVhCY-u(g&IYL_objLv9;_)Z7K>0;>UP zgeZn`A%ak{^?1Jp(5>brL4Lsuj7+S8Lc$`dW*)wwVc`)`aS4e@$!S^j4K1y09bMg% zCQqL+bMBH=TX*d~cA#-pCZ64s(SGQHROWK#rV}T3%fwvCs)^&*d%BZDKh&VDP`7s8;gwAy z`O6;MJg{S(`hm$!JoyW+H8*~gGzdL?(O~K|Io^9yuW2!Vxw3P4;bK4j7cZl0y^?<{ z%r{KX+8TB|LANI?OP7~-c|s|R*?Ay`OD1mF1F;;vr(*9!QYuz93FoYH%d-re@W|Eg zUd^vn4@#}3KUZpUervKMmFsPQ#I`9w5+VQq diff --git a/common/gtk-3.0/3.20/assets/titlebutton-close-active.png b/common/gtk-3.0/3.20/assets/titlebutton-close-active.png deleted file mode 100644 index e7d701fb568d7a85f4dd1f1a98475221cfea719c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 441 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(OMp*^ zE0F$VZ2Z~K_OqVVdwq)!hE^X8EI;alk)g#$1FMgQmLGv429}=;fLtgWg<)j<(b(pb zwbLhS=kI-8-zWEdpVI$*#-ty!ru>*Y{l~JoKUXgJxpLvpm5Y9^TKseM;-704|J=Ot z&(kY^KRx*S<>B9NkL_iR*8$xjS`y?J%pf8v78DZN*wox|_T2dkA3lEi{N>+K^}rIK zf;LYV#}Elg)`N|HhZRH^4m7(v<{J0@|KA_|Mo4z)QEOmeEOPy7^}DlWmzcpkcE`P} z6K)rtO!DPw*^(BiU6ZT1_P$PN;D-8XH_Jp4&(3-7UinYyZ>sRix!Zd*rEg3-zBor> zQ)AWpzxy6cII@=Eg}w2a&8i3P=pQU~Y1qdv^hD}x_7_eDhW{2tdKn$ZCe8)Ah{4m< K&t;ucLK6Tay}i!> diff --git a/common/gtk-3.0/3.20/assets/titlebutton-close-active@2.png b/common/gtk-3.0/3.20/assets/titlebutton-close-active@2.png deleted file mode 100644 index 83913ef06a76cfb9e4ffbc9a7b7f4aaa6d54298e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 679 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ECj)#! zT!Hj|2r@SQplkC{+wzl{*(YP;j|S!+^({XdS$;IM_@rm?!NBr^z6B6{G_?9?X!*gw z>LU>8TYfUM1ThSNBq{>xg@^#v8(Duew)v8f_$49fOJ>&BqN16e zQ2(u^@mp)tx30Et-R<9cI==UIeDCY}-rxOwLihK{eLt4Y{jq%h&y@>*u3YqU)#9J4 z7yn$h^yj9PKew#Xzz}0p^>lFzk&v8v@MTn!g9O`!a;FxJXi>@S;X2y4 z*RJsi{`2ntq9nE_C*QU|Ptc#&E<0zzwHFg)W4UG41dE<^di{t&`;Jw3i{8JFrq^BU zxblwh`tnvGp}rSA6KE-BX*FHH=|+}okTTr{D>=JKuOUKadC%3I*<171c>c(;TshmDsE6ptz0>hTU)78&qol`;+0Eo0JPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(W`IwK zE0AVj_zwj8_wQe|>e$Ym2e<4wya$Z7?>n+{=l-4h_ix*CX#1W+JN6ykwg2djy@z%J z8N2rH+I3{t{v+G>8~}>!-hFWQz9Tz!AKJC|(2m`QckDg9bN4|o`_OKn`aK7C?m0Yj zQt2$9Rmvqne!&ckOdOnwN=j<#8X8)9`UXbECMG7PW65xx%F`!Fw+yrwZ{Cp@cxTu1&DmW4elmS_6u6lZSXv4SB~MpBmvv4FO#qvA BwvGS* diff --git a/common/gtk-3.0/3.20/assets/titlebutton-close-backdrop-dark@2.png b/common/gtk-3.0/3.20/assets/titlebutton-close-backdrop-dark@2.png deleted file mode 100644 index 1742875b322d862d067212adab0d90c0ea3170c5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 615 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ElLLH0 zT!AzL!+#*y1_HPD@87?B_wJn_aB%D1qkHxo-nJJAj_%m8f9syZK<@T^M|SQ6syVo4 z&!L_B4sYLcV8`A=d-sCa+jj5Yx%c3%U59q>KC)xa0U!ft$c{aSfoRvhBRh5<+PU}e z&OHZr?mV<}&!O#m5AWE05X9YcWY^w9K-t|uLqOca50sFMGa zA|W~T;LWlo0|wRuvpo!!hONAMi#5ZwlbiMZ|N2B|;} zh)L7U6_zYcJX%u6*pj-F<%6?&Q)$9mX@?(N35RDjPTeecICAsE#fxtIbb2~hmepZn zXxj>w`kcxYPu7SQJ8&d~Z76F?eIcUX;333#hRcdA%;h<=0Ow4O2b29+ye~&OsH{<8 z;hi)4Wf6Se%y;T`;l8rR$o?;{$;UAEyJ|x#Q8&H=gP*s!!dpJZq>> knsV;RO_!)gd`mxc)Sqk%y)7$SpazO(Pgg&ebxsLQ0J07g+yDRo diff --git a/common/gtk-3.0/3.20/assets/titlebutton-close-backdrop.png b/common/gtk-3.0/3.20/assets/titlebutton-close-backdrop.png deleted file mode 100644 index e7e1c0d680ae84410320312fd9e28d41cdd24ac9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 414 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(a)3{W zE0FH%>uYFesHy3yZ0N0S=&h{nDsSk>t8LAyZpo@{&#G(Bscz4xYRv$PQ~}l0^;9)< zrB=68H*}ZRbyWdTV^3v6H;|iF(_B^81CdIr00=IOz zNB;c3zC`78ccGKf@ihLHisn^!w^^>;q+jdvLG`z>(YYxaSDxS2s}OSJ-Md}Uq@JTU zfkk>#{4WO!mdr&9pDcc^5V7drj^_#m588J1>1@yVkaEG)F=UU~V|Dp<(VAC>zADwb gy-JL2_v$i_nO-QM{KL?D7tk#Xp00i_>zopr0Mq`RtN;K2 diff --git a/common/gtk-3.0/3.20/assets/titlebutton-close-backdrop@2.png b/common/gtk-3.0/3.20/assets/titlebutton-close-backdrop@2.png deleted file mode 100644 index 28ad9366b4d523bcc93b167735c36ad9943556f0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 629 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Ea{_!q zT!AzYG(f@p!oofvsHkYKXy~u0>8fn#EvxCQsp+h2=mDathVF`n?y5QvH?OueueKwr zx;>}5B?m~>wddEhXH>OjfW%u18#>afTe7NKa;w{m>$);)n~Li?OKUqyYr8V4nyMOl zE9<%|8@sE3#sbN@o@$V>J*m|#Kt@_sGtdek_gmlXSfJxfN`m}?85o&3I5;^46_nM~ z)it#ATwFuK!oooy0th03ASya8E+Hv7IVCl}ps=W@xVZSlt=b$021agA7sn8d^HV3k zENe0lXbomvm}Q#49lB<>khs^QJ^y#l^p!BF`ttAO%-<7JjLryr>a&{bzC_gRH`9WI zz#F@k$FfcBJKV4KB`HJWn*p!H9S!~q_hjCcteD($aN!TH{RdXgtDU&h;;w4U+UM_M zSMjFZ6Q9*@tY~!dyuFi8k8qaE%mhu5=PP6W^*Ec}yS@8Z*Xg}VTiGt}U^udLQg)2S ztLr=eX<4mG-rxAs<>Alz)QTSkdd2$QifMPG)N9S1tHqN~hRZB>^Hqos@nc+;I@Kz7 znrq-$;~25%E2W!E->F4DUNmXn@98D+zZWj~yGPbzf_=7{yY{wxsh`5K1u{F1HEf!^ kMrH9j!wt?)_L~-q-|0zN-tPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(b%0NZ zE0F%rz;MRc_@=S(Z9~I5dU|(_^luyL-8MG3ZKQw4*x-(l0Z`z;7XCW84inSo{uy4MjEu-SE;53!W?Devj oPik8~opJ9)&HC5BH6PE{Usx!@7_l}z73dfSPgg&ebxsLQ0Na|Wng9R* diff --git a/common/gtk-3.0/3.20/assets/titlebutton-close-dark@2.png b/common/gtk-3.0/3.20/assets/titlebutton-close-dark@2.png deleted file mode 100644 index 56b81c04834301e61735bff55e8405d59ad523d2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 655 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ED*}8% zT!Hj|Fgjyw{7_f-v8DEPGmV?Z#&-=2?wRP{G19vYM8*cUjeu2gOKm~U}Dh+_@K~jbWw~ax1f$TdVhCY-u(g&IYL_objLv9;_)Z7K>0;>UP zgeZn`A%ak{^?1Jp(5>brL4Lsuj7+S8Lc$`dW*)wwVc`)`aS4e@$!S^j4K1y09bMg% zCQqL+bMBH=TX*d~cA#-pCZ64s(SGQHROWK#rV}T3%fwvCs)^&*d%BZDKh&VDP`7s8;gwAy z`O6;MJg{S(`hm$!JoyW+H8*~gGzdL?(O~K|Io^9yuW2!Vxw3P4;bK4j7cZl0y^?<{ z%r{KX+8TB|LANI?OP7~-c|s|R*?Ay`OD1mF1F;;vr(*9!QYuz93FoYH%d-re@W|Eg zUd^vn4@#}3KUZpUervKMmFsPQ#I`9w5+VQq diff --git a/common/gtk-3.0/3.20/assets/titlebutton-close-hover-dark.png b/common/gtk-3.0/3.20/assets/titlebutton-close-hover-dark.png deleted file mode 100644 index d3a7a7d84f250cc311535435e2de7b47c69f29f2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 446 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(b%0NZ zE0F%*z;MQx;f$};IZug;ZsMoB#ZLQ(p79nvehyew` zDnVQz1EL0~;51kkNP?8%MJqYxE(BVyQ4-`A%)rDdA}SUX5*iktkeHO5l2Ke%S=Z3m z)ZEf`_T2dkA3lEi{N?wbzyGfC%W?qqGCA@Vc&d5TSmoS!D%X$+3RI5pVYQ~I^*7pn)R=L cYd)T@zpzk*F=B0cD$p?up00i_>zopr0Pj|&f&c&j diff --git a/common/gtk-3.0/3.20/assets/titlebutton-close-hover-dark@2.png b/common/gtk-3.0/3.20/assets/titlebutton-close-hover-dark@2.png deleted file mode 100644 index ba8476501ed759b7dafebadd5f38df87f1159704..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 655 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)ED*}8% zT!Hj|AZlPZW6W^LoBx=*%*jCMGrm$Md_+(CNSyK#J>?^Q##b3DDES61}F|z0Fni+1Z(5>br zL4Lsuj7+S8Lc$`dW*)wwVc`)`aS4e@$!S^j4K1y09bMg%CQqL+bMBH=TX*d~cA#-pCZ64s z(SGQHROWK#rV}T3%fwvCs)^&*d%BZDKh&VDP`7s8;gwAy`O6;MJg{S(`hm$!JoyW+ zH8*~gGzdL?(O~K|Io^9yuW2!Vxw3P4;bK4j7cZl0y^?<{%r{KX+8TB|LANI?OP7~- zc|s|R*?Ay`OD1mF1F;;vr(*9!QYuz93FoYH%d-re@W|EgUd^vn4@#}3KUZpUervKM zmFsPQ#I?6A4oUz3 diff --git a/common/gtk-3.0/3.20/assets/titlebutton-close-hover.png b/common/gtk-3.0/3.20/assets/titlebutton-close-hover.png deleted file mode 100644 index a1ec77a8e9e760ca2a5322a1a77082c1b219a992..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 469 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(dw@@f zE0F%w(DS*i?Q=u-w}v(lYHa`7(Dt>V6+%v`ZJAQjGP|awySBNnrg>^@b8AgYQ%!SI zZEJl^OG8adV@-2oO-ofxGgLd+khJRN?+tBl>w)I9y@ePHCR3}MzcjP~5s(3t0%`#= zfaJqlpPYeC(Jl${3uX`z6$=UpZER|8*}s4PfddB)9y)Xw2#%dScmBfb4ve){P z&11v;d)boRpR8F_cz(fluAXM?gS@vwg7|FA=AVDXn=;Aoz@7Ks>Nu}Vk~w(hH*4eM zCk@xH{eCQ*p=x^I*7T+J3|p6I7U(UoU>5c~_OaMgZuoc5!lIL8@MUQTpt6Hc~)E#{zsp zT!Hj|hX4N?8vf6m`Jui2V?)EIwzf|VJwKY8zcjReZEX40*#51d6+(V*X#LvI4kW)f zw0#AmS+#AmYg(q(HqWeWo?X*CyS905P3yec*4CPqC3P)J>sp#>nwx7{SJk$zt81;R zZf>Y)X{>2(tZ7+W*IZZAyrr(Sx~64CT}x$6^NzaKs+#754XtPDT5@Zezcm2uZ9_v} z8rpy;wYnK-JBX|Ukw7(pg-a8FK5-}s@(X5QWMUN*5*AVQ@C^+MkBCc~K4aJJ{reAq z!NG$E4*|hp5IAz==+R@xj-R@4<<{*x_a1!z@%zu;zyJPCyK!*^0|TRqr;B5VgyhtN z*UOq5L|88vJGvxEB_;XfPb-Q>{! z%da|0f{N<&FD-j|c*VtEGdoKzeTj6j%V0HVJ7as!#mZl)=Jgr+mn9&dpwET;piFP`>vB*o)n+D{3liRcmzqxp!Y{c?AE4$`!0o}MEpbO~U zg#n#A6jvp*N*DP?9NP7`qxIv?Lu$wQzqHJGaiDxdd-yTMe~eWu4c+UGT$>0Cdj?Ne KKbLh*2~7ZIyjns4 diff --git a/common/gtk-3.0/3.20/assets/titlebutton-close.png b/common/gtk-3.0/3.20/assets/titlebutton-close.png deleted file mode 100644 index 48def3e3bb0c8d7bc707e68a49c181ff5a432e2f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 465 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(OMp*^ zE0F$_mi9R@@pEj(=Y;gniRqscfLtJ%@i`vIO`A|sJ*BX6RzXE~NlkB2)zqS@*0Q>$ z(z>Ryy85!Z1|TZ0uc~PHl92u-F&#uEq^DIk1IgEknLzSQQU;Lx8V?drt#1C5nEojt z1IPf{1rY&~7TYp_&S20g3GxeO5D^s%3JGm&YHr!TfB%642M!)ObolV$V`tBuzwr9Q z$B&;reg5+6_n*Ii|H&=?{Q#(|)6>Ne`~Lij z$kXX}e`)LbZuoc5!lIL8@MUQTpt6Hc~)E=L38~ zT!Hj|AZlp%pO*F^D)VD<@~61$Pibi%6VksVq<>9F|D2HaIX>faB9M{sB|iOYJdgnr z1j>Gi&zMnIIjf*zPC>=wqROd7RWrfd*@YEz3o4i7S1iphZz`>8F0E}Xsa=s*x+br* zrmU_3h|23%=a$rg*_(1ps>|zFY3VIVkiZTbTet7rd+`0o?>~S3{{8oF-`SdZ z3=E8_o-U3d5|UF7zKm*ekYKw|?&PwGcVq4S3*XjAcpDvfzxRK3m*kY=U)!H2=+0{w zmDzvQ|Afo-8urg2!J9vA-rgvgH`~}rJXmU0@gp{^yfdu#<&K5S_HN-?Dyz4Z_4GxP zzWsehVs5|VkDF{^KD=DC(?!y9mtbecPlKo}_lhQJoL=Ypq%(|R@%c-sdP1?CCnUY4 zSf>`eF%y5>lHAD@kp9$(i+#-%#w(T+ZM`0Toi41$Fm;1TjeuwH#OI3M%&kq!O!tVN zjDHt2@w6UK0O`PGSAPCJ=T<PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(LV!<* zE09*}Iiu2cPPzM{YR_f$o{Q>Tm(;p0sdiriGSs^-t9M^g1EGsx62e9yHF_>-_FUHL zy`4*RQS(RuYSx7!Zuoc5!lIL8@MUQTpt6Hc~)EO9OmD zT!A#h|NjgP|BYv!(QUt^-FH=^?Ydge8O^Tq8a)@(yDqBrTvF-2sNQu+z5B9S*JZWt zi)vs&)$YrxT^H56FR681QtQ414(fbdN{(gHb zrSTva=uY{PAirP+MkZE4Az=|!cMnhB(6I1`xU^~0XYAU2>-L>{55E71`Lqle8jP%- zE{-7@=ci7-S#-#N$2E7887o(=8M{#6f~8aP0#5v|m)f}J2+L&2cfon*Jf@{~PN)`P z+1??n>dG3hQKe{|f~?_%S@!&TE2kf94LZL>vAOTlg^sfiy^Ld3&K_7a#mk0q^|4QG zzaAWYu7AC(x3BZJ?KZ~Q$!E8U>N(Ak;Jp9e@}IDpTMWnMoX4tZ5#_39zPI;H-|=WG zyV3i9OLiW4V16Tf$F-Qmdy!FEYkp4u5uB7f|fEFZfs)9>io02>>UrwE%%=FS}W{9k?iT}=d#Wzp$PyDTNv5^ diff --git a/common/gtk-3.0/3.20/assets/titlebutton-maximize-active.png b/common/gtk-3.0/3.20/assets/titlebutton-maximize-active.png deleted file mode 100644 index 6c4451149f3ca89b65eebcc41fe499da866df431..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 391 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(LV!<* zE09*}Iiu2cPPzM{YR_f$o{Q>Tm(;p0sdiriGSs^-t9M^g1EGsx62e9yHF_>-_FUHL zy`4*RQS(RuYSx7!Zuoc5!lIL8@MUQTpt6Hc~)EO9OmD zT!A#h|NjgP|BYv!(QUt^-FH=^?Ydge8O^Tq8a)@(yDqBrTvF-2sNQu+z5B9S*JZWt zi)vs&)$YrxT^H56FR681QtQ414(fbdN{(gHb zrSTva=uY{PAirP+MkZE4Az=|!cMnhB(6I1`xU^~0XYAU2>-L>{55E71`Lqle8jP%- zE{-7@=ci7-S#-#N$2E7887o(=8M{#6f~8aP0#5v|m)f}J2+L&2cfon*Jf@{~PN)`P z+1??n>dG3hQKe{|f~?_%S@!&TE2kf94LZL>vAOTlg^sfiy^Ld3&K_7a#mk0q^|4QG zzaAWYu7AC(x3BZJ?KZ~Q$!E8U>N(Ak;Jp9e@}IDpTMWnMoX4tZ5#_39zPI;H-|=WG zyV3i9OLiW4V16Tf$F-Qmdy!FEYkp4u5uB7f|fEFZfs)9>io02>>UrwE%%=FS}W{9k?iT}=d#Wzp$PyDTNv5^ diff --git a/common/gtk-3.0/3.20/assets/titlebutton-maximize-backdrop-dark.png b/common/gtk-3.0/3.20/assets/titlebutton-maximize-backdrop-dark.png deleted file mode 100644 index 0b40ca5895c7e8c60a9d30c318f6a3bf04604a50..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPFgg}c$T@31W*ZgNswPK10y37v$Ly5P;eT1 zj&?p!SliRZF@$4ga)N^3jI~(|m(QGuWt~$(695fiPTT+h diff --git a/common/gtk-3.0/3.20/assets/titlebutton-maximize-backdrop-dark@2.png b/common/gtk-3.0/3.20/assets/titlebutton-maximize-backdrop-dark@2.png deleted file mode 100644 index 4b2db99672c43676661ef730aca7274fe1520e1b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EP60k4 zu0Z<#|NpC2t=hkT|CuvqfQ&tRPHx`6f7_u$+xHyUvG>s4y@z)1KC*M~!5w=JY~Q^f zNbcBkc*nlOJNF#izU$D=J%?rU7VQ9)_}T7oU(; z^Zt4!P(`$-i(`n!#J8s%#T*QHTrUQMObxkm|9@ET66TW|8~44m?O*Zz`UXSe;#o5N zq6`!E)bC_iAR%-s|KrA2`5!A+&*mweeYJdcpt7J~FW>(Cfo!+_=blqiI&|=N^)2T0 X46Jb}KYo4(TEpP!>gTe~DWM4fV*QD1 diff --git a/common/gtk-3.0/3.20/assets/titlebutton-maximize-backdrop.png b/common/gtk-3.0/3.20/assets/titlebutton-maximize-backdrop.png deleted file mode 100644 index 85e145c714132bc9406da54ac2da2c4bf9114e6b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 241 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!73?$#)eFPF diff --git a/common/gtk-3.0/3.20/assets/titlebutton-maximize-backdrop@2.png b/common/gtk-3.0/3.20/assets/titlebutton-maximize-backdrop@2.png deleted file mode 100644 index 3429d541302a84118e189b3b5e1949c11b237306..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 333 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EP60k4 zu0T38G_;|iAuVktkj%}URMOC0Rn=PB&{f{hQCZtn*#ts0K*74siiWPL#-8fB?&^k~ zs=BTUkYJDWtF1qPrihgU`2{mDv#_$Ui-}9v*xK4Vxq5i|W@YCTYix_P0jh}hba4#P znE3WWG+%=Pk4s<;)1nm#-}i?GFTUE6d57Wq_moM?j$Qeewd};txWd_;pKsOqoY9`} z?XGg%oHv5`?G`CQ$93$Im*v=pPy6%6@!_u%d-bIcojdAx`}z{$HFsEJx0Y}_0bP0l+XkKR$)@Z diff --git a/common/gtk-3.0/3.20/assets/titlebutton-maximize-dark@2.png b/common/gtk-3.0/3.20/assets/titlebutton-maximize-dark@2.png deleted file mode 100644 index fb52df8f34ea70f5a784a81cdfc2c2fbc686025d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 336 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)Et^qzF zu0VSK{{O31t-5;k>i+%vR~XgFAK|*tzH6?%juX?mN6=&%s@L z4(`}}XxE+tJN6z1G4>wXvFFgvJ%^44bCv@Q5-$nz3ua(pW8>iDR#H}tjZaF;&Mqh_ zU$$(;=7Nm#?LZ|_o-U3d8t31hwiaqo5Ma6Zv46q3br#?4S4|YyAtJuuayajntWrl8 zmp>r|;+~WCebG1foY%(lb9+Vn<@}FdRm^9e%=O!M^UMndhT6vc_cbQ`{BO=48fxpd aC2Oy%4(kRPW7}Y$EexKnelF{r5}E+rV2T6) diff --git a/common/gtk-3.0/3.20/assets/titlebutton-maximize-hover-dark.png b/common/gtk-3.0/3.20/assets/titlebutton-maximize-hover-dark.png deleted file mode 100644 index a6dfa0428c291e052f79c77ebe13dc6095588797..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 413 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(T7XZ8 zE09)EQBhD(kdl&;l#~<|l@=A15)qdc5tkB|QVyTpHY{X)sT=0B9pW0I;YO+nm((0=A7PHbNlDao4jygj_tHLK${dx zg8YIR*g53n4GevJBO)WCqGMuX)6+9DG7E}JO3TX6U%K|>>7Zuoc5!lIL8@MUQTpt6Hc~)EHv)V@ zT!AzQXlpa5fPj#Ykg%|f1PCYyi^~X!ON)z3i-}2ziOGqH$%=`|0Fj88jFO6$l8UaD zuBooBg|4ZcuBn5JoT7}JilT~^qKb}=k(IQZqL`Spi%-0}f4qx#w2OC~n_rw?Se9Qz zu3toEKtxVJRE}?WMpRmDY+7|xYE^Vfb#z*FY+6-(MqOe~Q)+HwQchEHUUN!*Q(9hg zQFUi=T~BdMSIfj{Efc13Mni z1qFr0W#tu>Rn@(H6L#<2ci`}`zymVLDZc=bxumsmwvsDG}lyEkaFh9{r|uQti=} zB@%sSxc)8aIWD+nk5b#^H@A--?!NG*ZT|0s$Xc~qu4hU%ip=UPW|&;S{QJ}Va(Slx zUCI1riEOLBXNme(aJb!gEl{y*`p1^b7Zz(CSbqEV@+Xqt7Ot+)tZZDlIc`SsN%@ys zpRZh5xF^PkGp6f!<-A$FOAfg1xxl#X(>9hzR?GXIeDsR02=4#!wd|kXmzud3H!oUQ zqjGVF&7{E95}nH|_w$9UF0$^q_GZK4TaLytE`LSeZohWs$lE6jj`<#6<+!xNyyLdE tOgx-7y(cF(irG4vx%#rypRF#^Us+!tizzSDe8dMzf}XB^F6*2UngD0DGr0f& diff --git a/common/gtk-3.0/3.20/assets/titlebutton-maximize-hover.png b/common/gtk-3.0/3.20/assets/titlebutton-maximize-hover.png deleted file mode 100644 index 6ead74b62088fd4023fabf54e0c4c70cc7a7b3e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 422 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBH(W`IwK zE07Kafd;>%vcR}X-^k*isA9jEiqM#fwBm-WvgR2x7T&pj=FW|?K=keXeFXY+@7t$) zf4)5W^W`BB{rvRs*QZCnKR^2O_0ivNj~6Ujx_HU5Wy@DioHA?D)Y(<_-7mO%3W1g> zl?3?(Gcfb;3X90AsAySO^L5>Ae^$!u%dR(bwcF3XE4(^?rENX`g}bUD zwr?aB|Lzru+E}dD%cXc~?bPh#7N)yvI;&eZUpU^U|5>X%OZ}A3wTXGJ(%(z(*%w^& w;=$LtcwWm*ZRhXJcW$00cFVdQ&MBb@0DPOg`2YX_ diff --git a/common/gtk-3.0/3.20/assets/titlebutton-maximize-hover@2.png b/common/gtk-3.0/3.20/assets/titlebutton-maximize-hover@2.png deleted file mode 100644 index 4c310f2f8ef36edb17162061e55e8a7751730a6f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 815 zcmV+~1JL}5P)V&QC@jjW_ev|e2$Wrl9!y6nVy!LpRum4v#+nTu&}kYwYIXhxwf{tx3|c}!pX+N z$;QFV$;8mj$k5Kn(a*=#(#h4+$?fUc?djL<>e=t>+x6|-^X%R8?A`S3-Sq9<_3z&H z@80z9-TL(6`t;)a^y2*V;r;gH{q^Mh_2m8bFMh0^7Hfa^Yrxe_4W1n`T6?#`uh6&`~Lp^&INyn00042NklFIPozzom1!@G^9{YUBaDw5I- z%LZ&_=&9c{YXOC#>pBI1Ws`@RK&va9g_qE%j3B-g!3`3ZX)HYJTs+I@a0F0qR=VOL^bafz#hHQNcW z;_viYr^7WSL*v+=PY7I#$9WK%fnJD1ztAq$g0eKlc1jfq{9N^*EWD`ue0w|n5PH3r z^e`+cZ%HNAPN885*{GqNWJB9gL&Z3>hp}Zuoc5!lIL8@MUQTpt6Hc~)Et^qzF zu0T31Ev=!UAvbqYVPRiG!%QH%vZ1%Kp$CX68hWZ5x~uBCz+`u2LswN@Z&gEQRYP}W zeRpMD7mx%>UHtXs5YQm;k|4ie239t9PA(ob4Xv!4+=9}o`lgP(`}UvlJEIBmO_ZmL zV~EE2x2LUz8WaRrE`IFqShvpNyZx$(0y{*+7hDeK-I7&0yQAaB$_ILrRBB(w=S{NV zmHd?dapSW4k6wG`8BM-Dr)K-ii;N7vnCkZjDt!K*&$nuomU7hAIG;?`ttaQNmPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE09*}Iiu2cPPzM{YR_f$o{Q>Tm(;p0sdiriGSs^-t9M^g1EGsx62e9y|9*RHy^47g z&>+#0AirP+5mB+AkkH1a=9aVP&R_WO@zduo|Bk8$mH-tbd%8G=NJ!=$jOJ@m5O6)X zxFg?PYUjK9mC05|J|v3HKU5WSeILuJi%)bO9b2@@Meg7iFWU{P44Lgs%M`qK%~fIc zx%5^=^+7-~yO^n(!i>1|gTe~ HDWM4f72kj+ diff --git a/common/gtk-3.0/3.20/assets/titlebutton-minimize-active-dark@2.png b/common/gtk-3.0/3.20/assets/titlebutton-minimize-active-dark@2.png deleted file mode 100644 index eb977482eee02108f82764555ee18287e7a62aa9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 489 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EIRQQ) zu0WdM|9^&t|Hd=V=(b#|z+ zMK!RXYWHQ;u8Zp3m(;p0sdZlha)BfaU4$_%%{g{w?YTRTUq1Z%?eU#CMcP2?I#mEEB^oQw=3XrKmB5#>Fu;zYK`?A&eLxmi;P@-ZPL-(ttOo>4t(A< zGwT03;iCE+<%^Q8CRWienvNHE7Kd~1eEB7Et;}xm&RFl?`}SIOFrJ99VqH*@$!Jiz zJL4X+uk=b@fwJoO`HkV?Tnz`-)*c91_hc&LgsZD3?)t*paARrt{u(Xy-G0BCo~>p* z8lB7D(X};=seYRM_q4e+5~>w(J*hlFD?_wBb(1gf2Y$GIrj{|j*U9Md63GluPPZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkYk*IP zE09*}Iiu2cPPzM{YR_f$o{Q>Tm(;p0sdiriGSs^-t9M^g1EGsx62e9y|9*RHy^47g z&>+#0AirP+5mB+AkkH1a=9aVP&R_WO@zduo|Bk8$mH-tbd%8G=NJ!=$jOJ@m5O6)X zxFg?PYUjK9mC05|J|v3HKU5WSeILuJi%)bO9b2@@Meg7iFWU{P44Lgs%M`qK%~fIc zx%5^=^+7-~yO^n(!i>1|gTe~ HDWM4f72kj+ diff --git a/common/gtk-3.0/3.20/assets/titlebutton-minimize-active@2.png b/common/gtk-3.0/3.20/assets/titlebutton-minimize-active@2.png deleted file mode 100644 index eb977482eee02108f82764555ee18287e7a62aa9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 489 zcmeAS@N?(olHy`uVBq!ia0vp^av;pX3?zBp#Z3TG%*9TgAsieWw;%dH0CG7CJR*x3 z7^K&OFk_t5L>Zuoc5!lIL8@MUQTpt6Hc~)EIRQQ) zu0WdM|9^&t|Hd=V=(b#|z+ zMK!RXYWHQ;u8Zp3m(;p0sdZlha)BfaU4$_%%{g{w?YTRTUq1Z%?eU#CMcP2?I#mEEB^oQw=3XrKmB5#>Fu;zYK`?A&eLxmi;P@-ZPL-(ttOo>4t(A< zGwT03;iCE+<%^Q8CRWienvNHE7Kd~1eEB7Et;}xm&RFl?`}SIOFrJ99VqH*@$!Jiz zJL4X+uk=b@fwJoO`HkV?Tnz`-)*c91_hc&LgsZD3?)t*paARrt{u(Xy-G0BCo~>p* z8lB7D(X};=seYRM_q4e+5~>w(J*hlFD?_wBb(1gf2Y$GIrj{|j*U9Md63GluP4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1T4JzX3_ zEP9g@Bv=nK7$gbb+4;Oc%B-+l{C4DvB%do~7d0d%F)(c2$im{YFl84|1B0ilpUXO@ GgeCySYA#Ix diff --git a/common/gtk-3.0/3.20/assets/titlebutton-minimize-backdrop-dark@2.png b/common/gtk-3.0/3.20/assets/titlebutton-minimize-backdrop-dark@2.png deleted file mode 100644 index 4e9b3d64a5e9927ef8c36cc8a7b52d3e32dd343c..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^av;pY3?xs=ZJr3En2Vh}LpV4%Za?&Y0OWEOctjR6 zFi5WlVa7PAi84Sz$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS_yc@G zT!HlN-AA_XKD=Z1!JT^!AL6x~4isW73GxeOuyBYd6# diff --git a/common/gtk-3.0/3.20/assets/titlebutton-minimize-backdrop.png b/common/gtk-3.0/3.20/assets/titlebutton-minimize-backdrop.png deleted file mode 100644 index 97763fb18e8f5e0b034422c0133582aec913d6d6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`EX7WqAsj$Z!;#Vf4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1T4JY5_^ zEP9g@Bv=nK7$ga=S@l};nA*K-A(y)Kj=AKD_ckeVGA!X_Vfp`I+g_l022WQ%mvv4F FO#r72E~)?k diff --git a/common/gtk-3.0/3.20/assets/titlebutton-minimize-backdrop@2.png b/common/gtk-3.0/3.20/assets/titlebutton-minimize-backdrop@2.png deleted file mode 100644 index 3c4a02135b1ddc01b895b6245b38ddcef1c69834..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^av;pY3?xs=ZJr3En2Vh}LpV4%Za?&Y0OWEOctjR6 zFi5WlVa7PAi84Sz$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS_yc@G zT!D0DQ&&wxS7l>&Rb9{ZRi|x%LaZf0e!&d(9;wAgb$X+K04nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1T4JzX3_ zEP9g@Bv=nK7$gbb+4=lJTF#?)dS&}wB>7w^yQm>CiGg9)MHZH4E{Zll4Gf;HelF{r G5}E)A3NO(B diff --git a/common/gtk-3.0/3.20/assets/titlebutton-minimize-dark@2.png b/common/gtk-3.0/3.20/assets/titlebutton-minimize-dark@2.png deleted file mode 100644 index 76c3c8fa8659ee138a4e94626a5afb85e527d912..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^av;pY3?xs=ZJr3En2Vh}LpV4%Za?&Y0OWEOctjR6 zFi5WlVa7PAi84Sz$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS_yc@G zT!HlN-G_JVJ+gDp!JT^!eY*Wr6ez@6666=mkW?^t^F$+e4xoUnr;B5VM0j$7L|el} p2^N+IHEQAl0S8XHhuilsFzoST@;MJEZ^s diff --git a/common/gtk-3.0/3.20/assets/titlebutton-minimize-hover-dark.png b/common/gtk-3.0/3.20/assets/titlebutton-minimize-hover-dark.png deleted file mode 100644 index daec11dfb27484a67291fdd1b6e1db323d5233dc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 363 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkcYsfb zE09)EQBhD(kdl&;l#~<|l@=A15)qdc5tkB|QVyTpHVk?;lg``$5VjDNt6Wn1v9X7$jKWR`uIjfMn*-)#KxwlXJlj+ z6wl((m;qFi=jq}YA`zb3AI;aGz{A2=xq@|d)7tO$D?1i&7XB-nl)KI8&%!mI?@34U8zU4a3`W(C{doYK$OB=J~%(dk3NpCc2NS$6LfU$c?KGcFqnZuoc5!lIL8@MUQTpt6Hc~)E^8t97%YS4rgl|DT_2GttfCWy$`O zN$CmizI~JU-7oXp+~|Xo9>YQB{0mEy`4aR}SMl5B9lXdgLv-mSt!|bMH?>mBC#$oz zoD|r7Y`ftnFG(w#NB@?e;4Hct)VE?K*QX1|LfQ7e>v-&2x`lQBm*2ROSeWBcd#_I;VaHH%5*u3vnw-xr04Uy_T$mVBFU-?{IS-K$GXB4&Sj zcHf$|8i;-6o5EWv^Ub`l!r<|NI}$gqNj&?a=40h2 zI6bP0 Hl+XkK^DF8$ diff --git a/common/gtk-3.0/3.20/assets/titlebutton-minimize-hover.png b/common/gtk-3.0/3.20/assets/titlebutton-minimize-hover.png deleted file mode 100644 index 39cdfbf836ef47d4b14e06b17b74f92dfc13c4e5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 368 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!63?wyl`GbKJbFq_W2nPqp?T7vkfLzW3kH}&M z2EHR8%s5q>PZ}sFS>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkUw}`D zE07Kafd;>%vcR}X-^k*isA9jEiqM#fwBm-WvgR2x7T&pj=FW|?K=keXeFXY+@7t$) zf4)5W^W`BB{r&d1s=hmPo;nBE`XIkx24)^!VG(&16%9?xlG3vM2M!)Oe&X4Sm!I>` zJ>3aZl<(={7$Pw>xBsnBgMff*w4&LUgV&QC@jjW_ev|e2$Wrl9!y6nVy!LpRum4v#+nTu&}kYwYIXhxwf{tx3|c}!pX+N z$;QFV$;8mj$k5Kn(a*=#(#h4+$?fUc?djL<>e=t>+x6|-^X%R8?A`S3-Sq9<_3z&H z@80z9-TL(6`t;)a^y2*V;r;gH{q^Mh_2m8bFVq9^ZNV#^3t))0003QNklHE5QM1_2o@4tFmWRV(u*;PWhd|d zT)_vS%9F|dlfKdE%ATV9N1Aqus0MRfz~#(PhtzZce-uT54{);|)B;v%CJJTg60ka- z=p5mzsP!_1t+(FVh;z}>=M9|Zy@jit=x7(isnetHf5S|X`_0E=y2P3ERUegFUf M07*qoM6N<$f=K;M#Q*>R diff --git a/common/gtk-3.0/3.20/assets/titlebutton-minimize.png b/common/gtk-3.0/3.20/assets/titlebutton-minimize.png deleted file mode 100644 index cffbf9424de29513addf7fdf6994eb508537d601..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 168 zcmeAS@N?(olHy`uVBq!ia0vp^0wB!61|;P_|4#%`EX7WqAsj$Z!;#Vf4nJ z@ErkR#;MwT(m+AU64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1T4JzX3_ zEP9g@Bv=nK7$ga=$$Mef?7L^{!YeGXJ)O7oq*$GW7#P+}WMP@*Q?3Wpz~JfX=d#Wz Gp$Pz`ODvoK diff --git a/common/gtk-3.0/3.20/assets/titlebutton-minimize@2.png b/common/gtk-3.0/3.20/assets/titlebutton-minimize@2.png deleted file mode 100644 index 2a6ba854f3e7a614b2d7f544a3884a8659bb0ec8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 203 zcmeAS@N?(olHy`uVBq!ia0vp^av;pY3?xs=ZJr3En2Vh}LpV4%Za?&Y0OWEOctjR6 zFi5WlVa7PAi84Sz$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS_yc@G zT!D0TLw8L>cXdM#ka1}pzYkD|wIs+dn4zFy^BK|TbG|?USx* m4{FrJ1p*G7bPu=hVPM$f$I5GP)IA2MkipZ{&t;ucLK6UXgE+bX diff --git a/common/gtk-3.0/3.20/gtk-dark.css b/common/gtk-3.0/3.20/gtk-dark.css deleted file mode 100644 index 3391f41..0000000 --- a/common/gtk-3.0/3.20/gtk-dark.css +++ /dev/null @@ -1,4305 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -GtkScrolledWindow-scrollbar-spacing: 0; - -GtkToolItemGroup-expander-size: 11; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -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; } - -.background { - color: #657b83; - background-color: rgba(0, 43, 54, 0.999); } - -*:disabled { - -gtk-icon-effect: dim; } - -.gtkstyle-fallback { - background-color: #002b36; - color: #657b83; } - .gtkstyle-fallback:hover { - background-color: #005469; - color: #657b83; } - .gtkstyle-fallback:active { - background-color: #000203; - color: #657b83; } - .gtkstyle-fallback:disabled { - background-color: #003340; - color: rgba(101, 123, 131, 0.45); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view, iconview, -.view text, -iconview text, -textview text { - color: #657b83; - background-color: #073642; } - .view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, - .view text:selected, - iconview text:selected, - textview text:selected, - .view text:selected:focus, - iconview text:selected:focus, - textview text:selected:focus { - border-radius: 2px; } - -textview border { - background-color: #04313c; } - -rubberband, flowbox rubberband, treeview.view rubberband, .content-view rubberband, -.rubberband { - border: 1px solid #1e6ea7; - background-color: rgba(30, 110, 167, 0.2); } - -flowbox flowboxchild { - padding: 3px; - border-radius: 2px; } - flowbox flowboxchild:selected { - outline-offset: -2px; } - -label.separator, popover label.separator, -popover.background label.separator { - color: #657b83; } - -label selection { - color: #fdf6e3; - background-color: #268bd2; } - -label:disabled { - color: rgba(101, 123, 131, 0.45); } - -.dim-label, label.separator, popover label.separator, -popover.background label.separator, headerbar .subtitle, .titlebar:not(headerbar) .subtitle { - opacity: 0.55; } - -assistant .sidebar { - background-color: #073642; - border-top: 1px solid #001317; } - -assistant.csd .sidebar { - border-top-style: none; } - -assistant .sidebar label { - padding: 6px 12px; } - -assistant .sidebar label.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -textview { - background-color: #073642; } - -popover.osd, popover.magnifier, .csd popover.osd, .csd popover.magnifier, -popover.background.osd, -popover.background.magnifier, .csd popover.background.osd, .csd popover.background.magnifier, .osd .scale-popup, .osd { - color: #657b83; - border: none; - background-color: rgba(7, 54, 66, 0.95); - background-clip: padding-box; - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -spinner { - background: none; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - spinner:checked { - opacity: 1; - animation: spin 1s linear infinite; } - spinner:checked:disabled { - opacity: 0.5; } - -entry { - min-height: 22px; - border: 1px solid; - padding: 2px 8px; - caret-color: currentColor; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #657b83; - border-color: #001317; - background-color: #073642; } - entry.search { - border-radius: 20px; } - entry image { - color: #526d76; } - entry image.left { - padding-left: 0; - padding-right: 5px; } - entry image.right { - padding-right: 0; - padding-left: 5px; } - entry.flat, entry.flat:focus { - min-height: 0; - padding: 2px; - background-image: none; - border-color: transparent; - border-radius: 0; } - entry:focus { - background-clip: border-box; - color: #657b83; - border-color: #001317; - background-color: #073642; - box-shadow: inset 1px 0 #268bd2, inset -1px 0 #268bd2, inset 0 1px #268bd2, inset 0 -1px #268bd2; } - entry:disabled { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(7, 54, 66, 0.55); } - entry.warning { - color: white; - border-color: #001317; - background-color: #7d4328; } - entry.warning image { - color: white; } - entry.warning:focus { - color: white; - background-color: #cb4b16; - box-shadow: none; } - entry.warning selection, entry.warning selection:focus { - background-color: white; - color: #cb4b16; } - entry.error { - color: white; - border-color: #001317; - background-color: #873437; } - entry.error image { - color: white; } - entry.error:focus { - color: white; - background-color: #dc322f; - box-shadow: none; } - entry.error selection, entry.error selection:focus { - background-color: white; - color: #dc322f; } - entry.search-missing { - color: white; - border-color: #001317; - background-color: #873437; } - entry.search-missing image { - color: white; } - entry.search-missing:focus { - color: white; - background-color: #dc322f; - box-shadow: none; } - entry.search-missing selection, entry.search-missing selection:focus { - background-color: white; - color: #dc322f; } - entry:drop(active):focus, entry:drop(active) { - border-color: #b58900; - box-shadow: none; } - .osd entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .osd entry image, .osd entry image:hover { - color: inherit; } - .osd entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd entry:disabled { - color: rgba(101, 123, 131, 0.55); - background-color: rgba(18, 137, 167, 0.2); } - .osd entry selection:focus, .osd entry selection { - color: #268bd2; - background-color: #fdf6e3; } - entry progress { - margin: 0 -6px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - -treeview entry.flat, treeview entry { - border-radius: 0; - background-image: none; - background-color: #073642; } - treeview entry.flat:focus, treeview entry:focus { - border-color: #268bd2; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -button { - min-height: 22px; - min-width: 20px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 2px 6px; - color: #657b83; - border-color: #001317; - background-color: #083e4b; } - button separator { - margin: 4px 1px; } - button.flat, button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - transition: none; } - button.flat:hover, button.sidebar-button:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - button.flat:hover:active, button.sidebar-button:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - button:hover { - color: #657b83; - border-color: #001317; - background-color: #0a5062; - -gtk-icon-effect: highlight; } - button:active, button:checked { - color: #fdf6e3; - border-color: #001317; - background-color: #268bd2; - background-clip: padding-box; - transition-duration: 50ms; } - button:active:not(:disabled) label:disabled, button:checked:not(:disabled) label:disabled { - color: inherit; - opacity: 0.6; } - button:active { - color: #657b83; } - button:active:hover, button:checked { - color: #fdf6e3; } - button.flat:disabled, button.sidebar-button:disabled { - border-color: transparent; - background-color: transparent; - background-image: none; } - button:disabled { - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - button:disabled label, button:disabled { - color: rgba(101, 123, 131, 0.45); } - button:disabled:active, button:disabled:checked { - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - button:disabled:active label, button:disabled:active, button:disabled:checked label, button:disabled:checked { - color: rgba(253, 246, 227, 0.8); } - button.image-button { - min-width: 24px; - padding-left: 5px; - padding-right: 5px; } - button.text-button { - padding-left: 12px; - padding-right: 12px; } - button.text-button.image-button { - padding-left: 5px; - padding-right: 5px; } - button.text-button.image-button label:first-child { - padding-left: 8px; - padding-right: 2px; } - button.text-button.image-button label:last-child { - padding-right: 8px; - padding-left: 2px; } - button.text-button.image-button label:only-child { - padding-left: 8px; - padding-right: 8px; } - button.text-button.image-button.popup { - padding-right: 8px; - padding-left: 8px; } - button:drop(active), combobox:drop(active) button.combo { - color: #b58900; - border-color: #b58900; - box-shadow: none; } - button.osd { - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(3, 24, 29, 0.95); } - button.osd.image-button { - padding: 0; - min-height: 36px; - min-width: 36px; } - button.osd:hover { - color: #268bd2; } - button.osd:active, button.osd:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - button.osd:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .osd button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd button:active, .osd button:checked { - background-clip: padding-box; - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd button.flat, .osd button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd button.flat:hover, .osd button.sidebar-button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd button.flat:disabled, .osd button.sidebar-button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); - background-image: none; } - .osd button.flat:active, .osd button.sidebar-button:active, .osd button.flat:checked, .osd button.sidebar-button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd .linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child), - .osd .linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active) + button:not(:checked):not(:active) { - box-shadow: none; } - button.suggested-action { - background-clip: border-box; - color: white; - background-color: #2aa198; - border-color: #2aa198; } - button.suggested-action.flat, button.suggested-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; } - button.suggested-action:hover { - background-clip: border-box; - color: white; - background-color: #35c9be; - border-color: #35c9be; } - button.suggested-action:active, button.suggested-action:checked { - background-clip: border-box; - color: white; - background-color: #1f7972; - border-color: #1f7972; } - button.suggested-action.flat:disabled, button.suggested-action.sidebar-button:disabled { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(101, 123, 131, 0.45); } - button.suggested-action:disabled { - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - button.suggested-action:disabled label, button.suggested-action:disabled { - color: rgba(101, 123, 131, 0.45); } - button.destructive-action { - background-clip: border-box; - color: white; - background-color: #dc322f; - border-color: #dc322f; } - button.destructive-action.flat, button.destructive-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; } - button.destructive-action:hover { - background-clip: border-box; - color: white; - background-color: #e35d5b; - border-color: #e35d5b; } - button.destructive-action:active, button.destructive-action:checked { - background-clip: border-box; - color: white; - background-color: #b9221f; - border-color: #b9221f; } - button.destructive-action.flat:disabled, button.destructive-action.sidebar-button:disabled { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(101, 123, 131, 0.45); } - button.destructive-action:disabled { - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - button.destructive-action:disabled label, button.destructive-action:disabled { - color: rgba(101, 123, 131, 0.45); } - .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; } - .stack-switcher > button.needs-attention > label, .stack-switcher > button.needs-attention > image, button stacksidebar row.needs-attention > label, stacksidebar button row.needs-attention > label { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 2px; } - .stack-switcher > button.needs-attention > label:dir(rtl), .stack-switcher > button.needs-attention > image:dir(rtl), button stacksidebar row.needs-attention > label:dir(rtl), stacksidebar button row.needs-attention > label:dir(rtl) { - background-position: left 3px, left 2px; } - button.font separator, button.file separator { - background-color: transparent; } - .inline-toolbar button, .inline-toolbar button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar toolbutton > button { - color: #657b83; - border-color: #001317; - background-color: #083e4b; } - .inline-toolbar toolbutton > button:hover { - color: #657b83; - border-color: #001317; - background-color: #0a5062; } - .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { - color: #fdf6e3; - border-color: #001317; - background-color: #268bd2; } - .inline-toolbar toolbutton > button:disabled { - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .inline-toolbar toolbutton > button:disabled label, .inline-toolbar toolbutton > button:disabled { - color: rgba(101, 123, 131, 0.45); } - .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked { - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar toolbutton > button:disabled:active label, .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked label, .inline-toolbar toolbutton > button:disabled:checked { - color: rgba(253, 246, 227, 0.8); } - -.linked:not(.vertical):not(.path-bar) > entry + entry { - border-left-color: rgba(0, 19, 23, 0.3); } - -.linked:not(.vertical):not(.path-bar) > entry.error + entry, -.linked:not(.vertical):not(.path-bar) > entry + entry.error { - border-left-color: rgba(0, 19, 23, 0.3); } - -.linked:not(.vertical):not(.path-bar) > entry.warning + entry, -.linked:not(.vertical):not(.path-bar) > entry + entry.warning { - border-left-color: rgba(0, 19, 23, 0.3); } - -.linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, -.linked:not(.vertical):not(.path-bar) > entry.warning + entry.error { - border-left-color: rgba(0, 19, 23, 0.3); } - -.linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > button:active + entry, -.linked:not(.vertical):not(.path-bar) > button:checked + entry { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > button + button { - border-left-style: none; } - -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 1px 0 #001317; } - -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5); } - -.linked:not(.vertical):not(.path-bar) > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:disabled, -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked:not(.vertical):not(.path-bar) > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child) { - box-shadow: none; } - -.linked:not(.vertical).path-bar > button + button { - border-left-style: none; } - -.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5), inset -1px 0 rgba(0, 19, 23, 0.5); } - -.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 19, 23, 0.5); } - -.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5); } - -.linked.vertical > entry + entry { - border-top-color: rgba(0, 19, 23, 0.3); } - -.linked.vertical > entry.error + entry, -.linked.vertical > entry + entry.error { - border-top-color: rgba(0, 19, 23, 0.3); } - -.linked.vertical > entry.warning + entry, -.linked.vertical > entry + entry.warning { - border-top-color: rgba(0, 19, 23, 0.3); } - -.linked.vertical > entry.error + entry.warning, -.linked.vertical > entry.warning + entry.error { - border-top-color: rgba(0, 19, 23, 0.3); } - -.linked.vertical > entry + entry:focus:not(:last-child), -.linked.vertical > entry + entry:focus:last-child { - border-top-color: #001317; } - -.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: #001317; } - -.linked.vertical > entry + entry:drop(active):not(:last-child), -.linked.vertical > entry + entry:drop(active):last-child { - border-top-color: #001317; } - -.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: #001317; } - -.linked.vertical > entry + entry.warning:focus:not(:last-child), -.linked.vertical > entry + entry.warning:focus:last-child { - border-top-color: #001317; } - -.linked.vertical > entry.warning:focus:not(:only-child) + entry, -.linked.vertical > entry.warning:focus:not(:only-child) + button, -.linked.vertical > entry.warning:focus:not(:only-child) + combobox > box > button.combo { - border-top-color: #001317; } - -.linked.vertical > entry + entry.error:focus:not(:last-child), -.linked.vertical > entry + entry.error:focus:last-child { - border-top-color: #001317; } - -.linked.vertical > entry.error:focus:not(:only-child) + entry, -.linked.vertical > entry.error:focus:not(:only-child) + button, -.linked.vertical > entry.error:focus:not(:only-child) + combobox > box > button.combo { - border-top-color: #001317; } - -.linked.vertical > button:active + entry, -.linked.vertical > button:checked + entry { - border-top-color: #001317; } - -.linked.vertical > button + button { - border-top-style: none; } - -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 0 1px #001317; } - -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { - box-shadow: inset 0 1px rgba(0, 19, 23, 0.5); } - -.linked.vertical > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:disabled, -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked.vertical > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child) { - box-shadow: none; } - -toolbar.inline-toolbar toolbutton > button.flat, .inline-toolbar toolbutton > button.flat, toolbar.inline-toolbar toolbutton > button.sidebar-button, .inline-toolbar toolbutton > button.sidebar-button, .linked:not(.vertical) > entry, -.linked:not(.vertical) > entry:focus, .inline-toolbar button, .inline-toolbar button:backdrop, .linked:not(.vertical) > button, -.linked:not(.vertical) > button:hover, -.linked:not(.vertical) > button:active, -.linked:not(.vertical) > button:checked, spinbutton:not(.vertical) button, spinbutton:not(.vertical) entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, .primary-toolbar .linked:not(.vertical).path-bar > button, headerbar .linked:not(.vertical).path-bar > button, .primary-toolbar .linked:not(.vertical).path-bar > button:hover, headerbar .linked:not(.vertical).path-bar > button:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:active, headerbar .linked:not(.vertical).path-bar > button:active, .primary-toolbar .linked:not(.vertical).path-bar > button:checked, headerbar .linked:not(.vertical).path-bar > button:checked, .primary-toolbar .linked:not(.vertical).path-bar > button:disabled, headerbar .linked:not(.vertical).path-bar > button:disabled, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:active, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:checked, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:disabled, .linked:not(.vertical) > combobox > box > button.combo:dir(ltr), .linked:not(.vertical) > combobox > box > button.combo:dir(rtl) { - border-radius: 0; - border-right-style: none; } - -.linked:not(.vertical) > entry:first-child, .inline-toolbar button:first-child, .linked:not(.vertical) > button:first-child, toolbar.inline-toolbar toolbutton:first-child > button.flat, .inline-toolbar toolbutton:first-child > button.flat, toolbar.inline-toolbar toolbutton:first-child > button.sidebar-button, .inline-toolbar toolbutton:first-child > button.sidebar-button, spinbutton:not(.vertical) button:first-child, spinbutton:not(.vertical) entry:first-child, .linked:not(.vertical) > combobox:first-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child, .primary-toolbar .linked:not(.vertical).path-bar > button:first-child, headerbar .linked:not(.vertical).path-bar > button:first-child, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -.linked:not(.vertical) > entry:last-child, .inline-toolbar button:last-child, .linked:not(.vertical) > button:last-child, toolbar.inline-toolbar toolbutton:last-child > button.flat, .inline-toolbar toolbutton:last-child > button.flat, toolbar.inline-toolbar toolbutton:last-child > button.sidebar-button, .inline-toolbar toolbutton:last-child > button.sidebar-button, spinbutton:not(.vertical) button:last-child, spinbutton:not(.vertical) entry:last-child, .linked:not(.vertical) > combobox:last-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child, .primary-toolbar .linked:not(.vertical).path-bar > button:last-child, headerbar .linked:not(.vertical).path-bar > button:last-child, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - border-right-style: solid; } - -.linked:not(.vertical) > entry:only-child, .inline-toolbar button:only-child, .linked:not(.vertical) > button:only-child, toolbar.inline-toolbar toolbutton:only-child > button.flat, .inline-toolbar toolbutton:only-child > button.flat, toolbar.inline-toolbar toolbutton:only-child > button.sidebar-button, .inline-toolbar toolbutton:only-child > button.sidebar-button, spinbutton:not(.vertical) button:only-child, spinbutton:not(.vertical) entry:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child, .primary-toolbar .linked:not(.vertical).path-bar > button:only-child, headerbar .linked:not(.vertical).path-bar > button:only-child, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:only-child { - border-radius: 3px; - border-style: solid; } - -.linked.vertical > entry, -.linked.vertical > entry:focus, .linked.vertical > button, -.linked.vertical > button:hover, -.linked.vertical > button:active, -.linked.vertical > button:checked, spinbutton.vertical button, spinbutton.vertical entry, .linked.vertical > combobox > box > button.combo { - border-radius: 0; - border-bottom-style: none; } - -.linked.vertical > entry:first-child, .linked.vertical > button:first-child, spinbutton.vertical button:first-child, spinbutton.vertical entry:first-child, .linked.vertical > combobox:first-child > box > button.combo { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -.linked.vertical > entry:last-child, .linked.vertical > button:last-child, spinbutton.vertical button:last-child, spinbutton.vertical entry:last-child, .linked.vertical > combobox:last-child > box > button.combo { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border-bottom-style: solid; } - -.linked.vertical > entry:only-child, .linked.vertical > button:only-child, spinbutton.vertical button:only-child, spinbutton.vertical entry:only-child, .linked.vertical > combobox:only-child > box > button.combo { - border-radius: 3px; - border-style: solid; } - -menuitem.button.flat, -modelbutton.flat, button:link, button:visited, button:link:hover, button:link:active, button:link:checked, button:visited:hover, button:visited:active, button:visited:checked, notebook > header > tabs > tab button.flat:hover, notebook > header > tabs > tab button.sidebar-button:hover, notebook > header > tabs > tab button.flat:active, notebook > header > tabs > tab button.sidebar-button:active, notebook > header > tabs > tab button.flat:active:hover, notebook > header > tabs > tab button.sidebar-button:active:hover, .app-notification button.flat, .app-notification button.sidebar-button, .app-notification button.flat:disabled, .app-notification button.sidebar-button:disabled, calendar.button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -menuitem.button.flat, -modelbutton.flat { - transition: none; - min-height: 24px; - padding-left: 8px; - padding-right: 8px; - outline-offset: -3px; - border-radius: 2px; } - menuitem.button.flat:hover, - modelbutton.flat:hover { - background-color: #0a333e; } - menuitem.button.flat:checked, - modelbutton.flat:checked { - color: #657b83; } - menuitem.button.flat check:last-child, - menuitem.button.flat radio:last-child, - modelbutton.flat check:last-child, - modelbutton.flat radio:last-child { - margin-left: 8px; } - menuitem.button.flat check:first-child, - menuitem.button.flat radio:first-child, - modelbutton.flat check:first-child, - modelbutton.flat radio:first-child { - margin-right: 8px; } - -modelbutton.flat arrow.left { - -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); } - -modelbutton.flat arrow.right { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - -*:link, button:link, button:visited { - color: #78b9e6; } - *:link:visited, button:visited { - color: #4ca2df; } - *:selected *:link:visited, *:selected button:visited:link, *:selected button:visited { - color: #a7cbdc; } - *:link:hover, button:hover:link, button:hover:visited { - color: #a3cfee; } - *:selected *:link:hover, *:selected button:hover:link, *:selected button:hover:visited { - color: #e8ebe1; } - *:link:active, button:active:link, button:active:visited { - color: #78b9e6; } - *:selected *:link:active, *:selected button:active:link, *:selected button:active:visited { - color: #d2e1e0; } - infobar.info *:link, infobar.info button:link, infobar.info button:visited, infobar.question *:link, infobar.question button:link, infobar.question button:visited, infobar.warning *:link, infobar.warning button:link, infobar.warning button:visited, infobar.error *:link, infobar.error button:link, infobar.error button:visited, *:link:selected, button:selected:link, button:selected:visited, headerbar.selection-mode .subtitle:link, .selection-mode.titlebar:not(headerbar) .subtitle:link, - *:selected *:link, - *:selected button:link, - *:selected button:visited { - color: #d2e1e0; } - -button:link > label, button:visited > label { - text-decoration-line: underline; } - -spinbutton:drop(active) { - box-shadow: none; } - -spinbutton button:active { - color: #fdf6e3; } - -spinbutton:disabled { - color: rgba(101, 123, 131, 0.45); } - -spinbutton:not(.vertical) entry { - min-width: 28px; } - -spinbutton:not(.vertical):dir(ltr) entry, -spinbutton:not(.vertical):dir(rtl) button.up { - border-radius: 3px 0 0 3px; } - -spinbutton:not(.vertical) > button + button { - border-left-style: none; } - -spinbutton:not(.vertical) > button:hover:not(:active), -spinbutton:not(.vertical) > button:hover + button { - box-shadow: inset 1px 0 #001317; } - -spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), -spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5); } - -spinbutton:not(.vertical) > button:first-child:hover:not(:active), -spinbutton:not(.vertical) > button.up:dir(rtl):hover:not(:active), -spinbutton:not(.vertical) > entry + button:not(:active):hover { - box-shadow: none; } - -spinbutton:not(.vertical) > entry:focus + button { - border-left-color: #001317; } - -spinbutton:not(.vertical) > entry:drop(active) + button { - border-left-color: #b58900; } - -.osd spinbutton:not(.vertical) > button:hover:not(:active), -.osd spinbutton:not(.vertical) > button:hover + button { - box-shadow: inset 1px 0 rgba(1, 9, 11, 0.35); } - -.osd spinbutton:not(.vertical) > button:first-child:hover:not(:active), -.osd spinbutton:not(.vertical) > button.up:dir(rtl):hover:not(:active), -.osd spinbutton:not(.vertical) > entry + button:not(:active):hover { - box-shadow: none; } - -.osd spinbutton:not(.vertical) > entry:focus + button { - border-left-color: rgba(1, 9, 11, 0.35); } - -spinbutton.vertical button, spinbutton.vertical entry { - padding-left: 4px; - padding-right: 4px; - min-width: 0; } - -spinbutton.vertical button.up { - border-radius: 3px 3px 0 0; } - -spinbutton.vertical > entry:focus + button { - border-top-color: #001317; } - -spinbutton.vertical > entry:drop(active) + button { - border-top-color: #b58900; } - -combobox button.combo { - min-width: 0; - padding-left: 8px; - padding-right: 8px; } - -combobox arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); - min-height: 16px; - min-width: 16px; } - -toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #002b36; } - toolbar separator, .inline-toolbar separator { - background: none; } - toolbar.horizontal separator, .horizontal.inline-toolbar separator { - margin: 0 6px; } - toolbar.vertical separator, .vertical.inline-toolbar separator { - margin: 6px 0; } - .osd toolbar, .osd .inline-toolbar { - background-color: transparent; } - toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.85); } - toolbar.osd.left, .osd.left.inline-toolbar, toolbar.osd.right, .osd.right.inline-toolbar, toolbar.osd.top, .osd.top.inline-toolbar, toolbar.osd.bottom, .osd.bottom.inline-toolbar { - border-radius: 0; } - toolbar.osd.top, .osd.top.inline-toolbar { - border-width: 0 0 1px 0; } - toolbar.osd.bottom, .osd.bottom.inline-toolbar { - border-width: 1px 0 0 0; } - toolbar.osd.left, .osd.left.inline-toolbar { - border-width: 0 1px 0 0; } - toolbar.osd.right, .osd.right.inline-toolbar { - border-width: 0 0 0 1px; } - toolbar:not(.inline-toolbar) switch, .inline-toolbar:not(.inline-toolbar) switch, - toolbar:not(.inline-toolbar) scale, .inline-toolbar:not(.inline-toolbar) scale, - toolbar:not(.inline-toolbar) entry, .inline-toolbar:not(.inline-toolbar) entry, - toolbar:not(.inline-toolbar) spinbutton, .inline-toolbar:not(.inline-toolbar) spinbutton, - toolbar:not(.inline-toolbar) button, .inline-toolbar:not(.inline-toolbar) button { - margin-right: 1px; - margin-bottom: 1px; } - toolbar:not(.inline-toolbar) .linked > button, .inline-toolbar:not(.inline-toolbar) .linked > button, - toolbar:not(.inline-toolbar) .linked > entry, .inline-toolbar:not(.inline-toolbar) .linked > entry { - margin-right: 0; } - -.primary-toolbar:not(.libreoffice-toolbar) { - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #002b36, rgba(0, 15, 18, 0.97)) 1 0 1 0; } - -.inline-toolbar { - background-color: #001f27; - border-style: solid; - border-color: #001317; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -searchbar { - background-color: #002b36; - border-style: solid; - border-color: #001317; - border-width: 0 0 1px; - padding: 3px; } - -actionbar { - padding: 6px; - border-top: 1px solid #001317; - background-color: #001f27; } - -headerbar, -.titlebar:not(headerbar) { - min-height: 42px; - padding: 0 7px; - border-width: 0 0 1px; - border-style: solid; - border-color: #001b22; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: inset 0 1px rgba(0, 55, 69, 0.97); } - .csd headerbar, - .csd .titlebar:not(headerbar) { - background-color: rgba(0, 43, 54, 0.97); - border-color: rgba(0, 27, 34, 0.97); } - headerbar:backdrop, - .titlebar:backdrop:not(headerbar) { - transition: 200ms ease-out; - color: rgba(89, 128, 143, 0.5); - background-color: #00313e; } - .csd headerbar:backdrop, - .csd .titlebar:backdrop:not(headerbar) { - background-color: rgba(0, 49, 62, 0.97); } - headerbar .title, .titlebar:not(headerbar) .title { - padding-left: 12px; - padding-right: 12px; } - headerbar .subtitle, .titlebar:not(headerbar) .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - headerbar.selection-mode, - .selection-mode.titlebar:not(headerbar) { - color: #fdf6e3; - background-color: rgba(38, 139, 210, 0.95); - border-color: rgba(35, 128, 193, 0.95); - box-shadow: none; } - headerbar.selection-mode:backdrop, - .selection-mode.titlebar:backdrop:not(headerbar) { - background-color: rgba(38, 139, 210, 0.95); - color: rgba(253, 246, 227, 0.6); } - headerbar.selection-mode .selection-menu, .selection-mode.titlebar:not(headerbar) .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - headerbar.selection-mode .selection-menu GtkArrow, .selection-mode.titlebar:not(headerbar) .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - headerbar.selection-mode .selection-menu .arrow, .selection-mode.titlebar:not(headerbar) .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized headerbar.selection-mode, - .maximized .selection-mode.titlebar:not(headerbar) { - background-color: #268bd2; } - .tiled headerbar, .tiled headerbar:backdrop, - .maximized headerbar, .maximized headerbar:backdrop, - .tiled .titlebar:not(headerbar), - .tiled .titlebar:backdrop:not(headerbar), - .maximized .titlebar:not(headerbar), - .maximized .titlebar:backdrop:not(headerbar) { - border-radius: 0; } - .maximized headerbar, - .maximized .titlebar:not(headerbar) { - background-color: #002b36; - border-color: #001b22; } - .maximized headerbar:backdrop, - .maximized .titlebar:backdrop:not(headerbar) { - background-color: #00313e; } - headerbar.default-decoration, - .csd headerbar.default-decoration, headerbar.default-decoration:backdrop, - .csd headerbar.default-decoration:backdrop, - .default-decoration.titlebar:not(headerbar), - .csd .default-decoration.titlebar:not(headerbar), - .default-decoration.titlebar:backdrop:not(headerbar), - .csd .default-decoration.titlebar:backdrop:not(headerbar) { - min-height: 28px; - padding: 0 3px; - background-color: #002b36; - border-bottom-width: 0; } - .maximized headerbar.default-decoration, .maximized - .csd headerbar.default-decoration, .maximized headerbar.default-decoration:backdrop, .maximized - .csd headerbar.default-decoration:backdrop, - .maximized .default-decoration.titlebar:not(headerbar), - .maximized - .csd .default-decoration.titlebar:not(headerbar), - .maximized .default-decoration.titlebar:backdrop:not(headerbar), - .maximized - .csd .default-decoration.titlebar:backdrop:not(headerbar) { - background-color: #002b36; } - -.titlebar { - border-radius: 3px 3px 0 0; } - -headerbar entry, headerbar button, headerbar separator { - margin-top: 6px; - margin-bottom: 6px; } - -separator:first-child + headerbar, separator:first-child + headerbar:backdrop, headerbar:first-child, headerbar:first-child:backdrop { - border-top-left-radius: 3px; } - .maximized separator:first-child + headerbar, - .tiled separator:first-child + headerbar, .maximized separator:first-child + headerbar:backdrop, - .tiled separator:first-child + headerbar:backdrop, .maximized headerbar:first-child, - .tiled headerbar:first-child, .maximized headerbar:first-child:backdrop, - .tiled headerbar:first-child:backdrop { - border-radius: 0; } - -headerbar:last-child, headerbar:last-child:backdrop { - border-top-right-radius: 3px; } - .maximized headerbar:last-child, - .tiled headerbar:last-child, .maximized headerbar:last-child:backdrop, - .tiled headerbar:last-child:backdrop { - border-radius: 0; } - -window > .titlebar:not(headerbar), window > .titlebar:not(headerbar):backdrop, -window.csd > .titlebar:not(headerbar), -window.csd > .titlebar:not(headerbar):backdrop { - padding: 0; - background: none; - border: none; - box-shadow: none; } - -.titlebar:not(headerbar) > separator { - background-image: linear-gradient(to bottom, rgba(0, 27, 34, 0.97), rgba(0, 27, 34, 0.97)); } - -.primary-toolbar:not(.libreoffice-toolbar) separator, headerbar separator.titlebutton, .titlebar:not(headerbar) separator.titlebutton { - min-width: 1px; - min-height: 1px; - background: none; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(89, 128, 143, 0) 25%, rgba(89, 128, 143, 0.15) 25%, rgba(89, 128, 143, 0.15) 75%, rgba(89, 128, 143, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar:not(.libreoffice-toolbar) separator:backdrop, headerbar separator.titlebutton:backdrop, .titlebar:not(headerbar) separator.titlebutton:backdrop { - opacity: 0.6; } - -.primary-toolbar entry, headerbar entry { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar entry image, headerbar entry image, .primary-toolbar entry image:hover, headerbar entry image:hover { - color: inherit; } - .primary-toolbar entry:backdrop, headerbar entry:backdrop { - opacity: 0.85; } - .primary-toolbar entry:focus, headerbar entry:focus { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar entry:focus image, headerbar entry:focus image { - color: #fdf6e3; } - .primary-toolbar entry:disabled, headerbar entry:disabled { - color: rgba(89, 128, 143, 0.35); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.22); } - .primary-toolbar entry selection:focus, headerbar entry selection:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar entry progress, headerbar entry progress { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar entry.warning, headerbar entry.warning { - color: white; - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(125, 63, 34, 0.988); } - .primary-toolbar entry.warning:focus, headerbar entry.warning:focus { - color: white; - background-color: #cb4b16; } - .primary-toolbar entry.warning selection, headerbar entry.warning selection, .primary-toolbar entry.warning selection:focus, headerbar entry.warning selection:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar entry.error, headerbar entry.error { - color: white; - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(135, 47, 50, 0.988); } - .primary-toolbar entry.error:focus, headerbar entry.error:focus { - color: white; - background-color: #dc322f; } - .primary-toolbar entry.error selection, headerbar entry.error selection, .primary-toolbar entry.error selection:focus, headerbar entry.error selection:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar button, headerbar button { - color: rgba(89, 128, 143, 0.8); - outline-offset: -3px; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar button:backdrop, headerbar button:backdrop { - opacity: 0.7; } - .primary-toolbar button:hover, headerbar button:hover { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar button:active, headerbar button:active, .primary-toolbar button:checked, headerbar button:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar button:disabled, headerbar button:disabled { - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar button:disabled label, headerbar button:disabled label, .primary-toolbar button:disabled, headerbar button:disabled { - color: rgba(89, 128, 143, 0.35); } - .primary-toolbar button:disabled:active, headerbar button:disabled:active, .primary-toolbar button:disabled:checked, headerbar button:disabled:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.selection-mode.primary-toolbar button, headerbar.selection-mode button, .selection-mode.primary-toolbar button.flat, headerbar.selection-mode button.flat, .selection-mode.primary-toolbar button.sidebar-button, headerbar.selection-mode button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar):not(.stack-switcher) button:not(:last-child):not(:only-child), headerbar .linked:not(.vertical):not(.path-bar):not(.stack-switcher) button:not(:last-child):not(:only-child) { - margin-right: 1px; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > button, headerbar .linked:not(.vertical):not(.path-bar) > button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:hover, headerbar .linked:not(.vertical):not(.path-bar) > button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:active, headerbar .linked:not(.vertical):not(.path-bar) > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:checked, headerbar .linked:not(.vertical):not(.path-bar) > button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:disabled, headerbar .linked:not(.vertical):not(.path-bar) > button:disabled { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { - box-shadow: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, .primary-toolbar .linked:not(.vertical).path-bar > button, headerbar .linked:not(.vertical).path-bar > button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover, headerbar .linked:not(.vertical).path-bar > button:hover { - background-color: rgba(0, 193, 243, 0.37); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, .primary-toolbar .linked:not(.vertical).path-bar > button:active, headerbar .linked:not(.vertical).path-bar > button:active, .primary-toolbar .linked:not(.vertical).path-bar > button:checked, headerbar .linked:not(.vertical).path-bar > button:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, .primary-toolbar .linked:not(.vertical).path-bar > button:disabled, headerbar .linked:not(.vertical).path-bar > button:disabled { - color: rgba(89, 128, 143, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button + button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button + button, .primary-toolbar .linked:not(.vertical).path-bar > button + button, headerbar .linked:not(.vertical).path-bar > button + button { - border-left-style: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover, headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37), inset -1px 0 rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.error + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, headerbar .linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry.error, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry.error { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > button:active + entry, headerbar .linked:not(.vertical):not(.path-bar) > button:active + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:checked + entry, headerbar .linked:not(.vertical):not(.path-bar) > button:checked + entry { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar button.suggested-action, headerbar button.suggested-action { - background-clip: border-box; - color: white; - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar button.suggested-action.flat, headerbar button.suggested-action.flat, .primary-toolbar button.suggested-action.sidebar-button, headerbar button.suggested-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; } - .primary-toolbar button.suggested-action:hover, headerbar button.suggested-action:hover { - background-clip: border-box; - color: white; - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar button.suggested-action:active, headerbar button.suggested-action:active, .primary-toolbar button.suggested-action:checked, headerbar button.suggested-action:checked { - background-clip: border-box; - color: white; - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar button.suggested-action.flat:disabled, headerbar button.suggested-action.flat:disabled, .primary-toolbar button.suggested-action.sidebar-button:disabled, headerbar button.suggested-action.sidebar-button:disabled, .primary-toolbar button.suggested-action:disabled, headerbar button.suggested-action:disabled { - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar button.suggested-action.flat:disabled label, headerbar button.suggested-action.flat:disabled label, .primary-toolbar button.suggested-action.sidebar-button:disabled label, headerbar button.suggested-action.sidebar-button:disabled label, .primary-toolbar button.suggested-action.flat:disabled, headerbar button.suggested-action.flat:disabled, .primary-toolbar button.suggested-action.sidebar-button:disabled, headerbar button.suggested-action.sidebar-button:disabled, .primary-toolbar button.suggested-action:disabled label, headerbar button.suggested-action:disabled label, .primary-toolbar button.suggested-action:disabled, headerbar button.suggested-action:disabled { - color: rgba(89, 128, 143, 0.35); } - -.primary-toolbar button.suggested-action:backdrop, headerbar button.suggested-action:backdrop, .primary-toolbar button.suggested-action:backdrop, headerbar button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar button.destructive-action, headerbar button.destructive-action { - background-clip: border-box; - color: white; - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar button.destructive-action.flat, headerbar button.destructive-action.flat, .primary-toolbar button.destructive-action.sidebar-button, headerbar button.destructive-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; } - .primary-toolbar button.destructive-action:hover, headerbar button.destructive-action:hover { - background-clip: border-box; - color: white; - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar button.destructive-action:active, headerbar button.destructive-action:active, .primary-toolbar button.destructive-action:checked, headerbar button.destructive-action:checked { - background-clip: border-box; - color: white; - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar button.destructive-action.flat:disabled, headerbar button.destructive-action.flat:disabled, .primary-toolbar button.destructive-action.sidebar-button:disabled, headerbar button.destructive-action.sidebar-button:disabled, .primary-toolbar button.destructive-action:disabled, headerbar button.destructive-action:disabled { - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar button.destructive-action.flat:disabled label, headerbar button.destructive-action.flat:disabled label, .primary-toolbar button.destructive-action.sidebar-button:disabled label, headerbar button.destructive-action.sidebar-button:disabled label, .primary-toolbar button.destructive-action.flat:disabled, headerbar button.destructive-action.flat:disabled, .primary-toolbar button.destructive-action.sidebar-button:disabled, headerbar button.destructive-action.sidebar-button:disabled, .primary-toolbar button.destructive-action:disabled label, headerbar button.destructive-action:disabled label, .primary-toolbar button.destructive-action:disabled, headerbar button.destructive-action:disabled { - color: rgba(89, 128, 143, 0.35); } - -.primary-toolbar button.destructive-action:backdrop, headerbar button.destructive-action:backdrop, .primary-toolbar button.destructive-action:backdrop, headerbar button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar spinbutton:not(.vertical):focus, headerbar spinbutton:not(.vertical):focus { - color: #fdf6e3; - caret-color: #fdf6e3; } - -.primary-toolbar spinbutton:not(.vertical) button, headerbar spinbutton:not(.vertical) button, .primary-toolbar spinbutton:not(.vertical) button:disabled, headerbar spinbutton:not(.vertical) button:disabled { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - -.primary-toolbar spinbutton:not(.vertical) button:hover, headerbar spinbutton:not(.vertical) button:hover { - background-color: rgba(0, 193, 243, 0.37); } - -.primary-toolbar spinbutton:not(.vertical) button:active, headerbar spinbutton:not(.vertical) button:active, .primary-toolbar spinbutton:not(.vertical) button:checked, headerbar spinbutton:not(.vertical) button:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - -.primary-toolbar spinbutton:not(.vertical) button:disabled, headerbar spinbutton:not(.vertical) button:disabled { - color: rgba(89, 128, 143, 0.4); } - -.primary-toolbar spinbutton:not(.vertical) > button + button, headerbar spinbutton:not(.vertical) > button + button { - border-left-style: none; } - -.primary-toolbar spinbutton:not(.vertical) > button:hover:not(:active), headerbar spinbutton:not(.vertical) > button:hover:not(:active), .primary-toolbar spinbutton:not(.vertical) > button:hover + button, headerbar spinbutton:not(.vertical) > button:hover + button { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - -.primary-toolbar spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), headerbar spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), .primary-toolbar spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled, headerbar spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - -.primary-toolbar spinbutton:not(.vertical) > button:first-child:hover:not(:active), headerbar spinbutton:not(.vertical) > button:first-child:hover:not(:active), .primary-toolbar spinbutton:not(.vertical) > entry + button:not(:active):hover, headerbar spinbutton:not(.vertical) > entry + button:not(:active):hover { - box-shadow: none; } - -.primary-toolbar spinbutton:not(.vertical) > entry:focus + button, headerbar spinbutton:not(.vertical) > entry:focus + button { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar combobox:disabled, headerbar combobox:disabled { - color: rgba(89, 128, 143, 0.2); } - -.primary-toolbar combobox > .linked > button.combo, headerbar combobox > .linked > button.combo { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar combobox > .linked > button.combo image, headerbar combobox > .linked > button.combo image, .primary-toolbar combobox > .linked > button.combo image:hover, headerbar combobox > .linked > button.combo image:hover { - color: inherit; } - .primary-toolbar combobox > .linked > button.combo:hover, headerbar combobox > .linked > button.combo:hover { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; - box-shadow: none; } - .primary-toolbar combobox > .linked > button.combo:disabled, headerbar combobox > .linked > button.combo:disabled { - color: rgba(89, 128, 143, 0.35); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.22); } - -.primary-toolbar combobox > .linked > entry.combo:dir(ltr), headerbar combobox > .linked > entry.combo:dir(ltr) { - border-right-style: none; } - .primary-toolbar combobox > .linked > entry.combo:dir(ltr):focus, headerbar combobox > .linked > entry.combo:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar combobox > .linked > entry.combo:dir(rtl), headerbar combobox > .linked > entry.combo:dir(rtl) { - border-left-style: none; } - .primary-toolbar combobox > .linked > entry.combo:dir(rtl):focus, headerbar combobox > .linked > entry.combo:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar combobox > .linked > button.combo:dir(ltr), headerbar combobox > .linked > button.combo:dir(ltr), .primary-toolbar combobox > .linked > button.combo:dir(ltr):hover, headerbar combobox > .linked > button.combo:dir(ltr):hover, .primary-toolbar combobox > .linked > button.combo:dir(ltr):active, headerbar combobox > .linked > button.combo:dir(ltr):active, .primary-toolbar combobox > .linked > button.combo:dir(ltr):checked, headerbar combobox > .linked > button.combo:dir(ltr):checked, .primary-toolbar combobox > .linked > button.combo:dir(ltr):disabled, headerbar combobox > .linked > button.combo:dir(ltr):disabled { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - -.primary-toolbar combobox > .linked > button.combo:dir(rtl), headerbar combobox > .linked > button.combo:dir(rtl), .primary-toolbar combobox > .linked > button.combo:dir(rtl):hover, headerbar combobox > .linked > button.combo:dir(rtl):hover, .primary-toolbar combobox > .linked > button.combo:dir(rtl):active, headerbar combobox > .linked > button.combo:dir(rtl):active, .primary-toolbar combobox > .linked > button.combo:dir(rtl):checked, headerbar combobox > .linked > button.combo:dir(rtl):checked, .primary-toolbar combobox > .linked > button.combo:dir(rtl):disabled, headerbar combobox > .linked > button.combo:dir(rtl):disabled { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.primary-toolbar switch:backdrop, headerbar switch:backdrop { - opacity: 0.75; } - -.primary-toolbar progressbar trough, headerbar progressbar trough { - background-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar progressbar:backdrop, headerbar progressbar:backdrop { - opacity: 0.75; } - -.primary-toolbar scale:backdrop, headerbar scale:backdrop { - opacity: 0.75; } - -.primary-toolbar scale slider, headerbar scale slider { - background-color: #005469; - border-color: rgba(0, 0, 0, 0.67); } - .primary-toolbar scale slider:hover, headerbar scale slider:hover { - background-color: #006883; - border-color: rgba(0, 0, 0, 0.67); } - .primary-toolbar scale slider:active, headerbar scale slider:active { - background-color: #268bd2; - border-color: #268bd2; } - .primary-toolbar scale slider:disabled, headerbar scale slider:disabled { - background-color: rgba(0, 72, 90, 0.991); - border-color: rgba(0, 0, 0, 0.67); } - -.primary-toolbar scale trough, headerbar scale trough { - background-color: rgba(0, 0, 0, 0.37); } - .primary-toolbar scale trough:disabled, headerbar scale trough:disabled { - background-color: rgba(0, 0, 0, 0.27); } - -.path-bar button.text-button, .path-bar button.image-button, .path-bar button { - padding-left: 6px; - padding-right: 6px; } - -.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: 10px; } - -.path-bar button.text-button.image-button label:first-child, .path-bar button label:first-child { - padding-left: 10px; } - -.path-bar button.slider-button, .path-bar button:not(.image-button):not(.text-button) { - padding-left: 1px; - padding-right: 1px; } - -.path-bar button image { - padding-left: 4px; - padding-right: 4px; } - -treeview.view { - border-left-color: rgba(101, 123, 131, 0.15); - border-top-color: rgba(0, 0, 0, 0.1); } - * { - -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 acceleditor > label { - background-color: #268bd2; } - treeview.view:selected, treeview.view:selected:focus { - border-radius: 0; - border-left-color: #92c1db; - border-top-color: rgba(101, 123, 131, 0.1); } - treeview.view:disabled { - color: rgba(101, 123, 131, 0.45); } - treeview.view:disabled:selected { - color: #7cb6d9; } - treeview.view.separator { - min-height: 2px; - color: rgba(0, 0, 0, 0.1); } - treeview.view:drop(active) { - border-style: solid none; - border-width: 1px; - border-color: #4683ab; } - 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: #365963; } - treeview.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - treeview.view.expander:hover { - color: #657b83; } - treeview.view.expander:selected { - color: #bdd6de; } - treeview.view.expander:selected:hover { - color: #fdf6e3; } - treeview.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - treeview.view.progressbar, treeview.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-color: #268bd2; } - treeview.view.progressbar:selected, treeview.view.progressbar:selected:focus, treeview.view.progressbar:focus:selected, treeview.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-color: #fdf6e3; } - treeview.view.trough { - color: #657b83; - background-color: #001317; - border-radius: 3px; - border-width: 0; } - treeview.view.trough:selected, treeview.view.trough:selected:focus { - color: #fdf6e3; - background-color: rgba(0, 0, 0, 0.2); - border-radius: 3px; - border-width: 0; } - treeview.view header button { - min-height: 0; - min-width: 0; - padding: 3px 6px; - font-weight: bold; - color: #526d76; - background-color: #073642; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, #073642 20%, rgba(255, 255, 255, 0.11) 20%, rgba(255, 255, 255, 0.11) 80%, #073642 80%) 0 1 0 0/0 1px 0 0 stretch; } - treeview.view header button:hover { - color: #268bd2; } - treeview.view header button:active { - color: #657b83; } - treeview.view header button:active, treeview.view header button:hover { - background-color: #073642; } - treeview.view header button:active:hover { - color: #657b83; } - treeview.view header button:disabled { - border-color: #002b36; - background-image: none; } - treeview.view header button:last-child { - border-right-style: none; - border-image: none; } - treeview.view button.dnd, treeview.view button.dnd:selected, treeview.view button.dnd:hover, treeview.view button.dnd:active, - treeview.view header.button.dnd, - treeview.view header.button.dnd:selected, - treeview.view header.button.dnd:hover, - treeview.view header.button.dnd:active { - padding: 0 6px; - transition: none; - color: #fdf6e3; - background-color: #268bd2; - border-radius: 0; - border-style: none; } - -menubar, -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #002b36; - color: rgba(89, 128, 143, 0.8); } - menubar:backdrop, - .menubar:backdrop { - color: rgba(89, 128, 143, 0.5); } - menubar > menuitem, - .menubar > menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - menubar > menuitem:hover, - .menubar > menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - menubar > menuitem:disabled, - .menubar > menuitem:disabled { - color: rgba(89, 128, 143, 0.2); - border-color: transparent; } - -menu, -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #002b36; - border: 1px solid #001317; } - .csd menu, .csd - .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - menu separator, - .csd menu separator, - .menu separator, - .csd - .menu separator { - margin: 2px 0; - background-color: #002b36; } - menu .separator:not(label), - .csd menu .separator:not(label), - .menu .separator:not(label), - .csd - .menu .separator:not(label) { - color: #002b36; } - menu menuitem, - .menu menuitem { - min-height: 16px; - min-width: 40px; - padding: 5px; } - menu menuitem:hover, - .menu menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - menu menuitem:disabled, - .menu menuitem:disabled { - color: rgba(101, 123, 131, 0.45); } - menu menuitem arrow, - .menu menuitem arrow { - min-height: 16px; - min-width: 16px; } - menu menuitem arrow:dir(ltr), - .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) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); - margin-right: 10px; } - 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: 6px; - margin-left: 2px; } - menuitem check:dir(rtl), menuitem radio:dir(rtl) { - margin-left: 6px; - margin-right: 2px; } - menu > arrow, - .menu > arrow { - border-color: transparent; - background-color: transparent; - background-image: none; - min-width: 16px; - min-height: 16px; - padding: 4px; - background-color: #002b36; - border-radius: 0; } - menu > arrow.top, - .menu > arrow.top { - margin-top: -6px; - border-bottom: 1px solid #103d49; - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } - menu > arrow.bottom, - .menu > arrow.bottom { - margin-bottom: -6px; - border-top: 1px solid #103d49; - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - menu > arrow:hover, - .menu > arrow:hover { - background-color: #103d49; } - menu > arrow:disabled, - .menu > arrow:disabled { - color: transparent; - background-color: transparent; - border-color: transparent; } - -popover, -popover.background { - padding: 2px; - border-radius: 3px; - background-clip: border-box; - background-color: #002b36; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } - .csd popover, popover, .csd - popover.background, - popover.background { - border: 1px solid black; } - popover separator, - popover.background separator { - background-color: #002b36; } - popover > list, - popover > .view, - popover > iconview, - popover > toolbar, - popover > .inline-toolbar, - popover.background > list, - popover.background > .view, - popover.background > iconview, - popover.background > toolbar, - popover.background > .inline-toolbar { - border-style: none; - background-color: transparent; } - -cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -notebook { - padding: 0; } - notebook.frame { - border: 1px solid #001317; } - notebook.frame > header { - margin: -1px; } - notebook.frame > header.top { - margin-bottom: 0; } - notebook.frame > header.bottom { - margin-top: 0; } - notebook.frame > header.left { - margin-right: 0; } - notebook.frame > header.right { - margin-left: 0; } - notebook.frame > header.top, notebook.frame > header.bottom { - padding-left: 0; - padding-right: 0; } - notebook.frame > header.left, notebook.frame > header.right { - padding-top: 0; - padding-bottom: 0; } - notebook > stack:not(:only-child) { - background-color: #073642; } - notebook > header { - padding: 2px; - background-color: #002b36; } - notebook > header.top { - box-shadow: inset 0 -1px #001317; } - notebook > header.bottom { - box-shadow: inset 0 1px #001317; } - notebook > header.right { - box-shadow: inset 1px 0 #001317; } - notebook > header.left { - box-shadow: inset -1px 0 #001317; } - notebook > header.top { - padding-bottom: 0; } - notebook > header.top > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-bottom: none; - border-radius: 1px 1px 0 0; } - notebook > header.top > tabs > tab + tab { - margin-left: -1px; } - notebook > header.bottom { - padding-top: 0; } - notebook > header.bottom > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-top: none; - border-radius: 0 0 1px 1px; } - notebook > header.bottom > tabs > tab + tab { - margin-left: -1px; } - notebook > header.right { - padding-left: 0; } - notebook > header.right > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-left: none; - border-radius: 0 1px 1px 0; } - notebook > header.right > tabs > tab + tab { - margin-top: -1px; } - notebook > header.left { - padding-right: 0; } - notebook > header.left > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-right: none; - border-radius: 1px 0 0 1px; } - notebook > header.left > tabs > tab + tab { - margin-top: -1px; } - notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - notebook > header.top > tabs > arrow.up:last-child, notebook > header.bottom > tabs > arrow.up:last-child { - margin-left: 2px; } - 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.down:first-child, notebook > header.bottom > tabs > arrow.down:first-child { - margin-right: 2px; } - notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - notebook > header.left > tabs > arrow.up:last-child, notebook > header.right > tabs > arrow.up:last-child { - margin-top: 2px; } - 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.down:first-child, notebook > header.right > tabs > arrow.down:first-child { - margin-bottom: 2px; } - notebook > header > tabs > arrow { - color: rgba(101, 123, 131, 0.45); } - notebook > header > tabs > arrow:hover { - color: rgba(101, 123, 131, 0.725); } - notebook > header > tabs > arrow:active { - color: #657b83; } - notebook > header > tabs > arrow:disabled { - color: rgba(101, 123, 131, 0.15); } - notebook > header.top > tabs > tab:hover:not(:checked) { - box-shadow: inset 0 -1px #001317; } - notebook > header.bottom > tabs > tab:hover:not(:checked) { - box-shadow: inset 0 1px #001317; } - notebook > header.left > tabs > tab:hover:not(:checked) { - box-shadow: inset -1px 0 #001317; } - notebook > header.right > tabs > tab:hover:not(:checked) { - box-shadow: inset 1px 0 #001317; } - notebook > header > tabs > tab { - color: rgba(101, 123, 131, 0.45); - background-color: rgba(7, 54, 66, 0); } - notebook > header > tabs > tab:hover:not(:checked) { - color: rgba(101, 123, 131, 0.725); - background-color: rgba(7, 54, 66, 0.5); - border-color: #001317; } - notebook > header > tabs > tab:checked { - color: #657b83; - background-color: #073642; - border-color: #001317; } - notebook > header > tabs > tab button.flat, notebook > header > tabs > tab button.sidebar-button { - min-height: 22px; - min-width: 16px; - padding: 0; - color: #425f68; } - notebook > header > tabs > tab button.flat:hover, notebook > header > tabs > tab button.sidebar-button:hover { - color: #ff4d4d; } - notebook > header > tabs > tab button.flat:active, notebook > header > tabs > tab button.sidebar-button:active, notebook > header > tabs > tab button.flat:active:hover, notebook > header > tabs > tab button.sidebar-button:active:hover { - color: #268bd2; } - -scrollbar { - background-color: #07323d; - 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 #001317; } - scrollbar.bottom { - border-top: 1px solid #001317; } - scrollbar.left { - border-right: 1px solid #001317; } - scrollbar.right { - border-left: 1px solid #001317; } - scrollbar button { - border: none; } - 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-right-symbolic"); } - scrollbar.horizontal button.up { - -gtk-icon-source: -gtk-icontheme("pan-left-symbolic"); } - scrollbar slider { - min-width: 6px; - min-height: 6px; - margin: -1px; - border: 4px solid transparent; - border-radius: 8px; - background-clip: padding-box; - background-color: #284b55; } - scrollbar slider:hover { - background-color: #1e434d; } - scrollbar slider:hover:active { - background-color: #268bd2; } - 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) { - opacity: 0.4; - border-color: transparent; - background-color: transparent; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { - margin: 0; - min-width: 4px; - min-height: 4px; - background-color: #47636c; - border: 1px solid rgba(0, 0, 0, 0.3); } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { - margin: 0 2px; - min-width: 40px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { - margin: 2px 0; - min-height: 40px; } - scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { - opacity: 0.99; } - scrollbar.horizontal slider { - min-width: 40px; } - scrollbar.vertical slider { - min-height: 40px; } - -switch { - font-size: 1px; - min-width: 52px; - min-height: 24px; - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: center center; } - switch slider { - min-width: 1px; - min-height: 1px; } - switch, switch slider { - outline-color: transparent; - color: transparent; - border: none; - box-shadow: none; } - -switch { - background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } - -menuitem:hover switch, -row:selected switch, -infobar switch { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -headerbar switch, -.primary-toolbar switch { - background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } - -switch:checked { - background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } - -menuitem:hover switch:checked, -row:selected switch:checked, -infobar switch:checked { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -headerbar switch:checked, -.primary-toolbar switch:checked { - background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } - -switch:disabled { - background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } - -menuitem:hover switch:disabled, -row:selected switch:disabled, -infobar switch:disabled { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -headerbar switch:disabled, -.primary-toolbar switch:disabled { - background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } - -switch:checked:disabled { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } - -menuitem:hover switch:checked:disabled, -row:selected switch:checked:disabled, -infobar switch:checked:disabled { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -headerbar switch:checked:disabled, -.primary-toolbar switch:checked:disabled { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } - -.check, -check, -treeview.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -.osd check, filechooser actionbar check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -menuitem check:hover, -.view check:selected, iconview check:selected, -treeview.check:selected, -row:selected check, -infobar check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:disabled, -check:disabled, -treeview.check:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -.osd check:disabled, filechooser actionbar check:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -menuitem check:disabled:hover, -.view check:disabled:selected, iconview check:disabled:selected, -treeview.check:disabled:selected, -row:selected check:disabled, -infobar check:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:indeterminate, -check:indeterminate, -treeview.check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -.osd check:indeterminate, filechooser actionbar check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -menuitem check:indeterminate:hover, -.view check:indeterminate:selected, iconview check:indeterminate:selected, -treeview.check:indeterminate:selected, -row:selected check:indeterminate, -infobar check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:indeterminate:disabled, -check:indeterminate:disabled, -treeview.check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -.osd check:indeterminate:disabled, filechooser actionbar check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -menuitem check:indeterminate:disabled:hover, -.view check:indeterminate:disabled:selected, iconview check:indeterminate:disabled:selected, -treeview.check:indeterminate:disabled:selected, -row:selected check:indeterminate:disabled, -infobar check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked, -check:checked, -treeview.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -.osd check:checked, filechooser actionbar check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -menuitem check:checked:hover, -.view check:checked:selected, iconview check:checked:selected, -treeview.check:checked:selected, -row:selected check:checked, -infobar check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:disabled, -check:checked:disabled, -treeview.check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -.osd check:checked:disabled, filechooser actionbar check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -menuitem check:checked:disabled:hover, -.view check:checked:disabled:selected, iconview check:checked:disabled:selected, -treeview.check:checked:disabled:selected, -row:selected check:checked:disabled, -infobar check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio, -radio, -treeview.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -.osd radio, filechooser actionbar radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -menuitem radio:hover, -.view radio:selected, iconview radio:selected, -treeview.radio:selected, -row:selected radio, -infobar radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:disabled, -radio:disabled, -treeview.radio:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -.osd radio:disabled, filechooser actionbar radio:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -menuitem radio:disabled:hover, -.view radio:disabled:selected, iconview radio:disabled:selected, -treeview.radio:disabled:selected, -row:selected radio:disabled, -infobar radio:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:indeterminate, -radio:indeterminate, -treeview.radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -.osd radio:indeterminate, filechooser actionbar radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -menuitem radio:indeterminate:hover, -.view radio:indeterminate:selected, iconview radio:indeterminate:selected, -treeview.radio:indeterminate:selected, -row:selected radio:indeterminate, -infobar radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:indeterminate:disabled, -radio:indeterminate:disabled, -treeview.radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -.osd radio:indeterminate:disabled, filechooser actionbar radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -menuitem radio:indeterminate:disabled:hover, -.view radio:indeterminate:disabled:selected, iconview radio:indeterminate:disabled:selected, -treeview.radio:indeterminate:disabled:selected, -row:selected radio:indeterminate:disabled, -infobar radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked, -radio:checked, -treeview.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -.osd radio:checked, filechooser actionbar radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -menuitem radio:checked:hover, -.view radio:checked:selected, iconview radio:checked:selected, -treeview.radio:checked:selected, -row:selected radio:checked, -infobar radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:disabled, -radio:checked:disabled, -treeview.radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -.osd radio:checked:disabled, filechooser actionbar radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -menuitem radio:checked:disabled:hover, -.view radio:checked:disabled:selected, iconview radio:checked:disabled:selected, -treeview.radio:checked:disabled:selected, -row:selected radio:checked:disabled, -infobar radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -.view.content-view.check:not(list), iconview.content-view.check:not(list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); - background-color: transparent; } - -.view.content-view.check:checked:not(list), iconview.content-view.check:checked:not(list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@2.png")); - background-color: transparent; } - -checkbutton.text-button, radiobutton.text-button { - padding: 2px 0; - outline-offset: 0; } - -checkbutton label:not(:only-child):first-child, radiobutton label:not(:only-child):first-child { - margin-left: 4px; } - -checkbutton label:not(:only-child):last-child, radiobutton label:not(:only-child):last-child { - margin-right: 4px; } - -check, -radio { - min-width: 16px; - min-height: 16px; - margin: 0 2px; } - check:only-child, - menu menuitem check, - radio:only-child, - menu menuitem - radio { - margin: 0; } - -scale { - min-height: 15px; - min-width: 15px; - padding: 3px; } - scale.horizontal trough { - padding: 0 4px; } - scale.horizontal highlight, scale.horizontal fill { - margin: 0 -4px; } - scale.vertical trough { - padding: 4px 0; } - scale.vertical highlight, scale.vertical fill { - margin: -4px 0; } - scale slider { - min-height: 15px; - min-width: 15px; - margin: -6px; } - scale.fine-tune slider { - margin: -4px; } - 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: 4.5px; - border-radius: 2.5px; - background-color: #00171d; } - scale trough:disabled { - background-color: rgba(0, 23, 29, 0.55); } - .osd scale trough { - background-color: rgba(10, 80, 98, 0.95); } - .osd scale trough highlight { - background-color: #268bd2; } - menuitem:hover scale trough, - row:selected scale trough, - infobar scale trough { - background-color: rgba(0, 0, 0, 0.2); } - menuitem:hover scale trough highlight, - row:selected scale trough highlight, - infobar scale trough highlight { - background-color: #fdf6e3; } - menuitem:hover scale trough highlight:disabled, - row:selected scale trough highlight:disabled, - infobar scale trough highlight:disabled { - background-color: #9cc6db; } - menuitem:hover scale trough:disabled, - row:selected scale trough:disabled, - infobar scale trough:disabled { - background-color: rgba(0, 0, 0, 0.1); } - scale highlight { - border-radius: 2.5px; - background-color: #268bd2; } - scale highlight:disabled { - background-color: rgba(38, 139, 210, 0.55); } - scale fill { - border-radius: 2.5px; - background-color: rgba(38, 139, 210, 0.5); } - scale fill:disabled { - background-color: transparent; } - scale slider { - background-color: #083e4b; - border: 1px solid #000b0d; - border-radius: 100%; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-property: background, border; } - scale slider:hover { - background-color: #0a5062; } - scale slider:active { - background-clip: border-box; - background-color: #268bd2; - border-color: #268bd2; } - scale slider:disabled { - background-color: #04313d; - border-color: rgba(0, 11, 13, 0.8); } - menuitem:hover scale slider, - row:selected scale slider, - infobar scale slider { - background-clip: border-box; - background-color: #fdf6e3; - border-color: #fdf6e3; } - menuitem:hover scale slider:hover, - row:selected scale slider:hover, - infobar scale slider:hover { - background-color: #dde6e0; - border-color: #dde6e0; } - menuitem:hover scale slider:active, - row:selected scale slider:active, - infobar scale slider:active { - background-color: #92c1db; - border-color: #92c1db; } - menuitem:hover scale slider:disabled, - row:selected scale slider:disabled, - infobar scale slider:disabled { - background-color: #9cc6db; - border-color: #9cc6db; } - .osd scale slider { - background-clip: border-box; - background-color: #268bd2; - border-color: #268bd2; } - .osd scale slider:hover { - background-color: #4ca2df; - border-color: #4ca2df; } - .osd scale slider:active { - background-color: #1e6ea7; - border-color: #1e6ea7; } - scale value { - color: alpha(currentColor,0.4); } - scale marks { - color: alpha(currentColor,0.4); } - scale marks.top { - margin-bottom: 1px; - margin-top: -4px; } - scale marks.bottom { - margin-top: 1px; - margin-bottom: -4px; } - scale marks.top { - margin-right: 1px; - margin-left: -4px; } - scale marks.bottom { - margin-left: 1px; - margin-right: -4px; } - scale.fine-tune marks.top { - margin-bottom: 0px; - margin-top: -2px; } - scale.fine-tune marks.bottom { - margin-top: 0px; - margin-bottom: -2px; } - scale.fine-tune marks.top { - margin-right: 0px; - margin-left: -2px; } - scale.fine-tune marks.bottom { - margin-left: 0px; - margin-right: -2px; } - scale.horizontal indicator { - min-height: 3px; - min-width: 1px; } - scale.horizontal.fine-tune indicator { - min-height: 2px; } - scale.vertical indicator { - min-height: 1px; - min-width: 3px; } - scale.vertical.fine-tune indicator { - min-width: 2px; } - -progressbar { - padding: 0; - font-size: smaller; - color: rgba(101, 123, 131, 0.7); } - progressbar.osd { - min-width: 3px; - min-height: 3px; - background-color: transparent; } - progressbar.osd trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - progressbar progress { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - row:selected progressbar progress, - infobar progressbar progress { - background-color: #fdf6e3; } - progressbar trough { - border: none; - border-radius: 3px; - background-color: #00171d; } - row:selected progressbar trough, - infobar progressbar trough { - background-color: rgba(0, 0, 0, 0.2); } - -levelbar block { - min-width: 32px; - min-height: 1px; } - -levelbar.vertical block { - min-width: 1px; - min-height: 32px; } - -levelbar trough { - border: none; - padding: 3px; - border-radius: 3px; - background-color: #00171d; } - -levelbar.horizontal.discrete block { - margin: 0 1px; } - -levelbar.vertical.discrete block { - margin: 1px 0; } - -levelbar block:not(.empty) { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - -levelbar block.low { - border-color: #cb4b16; - background-color: #cb4b16; } - -levelbar block.high { - border-color: #268bd2; - background-color: #268bd2; } - -levelbar block.full { - border-color: #859900; - background-color: #859900; } - -levelbar block.empty { - background-color: #073642; - border-color: #073642; } - -printdialog paper { - border: 1px solid #001317; - background: #073642; - padding: 0; } - -printdialog .dialog-action-box { - margin: 12px; } - -frame > border, -.frame { - margin: 0; - padding: 0; - border-radius: 0; - border: 1px solid #001317; } - -frame.flat > border, -frame > border.flat, -.frame.flat { - border-style: none; } - -scrolledwindow viewport.frame { - border-style: none; } - -scrolledwindow overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 100%; - background-repeat: no-repeat; - background-position: right center; - background-color: transparent; - border: none; - box-shadow: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow junction { - border-color: transparent; - border-image: linear-gradient(to bottom, #001317 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #07323d; } - scrolledwindow junction:dir(rtl) { - border-image-slice: 0 1 0 0; } - -separator { - background-color: rgba(0, 0, 0, 0.1); - min-width: 1px; - min-height: 1px; } - -list { - background-color: #073642; - border-color: #001317; } - list row { - padding: 2px; } - -row:not(:hover) { - transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - -row.activatable.has-open-popup, row.activatable:hover { - background-color: rgba(255, 255, 255, 0.03); } - -row.activatable:active { - color: #657b83; } - -row.activatable:disabled { - color: rgba(101, 123, 131, 0.45); } - row.activatable:disabled image { - color: inherit; } - -row.activatable:selected:active { - color: #fdf6e3; } - -row.activatable:selected.has-open-popup, row.activatable:selected:hover { - background-color: #227dbd; } - -.app-notification { - padding: 10px; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: rgba(2, 16, 20, 0.95); } - .app-notification border { - border: none; } - .app-notification button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .app-notification button.flat, .app-notification button.sidebar-button { - border-color: rgba(38, 139, 210, 0); } - .app-notification button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .app-notification button:active, .app-notification button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -expander arrow { - min-width: 16px; - min-height: 16px; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - expander arrow:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - expander arrow:hover { - color: #b8c4c9; } - expander arrow:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -calendar { - color: #657b83; - border: 1px solid #001317; - border-radius: 3px; - padding: 2px; } - calendar:selected { - border-radius: 1.5px; } - calendar.header { - color: #657b83; - border: none; } - calendar.button { - color: rgba(101, 123, 131, 0.45); } - calendar.button:hover { - color: #657b83; } - calendar.button:disabled { - color: rgba(101, 123, 131, 0.45); } - calendar:indeterminate { - color: alpha(currentColor,0.55); } - calendar.highlight { - color: #657b83; } - -messagedialog .titlebar { - min-height: 20px; - background-color: rgba(0, 43, 54, 0.97); - border-bottom: 1px solid rgba(0, 15, 18, 0.97); } - -messagedialog .dialog-action-area button { - padding: 8px; - min-height: 0; } - -messagedialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - -messagedialog.csd .dialog-action-area button { - border-bottom-style: none; } - -messagedialog.csd .dialog-action-area button { - border-radius: 0; - border-right-style: none; } - -messagedialog.csd .dialog-action-area button:last-child { - border-radius: 0 0 3px 0; - border-right-style: none; } - -messagedialog.csd .dialog-action-area button:first-child { - border-radius: 0 0 0 3px; - border-left-style: none; } - -messagedialog.csd .dialog-action-area button:only-child { - border-radius: 0 0 3px 3px; - border-left-style: none; - border-right-style: none; } - -filechooser #pathbarbox { - border-bottom: 1px solid rgba(0, 19, 23, 0.5); } - -filechooserbutton:drop(active) { - box-shadow: none; - border-color: transparent; } - -.sidebar { - border-style: none; - background-color: #003340; } - stacksidebar.sidebar:dir(ltr) list, - stacksidebar.sidebar.left list, - stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) { - border-right: 1px solid #001317; - border-left-style: none; } - stacksidebar.sidebar:dir(rtl) list, - stacksidebar.sidebar.right list, .sidebar:dir(rtl), .sidebar.right { - border-left: 1px solid #001317; - border-right-style: none; } - .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; } - -placessidebar > viewport.frame { - border-style: none; } - -placessidebar row { - min-height: 30px; - padding: 0px; } - placessidebar row > revealer { - padding: 0 10px; } - 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-width: 22px; - min-height: 22px; - margin-top: 2px; - margin-bottom: 2px; - padding: 0; - border-radius: 100%; - -gtk-outline-radius: 100%; } - button.sidebar-button:not(:hover):not(:active) > image { - opacity: 0.5; } - placessidebar row.sidebar-placeholder-row { - padding: 0 8px; - min-height: 2px; - background-image: linear-gradient(to bottom, #b58900, #b58900); - background-clip: content-box; } - placessidebar row.sidebar-new-bookmark-row { - color: #268bd2; } - placessidebar row:drop(active):not(:disabled) { - box-shadow: inset 0 1px #b58900, inset 0 -1px #b58900; } - placessidebar row:drop(active):not(:disabled), placessidebar row:drop(active):not(:disabled) label, placessidebar row:drop(active):not(:disabled) image { - color: #b58900; } - placessidebar row:drop(active):not(:disabled):selected { - background-color: #b58900; } - placessidebar row:drop(active):not(:disabled):selected, placessidebar row:drop(active):not(:disabled):selected label, placessidebar row:drop(active):not(:disabled):selected image { - color: #fdf6e3; } - -placesview .server-list-button > image { - -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 > actionbar > revealer > box > label { - padding-left: 8px; - padding-right: 8px; } - -paned > separator { - min-width: 1px; - min-height: 1px; - -gtk-icon-source: none; - border-style: none; - background-color: transparent; - background-image: linear-gradient(to bottom, #001317, #001317); - background-size: 1px 1px; } - paned > separator:selected { - background-image: linear-gradient(to bottom, #268bd2, #268bd2); } - paned > separator.wide { - min-width: 5px; - min-height: 5px; - background-color: #002b36; - background-image: linear-gradient(to bottom, #001317, #001317), linear-gradient(to bottom, #001317, #001317); - background-size: 1px 1px, 1px 1px; } - -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; } - -infobar { - border-style: none; } - infobar.info, infobar.question, infobar.warning, infobar.error { - background-color: #268bd2; - color: #fdf6e3; - caret-color: currentColor; } - infobar.info selection, infobar.question selection, infobar.warning selection, infobar.error selection { - color: #268bd2; - background-color: #fdf6e3; } - -.selection-mode.primary-toolbar button:hover, headerbar.selection-mode button:hover, row:selected button, infobar.info button, infobar.question button, infobar.warning button, infobar.error button, .nautilus-window .floating-bar button { - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - -row:selected button.flat, row:selected button.sidebar-button, infobar.info button.flat, infobar.info button.sidebar-button, infobar.question button.flat, infobar.question button.sidebar-button, infobar.warning button.flat, infobar.warning button.sidebar-button, infobar.error button.flat, infobar.error button.sidebar-button, .nautilus-window .floating-bar button.flat, .nautilus-window .floating-bar button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .selection-mode.primary-toolbar button:disabled, headerbar.selection-mode button:disabled, row:selected button.flat:disabled, row:selected button.sidebar-button:disabled, infobar.info button.flat:disabled, infobar.info button.sidebar-button:disabled, infobar.question button.flat:disabled, infobar.question button.sidebar-button:disabled, infobar.warning button.flat:disabled, infobar.warning button.sidebar-button:disabled, infobar.error button.flat:disabled, infobar.error button.sidebar-button:disabled, .nautilus-window .floating-bar button.flat:disabled, .nautilus-window .floating-bar button.sidebar-button:disabled, .selection-mode.primary-toolbar button:disabled label, headerbar.selection-mode button:disabled label, row:selected button.flat:disabled label, row:selected button.sidebar-button:disabled label, infobar.info button.flat:disabled label, infobar.info button.sidebar-button:disabled label, infobar.question button.flat:disabled label, infobar.question button.sidebar-button:disabled label, infobar.warning button.flat:disabled label, infobar.warning button.sidebar-button:disabled label, infobar.error button.flat:disabled label, infobar.error button.sidebar-button:disabled label, .nautilus-window .floating-bar button.flat:disabled label, .nautilus-window .floating-bar button.sidebar-button:disabled label { - color: rgba(253, 246, 227, 0.4); } - -row:selected button:hover, infobar.info button:hover, infobar.question button:hover, infobar.warning button:hover, infobar.error button:hover, .nautilus-window .floating-bar button:hover { - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - -.selection-mode.primary-toolbar button:active, headerbar.selection-mode button:active, .selection-mode.primary-toolbar button:checked, headerbar.selection-mode button:checked, row:selected button:active, infobar.info button:active, infobar.question button:active, infobar.warning button:active, infobar.error button:active, .nautilus-window .floating-bar button:active, .selection-mode.primary-toolbar button:hover:active, headerbar.selection-mode button:hover:active, .selection-mode.primary-toolbar button:hover:checked, headerbar.selection-mode button:hover:checked, row:selected button:active:hover, infobar.info button:active:hover, infobar.question button:active:hover, infobar.warning button:active:hover, infobar.error button:active:hover, .nautilus-window .floating-bar button:active:hover, row:selected button:checked, infobar.info button:checked, infobar.question button:checked, infobar.warning button:checked, infobar.error button:checked, .nautilus-window .floating-bar button:checked { - color: #268bd2; - background-color: #fdf6e3; - border-color: #fdf6e3; } - -row:selected button:disabled, infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, .nautilus-window .floating-bar button:disabled { - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.4); } - row:selected button:disabled, infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, .nautilus-window .floating-bar button:disabled, row:selected button:disabled label, infobar.info button:disabled label, infobar.question button:disabled label, infobar.warning button:disabled label, infobar.error button:disabled label, .nautilus-window .floating-bar button:disabled label { - color: rgba(253, 246, 227, 0.5); } - .selection-mode.primary-toolbar button:disabled:active, headerbar.selection-mode button:disabled:active, .selection-mode.primary-toolbar button:disabled:checked, headerbar.selection-mode button:disabled:checked, row:selected button:disabled:active, infobar.info button:disabled:active, infobar.question button:disabled:active, infobar.warning button:disabled:active, infobar.error button:disabled:active, .nautilus-window .floating-bar button:disabled:active, .selection-mode.primary-toolbar button:disabled:checked, headerbar.selection-mode button:disabled:checked, .selection-mode.primary-toolbar button:disabled:active, headerbar.selection-mode button:disabled:active, row:selected button:disabled:checked, infobar.info button:disabled:checked, infobar.question button:disabled:checked, infobar.warning button:disabled:checked, infobar.error button:disabled:checked, .nautilus-window .floating-bar button:disabled:checked { - color: #268bd2; - background-color: rgba(253, 246, 227, 0.5); - border-color: rgba(253, 246, 227, 0.4); } - -tooltip { - border-radius: 2px; - box-shadow: none; } - tooltip.background { - background-color: rgba(12, 92, 112, 0.95); - background-clip: padding-box; } - tooltip.background label { - padding: 4px; } - tooltip decoration { - background-color: transparent; } - tooltip * { - background-color: transparent; - color: #657b83; } - -colorswatch, colorswatch:drop(active) { - border-style: none; } - -colorswatch.top { - border-top-left-radius: 2.5px; - border-top-right-radius: 2.5px; } - colorswatch.top overlay { - border-top-left-radius: 2px; - border-top-right-radius: 2px; } - -colorswatch.bottom { - border-bottom-left-radius: 2.5px; - border-bottom-right-radius: 2.5px; } - colorswatch.bottom overlay { - border-bottom-left-radius: 2px; - border-bottom-right-radius: 2px; } - -colorswatch.left, colorswatch:first-child:not(.top) { - border-top-left-radius: 2.5px; - border-bottom-left-radius: 2.5px; } - colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { - border-top-left-radius: 2px; - border-bottom-left-radius: 2px; } - -colorswatch.right, colorswatch:last-child:not(.bottom) { - border-top-right-radius: 2.5px; - border-bottom-right-radius: 2.5px; } - colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { - border-top-right-radius: 2px; - border-bottom-right-radius: 2px; } - -colorswatch.dark overlay { - color: rgba(255, 255, 255, 0.7); } - colorswatch.dark overlay:hover { - border-color: #001317; } - -colorswatch.light overlay { - color: rgba(0, 0, 0, 0.7); } - colorswatch.light overlay:hover { - border-color: #001317; } - -colorswatch overlay { - border: 1px solid #001317; } - colorswatch overlay:hover { - background-color: rgba(255, 255, 255, 0.2); } - -colorswatch:disabled { - opacity: 0.5; } - colorswatch:disabled overlay { - border-color: rgba(0, 0, 0, 0.6); - box-shadow: none; } - -colorswatch#add-color-button { - border-style: solid; - border-width: 1px; - color: #657b83; - border-color: #001317; - background-color: #083e4b; } - colorswatch#add-color-button:hover { - color: #657b83; - border-color: #001317; - background-color: #0a5062; } - colorswatch#add-color-button overlay { - border-color: transparent; - background-color: transparent; - background-image: none; } - -button.color { - padding: 0; } - button.color colorswatch:first-child:last-child, button.color colorswatch:first-child:last-child overlay { - margin: 4px; - border-radius: 0; } - -colorchooser .popover.osd { - border-radius: 3px; } - -.content-view { - background-color: #073642; } - .content-view:hover { - -gtk-icon-effect: highlight; } - -.scale-popup button:hover { - color: #657b83; - border-color: #001317; - background-color: #0a5062; } - -.context-menu, popover.touch-selection, .csd popover.touch-selection, -popover.background.touch-selection, .csd popover.background.touch-selection { - font: initial; } - -.monospace { - font-family: Monospace; } - -button.circular, button.nautilus-circular-button.image-button, -button.circular-button { - padding: 0; - min-width: 16px; - min-height: 24px; - padding: 2px 6px; - border-radius: 50%; - -gtk-outline-radius: 50%; } - button.circular label, button.nautilus-circular-button.image-button label, - button.circular-button label { - padding: 0; } - -.keycap { - min-width: 16px; - min-height: 20px; - padding: 3px 6px 4px 6px; - color: #657b83; - background-color: #073642; - border: 1px solid #001317; - border-radius: 2.5px; - box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.15); } - -stackswitcher button.text-button { - min-width: 80px; } - -stackswitcher button.circular, stackswitcher button.nautilus-circular-button.image-button { - min-width: 0; } - -*:drop(active):focus, -*:drop(active) { - box-shadow: inset 0 0 0 1px #b58900; } - -decoration { - border-radius: 3px 3px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.97), 0 8px 8px 0 rgba(0, 0, 0, 0.35); - margin: 10px; } - decoration:backdrop { - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.87), 0 8px 8px 0 transparent, 0 5px 5px 0 rgba(0, 0, 0, 0.35); - transition: 200ms ease-out; } - .fullscreen decoration, - .tiled decoration { - border-radius: 0; } - .popup decoration { - box-shadow: none; - border-radius: 0; } - .ssd decoration { - border-radius: 3px 3px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } - .ssd decoration.maximized { - border-radius: 0; } - .csd.popup decoration { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #000203; } - tooltip.csd decoration { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.25); } - messagedialog.csd decoration { - border-radius: 3px; } - .solid-csd decoration { - border-radius: 0; - margin: 1px; - background-color: rgba(0, 43, 54, 0.97); - box-shadow: none; } - -headerbar.default-decoration button.titlebutton, -.titlebar.default-decoration button.titlebutton { - padding: 0 4px; - min-width: 0; - min-height: 0; - margin: 0; } - -headerbar button.titlebutton, -.titlebar button.titlebutton { - padding: 0; - min-width: 24px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(0, 43, 54, 0); } - headerbar button.titlebutton:hover, - .titlebar button.titlebutton:hover { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - headerbar button.titlebutton:active, headerbar button.titlebutton:checked, - .titlebar button.titlebutton:active, - .titlebar button.titlebutton:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - headerbar button.titlebutton.close, headerbar button.titlebutton.maximize, headerbar button.titlebutton.minimize, - .titlebar button.titlebutton.close, - .titlebar button.titlebutton.maximize, - .titlebar button.titlebutton.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; } - headerbar button.titlebutton.close:backdrop, headerbar button.titlebutton.maximize:backdrop, headerbar button.titlebutton.minimize:backdrop, - .titlebar button.titlebutton.close:backdrop, - .titlebar button.titlebutton.maximize:backdrop, - .titlebar button.titlebutton.minimize:backdrop { - opacity: 1; } - headerbar button.titlebutton.close, - .titlebar button.titlebutton.close { - background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } - headerbar button.titlebutton.close:backdrop, - .titlebar button.titlebutton.close:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } - headerbar button.titlebutton.close:hover, - .titlebar button.titlebutton.close:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } - headerbar button.titlebutton.close:active, - .titlebar button.titlebutton.close:active { - background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } - headerbar button.titlebutton.maximize, - .titlebar button.titlebutton.maximize { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-dark.png"), url("assets/titlebutton-maximize-dark@2.png")); } - headerbar button.titlebutton.maximize:backdrop, - .titlebar button.titlebutton.maximize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop-dark.png"), url("assets/titlebutton-maximize-backdrop-dark@2.png")); } - headerbar button.titlebutton.maximize:hover, - .titlebar button.titlebutton.maximize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover-dark.png"), url("assets/titlebutton-maximize-hover-dark@2.png")); } - headerbar button.titlebutton.maximize:active, - .titlebar button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active-dark.png"), url("assets/titlebutton-maximize-active-dark@2.png")); } - headerbar button.titlebutton.minimize, - .titlebar button.titlebutton.minimize { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-dark.png"), url("assets/titlebutton-minimize-dark@2.png")); } - headerbar button.titlebutton.minimize:backdrop, - .titlebar button.titlebutton.minimize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop-dark.png"), url("assets/titlebutton-minimize-backdrop-dark@2.png")); } - headerbar button.titlebutton.minimize:hover, - .titlebar button.titlebutton.minimize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover-dark.png"), url("assets/titlebutton-minimize-hover-dark@2.png")); } - headerbar button.titlebutton.minimize:active, - .titlebar button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active-dark.png"), url("assets/titlebutton-minimize-active-dark@2.png")); } - -.view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, .view text:selected, iconview text:selected, -textview text:selected, iconview text:selected:focus, -textview text:selected:focus, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, -textview text selection:focus, -textview text selection, flowbox flowboxchild:selected, entry selection:focus, entry selection, menuitem.button.flat:active, menuitem.button.flat:active arrow, menuitem.button.flat:selected, menuitem.button.flat:selected arrow, -modelbutton.flat:active, -modelbutton.flat:active arrow, -modelbutton.flat:selected, -modelbutton.flat:selected arrow, treeview.view:selected, treeview.view:selected:focus, row:selected, calendar:selected, .nemo-window .nemo-window-pane widget.entry:selected:focus, .nemo-window .nemo-window-pane widget.entry:selected, filechooser placessidebar.sidebar row.sidebar-row.has-open-popup:selected, filechooser placessidebar.sidebar row.sidebar-row:selected, filechooser placessidebar.sidebar row.sidebar-row:selected:hover, filechooser placessidebar.sidebar row.sidebar-row:active:hover, -.nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup:selected, -.nautilus-window placessidebar.sidebar row.sidebar-row:selected, -.nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover, -.nautilus-window placessidebar.sidebar row.sidebar-row:active:hover { - background-color: #268bd2; } - row:selected label, label:selected, .view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, .view text:selected, iconview text:selected, - textview text:selected, iconview text:selected:focus, - textview text:selected:focus, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, - textview text selection:focus, - textview text selection, flowbox flowboxchild:selected, entry selection:focus, entry selection, menuitem.button.flat:active, menuitem.button.flat:active arrow, menuitem.button.flat:selected, menuitem.button.flat:selected arrow, - modelbutton.flat:active, - modelbutton.flat:active arrow, - modelbutton.flat:selected, - modelbutton.flat:selected arrow, treeview.view:selected, treeview.view:selected:focus, row:selected, calendar:selected, .nemo-window .nemo-window-pane widget.entry:selected:focus, .nemo-window .nemo-window-pane widget.entry:selected, filechooser placessidebar.sidebar row.sidebar-row.has-open-popup:selected, filechooser placessidebar.sidebar row.sidebar-row:selected, filechooser placessidebar.sidebar row.sidebar-row:selected:hover, filechooser placessidebar.sidebar row.sidebar-row:active:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup:selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row:active:hover { - color: #fdf6e3; } - row:selected label:disabled, label:disabled:selected, .view:disabled:selected, iconview:disabled:selected, iconview:disabled:selected:focus, .view text:disabled:selected, iconview text:disabled:selected, - textview text:disabled:selected, iconview text selection:disabled:focus, .view text selection:disabled, iconview text selection:disabled, - textview text selection:disabled, flowbox flowboxchild:disabled:selected, label:disabled selection, entry selection:disabled, menuitem.button.flat:disabled:active, menuitem.button.flat:active arrow:disabled, menuitem.button.flat:disabled:selected, menuitem.button.flat:selected arrow:disabled, - modelbutton.flat:disabled:active, - modelbutton.flat:active arrow:disabled, - modelbutton.flat:disabled:selected, - modelbutton.flat:selected arrow:disabled, treeview.view:disabled:selected:focus, row:disabled:selected, calendar:disabled:selected, .nemo-window .nemo-window-pane widget.entry:disabled:selected, filechooser placessidebar.sidebar row.sidebar-row:disabled:selected, filechooser placessidebar.sidebar row.sidebar-row:disabled:active:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled:selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled:active:hover { - color: #92c1db; } - -.gedit-bottom-panel-paned notebook > header.top > tabs > tab:checked, -terminal-window notebook > header.top > tabs > tab:checked { - box-shadow: inset 0 -1px #001317; } - -terminal-window notebook > header.top, -.mate-terminal notebook > header.top { - padding-top: 3px; - box-shadow: inset 0 1px #001b22, inset 0 -1px #001317; } - terminal-window notebook > header.top button, - .mate-terminal notebook > header.top button { - padding: 0; - min-width: 24px; - min-height: 24px; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item, .caja-desktop { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active, .caja-desktop:active { - color: #657b83; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected, .caja-desktop:selected { - color: #fdf6e3; - text-shadow: none; } - -.nautilus-canvas-item.dim-label, label.nautilus-canvas-item.separator, -popover.background label.nautilus-canvas-item.separator, headerbar .nautilus-canvas-item.subtitle, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle, -.nautilus-list-dim-label { - color: #33535d; } - .nautilus-canvas-item.dim-label:selected, label.nautilus-canvas-item.separator:selected, headerbar .nautilus-canvas-item.subtitle:selected, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, label.nautilus-canvas-item.separator:selected:focus, headerbar .nautilus-canvas-item.subtitle:selected:focus, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle:selected:focus, - .nautilus-list-dim-label:selected, - .nautilus-list-dim-label:selected:focus { - color: #d2e1e0; } - -.nautilus-window searchbar { - border-top: 1px solid #001317; } - -.nautilus-window .searchbar-container { - margin-top: -1px; } - -.nautilus-window notebook, -.nautilus-window notebook > stack:not(:only-child) searchbar { - background-color: #073642; } - -.disk-space-display { - border-style: solid; - border-width: 1px; } - .disk-space-display.unknown { - background-color: rgba(101, 123, 131, 0.5); - border-color: rgba(79, 96, 102, 0.5); } - .disk-space-display.used { - background-color: rgba(38, 139, 210, 0.8); - border-color: rgba(30, 110, 167, 0.8); } - .disk-space-display.free { - background-color: #001f27; - border-color: black; } - -@keyframes needs_attention_keyframes { - 0% { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - 100% { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } } - -.nautilus-operations-button-needs-attention { - animation: needs_attention_keyframes 2s ease-in-out; } - -.nautilus-operations-button-needs-attention-multiple { - animation: needs_attention_keyframes 3s ease-in-out; - animation-iteration-count: 3; } - -.conflict-row.activatable, .conflict-row.activatable:active { - color: white; - background-color: #dc322f; } - -.conflict-row.activatable:hover { - background-color: #e35d5b; } - -.conflict-row.activatable:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.nemo-window .nemo-places-sidebar.frame { - border-width: 0; } - -.nemo-window notebook { - background-color: #073642; } - -.nemo-window .nemo-window-pane widget.entry { - border: 1px solid; - border-radius: 3px; - color: #657b83; - border-color: #001317; - background-color: #073642; - box-shadow: inset 1px 0 #268bd2, inset -1px 0 #268bd2, inset 0 1px #268bd2, inset 0 -1px #268bd2; } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:not(:last-child):not(:only-child) { - margin: 0 0 1px 0; } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover { - background-color: rgba(0, 193, 243, 0.37); } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:active, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:disabled { - color: rgba(89, 128, 143, 0.4); } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button + button { - border-left-style: none; } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37), inset -1px 0 rgba(0, 0, 0, 0.37); } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - -.caja-notebook { - border-top: 1px solid #001317; } - -.caja-side-pane .frame { - border-width: 1px 0 0; } - -.caja-notebook .frame { - border-width: 0 0 1px; } - -.open-document-selector-treeview.view, iconview.open-document-selector-treeview { - padding: 3px 6px 3px 6px; - border-color: #073642; } - .open-document-selector-treeview.view:hover, iconview.open-document-selector-treeview:hover { - background-color: #0e3b47; } - .open-document-selector-treeview.view:hover:selected, iconview.open-document-selector-treeview:hover:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.open-document-selector-name-label { - color: #657b83; } - -.open-document-selector-path-label { - color: #365963; - font-size: smaller; } - .open-document-selector-path-label:selected { - color: rgba(253, 246, 227, 0.9); } - -.gedit-document-panel row button { - min-width: 22px; - min-height: 22px; - padding: 0; - color: transparent; - background: none; - border: none; - box-shadow: none; } - .gedit-document-panel row button image { - color: inherit; } - -.gedit-document-panel row:hover:not(:selected) button { - color: #425f68; } - .gedit-document-panel row:hover:not(:selected) button:hover { - color: #ff4d4d; } - .gedit-document-panel row:hover:not(:selected) button:active { - color: #657b83; } - -.gedit-document-panel row:hover:selected button:hover { - color: #ff6666; - background: none; - border: none; - box-shadow: none; } - .gedit-document-panel row:hover:selected button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel-dragged-row { - border: 1px solid #001317; - background-color: #000203; - color: #657b83; } - -.gedit-side-panel-paned statusbar { - border-top: 1px solid #001317; - background-color: #002b36; } - -.gedit-search-slider { - background-color: #003340; - padding: 6px; - border-color: #001317; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -.gedit-search-entry-occurrences-tag { - color: rgba(101, 123, 131, 0.6); - border: none; - margin: 2px; - padding: 2px; } - -.gedit-map-frame border { - border-width: 0; } - .gedit-map-frame border:dir(ltr) { - border-left-width: 1px; } - .gedit-map-frame border:dir(rtl) { - border-right-width: 1px; } - -.pluma-window statusbar frame > border { - border: none; } - -.pluma-window notebook > stack scrolledwindow { - border-width: 0 0 1px 0; } - -#pluma-status-combo-button { - min-height: 0; - padding: 0; - border-top: none; - border-bottom: none; - border-radius: 0; } - -.gb-search-entry-occurrences-tag { - background: none; } - -workbench.csd > stack.titlebar:not(headerbar) { - padding: 0; - background: none; - border: none; - box-shadow: none; } - workbench.csd > stack.titlebar:not(headerbar) headerbar, workbench.csd > stack.titlebar:not(headerbar) headerbar:first-child, workbench.csd > stack.titlebar:not(headerbar) headerbar:last-child { - border-radius: 3px 3px 0 0; } - -editortweak .linked > entry.search:focus + .gb-linked-scroller { - border-top-color: #268bd2; } - -layouttab { - background-color: #073642; } - -layout { - border: 1px solid #001317; - -PnlDockBin-handle-size: 1; } - -eggsearchbar box.search-bar { - border-bottom: 1px solid #001317; } - -pillbox { - color: #fdf6e3; - background-color: #268bd2; - border-radius: 3px; } - pillbox:disabled label { - color: rgba(253, 246, 227, 0.5); } - -docktabstrip { - padding: 0 6px; - background-color: #002b36; - border-bottom: 1px solid #001317; } - docktabstrip docktab { - min-height: 28px; - border: solid transparent; - border-width: 0 1px; } - docktabstrip docktab label { - opacity: 0.5; } - docktabstrip docktab:checked label, docktabstrip docktab:hover label { - opacity: 1; } - docktabstrip docktab:checked { - border-color: #001317; - background-color: #073642; } - -dockbin { - border: 1px solid #001317; - -PnlDockBin-handle-size: 1; } - -dockpaned { - border: 1px solid #001317; } - -dockoverlayedge { - background-color: #002b36; } - dockoverlayedge docktabstrip { - padding: 0; - border: none; } - dockoverlayedge.left-edge tab:checked, - dockoverlayedge.right-edge tab:checked { - border-width: 1px 0; } - -popover.messagepopover.background { - padding: 0; } - -popover.messagepopover .popover-content-area { - margin: 16px; } - -popover.messagepopover .popover-action-area { - margin: 8px; } - popover.messagepopover .popover-action-area button:not(:first-child):not(:last-child) { - margin: 0 4px; } - -popover.popover-selector { - padding: 0; } - popover.popover-selector list row { - padding: 5px 0; } - popover.popover-selector list row image { - margin-left: 3px; - margin-right: 10px; } - -entry.search.preferences-search { - border: none; - border-right: 1px solid #001317; - border-bottom: 1px solid #001317; - border-radius: 0; } - -preferences stacksidebar.sidebar list { - background-image: linear-gradient(to bottom, #073642, #073642); } - -preferences stacksidebar.sidebar list separator { - background-color: transparent; } - -devhelppanel entry:focus, -symboltreepanel entry:focus { - border-color: #001317; } - -button.run-arrow-button { - min-width: 12px; } - -omnibar.linked > entry:not(:only-child) { - border-style: solid; - border-radius: 3px; - margin-left: 1px; - margin-right: 1px; } - -gstyleslidein #scale_box button.toggle:checked, -gstyleslidein #strings_controls button.toggle:checked, -gstyleslidein #palette_controls button.toggle:checked, -gstyleslidein #components_controls button.toggle:checked { - color: #657b83; } - -configurationview entry.flat { - background: none; } - -configurationview list { - border-width: 0; } - -.documents-scrolledwin.frame { - border-width: 0; } - -button.documents-load-more { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon, .photos-collection-icon { - background-color: rgba(101, 123, 131, 0.3); - border-radius: 2px; } - -button.documents-favorite:active, -button.documents-favorite:active:hover { - color: #78b9e6; } - -.documents-entry-tag, .photos-entry-tag { - color: #fdf6e3; - background: #268bd2; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover, .photos-entry-tag:hover { - color: #fdf6e3; - background: #3295da; } - .documents-entry-tag:active, .photos-entry-tag:active { - color: #fdf6e3; - background: #2380c1; } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -.photos-fade-in { - opacity: 1.0; - transition: opacity 0.2s ease-out; } - -.photos-fade-out { - opacity: 0.0; - transition: opacity 0.2s ease-out; } - -.tweak-categories, -.tweak-category:not(:selected):not(:hover) { - background-image: linear-gradient(to bottom, #073642, #073642); } - -.tr-workarea undershoot, -.tr-workarea overshoot { - border-color: transparent; } - -.atril-window .primary-toolbar toolbar, .atril-window .primary-toolbar .inline-toolbar { - background: none; } - -#gf-bubble, #gf-bubble.solid, -#gf-osd-window, -#gf-osd-window.solid, -#gf-input-source-popup, -#gf-input-source-popup.solid, -#gf-candidate-popup, -#gf-candidate-popup.solid { - color: #768d96; - background-color: rgba(7, 54, 66, 0.95); - border: 1px solid rgba(3, 24, 29, 0.95); - border-radius: 2px; } - -#gf-bubble levelbar block.low, #gf-bubble levelbar block.high, #gf-bubble levelbar block.full, -#gf-osd-window levelbar block.low, -#gf-osd-window levelbar block.high, -#gf-osd-window levelbar block.full, -#gf-input-source-popup levelbar block.low, -#gf-input-source-popup levelbar block.high, -#gf-input-source-popup levelbar block.full, -#gf-candidate-popup levelbar block.low, -#gf-candidate-popup levelbar block.high, -#gf-candidate-popup levelbar block.full { - background-color: #268bd2; - border-color: #268bd2; } - -#gf-bubble levelbar block.empty, -#gf-osd-window levelbar block.empty, -#gf-input-source-popup levelbar block.empty, -#gf-candidate-popup levelbar block.empty { - background-color: rgba(5, 35, 43, 0.95); } - -#gf-bubble levelbar trough, -#gf-osd-window levelbar trough, -#gf-input-source-popup levelbar trough, -#gf-candidate-popup levelbar trough { - background: none; } - -#gf-input-source { - min-height: 32px; - min-width: 40px; } - #gf-input-source:selected { - color: #fdf6e3; - background-color: #268bd2; - border-radius: 2px; } - -gf-candidate-box label { - padding: 3px; } - -gf-candidate-box:hover, gf-candidate-box:selected { - color: #fdf6e3; - background-color: #268bd2; - border-radius: 2px; } - -MsdOsdWindow.background.osd { - border-radius: 2px; - border: 1px solid rgba(3, 24, 29, 0.95); } - MsdOsdWindow.background.osd .progressbar { - background-color: #268bd2; - border: none; - border-color: red; - border-radius: 5px; } - MsdOsdWindow.background.osd .trough { - background-color: rgba(5, 35, 43, 0.95); - border: none; - border-radius: 5px; } - -.mate-panel-menu-bar, .mate-panel-menu-bar menubar, -panel-toplevel.background, -panel-toplevel.background menubar { - background-color: #05242c; } - -.mate-panel-menu-bar menubar, -.mate-panel-menu-bar #PanelApplet label, -.mate-panel-menu-bar #PanelApplet image, -panel-toplevel.background menubar, -panel-toplevel.background #PanelApplet label, -panel-toplevel.background #PanelApplet image { - color: #657b83; } - -.mate-panel-menu-bar button label, .mate-panel-menu-bar button image, -.mate-panel-menu-bar #tasklist-button label, -.mate-panel-menu-bar #tasklist-button image, -panel-toplevel.background button label, -panel-toplevel.background button image, -panel-toplevel.background #tasklist-button label, -panel-toplevel.background #tasklist-button image { - color: inherit; } - -.mate-panel-menu-bar .wnck-pager, -panel-toplevel.background .wnck-pager { - color: #333e42; - background-color: rgba(0, 0, 0, 0.95); } - .mate-panel-menu-bar .wnck-pager:hover, - panel-toplevel.background .wnck-pager:hover { - background-color: rgba(7, 55, 67, 0.95); } - .mate-panel-menu-bar .wnck-pager:selected, - panel-toplevel.background .wnck-pager:selected { - color: #78b9e6; - background-color: #268bd2; } - -.mate-panel-menu-bar na-tray-applet, -panel-toplevel.background na-tray-applet { - -NaTrayApplet-icon-padding: 0; - -NaTrayApplet-icon-size: 16px; } - -.xfce4-panel.panel { - background-color: rgba(5, 36, 44, 0.95); - text-shadow: none; - -gtk-icon-shadow: none; } - -#tasklist-button { - color: rgba(101, 123, 131, 0.8); - border-radius: 0; - border: none; - background-color: rgba(5, 36, 44, 0); } - #tasklist-button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); } - #tasklist-button:checked { - color: white; - background-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -.mate-panel-menu-bar button:not(#tasklist-button), -panel-toplevel.background button:not(#tasklist-button), .xfce4-panel.panel button.flat, .xfce4-panel.panel button.sidebar-button { - color: #657b83; - border-radius: 0; - border: none; - background-color: rgba(5, 36, 44, 0); } - .mate-panel-menu-bar button:hover:not(#tasklist-button), - panel-toplevel.background button:hover:not(#tasklist-button), .xfce4-panel.panel button.flat:hover, .xfce4-panel.panel button.sidebar-button:hover { - border: none; - background-color: rgba(10, 74, 90, 0.95); } - .mate-panel-menu-bar button:active:not(#tasklist-button), - panel-toplevel.background button:active:not(#tasklist-button), .xfce4-panel.panel button.flat:active, .xfce4-panel.panel button.sidebar-button:active, .mate-panel-menu-bar button:checked:not(#tasklist-button), - panel-toplevel.background button:checked:not(#tasklist-button), .xfce4-panel.panel button.flat:checked, .xfce4-panel.panel button.sidebar-button:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - .mate-panel-menu-bar button:active:not(#tasklist-button) label, - panel-toplevel.background button:active:not(#tasklist-button) label, .xfce4-panel.panel button.flat:active label, .xfce4-panel.panel button.sidebar-button:active label, .mate-panel-menu-bar button:active:not(#tasklist-button) image, - panel-toplevel.background button:active:not(#tasklist-button) image, .xfce4-panel.panel button.flat:active image, .xfce4-panel.panel button.sidebar-button:active image, .mate-panel-menu-bar button:checked:not(#tasklist-button) label, - panel-toplevel.background button:checked:not(#tasklist-button) label, .xfce4-panel.panel button.flat:checked label, .xfce4-panel.panel button.sidebar-button:checked label, .mate-panel-menu-bar button:checked:not(#tasklist-button) image, - panel-toplevel.background button:checked:not(#tasklist-button) image, .xfce4-panel.panel button.flat:checked image, .xfce4-panel.panel button.sidebar-button:checked image { - color: inherit; } - -.nautilus-window .floating-bar { - padding: 1px; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px 2px 0 0; } - .nautilus-window .floating-bar.bottom.left { - border-top-left-radius: 0; } - .nautilus-window .floating-bar.bottom.right { - border-top-right-radius: 0; } - .nautilus-window .floating-bar button { - border: none; - border-radius: 0; - min-height: 0; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .marlin-pathbar.pathbar image, .marlin-pathbar.pathbar image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - .marlin-pathbar.pathbar:disabled { - color: rgba(89, 128, 143, 0.35); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.22); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - -gtk-icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:hover { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration .top { - border: 1px solid rgba(0, 15, 18, 0.97); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #002b36, #002b36); - color: rgba(89, 128, 143, 0.8); - box-shadow: inset 0 1px rgba(0, 55, 69, 0.97); } - UnityDecoration .top:backdrop { - border-bottom-width: 0; - color: rgba(89, 128, 143, 0.5); } - UnityDecoration .left, UnityDecoration .right, UnityDecoration .bottom, - UnityDecoration .left:backdrop, UnityDecoration .right:backdrop, UnityDecoration .bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 15, 18, 0.97), rgba(0, 15, 18, 0.97)); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: rgba(0, 75, 95, 0.97); - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focus, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focus { - background-image: none; - border-image: none; } - -.lightdm.button:focus, -.lightdm.entry:focus { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar label { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #001317; - border-right: 1px solid #001317; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -toolbar.secondary-toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #001317; } - toolbar.secondary-toolbar button, .secondary-toolbar.inline-toolbar button { - padding: 0 3px 0 3px; } - -toolbar.bottom-toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #001317; - background-color: #002b36; } - toolbar.bottom-toolbar button, .bottom-toolbar.inline-toolbar button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view, -iconview.source-list { - background-color: #002b36; - color: #657b83; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:hover, iconview.source-list:hover { - background-color: #003f50; } - -.source-list.view:selected, iconview.source-list:selected, -.source-list.view:hover:selected, -iconview.source-list:hover:selected, -.source-list.view:selected:focus, -iconview.source-list:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list scrollbar, -.source-list junction { - border-image: none; - border-color: transparent; - background-color: #002b36; - background-image: none; } - -.source-list.badge, -.source-list.badge:hover, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:hover:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:hover:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #657b83; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GraniteWidgetsWelcome { - background-color: #073642; } - -GraniteWidgetsWelcome label { - color: #33535d; - font-size: 11px; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(101, 123, 131, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #073642, #073642); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, GraniteWidgetsPopOver iconview.sidebar, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry entry { - padding: 4px; } - -.h1 { - font-size: 24px; } - -.h2 { - font-size: 18px; } - -.h3 { - font-size: 11px; } - -.h4, -.category-label { - color: #47636c; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: rgba(5, 36, 44, 0.95); - color: #657b83; - font-weight: bold; - box-shadow: inset 0 -1px rgba(1, 10, 12, 0.95); } - #panel_window menubar { - padding-left: 5px; } - #panel_window menubar, #panel_window menubar > menuitem { - background-color: transparent; - color: #657b83; - font-weight: bold; } - #panel_window menubar menuitem:disabled { - color: rgba(101, 123, 131, 0.5); } - #panel_window menubar menuitem:disabled label { - color: inherit; } - #panel_window menubar menu > menuitem { - font-weight: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font-weight: normal; - border-style: none; - background-color: transparent; - color: #657b83; } - -#content_frame { - padding-bottom: 14px; - background-color: #002b36; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame button { - color: #657b83; - border-color: #001317; - background-color: #083e4b; } - #content_frame button:hover { - color: #657b83; - border-color: #001317; - background-color: #0a5062; } - #content_frame button:active, #content_frame button:checked { - color: #fdf6e3; - border-color: #001317; - background-color: #268bd2; } - #content_frame button:disabled { - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - #content_frame button:disabled label, #content_frame button:disabled { - color: rgba(101, 123, 131, 0.45); } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: rgba(0, 43, 54, 0.97); - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px rgba(0, 27, 34, 0.97); } - -#buttonbox_frame button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - #buttonbox_frame button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - #buttonbox_frame button:active, #buttonbox_frame button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - #buttonbox_frame button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -#login_window #user_combobox { - color: #657b83; - font-size: 13px; } - #login_window #user_combobox menu { - font-weight: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font-weight: bold; } - -.nautilus-window paned > separator { - background-image: linear-gradient(to bottom, rgba(5, 35, 43, 0.95), rgba(5, 35, 43, 0.95)); } - -filechooser paned > separator { - background-image: linear-gradient(to bottom, rgba(5, 35, 43, 0.95), rgba(5, 35, 43, 0.95)); } - -filechooser.csd.background, filechooser placessidebar list, -.nautilus-window.csd.background, -.nautilus-window placessidebar list { - background-color: transparent; } - -filechooser placessidebar.sidebar, -.nautilus-window placessidebar.sidebar { - background-color: rgba(7, 54, 66, 0.95); } - filechooser placessidebar.sidebar row.sidebar-row, - .nautilus-window placessidebar.sidebar row.sidebar-row { - border: none; - color: #657b83; } - filechooser placessidebar.sidebar row.sidebar-row .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row .sidebar-icon { - color: rgba(101, 123, 131, 0.6); } - filechooser placessidebar.sidebar row.sidebar-row.has-open-popup, filechooser placessidebar.sidebar row.sidebar-row:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup, - .nautilus-window placessidebar.sidebar row.sidebar-row:hover { - background-color: rgba(101, 123, 131, 0.15); } - filechooser placessidebar.sidebar row.sidebar-row:disabled, filechooser placessidebar.sidebar row.sidebar-row:disabled label, filechooser placessidebar.sidebar row.sidebar-row:disabled image, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled label, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled image { - color: rgba(101, 123, 131, 0.4); } - filechooser placessidebar.sidebar row.sidebar-row:selected.has-open-popup .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:selected .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:active:hover .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected.has-open-popup .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:active:hover .sidebar-icon { - color: inherit; } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button { - color: #657b83; } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:active, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:active { - color: #fdf6e3; - border-color: #001317; - background-color: #268bd2; } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:not(:hover):not(:active) > image, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:not(:hover):not(:active) > image { - opacity: 0.5; } - filechooser placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row, - .nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row { - color: #268bd2; } - filechooser placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon { - color: inherit; } - filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) .sidebar-icon { - color: #b58900; } - filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected { - background-color: #b58900; } - filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected .sidebar-icon { - color: #fdf6e3; } - filechooser placessidebar.sidebar separator, - .nautilus-window placessidebar.sidebar separator { - background-color: transparent; } - -filechooser.maximized placessidebar.sidebar, -.nautilus-window.maximized placessidebar.sidebar { - background-color: #073642; } - -.nemo-window .sidebar { - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); } - .nemo-window .sidebar .view, .nemo-window .sidebar iconview, .nemo-window .sidebar row { - background-color: transparent; - color: #657b83; } - .nemo-window .sidebar .view.cell:selected, .nemo-window .sidebar iconview.cell:selected, .nemo-window .sidebar row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - .nemo-window .sidebar .view.expander, .nemo-window .sidebar iconview.expander, .nemo-window .sidebar row.expander { - color: rgba(56, 90, 100, 0.975); } - .nemo-window .sidebar .view.expander:hover, .nemo-window .sidebar iconview.expander:hover, .nemo-window .sidebar row.expander:hover { - color: #657b83; } - .nemo-window .sidebar separator { - background-color: transparent; } - -.caja-side-pane, -.caja-side-pane > notebook > stack > widget > box, -.caja-side-pane text, -.caja-side-pane treeview { - color: #657b83; - caret-color: #657b83; - background-color: #073642; } - -.caja-side-pane > box button:not(:active):not(:checked) { - color: #657b83; } - -.caja-side-pane .frame { - border-color: #05232b; } - -.caja-side-pane junction { - background-color: rgba(5, 35, 43, 0.95); } - -filechooser actionbar { - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(0, 0, 0, 0.95); } - filechooser actionbar label, filechooser actionbar combobox { - color: #657b83; } - -.gedit-bottom-panel-paned { - background-color: #073642; } - -.gedit-side-panel-paned > separator { - background-image: linear-gradient(to bottom, rgba(5, 35, 43, 0.95), rgba(5, 35, 43, 0.95)); } - -.gedit-bottom-panel-paned > separator { - background-image: linear-gradient(to bottom, #001317, #001317); } - -.gedit-document-panel { - background-color: rgba(7, 54, 66, 0.95); } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel row { - color: #657b83; - background-color: rgba(101, 123, 131, 0); } - .gedit-document-panel row:hover { - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel row:active { - color: #fdf6e3; - background-color: #268bd2; } - .gedit-document-panel row:active button { - color: #fdf6e3; } - .gedit-document-panel row:selected, .gedit-document-panel row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; } - .gedit-document-panel row:hover:not(:selected) button:active { - color: #657b83; } - -filechooser actionbar button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .caja-side-pane > box button:hover:not(:active), filechooser actionbar button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - filechooser actionbar button:active, filechooser actionbar button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - filechooser actionbar button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -filechooser actionbar entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - filechooser actionbar entry image, filechooser actionbar entry image:hover { - color: inherit; } - filechooser actionbar entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - filechooser actionbar entry:disabled { - color: rgba(101, 123, 131, 0.55); - background-color: rgba(18, 137, 167, 0.2); } - -filechooser placessidebar.sidebar scrollbar, -.nautilus-window placessidebar.sidebar scrollbar, .nemo-window .sidebar scrollbar, .caja-side-pane scrollbar { - border-color: rgba(5, 35, 43, 0.95); } - filechooser placessidebar.sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, - .nautilus-window placessidebar.sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, .nemo-window .sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, .caja-side-pane scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { - background-color: #8da0a7; - border: 1px solid rgba(0, 0, 0, 0.3); } - filechooser placessidebar.sidebar scrollbar slider, - .nautilus-window placessidebar.sidebar scrollbar slider, .nemo-window .sidebar scrollbar slider, .caja-side-pane scrollbar slider { - background-color: rgba(141, 160, 167, 0.7); } - filechooser placessidebar.sidebar scrollbar slider:hover, - .nautilus-window placessidebar.sidebar scrollbar slider:hover, .nemo-window .sidebar scrollbar slider:hover, .caja-side-pane scrollbar slider:hover { - background-color: #9cacb2; } - filechooser placessidebar.sidebar scrollbar slider:hover:active, - .nautilus-window placessidebar.sidebar scrollbar slider:hover:active, .nemo-window .sidebar scrollbar slider:hover:active, .caja-side-pane scrollbar slider:hover:active { - background-color: #268bd2; } - filechooser placessidebar.sidebar scrollbar slider:disabled, - .nautilus-window placessidebar.sidebar scrollbar slider:disabled, .nemo-window .sidebar scrollbar slider:disabled, .caja-side-pane scrollbar slider:disabled { - background-color: transparent; } - filechooser placessidebar.sidebar scrollbar trough, - .nautilus-window placessidebar.sidebar scrollbar trough, .nemo-window .sidebar scrollbar trough, .caja-side-pane scrollbar trough { - background-color: rgba(5, 35, 43, 0.95); } - -@define-color theme_fg_color #657b83; -@define-color theme_text_color #657b83; -@define-color theme_bg_color #002b36; -@define-color theme_base_color #073642; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #657b83; -@define-color text_color #657b83; -@define-color bg_color #002b36; -@define-color base_color #073642; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #003340; -@define-color insensitive_fg_color alpha(#657b83, 0.5); -@define-color insensitive_base_color #073642; -@define-color theme_unfocused_fg_color #657b83; -@define-color theme_unfocused_text_color #657b83; -@define-color theme_unfocused_bg_color #002b36; -@define-color theme_unfocused_base_color #073642; -@define-color borders #001317; -@define-color unfocused_borders #001317; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #78b9e6; -@define-color content_view_bg #073642; -@define-color wm_title alpha(#59808f, 0.8); -@define-color wm_unfocused_title alpha(#59808f, 0.5); -@define-color wm_bg #002b36; -@define-color wm_bg_unfocused #00313e; -@define-color wm_highlight #003745; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #dc322f; -@define-color wm_button_close_hover_bg #cb4b16; -@define-color wm_button_close_active_bg #dc322f; -@define-color wm_icon_close_bg #002b36; -@define-color wm_button_hover_bg #657b83; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #002b36; -@define-color wm_icon_bg #93a1a1; -@define-color wm_icon_unfocused_bg #657b83; -@define-color wm_icon_hover_bg #93a1a1; -@define-color wm_icon_active_bg #fdf6e3; diff --git a/common/gtk-3.0/3.20/gtk-darker.css b/common/gtk-3.0/3.20/gtk-darker.css deleted file mode 100644 index 29f9c4d..0000000 --- a/common/gtk-3.0/3.20/gtk-darker.css +++ /dev/null @@ -1,4308 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -GtkScrolledWindow-scrollbar-spacing: 0; - -GtkToolItemGroup-expander-size: 11; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -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; } - -.background { - color: #5c616c; - background-color: rgba(245, 246, 247, 0.999); } - -*:disabled { - -gtk-icon-effect: dim; } - -.gtkstyle-fallback { - background-color: #F5F6F7; - color: #5c616c; } - .gtkstyle-fallback:hover { - background-color: white; - color: #5c616c; } - .gtkstyle-fallback:active { - background-color: #d9dde0; - color: #5c616c; } - .gtkstyle-fallback:disabled { - background-color: #faf6eb; - color: rgba(92, 97, 108, 0.55); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view, iconview, -.view text, -iconview text, -textview text { - color: #5c616c; - background-color: #fdf6e3; } - .view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, - .view text:selected, - iconview text:selected, - textview text:selected, - .view text:selected:focus, - iconview text:selected:focus, - textview text:selected:focus { - border-radius: 2px; } - -textview border { - background-color: #f9f6ed; } - -rubberband, flowbox rubberband, treeview.view rubberband, .content-view rubberband, -.rubberband { - border: 1px solid #1e6ea7; - background-color: rgba(30, 110, 167, 0.2); } - -flowbox flowboxchild { - padding: 3px; - border-radius: 2px; } - flowbox flowboxchild:selected { - outline-offset: -2px; } - -label.separator, popover label.separator, -popover.background label.separator { - color: #5c616c; } - -label selection { - color: #fdf6e3; - background-color: #268bd2; } - -label:disabled { - color: rgba(92, 97, 108, 0.55); } - -.dim-label, label.separator, popover label.separator, -popover.background label.separator, headerbar .subtitle, .titlebar:not(headerbar) .subtitle { - opacity: 0.55; } - -assistant .sidebar { - background-color: #fdf6e3; - border-top: 1px solid #dcdfe3; } - -assistant.csd .sidebar { - border-top-style: none; } - -assistant .sidebar label { - padding: 6px 12px; } - -assistant .sidebar label.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -textview { - background-color: #fdf6e3; } - -popover.osd, popover.magnifier, .csd popover.osd, .csd popover.magnifier, -popover.background.osd, -popover.background.magnifier, .csd popover.background.osd, .csd popover.background.magnifier, .osd .scale-popup, .osd { - color: #657b83; - border: none; - background-color: rgba(7, 54, 66, 0.95); - background-clip: padding-box; - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -spinner { - background: none; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - spinner:checked { - opacity: 1; - animation: spin 1s linear infinite; } - spinner:checked:disabled { - opacity: 0.5; } - -entry { - min-height: 22px; - border: 1px solid; - padding: 2px 8px; - caret-color: currentColor; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; } - entry.search { - border-radius: 20px; } - entry image { - color: #7c7f84; } - entry image.left { - padding-left: 0; - padding-right: 5px; } - entry image.right { - padding-right: 0; - padding-left: 5px; } - entry.flat, entry.flat:focus { - min-height: 0; - padding: 2px; - background-image: none; - border-color: transparent; - border-radius: 0; } - entry:focus { - background-clip: border-box; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; } - entry:disabled { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(253, 246, 227, 0.55); } - entry.warning { - color: white; - border-color: #cb4b16; - background-color: #df8f68; } - entry.warning image { - color: white; } - entry.warning:focus { - color: white; - background-color: #cb4b16; - box-shadow: none; } - entry.warning selection, entry.warning selection:focus { - background-color: white; - color: #cb4b16; } - entry.error { - color: white; - border-color: #dc322f; - background-color: #e98077; } - entry.error image { - color: white; } - entry.error:focus { - color: white; - background-color: #dc322f; - box-shadow: none; } - entry.error selection, entry.error selection:focus { - background-color: white; - color: #dc322f; } - entry.search-missing { - color: white; - border-color: #dc322f; - background-color: #e98077; } - entry.search-missing image { - color: white; } - entry.search-missing:focus { - color: white; - background-color: #dc322f; - box-shadow: none; } - entry.search-missing selection, entry.search-missing selection:focus { - background-color: white; - color: #dc322f; } - entry:drop(active):focus, entry:drop(active) { - border-color: #b58900; - box-shadow: none; } - .osd entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .osd entry image, .osd entry image:hover { - color: inherit; } - .osd entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd entry:disabled { - color: rgba(101, 123, 131, 0.55); - background-color: rgba(18, 137, 167, 0.2); } - .osd entry selection:focus, .osd entry selection { - color: #268bd2; - background-color: #fdf6e3; } - entry progress { - margin: 0 -6px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - -treeview entry.flat, treeview entry { - border-radius: 0; - background-image: none; - background-color: #fdf6e3; } - treeview entry.flat:focus, treeview entry:focus { - border-color: #268bd2; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -button { - min-height: 22px; - min-width: 20px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 2px 6px; - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - button separator { - margin: 4px 1px; } - button.flat, button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - transition: none; } - button.flat:hover, button.sidebar-button:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - button.flat:hover:active, button.sidebar-button:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; - -gtk-icon-effect: highlight; } - button:active, button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; - background-clip: border-box; - transition-duration: 50ms; } - button:active:not(:disabled) label:disabled, button:checked:not(:disabled) label:disabled { - color: inherit; - opacity: 0.6; } - button:active { - color: #5c616c; } - button:active:hover, button:checked { - color: #fdf6e3; } - button.flat:disabled, button.sidebar-button:disabled { - border-color: transparent; - background-color: transparent; - background-image: none; } - button:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - button:disabled label, button:disabled { - color: rgba(92, 97, 108, 0.55); } - button:disabled:active, button:disabled:checked { - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - button:disabled:active label, button:disabled:active, button:disabled:checked label, button:disabled:checked { - color: rgba(253, 246, 227, 0.8); } - button.image-button { - min-width: 24px; - padding-left: 5px; - padding-right: 5px; } - button.text-button { - padding-left: 12px; - padding-right: 12px; } - button.text-button.image-button { - padding-left: 5px; - padding-right: 5px; } - button.text-button.image-button label:first-child { - padding-left: 8px; - padding-right: 2px; } - button.text-button.image-button label:last-child { - padding-right: 8px; - padding-left: 2px; } - button.text-button.image-button label:only-child { - padding-left: 8px; - padding-right: 8px; } - button.text-button.image-button.popup { - padding-right: 8px; - padding-left: 8px; } - button:drop(active), combobox:drop(active) button.combo { - color: #b58900; - border-color: #b58900; - box-shadow: none; } - button.osd { - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(3, 24, 29, 0.95); } - button.osd.image-button { - padding: 0; - min-height: 36px; - min-width: 36px; } - button.osd:hover { - color: #268bd2; } - button.osd:active, button.osd:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - button.osd:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .osd button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd button:active, .osd button:checked { - background-clip: padding-box; - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd button.flat, .osd button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd button.flat:hover, .osd button.sidebar-button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd button.flat:disabled, .osd button.sidebar-button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); - background-image: none; } - .osd button.flat:active, .osd button.sidebar-button:active, .osd button.flat:checked, .osd button.sidebar-button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd .linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child), - .osd .linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active) + button:not(:checked):not(:active) { - box-shadow: none; } - button.suggested-action { - background-clip: border-box; - color: white; - background-color: #2aa198; - border-color: #2aa198; } - button.suggested-action.flat, button.suggested-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; } - button.suggested-action:hover { - background-clip: border-box; - color: white; - background-color: #35c9be; - border-color: #35c9be; } - button.suggested-action:active, button.suggested-action:checked { - background-clip: border-box; - color: white; - background-color: #1f7972; - border-color: #1f7972; } - button.suggested-action.flat:disabled, button.suggested-action.sidebar-button:disabled { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - button.suggested-action:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - button.suggested-action:disabled label, button.suggested-action:disabled { - color: rgba(92, 97, 108, 0.55); } - button.destructive-action { - background-clip: border-box; - color: white; - background-color: #dc322f; - border-color: #dc322f; } - button.destructive-action.flat, button.destructive-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; } - button.destructive-action:hover { - background-clip: border-box; - color: white; - background-color: #e35d5b; - border-color: #e35d5b; } - button.destructive-action:active, button.destructive-action:checked { - background-clip: border-box; - color: white; - background-color: #b9221f; - border-color: #b9221f; } - button.destructive-action.flat:disabled, button.destructive-action.sidebar-button:disabled { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - button.destructive-action:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - button.destructive-action:disabled label, button.destructive-action:disabled { - color: rgba(92, 97, 108, 0.55); } - .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; } - .stack-switcher > button.needs-attention > label, .stack-switcher > button.needs-attention > image, button stacksidebar row.needs-attention > label, stacksidebar button row.needs-attention > label { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 4px; } - .stack-switcher > button.needs-attention > label:dir(rtl), .stack-switcher > button.needs-attention > image:dir(rtl), button stacksidebar row.needs-attention > label:dir(rtl), stacksidebar button row.needs-attention > label:dir(rtl) { - background-position: left 3px, left 4px; } - button.font separator, button.file separator { - background-color: transparent; } - .inline-toolbar button, .inline-toolbar button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar toolbutton > button { - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - .inline-toolbar toolbutton > button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; } - .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - .inline-toolbar toolbutton > button:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .inline-toolbar toolbutton > button:disabled label, .inline-toolbar toolbutton > button:disabled { - color: rgba(92, 97, 108, 0.55); } - .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked { - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar toolbutton > button:disabled:active label, .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked label, .inline-toolbar toolbutton > button:disabled:checked { - color: rgba(253, 246, 227, 0.8); } - -.linked:not(.vertical):not(.path-bar) > entry + entry { - border-left-color: rgba(101, 123, 131, 0.3); } - -.linked:not(.vertical):not(.path-bar) > entry.error + entry, -.linked:not(.vertical):not(.path-bar) > entry + entry.error { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > entry.warning + entry, -.linked:not(.vertical):not(.path-bar) > entry + entry.warning { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, -.linked:not(.vertical):not(.path-bar) > entry.warning + entry.error { - border-left-color: #d43f23; } - -.linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child { - border-left-color: #b58900; } - -.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo { - border-left-color: #b58900; } - -.linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > button:active + entry, -.linked:not(.vertical):not(.path-bar) > button:checked + entry { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > button + button { - border-left-style: none; } - -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 1px 0 #657b83; } - -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.5); } - -.linked:not(.vertical):not(.path-bar) > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:disabled, -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked:not(.vertical):not(.path-bar) > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child) { - box-shadow: none; } - -.linked:not(.vertical).path-bar > button + button { - border-left-style: none; } - -.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4), inset -1px 0 rgba(101, 123, 131, 0.4); } - -.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.4); } - -.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4); } - -.linked.vertical > entry + entry { - border-top-color: rgba(101, 123, 131, 0.3); } - -.linked.vertical > entry.error + entry, -.linked.vertical > entry + entry.error { - border-top-color: #dc322f; } - -.linked.vertical > entry.warning + entry, -.linked.vertical > entry + entry.warning { - border-top-color: #cb4b16; } - -.linked.vertical > entry.error + entry.warning, -.linked.vertical > entry.warning + entry.error { - border-top-color: #d43f23; } - -.linked.vertical > entry + entry:focus:not(:last-child), -.linked.vertical > entry + entry:focus:last-child { - border-top-color: #268bd2; } - -.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: #268bd2; } - -.linked.vertical > entry + entry:drop(active):not(:last-child), -.linked.vertical > entry + entry:drop(active):last-child { - border-top-color: #b58900; } - -.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: #b58900; } - -.linked.vertical > entry + entry.warning:focus:not(:last-child), -.linked.vertical > entry + entry.warning:focus:last-child { - border-top-color: #cb4b16; } - -.linked.vertical > entry.warning:focus:not(:only-child) + entry, -.linked.vertical > entry.warning:focus:not(:only-child) + button, -.linked.vertical > entry.warning:focus:not(:only-child) + combobox > box > button.combo { - border-top-color: #cb4b16; } - -.linked.vertical > entry + entry.error:focus:not(:last-child), -.linked.vertical > entry + entry.error:focus:last-child { - border-top-color: #dc322f; } - -.linked.vertical > entry.error:focus:not(:only-child) + entry, -.linked.vertical > entry.error:focus:not(:only-child) + button, -.linked.vertical > entry.error:focus:not(:only-child) + combobox > box > button.combo { - border-top-color: #dc322f; } - -.linked.vertical > button:active + entry, -.linked.vertical > button:checked + entry { - border-top-color: #268bd2; } - -.linked.vertical > button + button { - border-top-style: none; } - -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 0 1px #657b83; } - -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { - box-shadow: inset 0 1px rgba(101, 123, 131, 0.5); } - -.linked.vertical > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:disabled, -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked.vertical > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child) { - box-shadow: none; } - -toolbar.inline-toolbar toolbutton > button.flat, .inline-toolbar toolbutton > button.flat, toolbar.inline-toolbar toolbutton > button.sidebar-button, .inline-toolbar toolbutton > button.sidebar-button, .linked:not(.vertical) > entry, -.linked:not(.vertical) > entry:focus, .inline-toolbar button, .inline-toolbar button:backdrop, .linked:not(.vertical) > button, -.linked:not(.vertical) > button:hover, -.linked:not(.vertical) > button:active, -.linked:not(.vertical) > button:checked, spinbutton:not(.vertical) button, spinbutton:not(.vertical) entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, .primary-toolbar .linked:not(.vertical).path-bar > button, headerbar .linked:not(.vertical).path-bar > button, .primary-toolbar .linked:not(.vertical).path-bar > button:hover, headerbar .linked:not(.vertical).path-bar > button:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:active, headerbar .linked:not(.vertical).path-bar > button:active, .primary-toolbar .linked:not(.vertical).path-bar > button:checked, headerbar .linked:not(.vertical).path-bar > button:checked, .primary-toolbar .linked:not(.vertical).path-bar > button:disabled, headerbar .linked:not(.vertical).path-bar > button:disabled, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:active, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:checked, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:disabled, .linked:not(.vertical) > combobox > box > button.combo:dir(ltr), .linked:not(.vertical) > combobox > box > button.combo:dir(rtl) { - border-radius: 0; - border-right-style: none; } - -.linked:not(.vertical) > entry:first-child, .inline-toolbar button:first-child, .linked:not(.vertical) > button:first-child, toolbar.inline-toolbar toolbutton:first-child > button.flat, .inline-toolbar toolbutton:first-child > button.flat, toolbar.inline-toolbar toolbutton:first-child > button.sidebar-button, .inline-toolbar toolbutton:first-child > button.sidebar-button, spinbutton:not(.vertical) button:first-child, spinbutton:not(.vertical) entry:first-child, .linked:not(.vertical) > combobox:first-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child, .primary-toolbar .linked:not(.vertical).path-bar > button:first-child, headerbar .linked:not(.vertical).path-bar > button:first-child, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -.linked:not(.vertical) > entry:last-child, .inline-toolbar button:last-child, .linked:not(.vertical) > button:last-child, toolbar.inline-toolbar toolbutton:last-child > button.flat, .inline-toolbar toolbutton:last-child > button.flat, toolbar.inline-toolbar toolbutton:last-child > button.sidebar-button, .inline-toolbar toolbutton:last-child > button.sidebar-button, spinbutton:not(.vertical) button:last-child, spinbutton:not(.vertical) entry:last-child, .linked:not(.vertical) > combobox:last-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child, .primary-toolbar .linked:not(.vertical).path-bar > button:last-child, headerbar .linked:not(.vertical).path-bar > button:last-child, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - border-right-style: solid; } - -.linked:not(.vertical) > entry:only-child, .inline-toolbar button:only-child, .linked:not(.vertical) > button:only-child, toolbar.inline-toolbar toolbutton:only-child > button.flat, .inline-toolbar toolbutton:only-child > button.flat, toolbar.inline-toolbar toolbutton:only-child > button.sidebar-button, .inline-toolbar toolbutton:only-child > button.sidebar-button, spinbutton:not(.vertical) button:only-child, spinbutton:not(.vertical) entry:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child, .primary-toolbar .linked:not(.vertical).path-bar > button:only-child, headerbar .linked:not(.vertical).path-bar > button:only-child, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:only-child { - border-radius: 3px; - border-style: solid; } - -.linked.vertical > entry, -.linked.vertical > entry:focus, .linked.vertical > button, -.linked.vertical > button:hover, -.linked.vertical > button:active, -.linked.vertical > button:checked, spinbutton.vertical button, spinbutton.vertical entry, .linked.vertical > combobox > box > button.combo { - border-radius: 0; - border-bottom-style: none; } - -.linked.vertical > entry:first-child, .linked.vertical > button:first-child, spinbutton.vertical button:first-child, spinbutton.vertical entry:first-child, .linked.vertical > combobox:first-child > box > button.combo { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -.linked.vertical > entry:last-child, .linked.vertical > button:last-child, spinbutton.vertical button:last-child, spinbutton.vertical entry:last-child, .linked.vertical > combobox:last-child > box > button.combo { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border-bottom-style: solid; } - -.linked.vertical > entry:only-child, .linked.vertical > button:only-child, spinbutton.vertical button:only-child, spinbutton.vertical entry:only-child, .linked.vertical > combobox:only-child > box > button.combo { - border-radius: 3px; - border-style: solid; } - -menuitem.button.flat, -modelbutton.flat, button:link, button:visited, button:link:hover, button:link:active, button:link:checked, button:visited:hover, button:visited:active, button:visited:checked, notebook > header > tabs > tab button.flat:hover, notebook > header > tabs > tab button.sidebar-button:hover, notebook > header > tabs > tab button.flat:active, notebook > header > tabs > tab button.sidebar-button:active, notebook > header > tabs > tab button.flat:active:hover, notebook > header > tabs > tab button.sidebar-button:active:hover, .app-notification button.flat, .app-notification button.sidebar-button, .app-notification button.flat:disabled, .app-notification button.sidebar-button:disabled, calendar.button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -menuitem.button.flat, -modelbutton.flat { - transition: none; - min-height: 24px; - padding-left: 8px; - padding-right: 8px; - outline-offset: -3px; - border-radius: 2px; } - menuitem.button.flat:hover, - modelbutton.flat:hover { - background-color: #edeff0; } - menuitem.button.flat:checked, - modelbutton.flat:checked { - color: #5c616c; } - menuitem.button.flat check:last-child, - menuitem.button.flat radio:last-child, - modelbutton.flat check:last-child, - modelbutton.flat radio:last-child { - margin-left: 8px; } - menuitem.button.flat check:first-child, - menuitem.button.flat radio:first-child, - modelbutton.flat check:first-child, - modelbutton.flat radio:first-child { - margin-right: 8px; } - -modelbutton.flat arrow.left { - -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); } - -modelbutton.flat arrow.right { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - -*:link, button:link, button:visited { - color: #1e6ea7; } - *:link:visited, button:visited { - color: #16527c; } - *:selected *:link:visited, *:selected button:visited:link, *:selected button:visited { - color: #a7cbdc; } - *:link:hover, button:hover:link, button:hover:visited { - color: #268bd2; } - *:selected *:link:hover, *:selected button:hover:link, *:selected button:hover:visited { - color: #e8ebe1; } - *:link:active, button:active:link, button:active:visited { - color: #1e6ea7; } - *:selected *:link:active, *:selected button:active:link, *:selected button:active:visited { - color: #d2e1e0; } - infobar.info *:link, infobar.info button:link, infobar.info button:visited, infobar.question *:link, infobar.question button:link, infobar.question button:visited, infobar.warning *:link, infobar.warning button:link, infobar.warning button:visited, infobar.error *:link, infobar.error button:link, infobar.error button:visited, *:link:selected, button:selected:link, button:selected:visited, headerbar.selection-mode .subtitle:link, .selection-mode.titlebar:not(headerbar) .subtitle:link, - *:selected *:link, - *:selected button:link, - *:selected button:visited { - color: #d2e1e0; } - -button:link > label, button:visited > label { - text-decoration-line: underline; } - -spinbutton:drop(active) { - box-shadow: none; } - -spinbutton button:active { - color: #fdf6e3; } - -spinbutton:disabled { - color: rgba(92, 97, 108, 0.55); } - -spinbutton:not(.vertical) entry { - min-width: 28px; } - -spinbutton:not(.vertical):dir(ltr) entry, -spinbutton:not(.vertical):dir(rtl) button.up { - border-radius: 3px 0 0 3px; } - -spinbutton:not(.vertical) > button + button { - border-left-style: none; } - -spinbutton:not(.vertical) > button:hover:not(:active), -spinbutton:not(.vertical) > button:hover + button { - box-shadow: inset 1px 0 #657b83; } - -spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), -spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.5); } - -spinbutton:not(.vertical) > button:first-child:hover:not(:active), -spinbutton:not(.vertical) > button.up:dir(rtl):hover:not(:active), -spinbutton:not(.vertical) > entry + button:not(:active):hover { - box-shadow: none; } - -spinbutton:not(.vertical) > entry:focus + button { - border-left-color: #268bd2; } - -spinbutton:not(.vertical) > entry:drop(active) + button { - border-left-color: #b58900; } - -.osd spinbutton:not(.vertical) > button:hover:not(:active), -.osd spinbutton:not(.vertical) > button:hover + button { - box-shadow: inset 1px 0 rgba(1, 9, 11, 0.35); } - -.osd spinbutton:not(.vertical) > button:first-child:hover:not(:active), -.osd spinbutton:not(.vertical) > button.up:dir(rtl):hover:not(:active), -.osd spinbutton:not(.vertical) > entry + button:not(:active):hover { - box-shadow: none; } - -.osd spinbutton:not(.vertical) > entry:focus + button { - border-left-color: rgba(1, 9, 11, 0.35); } - -spinbutton.vertical button, spinbutton.vertical entry { - padding-left: 4px; - padding-right: 4px; - min-width: 0; } - -spinbutton.vertical button.up { - border-radius: 3px 3px 0 0; } - -spinbutton.vertical > entry:focus + button { - border-top-color: #268bd2; } - -spinbutton.vertical > entry:drop(active) + button { - border-top-color: #b58900; } - -combobox button.combo { - min-width: 0; - padding-left: 8px; - padding-right: 8px; } - -combobox arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); - min-height: 16px; - min-width: 16px; } - -toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #F5F6F7; } - toolbar separator, .inline-toolbar separator { - background: none; } - toolbar.horizontal separator, .horizontal.inline-toolbar separator { - margin: 0 6px; } - toolbar.vertical separator, .vertical.inline-toolbar separator { - margin: 6px 0; } - .osd toolbar, .osd .inline-toolbar { - background-color: transparent; } - toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.85); } - toolbar.osd.left, .osd.left.inline-toolbar, toolbar.osd.right, .osd.right.inline-toolbar, toolbar.osd.top, .osd.top.inline-toolbar, toolbar.osd.bottom, .osd.bottom.inline-toolbar { - border-radius: 0; } - toolbar.osd.top, .osd.top.inline-toolbar { - border-width: 0 0 1px 0; } - toolbar.osd.bottom, .osd.bottom.inline-toolbar { - border-width: 1px 0 0 0; } - toolbar.osd.left, .osd.left.inline-toolbar { - border-width: 0 1px 0 0; } - toolbar.osd.right, .osd.right.inline-toolbar { - border-width: 0 0 0 1px; } - toolbar:not(.inline-toolbar) switch, .inline-toolbar:not(.inline-toolbar) switch, - toolbar:not(.inline-toolbar) scale, .inline-toolbar:not(.inline-toolbar) scale, - toolbar:not(.inline-toolbar) entry, .inline-toolbar:not(.inline-toolbar) entry, - toolbar:not(.inline-toolbar) spinbutton, .inline-toolbar:not(.inline-toolbar) spinbutton, - toolbar:not(.inline-toolbar) button, .inline-toolbar:not(.inline-toolbar) button { - margin-right: 1px; - margin-bottom: 1px; } - toolbar:not(.inline-toolbar) .linked > button, .inline-toolbar:not(.inline-toolbar) .linked > button, - toolbar:not(.inline-toolbar) .linked > entry, .inline-toolbar:not(.inline-toolbar) .linked > entry { - margin-right: 0; } - -.primary-toolbar:not(.libreoffice-toolbar) { - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #002b36, rgba(0, 15, 18, 0.97)) 1 0 1 0; } - -.inline-toolbar { - background-color: #edeef0; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -searchbar { - background-color: #F5F6F7; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 0 1px; - padding: 3px; } - -actionbar { - padding: 6px; - border-top: 1px solid #dcdfe3; - background-color: #edeef0; } - -headerbar, -.titlebar:not(headerbar) { - min-height: 42px; - padding: 0 7px; - border-width: 0 0 1px; - border-style: solid; - border-color: #001b22; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: inset 0 1px rgba(0, 55, 69, 0.97); } - .csd headerbar, - .csd .titlebar:not(headerbar) { - background-color: rgba(0, 43, 54, 0.97); - border-color: rgba(0, 27, 34, 0.97); } - headerbar:backdrop, - .titlebar:backdrop:not(headerbar) { - transition: 200ms ease-out; - color: rgba(89, 128, 143, 0.5); - background-color: #00313e; } - .csd headerbar:backdrop, - .csd .titlebar:backdrop:not(headerbar) { - background-color: rgba(0, 49, 62, 0.97); } - headerbar .title, .titlebar:not(headerbar) .title { - padding-left: 12px; - padding-right: 12px; } - headerbar .subtitle, .titlebar:not(headerbar) .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - headerbar.selection-mode, - .selection-mode.titlebar:not(headerbar) { - color: #fdf6e3; - background-color: rgba(38, 139, 210, 0.95); - border-color: rgba(35, 128, 193, 0.95); - box-shadow: none; } - headerbar.selection-mode:backdrop, - .selection-mode.titlebar:backdrop:not(headerbar) { - background-color: rgba(38, 139, 210, 0.95); - color: rgba(253, 246, 227, 0.6); } - headerbar.selection-mode .selection-menu, .selection-mode.titlebar:not(headerbar) .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - headerbar.selection-mode .selection-menu GtkArrow, .selection-mode.titlebar:not(headerbar) .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - headerbar.selection-mode .selection-menu .arrow, .selection-mode.titlebar:not(headerbar) .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized headerbar.selection-mode, - .maximized .selection-mode.titlebar:not(headerbar) { - background-color: #268bd2; } - .tiled headerbar, .tiled headerbar:backdrop, - .maximized headerbar, .maximized headerbar:backdrop, - .tiled .titlebar:not(headerbar), - .tiled .titlebar:backdrop:not(headerbar), - .maximized .titlebar:not(headerbar), - .maximized .titlebar:backdrop:not(headerbar) { - border-radius: 0; } - .maximized headerbar, - .maximized .titlebar:not(headerbar) { - background-color: #002b36; - border-color: #001b22; } - .maximized headerbar:backdrop, - .maximized .titlebar:backdrop:not(headerbar) { - background-color: #00313e; } - headerbar.default-decoration, - .csd headerbar.default-decoration, headerbar.default-decoration:backdrop, - .csd headerbar.default-decoration:backdrop, - .default-decoration.titlebar:not(headerbar), - .csd .default-decoration.titlebar:not(headerbar), - .default-decoration.titlebar:backdrop:not(headerbar), - .csd .default-decoration.titlebar:backdrop:not(headerbar) { - min-height: 28px; - padding: 0 3px; - background-color: #002b36; - border-bottom-width: 0; } - .maximized headerbar.default-decoration, .maximized - .csd headerbar.default-decoration, .maximized headerbar.default-decoration:backdrop, .maximized - .csd headerbar.default-decoration:backdrop, - .maximized .default-decoration.titlebar:not(headerbar), - .maximized - .csd .default-decoration.titlebar:not(headerbar), - .maximized .default-decoration.titlebar:backdrop:not(headerbar), - .maximized - .csd .default-decoration.titlebar:backdrop:not(headerbar) { - background-color: #002b36; } - -.titlebar { - border-radius: 3px 3px 0 0; } - -headerbar entry, headerbar button, headerbar separator { - margin-top: 6px; - margin-bottom: 6px; } - -separator:first-child + headerbar, separator:first-child + headerbar:backdrop, headerbar:first-child, headerbar:first-child:backdrop { - border-top-left-radius: 3px; } - .maximized separator:first-child + headerbar, - .tiled separator:first-child + headerbar, .maximized separator:first-child + headerbar:backdrop, - .tiled separator:first-child + headerbar:backdrop, .maximized headerbar:first-child, - .tiled headerbar:first-child, .maximized headerbar:first-child:backdrop, - .tiled headerbar:first-child:backdrop { - border-radius: 0; } - -headerbar:last-child, headerbar:last-child:backdrop { - border-top-right-radius: 3px; } - .maximized headerbar:last-child, - .tiled headerbar:last-child, .maximized headerbar:last-child:backdrop, - .tiled headerbar:last-child:backdrop { - border-radius: 0; } - -window > .titlebar:not(headerbar), window > .titlebar:not(headerbar):backdrop, -window.csd > .titlebar:not(headerbar), -window.csd > .titlebar:not(headerbar):backdrop { - padding: 0; - background: none; - border: none; - box-shadow: none; } - -.titlebar:not(headerbar) > separator { - background-image: linear-gradient(to bottom, rgba(0, 27, 34, 0.97), rgba(0, 27, 34, 0.97)); } - -.primary-toolbar:not(.libreoffice-toolbar) separator, headerbar separator.titlebutton, .titlebar:not(headerbar) separator.titlebutton { - min-width: 1px; - min-height: 1px; - background: none; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(89, 128, 143, 0) 25%, rgba(89, 128, 143, 0.15) 25%, rgba(89, 128, 143, 0.15) 75%, rgba(89, 128, 143, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar:not(.libreoffice-toolbar) separator:backdrop, headerbar separator.titlebutton:backdrop, .titlebar:not(headerbar) separator.titlebutton:backdrop { - opacity: 0.6; } - -.primary-toolbar entry, headerbar entry { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar entry image, headerbar entry image, .primary-toolbar entry image:hover, headerbar entry image:hover { - color: inherit; } - .primary-toolbar entry:backdrop, headerbar entry:backdrop { - opacity: 0.85; } - .primary-toolbar entry:focus, headerbar entry:focus { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar entry:focus image, headerbar entry:focus image { - color: #fdf6e3; } - .primary-toolbar entry:disabled, headerbar entry:disabled { - color: rgba(89, 128, 143, 0.35); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.22); } - .primary-toolbar entry selection:focus, headerbar entry selection:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar entry progress, headerbar entry progress { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar entry.warning, headerbar entry.warning { - color: white; - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(125, 63, 34, 0.988); } - .primary-toolbar entry.warning:focus, headerbar entry.warning:focus { - color: white; - background-color: #cb4b16; } - .primary-toolbar entry.warning selection, headerbar entry.warning selection, .primary-toolbar entry.warning selection:focus, headerbar entry.warning selection:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar entry.error, headerbar entry.error { - color: white; - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(135, 47, 50, 0.988); } - .primary-toolbar entry.error:focus, headerbar entry.error:focus { - color: white; - background-color: #dc322f; } - .primary-toolbar entry.error selection, headerbar entry.error selection, .primary-toolbar entry.error selection:focus, headerbar entry.error selection:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar button, headerbar button { - color: rgba(89, 128, 143, 0.8); - outline-offset: -3px; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar button:backdrop, headerbar button:backdrop { - opacity: 0.7; } - .primary-toolbar button:hover, headerbar button:hover { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar button:active, headerbar button:active, .primary-toolbar button:checked, headerbar button:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar button:disabled, headerbar button:disabled { - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar button:disabled label, headerbar button:disabled label, .primary-toolbar button:disabled, headerbar button:disabled { - color: rgba(89, 128, 143, 0.35); } - .primary-toolbar button:disabled:active, headerbar button:disabled:active, .primary-toolbar button:disabled:checked, headerbar button:disabled:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.selection-mode.primary-toolbar button, headerbar.selection-mode button, .selection-mode.primary-toolbar button.flat, headerbar.selection-mode button.flat, .selection-mode.primary-toolbar button.sidebar-button, headerbar.selection-mode button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar):not(.stack-switcher) button:not(:last-child):not(:only-child), headerbar .linked:not(.vertical):not(.path-bar):not(.stack-switcher) button:not(:last-child):not(:only-child) { - margin-right: 1px; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > button, headerbar .linked:not(.vertical):not(.path-bar) > button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:hover, headerbar .linked:not(.vertical):not(.path-bar) > button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:active, headerbar .linked:not(.vertical):not(.path-bar) > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:checked, headerbar .linked:not(.vertical):not(.path-bar) > button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:disabled, headerbar .linked:not(.vertical):not(.path-bar) > button:disabled { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { - box-shadow: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, .primary-toolbar .linked:not(.vertical).path-bar > button, headerbar .linked:not(.vertical).path-bar > button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover, headerbar .linked:not(.vertical).path-bar > button:hover { - background-color: rgba(0, 193, 243, 0.37); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, .primary-toolbar .linked:not(.vertical).path-bar > button:active, headerbar .linked:not(.vertical).path-bar > button:active, .primary-toolbar .linked:not(.vertical).path-bar > button:checked, headerbar .linked:not(.vertical).path-bar > button:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, .primary-toolbar .linked:not(.vertical).path-bar > button:disabled, headerbar .linked:not(.vertical).path-bar > button:disabled { - color: rgba(89, 128, 143, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button + button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button + button, .primary-toolbar .linked:not(.vertical).path-bar > button + button, headerbar .linked:not(.vertical).path-bar > button + button { - border-left-style: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover, headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37), inset -1px 0 rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.error + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, headerbar .linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry.error, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry.error { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > button:active + entry, headerbar .linked:not(.vertical):not(.path-bar) > button:active + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:checked + entry, headerbar .linked:not(.vertical):not(.path-bar) > button:checked + entry { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar button.suggested-action, headerbar button.suggested-action { - background-clip: border-box; - color: white; - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar button.suggested-action.flat, headerbar button.suggested-action.flat, .primary-toolbar button.suggested-action.sidebar-button, headerbar button.suggested-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; } - .primary-toolbar button.suggested-action:hover, headerbar button.suggested-action:hover { - background-clip: border-box; - color: white; - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar button.suggested-action:active, headerbar button.suggested-action:active, .primary-toolbar button.suggested-action:checked, headerbar button.suggested-action:checked { - background-clip: border-box; - color: white; - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar button.suggested-action.flat:disabled, headerbar button.suggested-action.flat:disabled, .primary-toolbar button.suggested-action.sidebar-button:disabled, headerbar button.suggested-action.sidebar-button:disabled, .primary-toolbar button.suggested-action:disabled, headerbar button.suggested-action:disabled { - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar button.suggested-action.flat:disabled label, headerbar button.suggested-action.flat:disabled label, .primary-toolbar button.suggested-action.sidebar-button:disabled label, headerbar button.suggested-action.sidebar-button:disabled label, .primary-toolbar button.suggested-action.flat:disabled, headerbar button.suggested-action.flat:disabled, .primary-toolbar button.suggested-action.sidebar-button:disabled, headerbar button.suggested-action.sidebar-button:disabled, .primary-toolbar button.suggested-action:disabled label, headerbar button.suggested-action:disabled label, .primary-toolbar button.suggested-action:disabled, headerbar button.suggested-action:disabled { - color: rgba(89, 128, 143, 0.35); } - -.primary-toolbar button.suggested-action:backdrop, headerbar button.suggested-action:backdrop, .primary-toolbar button.suggested-action:backdrop, headerbar button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar button.destructive-action, headerbar button.destructive-action { - background-clip: border-box; - color: white; - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar button.destructive-action.flat, headerbar button.destructive-action.flat, .primary-toolbar button.destructive-action.sidebar-button, headerbar button.destructive-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; } - .primary-toolbar button.destructive-action:hover, headerbar button.destructive-action:hover { - background-clip: border-box; - color: white; - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar button.destructive-action:active, headerbar button.destructive-action:active, .primary-toolbar button.destructive-action:checked, headerbar button.destructive-action:checked { - background-clip: border-box; - color: white; - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar button.destructive-action.flat:disabled, headerbar button.destructive-action.flat:disabled, .primary-toolbar button.destructive-action.sidebar-button:disabled, headerbar button.destructive-action.sidebar-button:disabled, .primary-toolbar button.destructive-action:disabled, headerbar button.destructive-action:disabled { - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar button.destructive-action.flat:disabled label, headerbar button.destructive-action.flat:disabled label, .primary-toolbar button.destructive-action.sidebar-button:disabled label, headerbar button.destructive-action.sidebar-button:disabled label, .primary-toolbar button.destructive-action.flat:disabled, headerbar button.destructive-action.flat:disabled, .primary-toolbar button.destructive-action.sidebar-button:disabled, headerbar button.destructive-action.sidebar-button:disabled, .primary-toolbar button.destructive-action:disabled label, headerbar button.destructive-action:disabled label, .primary-toolbar button.destructive-action:disabled, headerbar button.destructive-action:disabled { - color: rgba(89, 128, 143, 0.35); } - -.primary-toolbar button.destructive-action:backdrop, headerbar button.destructive-action:backdrop, .primary-toolbar button.destructive-action:backdrop, headerbar button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar spinbutton:not(.vertical):focus, headerbar spinbutton:not(.vertical):focus { - color: #fdf6e3; - caret-color: #fdf6e3; } - -.primary-toolbar spinbutton:not(.vertical) button, headerbar spinbutton:not(.vertical) button, .primary-toolbar spinbutton:not(.vertical) button:disabled, headerbar spinbutton:not(.vertical) button:disabled { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - -.primary-toolbar spinbutton:not(.vertical) button:hover, headerbar spinbutton:not(.vertical) button:hover { - background-color: rgba(0, 193, 243, 0.37); } - -.primary-toolbar spinbutton:not(.vertical) button:active, headerbar spinbutton:not(.vertical) button:active, .primary-toolbar spinbutton:not(.vertical) button:checked, headerbar spinbutton:not(.vertical) button:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - -.primary-toolbar spinbutton:not(.vertical) button:disabled, headerbar spinbutton:not(.vertical) button:disabled { - color: rgba(89, 128, 143, 0.4); } - -.primary-toolbar spinbutton:not(.vertical) > button + button, headerbar spinbutton:not(.vertical) > button + button { - border-left-style: none; } - -.primary-toolbar spinbutton:not(.vertical) > button:hover:not(:active), headerbar spinbutton:not(.vertical) > button:hover:not(:active), .primary-toolbar spinbutton:not(.vertical) > button:hover + button, headerbar spinbutton:not(.vertical) > button:hover + button { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - -.primary-toolbar spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), headerbar spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), .primary-toolbar spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled, headerbar spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - -.primary-toolbar spinbutton:not(.vertical) > button:first-child:hover:not(:active), headerbar spinbutton:not(.vertical) > button:first-child:hover:not(:active), .primary-toolbar spinbutton:not(.vertical) > entry + button:not(:active):hover, headerbar spinbutton:not(.vertical) > entry + button:not(:active):hover { - box-shadow: none; } - -.primary-toolbar spinbutton:not(.vertical) > entry:focus + button, headerbar spinbutton:not(.vertical) > entry:focus + button { - border-left-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar combobox:disabled, headerbar combobox:disabled { - color: rgba(89, 128, 143, 0.2); } - -.primary-toolbar combobox > .linked > button.combo, headerbar combobox > .linked > button.combo { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .primary-toolbar combobox > .linked > button.combo image, headerbar combobox > .linked > button.combo image, .primary-toolbar combobox > .linked > button.combo image:hover, headerbar combobox > .linked > button.combo image:hover { - color: inherit; } - .primary-toolbar combobox > .linked > button.combo:hover, headerbar combobox > .linked > button.combo:hover { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; - box-shadow: none; } - .primary-toolbar combobox > .linked > button.combo:disabled, headerbar combobox > .linked > button.combo:disabled { - color: rgba(89, 128, 143, 0.35); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.22); } - -.primary-toolbar combobox > .linked > entry.combo:dir(ltr), headerbar combobox > .linked > entry.combo:dir(ltr) { - border-right-style: none; } - .primary-toolbar combobox > .linked > entry.combo:dir(ltr):focus, headerbar combobox > .linked > entry.combo:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar combobox > .linked > entry.combo:dir(rtl), headerbar combobox > .linked > entry.combo:dir(rtl) { - border-left-style: none; } - .primary-toolbar combobox > .linked > entry.combo:dir(rtl):focus, headerbar combobox > .linked > entry.combo:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar combobox > .linked > button.combo:dir(ltr), headerbar combobox > .linked > button.combo:dir(ltr), .primary-toolbar combobox > .linked > button.combo:dir(ltr):hover, headerbar combobox > .linked > button.combo:dir(ltr):hover, .primary-toolbar combobox > .linked > button.combo:dir(ltr):active, headerbar combobox > .linked > button.combo:dir(ltr):active, .primary-toolbar combobox > .linked > button.combo:dir(ltr):checked, headerbar combobox > .linked > button.combo:dir(ltr):checked, .primary-toolbar combobox > .linked > button.combo:dir(ltr):disabled, headerbar combobox > .linked > button.combo:dir(ltr):disabled { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - -.primary-toolbar combobox > .linked > button.combo:dir(rtl), headerbar combobox > .linked > button.combo:dir(rtl), .primary-toolbar combobox > .linked > button.combo:dir(rtl):hover, headerbar combobox > .linked > button.combo:dir(rtl):hover, .primary-toolbar combobox > .linked > button.combo:dir(rtl):active, headerbar combobox > .linked > button.combo:dir(rtl):active, .primary-toolbar combobox > .linked > button.combo:dir(rtl):checked, headerbar combobox > .linked > button.combo:dir(rtl):checked, .primary-toolbar combobox > .linked > button.combo:dir(rtl):disabled, headerbar combobox > .linked > button.combo:dir(rtl):disabled { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.primary-toolbar switch:backdrop, headerbar switch:backdrop { - opacity: 0.75; } - -.primary-toolbar progressbar trough, headerbar progressbar trough { - background-color: rgba(0, 0, 0, 0.37); } - -.primary-toolbar progressbar:backdrop, headerbar progressbar:backdrop { - opacity: 0.75; } - -.primary-toolbar scale:backdrop, headerbar scale:backdrop { - opacity: 0.75; } - -.primary-toolbar scale slider, headerbar scale slider { - background-color: #005469; - border-color: rgba(0, 0, 0, 0.67); } - .primary-toolbar scale slider:hover, headerbar scale slider:hover { - background-color: #006883; - border-color: rgba(0, 0, 0, 0.67); } - .primary-toolbar scale slider:active, headerbar scale slider:active { - background-color: #268bd2; - border-color: #268bd2; } - .primary-toolbar scale slider:disabled, headerbar scale slider:disabled { - background-color: rgba(0, 72, 90, 0.991); - border-color: rgba(0, 0, 0, 0.67); } - -.primary-toolbar scale trough, headerbar scale trough { - background-color: rgba(0, 0, 0, 0.37); } - .primary-toolbar scale trough:disabled, headerbar scale trough:disabled { - background-color: rgba(0, 0, 0, 0.27); } - -.path-bar button.text-button, .path-bar button.image-button, .path-bar button { - padding-left: 6px; - padding-right: 6px; } - -.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: 10px; } - -.path-bar button.text-button.image-button label:first-child, .path-bar button label:first-child { - padding-left: 10px; } - -.path-bar button.slider-button, .path-bar button:not(.image-button):not(.text-button) { - padding-left: 1px; - padding-right: 1px; } - -.path-bar button image { - padding-left: 4px; - padding-right: 4px; } - -treeview.view { - border-left-color: rgba(92, 97, 108, 0.15); - border-top-color: rgba(0, 0, 0, 0.1); } - * { - -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 acceleditor > label { - background-color: #268bd2; } - treeview.view:selected, treeview.view:selected:focus { - border-radius: 0; - border-left-color: #92c1db; - border-top-color: rgba(92, 97, 108, 0.1); } - treeview.view:disabled { - color: rgba(92, 97, 108, 0.55); } - treeview.view:disabled:selected { - color: #7cb6d9; } - treeview.view.separator { - min-height: 2px; - color: rgba(0, 0, 0, 0.1); } - treeview.view:drop(active) { - border-style: solid none; - border-width: 1px; - border-color: #41769f; } - 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: #adaca8; } - treeview.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - treeview.view.expander:hover { - color: #5c616c; } - treeview.view.expander:selected { - color: #bdd6de; } - treeview.view.expander:selected:hover { - color: #fdf6e3; } - treeview.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - treeview.view.progressbar, treeview.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-color: #268bd2; } - treeview.view.progressbar:selected, treeview.view.progressbar:selected:focus, treeview.view.progressbar:focus:selected, treeview.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-color: #fdf6e3; } - treeview.view.trough { - color: #5c616c; - background-color: #657b83; - border-radius: 3px; - border-width: 0; } - treeview.view.trough:selected, treeview.view.trough:selected:focus { - color: #fdf6e3; - background-color: rgba(0, 0, 0, 0.2); - border-radius: 3px; - border-width: 0; } - treeview.view header button { - min-height: 0; - min-width: 0; - padding: 3px 6px; - font-weight: bold; - color: #7c7f84; - background-color: #fdf6e3; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, #fdf6e3 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, #fdf6e3 80%) 0 1 0 0/0 1px 0 0 stretch; } - treeview.view header button:hover { - color: #268bd2; } - treeview.view header button:active { - color: #5c616c; } - treeview.view header button:active, treeview.view header button:hover { - background-color: #fdf6e3; } - treeview.view header button:active:hover { - color: #5c616c; } - treeview.view header button:disabled { - border-color: #F5F6F7; - background-image: none; } - treeview.view header button:last-child { - border-right-style: none; - border-image: none; } - treeview.view button.dnd, treeview.view button.dnd:selected, treeview.view button.dnd:hover, treeview.view button.dnd:active, - treeview.view header.button.dnd, - treeview.view header.button.dnd:selected, - treeview.view header.button.dnd:hover, - treeview.view header.button.dnd:active { - padding: 0 6px; - transition: none; - color: #fdf6e3; - background-color: #268bd2; - border-radius: 0; - border-style: none; } - -menubar, -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #002b36; - color: rgba(89, 128, 143, 0.8); } - menubar:backdrop, - .menubar:backdrop { - color: rgba(89, 128, 143, 0.5); } - menubar > menuitem, - .menubar > menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - menubar > menuitem:hover, - .menubar > menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - menubar > menuitem:disabled, - .menubar > menuitem:disabled { - color: rgba(89, 128, 143, 0.2); - border-color: transparent; } - -menu, -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; } - .csd menu, .csd - .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - menu separator, - .csd menu separator, - .menu separator, - .csd - .menu separator { - margin: 2px 0; - background-color: #fdf6e3; } - menu .separator:not(label), - .csd menu .separator:not(label), - .menu .separator:not(label), - .csd - .menu .separator:not(label) { - color: #fdf6e3; } - menu menuitem, - .menu menuitem { - min-height: 16px; - min-width: 40px; - padding: 5px; } - menu menuitem:hover, - .menu menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - menu menuitem:disabled, - .menu menuitem:disabled { - color: rgba(92, 97, 108, 0.55); } - menu menuitem arrow, - .menu menuitem arrow { - min-height: 16px; - min-width: 16px; } - menu menuitem arrow:dir(ltr), - .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) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); - margin-right: 10px; } - 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: 6px; - margin-left: 2px; } - menuitem check:dir(rtl), menuitem radio:dir(rtl) { - margin-left: 6px; - margin-right: 2px; } - menu > arrow, - .menu > arrow { - border-color: transparent; - background-color: transparent; - background-image: none; - min-width: 16px; - min-height: 16px; - padding: 4px; - background-color: #fdf6e3; - border-radius: 0; } - menu > arrow.top, - .menu > arrow.top { - margin-top: -6px; - border-bottom: 1px solid #ede7d7; - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } - menu > arrow.bottom, - .menu > arrow.bottom { - margin-bottom: -6px; - border-top: 1px solid #ede7d7; - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - menu > arrow:hover, - .menu > arrow:hover { - background-color: #ede7d7; } - menu > arrow:disabled, - .menu > arrow:disabled { - color: transparent; - background-color: transparent; - border-color: transparent; } - -popover, -popover.background { - padding: 2px; - border-radius: 3px; - background-clip: border-box; - background-color: #fdf6e3; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } - .csd popover, popover, .csd - popover.background, - popover.background { - border: 1px solid #cdd2d7; } - popover separator, - popover.background separator { - background-color: #fdf6e3; } - popover > list, - popover > .view, - popover > iconview, - popover > toolbar, - popover > .inline-toolbar, - popover.background > list, - popover.background > .view, - popover.background > iconview, - popover.background > toolbar, - popover.background > .inline-toolbar { - border-style: none; - background-color: transparent; } - -cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -notebook { - padding: 0; } - notebook.frame { - border: 1px solid #dcdfe3; } - notebook.frame > header { - margin: -1px; } - notebook.frame > header.top { - margin-bottom: 0; } - notebook.frame > header.bottom { - margin-top: 0; } - notebook.frame > header.left { - margin-right: 0; } - notebook.frame > header.right { - margin-left: 0; } - notebook.frame > header.top, notebook.frame > header.bottom { - padding-left: 0; - padding-right: 0; } - notebook.frame > header.left, notebook.frame > header.right { - padding-top: 0; - padding-bottom: 0; } - notebook > stack:not(:only-child) { - background-color: #fdf6e3; } - notebook > header { - padding: 2px; - background-color: #F5F6F7; } - notebook > header.top { - box-shadow: inset 0 -1px #dcdfe3; } - notebook > header.bottom { - box-shadow: inset 0 1px #dcdfe3; } - notebook > header.right { - box-shadow: inset 1px 0 #dcdfe3; } - notebook > header.left { - box-shadow: inset -1px 0 #dcdfe3; } - notebook > header.top { - padding-bottom: 0; } - notebook > header.top > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-bottom: none; - border-radius: 1px 1px 0 0; } - notebook > header.top > tabs > tab + tab { - margin-left: -1px; } - notebook > header.bottom { - padding-top: 0; } - notebook > header.bottom > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-top: none; - border-radius: 0 0 1px 1px; } - notebook > header.bottom > tabs > tab + tab { - margin-left: -1px; } - notebook > header.right { - padding-left: 0; } - notebook > header.right > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-left: none; - border-radius: 0 1px 1px 0; } - notebook > header.right > tabs > tab + tab { - margin-top: -1px; } - notebook > header.left { - padding-right: 0; } - notebook > header.left > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-right: none; - border-radius: 1px 0 0 1px; } - notebook > header.left > tabs > tab + tab { - margin-top: -1px; } - notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - notebook > header.top > tabs > arrow.up:last-child, notebook > header.bottom > tabs > arrow.up:last-child { - margin-left: 2px; } - 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.down:first-child, notebook > header.bottom > tabs > arrow.down:first-child { - margin-right: 2px; } - notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - notebook > header.left > tabs > arrow.up:last-child, notebook > header.right > tabs > arrow.up:last-child { - margin-top: 2px; } - 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.down:first-child, notebook > header.right > tabs > arrow.down:first-child { - margin-bottom: 2px; } - notebook > header > tabs > arrow { - color: rgba(92, 97, 108, 0.55); } - notebook > header > tabs > arrow:hover { - color: rgba(92, 97, 108, 0.775); } - notebook > header > tabs > arrow:active { - color: #5c616c; } - notebook > header > tabs > arrow:disabled { - color: rgba(92, 97, 108, 0.25); } - notebook > header.top > tabs > tab:hover:not(:checked) { - box-shadow: inset 0 -1px #dcdfe3; } - notebook > header.bottom > tabs > tab:hover:not(:checked) { - box-shadow: inset 0 1px #dcdfe3; } - notebook > header.left > tabs > tab:hover:not(:checked) { - box-shadow: inset -1px 0 #dcdfe3; } - notebook > header.right > tabs > tab:hover:not(:checked) { - box-shadow: inset 1px 0 #dcdfe3; } - notebook > header > tabs > tab { - color: rgba(92, 97, 108, 0.55); - background-color: rgba(253, 246, 227, 0); } - notebook > header > tabs > tab:hover:not(:checked) { - color: rgba(92, 97, 108, 0.775); - background-color: rgba(253, 246, 227, 0.5); - border-color: #dcdfe3; } - notebook > header > tabs > tab:checked { - color: #5c616c; - background-color: #fdf6e3; - border-color: #dcdfe3; } - notebook > header > tabs > tab button.flat, notebook > header > tabs > tab button.sidebar-button { - min-height: 22px; - min-width: 16px; - padding: 0; - color: #92959d; } - notebook > header > tabs > tab button.flat:hover, notebook > header > tabs > tab button.sidebar-button:hover { - color: #ff4d4d; } - notebook > header > tabs > tab button.flat:active, notebook > header > tabs > tab button.sidebar-button:active, notebook > header > tabs > tab button.flat:active:hover, notebook > header > tabs > tab button.sidebar-button:active:hover { - color: #268bd2; } - -scrollbar { - background-color: #fdf4de; - 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 #dcdfe3; } - scrollbar.bottom { - border-top: 1px solid #dcdfe3; } - scrollbar.left { - border-right: 1px solid #dcdfe3; } - scrollbar.right { - border-left: 1px solid #dcdfe3; } - scrollbar button { - border: none; } - 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-right-symbolic"); } - scrollbar.horizontal button.up { - -gtk-icon-source: -gtk-icontheme("pan-left-symbolic"); } - scrollbar slider { - min-width: 6px; - min-height: 6px; - margin: -1px; - border: 4px solid transparent; - border-radius: 8px; - background-clip: padding-box; - background-color: #b8babf; } - scrollbar slider:hover { - background-color: #c7c9cd; } - scrollbar slider:hover:active { - background-color: #268bd2; } - 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) { - opacity: 0.4; - border-color: transparent; - background-color: transparent; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { - margin: 0; - min-width: 4px; - min-height: 4px; - background-color: #8a8e96; - border: 1px solid rgba(255, 255, 255, 0.6); } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { - margin: 0 2px; - min-width: 40px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { - margin: 2px 0; - min-height: 40px; } - scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { - opacity: 0.99; } - scrollbar.horizontal slider { - min-width: 40px; } - scrollbar.vertical slider { - min-height: 40px; } - -switch { - font-size: 1px; - min-width: 52px; - min-height: 24px; - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: center center; } - switch slider { - min-width: 1px; - min-height: 1px; } - switch, switch slider { - outline-color: transparent; - color: transparent; - border: none; - box-shadow: none; } - -switch { - background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } - -menuitem:hover switch, -row:selected switch, -infobar switch { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -headerbar switch, -.primary-toolbar switch { - background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } - -switch:checked { - background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } - -menuitem:hover switch:checked, -row:selected switch:checked, -infobar switch:checked { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -headerbar switch:checked, -.primary-toolbar switch:checked { - background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } - -switch:disabled { - background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } - -menuitem:hover switch:disabled, -row:selected switch:disabled, -infobar switch:disabled { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -headerbar switch:disabled, -.primary-toolbar switch:disabled { - background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } - -switch:checked:disabled { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } - -menuitem:hover switch:checked:disabled, -row:selected switch:checked:disabled, -infobar switch:checked:disabled { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -headerbar switch:checked:disabled, -.primary-toolbar switch:checked:disabled { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } - -.check, -check, -treeview.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } - -.osd check, filechooser actionbar check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -menuitem check:hover, -.view check:selected, iconview check:selected, -treeview.check:selected, -row:selected check, -infobar check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:disabled, -check:disabled, -treeview.check:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } - -.osd check:disabled, filechooser actionbar check:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -menuitem check:disabled:hover, -.view check:disabled:selected, iconview check:disabled:selected, -treeview.check:disabled:selected, -row:selected check:disabled, -infobar check:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:indeterminate, -check:indeterminate, -treeview.check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } - -.osd check:indeterminate, filechooser actionbar check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -menuitem check:indeterminate:hover, -.view check:indeterminate:selected, iconview check:indeterminate:selected, -treeview.check:indeterminate:selected, -row:selected check:indeterminate, -infobar check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:indeterminate:disabled, -check:indeterminate:disabled, -treeview.check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } - -.osd check:indeterminate:disabled, filechooser actionbar check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -menuitem check:indeterminate:disabled:hover, -.view check:indeterminate:disabled:selected, iconview check:indeterminate:disabled:selected, -treeview.check:indeterminate:disabled:selected, -row:selected check:indeterminate:disabled, -infobar check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked, -check:checked, -treeview.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } - -.osd check:checked, filechooser actionbar check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -menuitem check:checked:hover, -.view check:checked:selected, iconview check:checked:selected, -treeview.check:checked:selected, -row:selected check:checked, -infobar check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:disabled, -check:checked:disabled, -treeview.check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } - -.osd check:checked:disabled, filechooser actionbar check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -menuitem check:checked:disabled:hover, -.view check:checked:disabled:selected, iconview check:checked:disabled:selected, -treeview.check:checked:disabled:selected, -row:selected check:checked:disabled, -infobar check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio, -radio, -treeview.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } - -.osd radio, filechooser actionbar radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -menuitem radio:hover, -.view radio:selected, iconview radio:selected, -treeview.radio:selected, -row:selected radio, -infobar radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:disabled, -radio:disabled, -treeview.radio:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } - -.osd radio:disabled, filechooser actionbar radio:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -menuitem radio:disabled:hover, -.view radio:disabled:selected, iconview radio:disabled:selected, -treeview.radio:disabled:selected, -row:selected radio:disabled, -infobar radio:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:indeterminate, -radio:indeterminate, -treeview.radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } - -.osd radio:indeterminate, filechooser actionbar radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -menuitem radio:indeterminate:hover, -.view radio:indeterminate:selected, iconview radio:indeterminate:selected, -treeview.radio:indeterminate:selected, -row:selected radio:indeterminate, -infobar radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:indeterminate:disabled, -radio:indeterminate:disabled, -treeview.radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } - -.osd radio:indeterminate:disabled, filechooser actionbar radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -menuitem radio:indeterminate:disabled:hover, -.view radio:indeterminate:disabled:selected, iconview radio:indeterminate:disabled:selected, -treeview.radio:indeterminate:disabled:selected, -row:selected radio:indeterminate:disabled, -infobar radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked, -radio:checked, -treeview.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } - -.osd radio:checked, filechooser actionbar radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -menuitem radio:checked:hover, -.view radio:checked:selected, iconview radio:checked:selected, -treeview.radio:checked:selected, -row:selected radio:checked, -infobar radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:disabled, -radio:checked:disabled, -treeview.radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } - -.osd radio:checked:disabled, filechooser actionbar radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -menuitem radio:checked:disabled:hover, -.view radio:checked:disabled:selected, iconview radio:checked:disabled:selected, -treeview.radio:checked:disabled:selected, -row:selected radio:checked:disabled, -infobar radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -.view.content-view.check:not(list), iconview.content-view.check:not(list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); - background-color: transparent; } - -.view.content-view.check:checked:not(list), iconview.content-view.check:checked:not(list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png")); - background-color: transparent; } - -checkbutton.text-button, radiobutton.text-button { - padding: 2px 0; - outline-offset: 0; } - -checkbutton label:not(:only-child):first-child, radiobutton label:not(:only-child):first-child { - margin-left: 4px; } - -checkbutton label:not(:only-child):last-child, radiobutton label:not(:only-child):last-child { - margin-right: 4px; } - -check, -radio { - min-width: 16px; - min-height: 16px; - margin: 0 2px; } - check:only-child, - menu menuitem check, - radio:only-child, - menu menuitem - radio { - margin: 0; } - -scale { - min-height: 15px; - min-width: 15px; - padding: 3px; } - scale.horizontal trough { - padding: 0 4px; } - scale.horizontal highlight, scale.horizontal fill { - margin: 0 -4px; } - scale.vertical trough { - padding: 4px 0; } - scale.vertical highlight, scale.vertical fill { - margin: -4px 0; } - scale slider { - min-height: 15px; - min-width: 15px; - margin: -6px; } - scale.fine-tune slider { - margin: -4px; } - 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: 4.5px; - border-radius: 2.5px; - background-color: #657b83; } - scale trough:disabled { - background-color: rgba(101, 123, 131, 0.55); } - .osd scale trough { - background-color: rgba(10, 80, 98, 0.95); } - .osd scale trough highlight { - background-color: #268bd2; } - menuitem:hover scale trough, - row:selected scale trough, - infobar scale trough { - background-color: rgba(0, 0, 0, 0.2); } - menuitem:hover scale trough highlight, - row:selected scale trough highlight, - infobar scale trough highlight { - background-color: #fdf6e3; } - menuitem:hover scale trough highlight:disabled, - row:selected scale trough highlight:disabled, - infobar scale trough highlight:disabled { - background-color: #9cc6db; } - menuitem:hover scale trough:disabled, - row:selected scale trough:disabled, - infobar scale trough:disabled { - background-color: rgba(0, 0, 0, 0.1); } - scale highlight { - border-radius: 2.5px; - background-color: #268bd2; } - scale highlight:disabled { - background-color: rgba(38, 139, 210, 0.55); } - scale fill { - border-radius: 2.5px; - background-color: rgba(38, 139, 210, 0.5); } - scale fill:disabled { - background-color: transparent; } - scale slider { - background-color: #fbfbfc; - border: 1px solid rgba(45, 55, 59, 0.5); - border-radius: 100%; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-property: background, border; } - scale slider:hover { - background-color: white; } - scale slider:active { - background-clip: border-box; - background-color: #268bd2; - border-color: #268bd2; } - scale slider:disabled { - background-color: #f9f6ec; - border-color: rgba(45, 55, 59, 0.3); } - menuitem:hover scale slider, - row:selected scale slider, - infobar scale slider { - background-clip: border-box; - background-color: #fdf6e3; - border-color: #fdf6e3; } - menuitem:hover scale slider:hover, - row:selected scale slider:hover, - infobar scale slider:hover { - background-color: #dde6e0; - border-color: #dde6e0; } - menuitem:hover scale slider:active, - row:selected scale slider:active, - infobar scale slider:active { - background-color: #92c1db; - border-color: #92c1db; } - menuitem:hover scale slider:disabled, - row:selected scale slider:disabled, - infobar scale slider:disabled { - background-color: #9cc6db; - border-color: #9cc6db; } - .osd scale slider { - background-clip: border-box; - background-color: #268bd2; - border-color: #268bd2; } - .osd scale slider:hover { - background-color: #4ca2df; - border-color: #4ca2df; } - .osd scale slider:active { - background-color: #1e6ea7; - border-color: #1e6ea7; } - scale value { - color: alpha(currentColor,0.4); } - scale marks { - color: alpha(currentColor,0.4); } - scale marks.top { - margin-bottom: 1px; - margin-top: -4px; } - scale marks.bottom { - margin-top: 1px; - margin-bottom: -4px; } - scale marks.top { - margin-right: 1px; - margin-left: -4px; } - scale marks.bottom { - margin-left: 1px; - margin-right: -4px; } - scale.fine-tune marks.top { - margin-bottom: 0px; - margin-top: -2px; } - scale.fine-tune marks.bottom { - margin-top: 0px; - margin-bottom: -2px; } - scale.fine-tune marks.top { - margin-right: 0px; - margin-left: -2px; } - scale.fine-tune marks.bottom { - margin-left: 0px; - margin-right: -2px; } - scale.horizontal indicator { - min-height: 3px; - min-width: 1px; } - scale.horizontal.fine-tune indicator { - min-height: 2px; } - scale.vertical indicator { - min-height: 1px; - min-width: 3px; } - scale.vertical.fine-tune indicator { - min-width: 2px; } - -progressbar { - padding: 0; - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - progressbar.osd { - min-width: 3px; - min-height: 3px; - background-color: transparent; } - progressbar.osd trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - progressbar progress { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - row:selected progressbar progress, - infobar progressbar progress { - background-color: #fdf6e3; } - progressbar trough { - border: none; - border-radius: 3px; - background-color: #657b83; } - row:selected progressbar trough, - infobar progressbar trough { - background-color: rgba(0, 0, 0, 0.2); } - -levelbar block { - min-width: 32px; - min-height: 1px; } - -levelbar.vertical block { - min-width: 1px; - min-height: 32px; } - -levelbar trough { - border: none; - padding: 3px; - border-radius: 3px; - background-color: #657b83; } - -levelbar.horizontal.discrete block { - margin: 0 1px; } - -levelbar.vertical.discrete block { - margin: 1px 0; } - -levelbar block:not(.empty) { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - -levelbar block.low { - border-color: #cb4b16; - background-color: #cb4b16; } - -levelbar block.high { - border-color: #268bd2; - background-color: #268bd2; } - -levelbar block.full { - border-color: #859900; - background-color: #859900; } - -levelbar block.empty { - background-color: rgba(92, 97, 108, 0.2); - border-color: rgba(92, 97, 108, 0.2); } - -printdialog paper { - border: 1px solid #dcdfe3; - background: #fdf6e3; - padding: 0; } - -printdialog .dialog-action-box { - margin: 12px; } - -frame > border, -.frame { - margin: 0; - padding: 0; - border-radius: 0; - border: 1px solid #dcdfe3; } - -frame.flat > border, -frame > border.flat, -.frame.flat { - border-style: none; } - -scrolledwindow viewport.frame { - border-style: none; } - -scrolledwindow overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 100%; - background-repeat: no-repeat; - background-position: right center; - background-color: transparent; - border: none; - box-shadow: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow junction { - border-color: transparent; - border-image: linear-gradient(to bottom, #dcdfe3 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #fdf4de; } - scrolledwindow junction:dir(rtl) { - border-image-slice: 0 1 0 0; } - -separator { - background-color: rgba(0, 0, 0, 0.1); - min-width: 1px; - min-height: 1px; } - -list { - background-color: #fdf6e3; - border-color: #dcdfe3; } - list row { - padding: 2px; } - -row:not(:hover) { - transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - -row.activatable.has-open-popup, row.activatable:hover { - background-color: rgba(0, 0, 0, 0.05); } - -row.activatable:active { - color: #5c616c; } - -row.activatable:disabled { - color: rgba(92, 97, 108, 0.55); } - row.activatable:disabled image { - color: inherit; } - -row.activatable:selected:active { - color: #fdf6e3; } - -row.activatable:selected.has-open-popup, row.activatable:selected:hover { - background-color: #227dbd; } - -.app-notification { - padding: 10px; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: rgba(2, 16, 20, 0.95); } - .app-notification border { - border: none; } - .app-notification button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .app-notification button.flat, .app-notification button.sidebar-button { - border-color: rgba(38, 139, 210, 0); } - .app-notification button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .app-notification button:active, .app-notification button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -expander arrow { - min-width: 16px; - min-height: 16px; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - expander arrow:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - expander arrow:hover { - color: #aaaeb7; } - expander arrow:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -calendar { - color: #5c616c; - border: 1px solid #dcdfe3; - border-radius: 3px; - padding: 2px; } - calendar:selected { - border-radius: 1.5px; } - calendar.header { - color: #5c616c; - border: none; } - calendar.button { - color: rgba(92, 97, 108, 0.45); } - calendar.button:hover { - color: #5c616c; } - calendar.button:disabled { - color: rgba(92, 97, 108, 0.55); } - calendar:indeterminate { - color: alpha(currentColor,0.55); } - calendar.highlight { - color: #5c616c; } - -messagedialog .titlebar { - min-height: 20px; - background-color: rgba(0, 43, 54, 0.97); - border-bottom: 1px solid rgba(0, 15, 18, 0.97); } - -messagedialog .dialog-action-area button { - padding: 8px; - min-height: 0; } - -messagedialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - -messagedialog.csd .dialog-action-area button { - border-bottom-style: none; } - -messagedialog.csd .dialog-action-area button { - border-radius: 0; - border-right-style: none; } - -messagedialog.csd .dialog-action-area button:last-child { - border-radius: 0 0 3px 0; - border-right-style: none; } - -messagedialog.csd .dialog-action-area button:first-child { - border-radius: 0 0 0 3px; - border-left-style: none; } - -messagedialog.csd .dialog-action-area button:only-child { - border-radius: 0 0 3px 3px; - border-left-style: none; - border-right-style: none; } - -filechooser #pathbarbox { - border-bottom: 1px solid rgba(220, 223, 227, 0.5); } - -filechooserbutton:drop(active) { - box-shadow: none; - border-color: transparent; } - -.sidebar { - border-style: none; - background-color: #fbfbfc; } - stacksidebar.sidebar:dir(ltr) list, - stacksidebar.sidebar.left list, - stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) { - border-right: 1px solid #dcdfe3; - border-left-style: none; } - stacksidebar.sidebar:dir(rtl) list, - stacksidebar.sidebar.right list, .sidebar:dir(rtl), .sidebar.right { - border-left: 1px solid #dcdfe3; - border-right-style: none; } - .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; } - -placessidebar > viewport.frame { - border-style: none; } - -placessidebar row { - min-height: 30px; - padding: 0px; } - placessidebar row > revealer { - padding: 0 10px; } - 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-width: 22px; - min-height: 22px; - margin-top: 2px; - margin-bottom: 2px; - padding: 0; - border-radius: 100%; - -gtk-outline-radius: 100%; } - button.sidebar-button:not(:hover):not(:active) > image { - opacity: 0.5; } - placessidebar row.sidebar-placeholder-row { - padding: 0 8px; - min-height: 2px; - background-image: linear-gradient(to bottom, #b58900, #b58900); - background-clip: content-box; } - placessidebar row.sidebar-new-bookmark-row { - color: #268bd2; } - placessidebar row:drop(active):not(:disabled) { - box-shadow: inset 0 1px #b58900, inset 0 -1px #b58900; } - placessidebar row:drop(active):not(:disabled), placessidebar row:drop(active):not(:disabled) label, placessidebar row:drop(active):not(:disabled) image { - color: #b58900; } - placessidebar row:drop(active):not(:disabled):selected { - background-color: #b58900; } - placessidebar row:drop(active):not(:disabled):selected, placessidebar row:drop(active):not(:disabled):selected label, placessidebar row:drop(active):not(:disabled):selected image { - color: #fdf6e3; } - -placesview .server-list-button > image { - -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 > actionbar > revealer > box > label { - padding-left: 8px; - padding-right: 8px; } - -paned > separator { - min-width: 1px; - min-height: 1px; - -gtk-icon-source: none; - border-style: none; - background-color: transparent; - background-image: linear-gradient(to bottom, #dcdfe3, #dcdfe3); - background-size: 1px 1px; } - paned > separator:selected { - background-image: linear-gradient(to bottom, #268bd2, #268bd2); } - paned > separator.wide { - min-width: 5px; - min-height: 5px; - background-color: #F5F6F7; - background-image: linear-gradient(to bottom, #dcdfe3, #dcdfe3), linear-gradient(to bottom, #dcdfe3, #dcdfe3); - background-size: 1px 1px, 1px 1px; } - -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; } - -infobar { - border-style: none; } - infobar.info, infobar.question, infobar.warning, infobar.error { - background-color: #268bd2; - color: #fdf6e3; - caret-color: currentColor; } - infobar.info selection, infobar.question selection, infobar.warning selection, infobar.error selection { - color: #268bd2; - background-color: #fdf6e3; } - -.selection-mode.primary-toolbar button:hover, headerbar.selection-mode button:hover, row:selected button, infobar.info button, infobar.question button, infobar.warning button, infobar.error button, .nautilus-window .floating-bar button { - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - -row:selected button.flat, row:selected button.sidebar-button, infobar.info button.flat, infobar.info button.sidebar-button, infobar.question button.flat, infobar.question button.sidebar-button, infobar.warning button.flat, infobar.warning button.sidebar-button, infobar.error button.flat, infobar.error button.sidebar-button, .nautilus-window .floating-bar button.flat, .nautilus-window .floating-bar button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .selection-mode.primary-toolbar button:disabled, headerbar.selection-mode button:disabled, row:selected button.flat:disabled, row:selected button.sidebar-button:disabled, infobar.info button.flat:disabled, infobar.info button.sidebar-button:disabled, infobar.question button.flat:disabled, infobar.question button.sidebar-button:disabled, infobar.warning button.flat:disabled, infobar.warning button.sidebar-button:disabled, infobar.error button.flat:disabled, infobar.error button.sidebar-button:disabled, .nautilus-window .floating-bar button.flat:disabled, .nautilus-window .floating-bar button.sidebar-button:disabled, .selection-mode.primary-toolbar button:disabled label, headerbar.selection-mode button:disabled label, row:selected button.flat:disabled label, row:selected button.sidebar-button:disabled label, infobar.info button.flat:disabled label, infobar.info button.sidebar-button:disabled label, infobar.question button.flat:disabled label, infobar.question button.sidebar-button:disabled label, infobar.warning button.flat:disabled label, infobar.warning button.sidebar-button:disabled label, infobar.error button.flat:disabled label, infobar.error button.sidebar-button:disabled label, .nautilus-window .floating-bar button.flat:disabled label, .nautilus-window .floating-bar button.sidebar-button:disabled label { - color: rgba(253, 246, 227, 0.4); } - -row:selected button:hover, infobar.info button:hover, infobar.question button:hover, infobar.warning button:hover, infobar.error button:hover, .nautilus-window .floating-bar button:hover { - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - -.selection-mode.primary-toolbar button:active, headerbar.selection-mode button:active, .selection-mode.primary-toolbar button:checked, headerbar.selection-mode button:checked, row:selected button:active, infobar.info button:active, infobar.question button:active, infobar.warning button:active, infobar.error button:active, .nautilus-window .floating-bar button:active, .selection-mode.primary-toolbar button:hover:active, headerbar.selection-mode button:hover:active, .selection-mode.primary-toolbar button:hover:checked, headerbar.selection-mode button:hover:checked, row:selected button:active:hover, infobar.info button:active:hover, infobar.question button:active:hover, infobar.warning button:active:hover, infobar.error button:active:hover, .nautilus-window .floating-bar button:active:hover, row:selected button:checked, infobar.info button:checked, infobar.question button:checked, infobar.warning button:checked, infobar.error button:checked, .nautilus-window .floating-bar button:checked { - color: #268bd2; - background-color: #fdf6e3; - border-color: #fdf6e3; } - -row:selected button:disabled, infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, .nautilus-window .floating-bar button:disabled { - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.4); } - row:selected button:disabled, infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, .nautilus-window .floating-bar button:disabled, row:selected button:disabled label, infobar.info button:disabled label, infobar.question button:disabled label, infobar.warning button:disabled label, infobar.error button:disabled label, .nautilus-window .floating-bar button:disabled label { - color: rgba(253, 246, 227, 0.5); } - .selection-mode.primary-toolbar button:disabled:active, headerbar.selection-mode button:disabled:active, .selection-mode.primary-toolbar button:disabled:checked, headerbar.selection-mode button:disabled:checked, row:selected button:disabled:active, infobar.info button:disabled:active, infobar.question button:disabled:active, infobar.warning button:disabled:active, infobar.error button:disabled:active, .nautilus-window .floating-bar button:disabled:active, .selection-mode.primary-toolbar button:disabled:checked, headerbar.selection-mode button:disabled:checked, .selection-mode.primary-toolbar button:disabled:active, headerbar.selection-mode button:disabled:active, row:selected button:disabled:checked, infobar.info button:disabled:checked, infobar.question button:disabled:checked, infobar.warning button:disabled:checked, infobar.error button:disabled:checked, .nautilus-window .floating-bar button:disabled:checked { - color: #268bd2; - background-color: rgba(253, 246, 227, 0.5); - border-color: rgba(253, 246, 227, 0.4); } - -tooltip { - border-radius: 2px; - box-shadow: none; } - tooltip.background { - background-color: rgba(12, 92, 112, 0.95); - background-clip: padding-box; } - tooltip.background label { - padding: 4px; } - tooltip decoration { - background-color: transparent; } - tooltip * { - background-color: transparent; - color: #657b83; } - -colorswatch, colorswatch:drop(active) { - border-style: none; } - -colorswatch.top { - border-top-left-radius: 2.5px; - border-top-right-radius: 2.5px; } - colorswatch.top overlay { - border-top-left-radius: 2px; - border-top-right-radius: 2px; } - -colorswatch.bottom { - border-bottom-left-radius: 2.5px; - border-bottom-right-radius: 2.5px; } - colorswatch.bottom overlay { - border-bottom-left-radius: 2px; - border-bottom-right-radius: 2px; } - -colorswatch.left, colorswatch:first-child:not(.top) { - border-top-left-radius: 2.5px; - border-bottom-left-radius: 2.5px; } - colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { - border-top-left-radius: 2px; - border-bottom-left-radius: 2px; } - -colorswatch.right, colorswatch:last-child:not(.bottom) { - border-top-right-radius: 2.5px; - border-bottom-right-radius: 2.5px; } - colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { - border-top-right-radius: 2px; - border-bottom-right-radius: 2px; } - -colorswatch.dark overlay { - color: rgba(255, 255, 255, 0.7); } - colorswatch.dark overlay:hover { - border-color: rgba(0, 0, 0, 0.5); } - -colorswatch.light overlay { - color: rgba(0, 0, 0, 0.7); } - colorswatch.light overlay:hover { - border-color: rgba(0, 0, 0, 0.3); } - -colorswatch overlay { - border: 1px solid rgba(0, 0, 0, 0.15); } - colorswatch overlay:hover { - background-color: rgba(255, 255, 255, 0.2); } - -colorswatch:disabled { - opacity: 0.5; } - colorswatch:disabled overlay { - border-color: rgba(0, 0, 0, 0.6); - box-shadow: none; } - -colorswatch#add-color-button { - border-style: solid; - border-width: 1px; - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - colorswatch#add-color-button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; } - colorswatch#add-color-button overlay { - border-color: transparent; - background-color: transparent; - background-image: none; } - -button.color { - padding: 0; } - button.color colorswatch:first-child:last-child, button.color colorswatch:first-child:last-child overlay { - margin: 4px; - border-radius: 0; } - -colorchooser .popover.osd { - border-radius: 3px; } - -.content-view { - background-color: #fdf6e3; } - .content-view:hover { - -gtk-icon-effect: highlight; } - -.scale-popup button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; } - -.context-menu, popover.touch-selection, .csd popover.touch-selection, -popover.background.touch-selection, .csd popover.background.touch-selection { - font: initial; } - -.monospace { - font-family: Monospace; } - -button.circular, button.nautilus-circular-button.image-button, -button.circular-button { - padding: 0; - min-width: 16px; - min-height: 24px; - padding: 2px 6px; - border-radius: 50%; - -gtk-outline-radius: 50%; } - button.circular label, button.nautilus-circular-button.image-button label, - button.circular-button label { - padding: 0; } - -.keycap { - min-width: 16px; - min-height: 20px; - padding: 3px 6px 4px 6px; - color: #5c616c; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; - border-radius: 2.5px; - box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.05); } - -stackswitcher button.text-button { - min-width: 80px; } - -stackswitcher button.circular, stackswitcher button.nautilus-circular-button.image-button { - min-width: 0; } - -*:drop(active):focus, -*:drop(active) { - box-shadow: inset 0 0 0 1px #b58900; } - -decoration { - border-radius: 3px 3px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.97), 0 8px 8px 0 rgba(0, 0, 0, 0.2); - margin: 10px; } - decoration:backdrop { - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.87), 0 8px 8px 0 transparent, 0 5px 5px 0 rgba(0, 0, 0, 0.2); - transition: 200ms ease-out; } - .fullscreen decoration, - .tiled decoration { - border-radius: 0; } - .popup decoration { - box-shadow: none; - border-radius: 0; } - .ssd decoration { - border-radius: 3px 3px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } - .ssd decoration.maximized { - border-radius: 0; } - .csd.popup decoration { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } - tooltip.csd decoration { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } - messagedialog.csd decoration { - border-radius: 3px; } - .solid-csd decoration { - border-radius: 0; - margin: 1px; - background-color: rgba(0, 43, 54, 0.97); - box-shadow: none; } - -headerbar.default-decoration button.titlebutton, -.titlebar.default-decoration button.titlebutton { - padding: 0 4px; - min-width: 0; - min-height: 0; - margin: 0; } - -headerbar button.titlebutton, -.titlebar button.titlebutton { - padding: 0; - min-width: 24px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(0, 43, 54, 0); } - headerbar button.titlebutton:hover, - .titlebar button.titlebutton:hover { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - headerbar button.titlebutton:active, headerbar button.titlebutton:checked, - .titlebar button.titlebutton:active, - .titlebar button.titlebutton:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - headerbar button.titlebutton.close, headerbar button.titlebutton.maximize, headerbar button.titlebutton.minimize, - .titlebar button.titlebutton.close, - .titlebar button.titlebutton.maximize, - .titlebar button.titlebutton.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; } - headerbar button.titlebutton.close:backdrop, headerbar button.titlebutton.maximize:backdrop, headerbar button.titlebutton.minimize:backdrop, - .titlebar button.titlebutton.close:backdrop, - .titlebar button.titlebutton.maximize:backdrop, - .titlebar button.titlebutton.minimize:backdrop { - opacity: 1; } - headerbar button.titlebutton.close, - .titlebar button.titlebutton.close { - background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } - headerbar button.titlebutton.close:backdrop, - .titlebar button.titlebutton.close:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } - headerbar button.titlebutton.close:hover, - .titlebar button.titlebutton.close:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } - headerbar button.titlebutton.close:active, - .titlebar button.titlebutton.close:active { - background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } - headerbar button.titlebutton.maximize, - .titlebar button.titlebutton.maximize { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-dark.png"), url("assets/titlebutton-maximize-dark@2.png")); } - headerbar button.titlebutton.maximize:backdrop, - .titlebar button.titlebutton.maximize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop-dark.png"), url("assets/titlebutton-maximize-backdrop-dark@2.png")); } - headerbar button.titlebutton.maximize:hover, - .titlebar button.titlebutton.maximize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover-dark.png"), url("assets/titlebutton-maximize-hover-dark@2.png")); } - headerbar button.titlebutton.maximize:active, - .titlebar button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active-dark.png"), url("assets/titlebutton-maximize-active-dark@2.png")); } - headerbar button.titlebutton.minimize, - .titlebar button.titlebutton.minimize { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-dark.png"), url("assets/titlebutton-minimize-dark@2.png")); } - headerbar button.titlebutton.minimize:backdrop, - .titlebar button.titlebutton.minimize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop-dark.png"), url("assets/titlebutton-minimize-backdrop-dark@2.png")); } - headerbar button.titlebutton.minimize:hover, - .titlebar button.titlebutton.minimize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover-dark.png"), url("assets/titlebutton-minimize-hover-dark@2.png")); } - headerbar button.titlebutton.minimize:active, - .titlebar button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active-dark.png"), url("assets/titlebutton-minimize-active-dark@2.png")); } - -.view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, .view text:selected, iconview text:selected, -textview text:selected, iconview text:selected:focus, -textview text:selected:focus, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, -textview text selection:focus, -textview text selection, flowbox flowboxchild:selected, entry selection:focus, entry selection, menuitem.button.flat:active, menuitem.button.flat:active arrow, menuitem.button.flat:selected, menuitem.button.flat:selected arrow, -modelbutton.flat:active, -modelbutton.flat:active arrow, -modelbutton.flat:selected, -modelbutton.flat:selected arrow, treeview.view:selected, treeview.view:selected:focus, row:selected, calendar:selected, .nemo-window .nemo-window-pane widget.entry:selected:focus, .nemo-window .nemo-window-pane widget.entry:selected, filechooser placessidebar.sidebar row.sidebar-row.has-open-popup:selected, filechooser placessidebar.sidebar row.sidebar-row:selected, filechooser placessidebar.sidebar row.sidebar-row:selected:hover, filechooser placessidebar.sidebar row.sidebar-row:active:hover, -.nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup:selected, -.nautilus-window placessidebar.sidebar row.sidebar-row:selected, -.nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover, -.nautilus-window placessidebar.sidebar row.sidebar-row:active:hover { - background-color: #268bd2; } - row:selected label, label:selected, .view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, .view text:selected, iconview text:selected, - textview text:selected, iconview text:selected:focus, - textview text:selected:focus, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, - textview text selection:focus, - textview text selection, flowbox flowboxchild:selected, entry selection:focus, entry selection, menuitem.button.flat:active, menuitem.button.flat:active arrow, menuitem.button.flat:selected, menuitem.button.flat:selected arrow, - modelbutton.flat:active, - modelbutton.flat:active arrow, - modelbutton.flat:selected, - modelbutton.flat:selected arrow, treeview.view:selected, treeview.view:selected:focus, row:selected, calendar:selected, .nemo-window .nemo-window-pane widget.entry:selected:focus, .nemo-window .nemo-window-pane widget.entry:selected, filechooser placessidebar.sidebar row.sidebar-row.has-open-popup:selected, filechooser placessidebar.sidebar row.sidebar-row:selected, filechooser placessidebar.sidebar row.sidebar-row:selected:hover, filechooser placessidebar.sidebar row.sidebar-row:active:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup:selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row:active:hover { - color: #fdf6e3; } - row:selected label:disabled, label:disabled:selected, .view:disabled:selected, iconview:disabled:selected, iconview:disabled:selected:focus, .view text:disabled:selected, iconview text:disabled:selected, - textview text:disabled:selected, iconview text selection:disabled:focus, .view text selection:disabled, iconview text selection:disabled, - textview text selection:disabled, flowbox flowboxchild:disabled:selected, label:disabled selection, entry selection:disabled, menuitem.button.flat:disabled:active, menuitem.button.flat:active arrow:disabled, menuitem.button.flat:disabled:selected, menuitem.button.flat:selected arrow:disabled, - modelbutton.flat:disabled:active, - modelbutton.flat:active arrow:disabled, - modelbutton.flat:disabled:selected, - modelbutton.flat:selected arrow:disabled, treeview.view:disabled:selected:focus, row:disabled:selected, calendar:disabled:selected, .nemo-window .nemo-window-pane widget.entry:disabled:selected, filechooser placessidebar.sidebar row.sidebar-row:disabled:selected, filechooser placessidebar.sidebar row.sidebar-row:disabled:active:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled:selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled:active:hover { - color: #92c1db; } - -.gedit-bottom-panel-paned notebook > header.top > tabs > tab:checked, -terminal-window notebook > header.top > tabs > tab:checked { - box-shadow: inset 0 -1px #dcdfe3; } - -terminal-window notebook > header.top, -.mate-terminal notebook > header.top { - padding-top: 3px; - box-shadow: inset 0 1px #001b22, inset 0 -1px #dcdfe3; } - terminal-window notebook > header.top button, - .mate-terminal notebook > header.top button { - padding: 0; - min-width: 24px; - min-height: 24px; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item, .caja-desktop { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active, .caja-desktop:active { - color: #5c616c; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected, .caja-desktop:selected { - color: #fdf6e3; - text-shadow: none; } - -.nautilus-canvas-item.dim-label, label.nautilus-canvas-item.separator, -popover.background label.nautilus-canvas-item.separator, headerbar .nautilus-canvas-item.subtitle, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle, -.nautilus-list-dim-label { - color: #a9acb2; } - .nautilus-canvas-item.dim-label:selected, label.nautilus-canvas-item.separator:selected, headerbar .nautilus-canvas-item.subtitle:selected, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, label.nautilus-canvas-item.separator:selected:focus, headerbar .nautilus-canvas-item.subtitle:selected:focus, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle:selected:focus, - .nautilus-list-dim-label:selected, - .nautilus-list-dim-label:selected:focus { - color: #d2e1e0; } - -.nautilus-window searchbar { - border-top: 1px solid #dcdfe3; } - -.nautilus-window .searchbar-container { - margin-top: -1px; } - -.nautilus-window notebook, -.nautilus-window notebook > stack:not(:only-child) searchbar { - background-color: #fdf6e3; } - -.disk-space-display { - border-style: solid; - border-width: 1px; } - .disk-space-display.unknown { - background-color: rgba(92, 97, 108, 0.5); - border-color: rgba(69, 72, 80, 0.5); } - .disk-space-display.used { - background-color: rgba(38, 139, 210, 0.8); - border-color: rgba(30, 110, 167, 0.8); } - .disk-space-display.free { - background-color: #edeef0; - border-color: #d0d5da; } - -@keyframes needs_attention_keyframes { - 0% { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - 100% { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } } - -.nautilus-operations-button-needs-attention { - animation: needs_attention_keyframes 2s ease-in-out; } - -.nautilus-operations-button-needs-attention-multiple { - animation: needs_attention_keyframes 3s ease-in-out; - animation-iteration-count: 3; } - -.conflict-row.activatable, .conflict-row.activatable:active { - color: white; - background-color: #dc322f; } - -.conflict-row.activatable:hover { - background-color: #e35d5b; } - -.conflict-row.activatable:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.nemo-window .nemo-places-sidebar.frame { - border-width: 0; } - -.nemo-window notebook { - background-color: #fdf6e3; } - -.nemo-window .nemo-window-pane widget.entry { - border: 1px solid; - border-radius: 3px; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:not(:last-child):not(:only-child) { - margin: 0 0 1px 0; } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover { - background-color: rgba(0, 193, 243, 0.37); } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:active, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:disabled { - color: rgba(89, 128, 143, 0.4); } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button + button { - border-left-style: none; } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37), inset -1px 0 rgba(0, 0, 0, 0.37); } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.37); } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.37); } - -.caja-notebook { - border-top: 1px solid #dcdfe3; } - -.caja-side-pane .frame { - border-width: 1px 0 0; } - -.caja-notebook .frame { - border-width: 0 0 1px; } - -.open-document-selector-treeview.view, iconview.open-document-selector-treeview { - padding: 3px 6px 3px 6px; - border-color: #fdf6e3; } - .open-document-selector-treeview.view:hover, iconview.open-document-selector-treeview:hover { - background-color: #f2ecdb; } - .open-document-selector-treeview.view:hover:selected, iconview.open-document-selector-treeview:hover:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.open-document-selector-name-label { - color: #5c616c; } - -.open-document-selector-path-label { - color: #adaca8; - font-size: smaller; } - .open-document-selector-path-label:selected { - color: rgba(253, 246, 227, 0.9); } - -.gedit-document-panel row button { - min-width: 22px; - min-height: 22px; - padding: 0; - color: transparent; - background: none; - border: none; - box-shadow: none; } - .gedit-document-panel row button image { - color: inherit; } - -.gedit-document-panel row:hover:not(:selected) button { - color: #92959d; } - .gedit-document-panel row:hover:not(:selected) button:hover { - color: #ff4d4d; } - .gedit-document-panel row:hover:not(:selected) button:active { - color: #5c616c; } - -.gedit-document-panel row:hover:selected button:hover { - color: #ff6666; - background: none; - border: none; - box-shadow: none; } - .gedit-document-panel row:hover:selected button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel-dragged-row { - border: 1px solid #dcdfe3; - background-color: #d9dde0; - color: #5c616c; } - -.gedit-side-panel-paned statusbar { - border-top: 1px solid #dcdfe3; - background-color: #F5F6F7; } - -.gedit-search-slider { - background-color: #fbfbfc; - padding: 6px; - border-color: #dcdfe3; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -.gedit-search-entry-occurrences-tag { - color: rgba(92, 97, 108, 0.6); - border: none; - margin: 2px; - padding: 2px; } - -.gedit-map-frame border { - border-color: rgba(0, 0, 0, 0.3); - border-width: 0; } - .gedit-map-frame border:dir(ltr) { - border-left-width: 1px; } - .gedit-map-frame border:dir(rtl) { - border-right-width: 1px; } - -.pluma-window statusbar frame > border { - border: none; } - -.pluma-window notebook > stack scrolledwindow { - border-width: 0 0 1px 0; } - -#pluma-status-combo-button { - min-height: 0; - padding: 0; - border-top: none; - border-bottom: none; - border-radius: 0; } - -.gb-search-entry-occurrences-tag { - background: none; } - -workbench.csd > stack.titlebar:not(headerbar) { - padding: 0; - background: none; - border: none; - box-shadow: none; } - workbench.csd > stack.titlebar:not(headerbar) headerbar, workbench.csd > stack.titlebar:not(headerbar) headerbar:first-child, workbench.csd > stack.titlebar:not(headerbar) headerbar:last-child { - border-radius: 3px 3px 0 0; } - -editortweak .linked > entry.search:focus + .gb-linked-scroller { - border-top-color: #268bd2; } - -layouttab { - background-color: #fdf6e3; } - -layout { - border: 1px solid #dcdfe3; - -PnlDockBin-handle-size: 1; } - -eggsearchbar box.search-bar { - border-bottom: 1px solid #dcdfe3; } - -pillbox { - color: #fdf6e3; - background-color: #268bd2; - border-radius: 3px; } - pillbox:disabled label { - color: rgba(253, 246, 227, 0.5); } - -docktabstrip { - padding: 0 6px; - background-color: #F5F6F7; - border-bottom: 1px solid #dcdfe3; } - docktabstrip docktab { - min-height: 28px; - border: solid transparent; - border-width: 0 1px; } - docktabstrip docktab label { - opacity: 0.5; } - docktabstrip docktab:checked label, docktabstrip docktab:hover label { - opacity: 1; } - docktabstrip docktab:checked { - border-color: #dcdfe3; - background-color: #fdf6e3; } - -dockbin { - border: 1px solid #dcdfe3; - -PnlDockBin-handle-size: 1; } - -dockpaned { - border: 1px solid #dcdfe3; } - -dockoverlayedge { - background-color: #F5F6F7; } - dockoverlayedge docktabstrip { - padding: 0; - border: none; } - dockoverlayedge.left-edge tab:checked, - dockoverlayedge.right-edge tab:checked { - border-width: 1px 0; } - -popover.messagepopover.background { - padding: 0; } - -popover.messagepopover .popover-content-area { - margin: 16px; } - -popover.messagepopover .popover-action-area { - margin: 8px; } - popover.messagepopover .popover-action-area button:not(:first-child):not(:last-child) { - margin: 0 4px; } - -popover.popover-selector { - padding: 0; } - popover.popover-selector list row { - padding: 5px 0; } - popover.popover-selector list row image { - margin-left: 3px; - margin-right: 10px; } - -entry.search.preferences-search { - border: none; - border-right: 1px solid #dcdfe3; - border-bottom: 1px solid #dcdfe3; - border-radius: 0; } - -preferences stacksidebar.sidebar list { - background-image: linear-gradient(to bottom, #fdf6e3, #fdf6e3); } - -preferences stacksidebar.sidebar list separator { - background-color: transparent; } - -devhelppanel entry:focus, -symboltreepanel entry:focus { - border-color: #dcdfe3; } - -button.run-arrow-button { - min-width: 12px; } - -omnibar.linked > entry:not(:only-child) { - border-style: solid; - border-radius: 3px; - margin-left: 1px; - margin-right: 1px; } - -gstyleslidein #scale_box button.toggle:checked, -gstyleslidein #strings_controls button.toggle:checked, -gstyleslidein #palette_controls button.toggle:checked, -gstyleslidein #components_controls button.toggle:checked { - color: #5c616c; } - -configurationview entry.flat { - background: none; } - -configurationview list { - border-width: 0; } - -.documents-scrolledwin.frame { - border-width: 0; } - -button.documents-load-more { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon, .photos-collection-icon { - background-color: rgba(92, 97, 108, 0.3); - border-radius: 2px; } - -button.documents-favorite:active, -button.documents-favorite:active:hover { - color: #78b9e6; } - -.documents-entry-tag, .photos-entry-tag { - color: #fdf6e3; - background: #268bd2; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover, .photos-entry-tag:hover { - color: #fdf6e3; - background: #3295da; } - .documents-entry-tag:active, .photos-entry-tag:active { - color: #fdf6e3; - background: #2380c1; } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -.photos-fade-in { - opacity: 1.0; - transition: opacity 0.2s ease-out; } - -.photos-fade-out { - opacity: 0.0; - transition: opacity 0.2s ease-out; } - -.tweak-categories, -.tweak-category:not(:selected):not(:hover) { - background-image: linear-gradient(to bottom, #fdf6e3, #fdf6e3); } - -.tr-workarea undershoot, -.tr-workarea overshoot { - border-color: transparent; } - -.atril-window .primary-toolbar toolbar, .atril-window .primary-toolbar .inline-toolbar { - background: none; } - -#gf-bubble, #gf-bubble.solid, -#gf-osd-window, -#gf-osd-window.solid, -#gf-input-source-popup, -#gf-input-source-popup.solid, -#gf-candidate-popup, -#gf-candidate-popup.solid { - color: #768d96; - background-color: rgba(7, 54, 66, 0.95); - border: 1px solid rgba(3, 24, 29, 0.95); - border-radius: 2px; } - -#gf-bubble levelbar block.low, #gf-bubble levelbar block.high, #gf-bubble levelbar block.full, -#gf-osd-window levelbar block.low, -#gf-osd-window levelbar block.high, -#gf-osd-window levelbar block.full, -#gf-input-source-popup levelbar block.low, -#gf-input-source-popup levelbar block.high, -#gf-input-source-popup levelbar block.full, -#gf-candidate-popup levelbar block.low, -#gf-candidate-popup levelbar block.high, -#gf-candidate-popup levelbar block.full { - background-color: #268bd2; - border-color: #268bd2; } - -#gf-bubble levelbar block.empty, -#gf-osd-window levelbar block.empty, -#gf-input-source-popup levelbar block.empty, -#gf-candidate-popup levelbar block.empty { - background-color: rgba(5, 35, 43, 0.95); } - -#gf-bubble levelbar trough, -#gf-osd-window levelbar trough, -#gf-input-source-popup levelbar trough, -#gf-candidate-popup levelbar trough { - background: none; } - -#gf-input-source { - min-height: 32px; - min-width: 40px; } - #gf-input-source:selected { - color: #fdf6e3; - background-color: #268bd2; - border-radius: 2px; } - -gf-candidate-box label { - padding: 3px; } - -gf-candidate-box:hover, gf-candidate-box:selected { - color: #fdf6e3; - background-color: #268bd2; - border-radius: 2px; } - -MsdOsdWindow.background.osd { - border-radius: 2px; - border: 1px solid rgba(3, 24, 29, 0.95); } - MsdOsdWindow.background.osd .progressbar { - background-color: #268bd2; - border: none; - border-color: red; - border-radius: 5px; } - MsdOsdWindow.background.osd .trough { - background-color: rgba(5, 35, 43, 0.95); - border: none; - border-radius: 5px; } - -.mate-panel-menu-bar, .mate-panel-menu-bar menubar, -panel-toplevel.background, -panel-toplevel.background menubar { - background-color: #05242c; } - -.mate-panel-menu-bar menubar, -.mate-panel-menu-bar #PanelApplet label, -.mate-panel-menu-bar #PanelApplet image, -panel-toplevel.background menubar, -panel-toplevel.background #PanelApplet label, -panel-toplevel.background #PanelApplet image { - color: #657b83; } - -.mate-panel-menu-bar button label, .mate-panel-menu-bar button image, -.mate-panel-menu-bar #tasklist-button label, -.mate-panel-menu-bar #tasklist-button image, -panel-toplevel.background button label, -panel-toplevel.background button image, -panel-toplevel.background #tasklist-button label, -panel-toplevel.background #tasklist-button image { - color: inherit; } - -.mate-panel-menu-bar .wnck-pager, -panel-toplevel.background .wnck-pager { - color: #333e42; - background-color: rgba(0, 0, 0, 0.95); } - .mate-panel-menu-bar .wnck-pager:hover, - panel-toplevel.background .wnck-pager:hover { - background-color: rgba(7, 55, 67, 0.95); } - .mate-panel-menu-bar .wnck-pager:selected, - panel-toplevel.background .wnck-pager:selected { - color: #78b9e6; - background-color: #268bd2; } - -.mate-panel-menu-bar na-tray-applet, -panel-toplevel.background na-tray-applet { - -NaTrayApplet-icon-padding: 0; - -NaTrayApplet-icon-size: 16px; } - -.xfce4-panel.panel { - background-color: rgba(5, 36, 44, 0.95); - text-shadow: none; - -gtk-icon-shadow: none; } - -#tasklist-button { - color: rgba(101, 123, 131, 0.8); - border-radius: 0; - border: none; - background-color: rgba(5, 36, 44, 0); } - #tasklist-button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); } - #tasklist-button:checked { - color: white; - background-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -.mate-panel-menu-bar button:not(#tasklist-button), -panel-toplevel.background button:not(#tasklist-button), .xfce4-panel.panel button.flat, .xfce4-panel.panel button.sidebar-button { - color: #657b83; - border-radius: 0; - border: none; - background-color: rgba(5, 36, 44, 0); } - .mate-panel-menu-bar button:hover:not(#tasklist-button), - panel-toplevel.background button:hover:not(#tasklist-button), .xfce4-panel.panel button.flat:hover, .xfce4-panel.panel button.sidebar-button:hover { - border: none; - background-color: rgba(10, 74, 90, 0.95); } - .mate-panel-menu-bar button:active:not(#tasklist-button), - panel-toplevel.background button:active:not(#tasklist-button), .xfce4-panel.panel button.flat:active, .xfce4-panel.panel button.sidebar-button:active, .mate-panel-menu-bar button:checked:not(#tasklist-button), - panel-toplevel.background button:checked:not(#tasklist-button), .xfce4-panel.panel button.flat:checked, .xfce4-panel.panel button.sidebar-button:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - .mate-panel-menu-bar button:active:not(#tasklist-button) label, - panel-toplevel.background button:active:not(#tasklist-button) label, .xfce4-panel.panel button.flat:active label, .xfce4-panel.panel button.sidebar-button:active label, .mate-panel-menu-bar button:active:not(#tasklist-button) image, - panel-toplevel.background button:active:not(#tasklist-button) image, .xfce4-panel.panel button.flat:active image, .xfce4-panel.panel button.sidebar-button:active image, .mate-panel-menu-bar button:checked:not(#tasklist-button) label, - panel-toplevel.background button:checked:not(#tasklist-button) label, .xfce4-panel.panel button.flat:checked label, .xfce4-panel.panel button.sidebar-button:checked label, .mate-panel-menu-bar button:checked:not(#tasklist-button) image, - panel-toplevel.background button:checked:not(#tasklist-button) image, .xfce4-panel.panel button.flat:checked image, .xfce4-panel.panel button.sidebar-button:checked image { - color: inherit; } - -.nautilus-window .floating-bar { - padding: 1px; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px 2px 0 0; } - .nautilus-window .floating-bar.bottom.left { - border-top-left-radius: 0; } - .nautilus-window .floating-bar.bottom.right { - border-top-right-radius: 0; } - .nautilus-window .floating-bar button { - border: none; - border-radius: 0; - min-height: 0; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.37); } - .marlin-pathbar.pathbar image, .marlin-pathbar.pathbar image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - .marlin-pathbar.pathbar:disabled { - color: rgba(89, 128, 143, 0.35); - border-color: rgba(0, 0, 0, 0.37); - background-color: rgba(0, 132, 166, 0.22); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - -gtk-icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:hover { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration .top { - border: 1px solid rgba(0, 15, 18, 0.97); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #002b36, #002b36); - color: rgba(89, 128, 143, 0.8); - box-shadow: inset 0 1px rgba(0, 55, 69, 0.97); } - UnityDecoration .top:backdrop { - border-bottom-width: 0; - color: rgba(89, 128, 143, 0.5); } - UnityDecoration .left, UnityDecoration .right, UnityDecoration .bottom, - UnityDecoration .left:backdrop, UnityDecoration .right:backdrop, UnityDecoration .bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 15, 18, 0.97), rgba(0, 15, 18, 0.97)); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: rgba(0, 75, 95, 0.97); - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focus, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focus { - background-image: none; - border-image: none; } - -.lightdm.button:focus, -.lightdm.entry:focus { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar label { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #dcdfe3; - border-right: 1px solid #dcdfe3; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -toolbar.secondary-toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #dcdfe3; } - toolbar.secondary-toolbar button, .secondary-toolbar.inline-toolbar button { - padding: 0 3px 0 3px; } - -toolbar.bottom-toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #dcdfe3; - background-color: #F5F6F7; } - toolbar.bottom-toolbar button, .bottom-toolbar.inline-toolbar button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view, -iconview.source-list { - background-color: #F5F6F7; - color: #5c616c; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:hover, iconview.source-list:hover { - background-color: white; } - -.source-list.view:selected, iconview.source-list:selected, -.source-list.view:hover:selected, -iconview.source-list:hover:selected, -.source-list.view:selected:focus, -iconview.source-list:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list scrollbar, -.source-list junction { - border-image: none; - border-color: transparent; - background-color: #F5F6F7; - background-image: none; } - -.source-list.badge, -.source-list.badge:hover, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:hover:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:hover:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #5c616c; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GraniteWidgetsWelcome { - background-color: #fdf6e3; } - -GraniteWidgetsWelcome label { - color: #a9acb2; - font-size: 11px; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(92, 97, 108, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #fdf6e3, #fdf6e3); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, GraniteWidgetsPopOver iconview.sidebar, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry entry { - padding: 4px; } - -.h1 { - font-size: 24px; } - -.h2 { - font-size: 18px; } - -.h3 { - font-size: 11px; } - -.h4, -.category-label { - color: #8a8e96; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: rgba(5, 36, 44, 0.95); - color: #657b83; - font-weight: bold; - box-shadow: inset 0 -1px rgba(1, 10, 12, 0.95); } - #panel_window menubar { - padding-left: 5px; } - #panel_window menubar, #panel_window menubar > menuitem { - background-color: transparent; - color: #657b83; - font-weight: bold; } - #panel_window menubar menuitem:disabled { - color: rgba(101, 123, 131, 0.5); } - #panel_window menubar menuitem:disabled label { - color: inherit; } - #panel_window menubar menu > menuitem { - font-weight: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font-weight: normal; - border-style: none; - background-color: transparent; - color: #5c616c; } - -#content_frame { - padding-bottom: 14px; - background-color: #F5F6F7; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame button { - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - #content_frame button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; } - #content_frame button:active, #content_frame button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - #content_frame button:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - #content_frame button:disabled label, #content_frame button:disabled { - color: rgba(92, 97, 108, 0.55); } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: rgba(7, 54, 66, 0.95); - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px rgba(7, 54, 66, 0.95); } - -#buttonbox_frame button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - #buttonbox_frame button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - #buttonbox_frame button:active, #buttonbox_frame button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - #buttonbox_frame button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -#login_window #user_combobox { - color: #5c616c; - font-size: 13px; } - #login_window #user_combobox menu { - font-weight: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font-weight: bold; } - -.nautilus-window paned > separator { - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.95), rgba(7, 54, 66, 0.95)); } - .nautilus-window paned > separator:dir(ltr) { - margin-left: -1px; } - .nautilus-window paned > separator:dir(rtl) { - margin-right: -1px; } - -filechooser paned > separator { - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.95), rgba(7, 54, 66, 0.95)); } - -filechooser.csd.background, filechooser placessidebar list, -.nautilus-window.csd.background, -.nautilus-window placessidebar list { - background-color: transparent; } - -filechooser placessidebar.sidebar, -.nautilus-window placessidebar.sidebar { - background-color: rgba(7, 54, 66, 0.95); } - filechooser placessidebar.sidebar row.sidebar-row, - .nautilus-window placessidebar.sidebar row.sidebar-row { - border: none; - color: #657b83; } - filechooser placessidebar.sidebar row.sidebar-row .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row .sidebar-icon { - color: rgba(101, 123, 131, 0.6); } - filechooser placessidebar.sidebar row.sidebar-row.has-open-popup, filechooser placessidebar.sidebar row.sidebar-row:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup, - .nautilus-window placessidebar.sidebar row.sidebar-row:hover { - background-color: rgba(101, 123, 131, 0.15); } - filechooser placessidebar.sidebar row.sidebar-row:disabled, filechooser placessidebar.sidebar row.sidebar-row:disabled label, filechooser placessidebar.sidebar row.sidebar-row:disabled image, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled label, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled image { - color: rgba(101, 123, 131, 0.4); } - filechooser placessidebar.sidebar row.sidebar-row:selected.has-open-popup .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:selected .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:active:hover .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected.has-open-popup .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:active:hover .sidebar-icon { - color: inherit; } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button { - color: #657b83; } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:active, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:active { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:not(:hover):not(:active) > image, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:not(:hover):not(:active) > image { - opacity: 0.5; } - filechooser placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row, - .nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row { - color: #268bd2; } - filechooser placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon { - color: inherit; } - filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) .sidebar-icon { - color: #b58900; } - filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected { - background-color: #b58900; } - filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected .sidebar-icon { - color: #fdf6e3; } - filechooser placessidebar.sidebar separator, - .nautilus-window placessidebar.sidebar separator { - background-color: transparent; } - -filechooser.maximized placessidebar.sidebar, -.nautilus-window.maximized placessidebar.sidebar { - background-color: #073642; } - -.nemo-window .sidebar { - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); } - .nemo-window .sidebar .view, .nemo-window .sidebar iconview, .nemo-window .sidebar row { - background-color: transparent; - color: #657b83; } - .nemo-window .sidebar .view.cell:selected, .nemo-window .sidebar iconview.cell:selected, .nemo-window .sidebar row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - .nemo-window .sidebar .view.expander, .nemo-window .sidebar iconview.expander, .nemo-window .sidebar row.expander { - color: rgba(56, 90, 100, 0.975); } - .nemo-window .sidebar .view.expander:hover, .nemo-window .sidebar iconview.expander:hover, .nemo-window .sidebar row.expander:hover { - color: #657b83; } - .nemo-window .sidebar separator { - background-color: transparent; } - -.caja-side-pane, -.caja-side-pane > notebook > stack > widget > box, -.caja-side-pane text, -.caja-side-pane treeview { - color: #657b83; - caret-color: #657b83; - background-color: #073642; } - -.caja-side-pane > box button:not(:active):not(:checked) { - color: #657b83; } - -.caja-side-pane .frame { - border-color: #05232b; } - -.caja-side-pane junction { - background-color: rgba(5, 35, 43, 0.95); } - -filechooser actionbar { - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(4, 28, 34, 0.95); } - filechooser actionbar label, filechooser actionbar combobox { - color: #657b83; } - -.gedit-bottom-panel-paned { - background-color: #fdf6e3; } - -.gedit-side-panel-paned > separator { - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.95), rgba(7, 54, 66, 0.95)); } - -.gedit-bottom-panel-paned > separator { - background-image: linear-gradient(to bottom, #dcdfe3, #dcdfe3); } - -.gedit-document-panel { - background-color: rgba(7, 54, 66, 0.95); } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel row { - color: #657b83; - background-color: rgba(101, 123, 131, 0); } - .gedit-document-panel row:hover { - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel row:active { - color: #fdf6e3; - background-color: #268bd2; } - .gedit-document-panel row:active button { - color: #fdf6e3; } - .gedit-document-panel row:selected, .gedit-document-panel row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; } - .gedit-document-panel row:hover:not(:selected) button:active { - color: #657b83; } - -filechooser actionbar button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .caja-side-pane > box button:hover:not(:active), filechooser actionbar button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - filechooser actionbar button:active, filechooser actionbar button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - filechooser actionbar button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -filechooser actionbar entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - filechooser actionbar entry image, filechooser actionbar entry image:hover { - color: inherit; } - filechooser actionbar entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - filechooser actionbar entry:disabled { - color: rgba(101, 123, 131, 0.55); - background-color: rgba(18, 137, 167, 0.2); } - -filechooser placessidebar.sidebar scrollbar, -.nautilus-window placessidebar.sidebar scrollbar, .nemo-window .sidebar scrollbar, .caja-side-pane scrollbar { - border-color: rgba(5, 35, 43, 0.95); } - filechooser placessidebar.sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, - .nautilus-window placessidebar.sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, .nemo-window .sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, .caja-side-pane scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { - background-color: #8da0a7; - border: 1px solid rgba(0, 0, 0, 0.3); } - filechooser placessidebar.sidebar scrollbar slider, - .nautilus-window placessidebar.sidebar scrollbar slider, .nemo-window .sidebar scrollbar slider, .caja-side-pane scrollbar slider { - background-color: rgba(141, 160, 167, 0.7); } - filechooser placessidebar.sidebar scrollbar slider:hover, - .nautilus-window placessidebar.sidebar scrollbar slider:hover, .nemo-window .sidebar scrollbar slider:hover, .caja-side-pane scrollbar slider:hover { - background-color: #9cacb2; } - filechooser placessidebar.sidebar scrollbar slider:hover:active, - .nautilus-window placessidebar.sidebar scrollbar slider:hover:active, .nemo-window .sidebar scrollbar slider:hover:active, .caja-side-pane scrollbar slider:hover:active { - background-color: #268bd2; } - filechooser placessidebar.sidebar scrollbar slider:disabled, - .nautilus-window placessidebar.sidebar scrollbar slider:disabled, .nemo-window .sidebar scrollbar slider:disabled, .caja-side-pane scrollbar slider:disabled { - background-color: transparent; } - filechooser placessidebar.sidebar scrollbar trough, - .nautilus-window placessidebar.sidebar scrollbar trough, .nemo-window .sidebar scrollbar trough, .caja-side-pane scrollbar trough { - background-color: rgba(5, 35, 43, 0.95); } - -@define-color theme_fg_color #5c616c; -@define-color theme_text_color #5c616c; -@define-color theme_bg_color #F5F6F7; -@define-color theme_base_color #fdf6e3; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #5c616c; -@define-color text_color #5c616c; -@define-color bg_color #F5F6F7; -@define-color base_color #fdf6e3; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #faf6eb; -@define-color insensitive_fg_color alpha(#5c616c, 0.5); -@define-color insensitive_base_color #fdf6e3; -@define-color theme_unfocused_fg_color #5c616c; -@define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #F5F6F7; -@define-color theme_unfocused_base_color #fdf6e3; -@define-color borders #dcdfe3; -@define-color unfocused_borders #dcdfe3; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #1e6ea7; -@define-color content_view_bg #fdf6e3; -@define-color wm_title alpha(#59808f, 0.8); -@define-color wm_unfocused_title alpha(#59808f, 0.5); -@define-color wm_bg #002b36; -@define-color wm_bg_unfocused #00313e; -@define-color wm_highlight #003745; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #dc322f; -@define-color wm_button_close_hover_bg #cb4b16; -@define-color wm_button_close_active_bg #dc322f; -@define-color wm_icon_close_bg #002b36; -@define-color wm_button_hover_bg #657b83; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #002b36; -@define-color wm_icon_bg #93a1a1; -@define-color wm_icon_unfocused_bg #657b83; -@define-color wm_icon_hover_bg #93a1a1; -@define-color wm_icon_active_bg #fdf6e3; diff --git a/common/gtk-3.0/3.20/gtk-solid-dark.css b/common/gtk-3.0/3.20/gtk-solid-dark.css deleted file mode 100644 index 84bd02f..0000000 --- a/common/gtk-3.0/3.20/gtk-solid-dark.css +++ /dev/null @@ -1,4305 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -GtkScrolledWindow-scrollbar-spacing: 0; - -GtkToolItemGroup-expander-size: 11; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -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; } - -.background { - color: #657b83; - background-color: #002b36; } - -*:disabled { - -gtk-icon-effect: dim; } - -.gtkstyle-fallback { - background-color: #002b36; - color: #657b83; } - .gtkstyle-fallback:hover { - background-color: #005469; - color: #657b83; } - .gtkstyle-fallback:active { - background-color: #000203; - color: #657b83; } - .gtkstyle-fallback:disabled { - background-color: #003340; - color: rgba(101, 123, 131, 0.45); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view, iconview, -.view text, -iconview text, -textview text { - color: #657b83; - background-color: #073642; } - .view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, - .view text:selected, - iconview text:selected, - textview text:selected, - .view text:selected:focus, - iconview text:selected:focus, - textview text:selected:focus { - border-radius: 2px; } - -textview border { - background-color: #04313c; } - -rubberband, flowbox rubberband, treeview.view rubberband, .content-view rubberband, -.rubberband { - border: 1px solid #1e6ea7; - background-color: rgba(30, 110, 167, 0.2); } - -flowbox flowboxchild { - padding: 3px; - border-radius: 2px; } - flowbox flowboxchild:selected { - outline-offset: -2px; } - -label.separator, popover label.separator, -popover.background label.separator { - color: #657b83; } - -label selection { - color: #fdf6e3; - background-color: #268bd2; } - -label:disabled { - color: rgba(101, 123, 131, 0.45); } - -.dim-label, label.separator, popover label.separator, -popover.background label.separator, headerbar .subtitle, .titlebar:not(headerbar) .subtitle { - opacity: 0.55; } - -assistant .sidebar { - background-color: #073642; - border-top: 1px solid #001317; } - -assistant.csd .sidebar { - border-top-style: none; } - -assistant .sidebar label { - padding: 6px 12px; } - -assistant .sidebar label.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -textview { - background-color: #073642; } - -popover.osd, popover.magnifier, .csd popover.osd, .csd popover.magnifier, -popover.background.osd, -popover.background.magnifier, .csd popover.background.osd, .csd popover.background.magnifier, .osd .scale-popup, .osd { - color: #657b83; - border: none; - background-color: #073642; - background-clip: padding-box; - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -spinner { - background: none; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - spinner:checked { - opacity: 1; - animation: spin 1s linear infinite; } - spinner:checked:disabled { - opacity: 0.5; } - -entry { - min-height: 22px; - border: 1px solid; - padding: 2px 8px; - caret-color: currentColor; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #657b83; - border-color: #001317; - background-color: #073642; } - entry.search { - border-radius: 20px; } - entry image { - color: #526d76; } - entry image.left { - padding-left: 0; - padding-right: 5px; } - entry image.right { - padding-right: 0; - padding-left: 5px; } - entry.flat, entry.flat:focus { - min-height: 0; - padding: 2px; - background-image: none; - border-color: transparent; - border-radius: 0; } - entry:focus { - background-clip: border-box; - color: #657b83; - border-color: #001317; - background-color: #073642; - box-shadow: inset 1px 0 #268bd2, inset -1px 0 #268bd2, inset 0 1px #268bd2, inset 0 -1px #268bd2; } - entry:disabled { - color: rgba(101, 123, 131, 0.45); - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(7, 54, 66, 0.55); } - entry.warning { - color: white; - border-color: #001317; - background-color: #7d4328; } - entry.warning image { - color: white; } - entry.warning:focus { - color: white; - background-color: #cb4b16; - box-shadow: none; } - entry.warning selection, entry.warning selection:focus { - background-color: white; - color: #cb4b16; } - entry.error { - color: white; - border-color: #001317; - background-color: #873437; } - entry.error image { - color: white; } - entry.error:focus { - color: white; - background-color: #dc322f; - box-shadow: none; } - entry.error selection, entry.error selection:focus { - background-color: white; - color: #dc322f; } - entry.search-missing { - color: white; - border-color: #001317; - background-color: #873437; } - entry.search-missing image { - color: white; } - entry.search-missing:focus { - color: white; - background-color: #dc322f; - box-shadow: none; } - entry.search-missing selection, entry.search-missing selection:focus { - background-color: white; - color: #dc322f; } - entry:drop(active):focus, entry:drop(active) { - border-color: #b58900; - box-shadow: none; } - .osd entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .osd entry image, .osd entry image:hover { - color: inherit; } - .osd entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd entry:disabled { - color: rgba(101, 123, 131, 0.55); - background-color: rgba(18, 137, 167, 0.25); } - .osd entry selection:focus, .osd entry selection { - color: #268bd2; - background-color: #fdf6e3; } - entry progress { - margin: 0 -6px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - -treeview entry.flat, treeview entry { - border-radius: 0; - background-image: none; - background-color: #073642; } - treeview entry.flat:focus, treeview entry:focus { - border-color: #268bd2; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -button { - min-height: 22px; - min-width: 20px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 2px 6px; - color: #657b83; - border-color: #001317; - background-color: #083e4b; } - button separator { - margin: 4px 1px; } - button.flat, button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - transition: none; } - button.flat:hover, button.sidebar-button:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - button.flat:hover:active, button.sidebar-button:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - button:hover { - color: #657b83; - border-color: #001317; - background-color: #0a5062; - -gtk-icon-effect: highlight; } - button:active, button:checked { - color: #fdf6e3; - border-color: #001317; - background-color: #268bd2; - background-clip: padding-box; - transition-duration: 50ms; } - button:active:not(:disabled) label:disabled, button:checked:not(:disabled) label:disabled { - color: inherit; - opacity: 0.6; } - button:active { - color: #657b83; } - button:active:hover, button:checked { - color: #fdf6e3; } - button.flat:disabled, button.sidebar-button:disabled { - border-color: transparent; - background-color: transparent; - background-image: none; } - button:disabled { - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - button:disabled label, button:disabled { - color: rgba(101, 123, 131, 0.45); } - button:disabled:active, button:disabled:checked { - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - button:disabled:active label, button:disabled:active, button:disabled:checked label, button:disabled:checked { - color: rgba(253, 246, 227, 0.8); } - button.image-button { - min-width: 24px; - padding-left: 5px; - padding-right: 5px; } - button.text-button { - padding-left: 12px; - padding-right: 12px; } - button.text-button.image-button { - padding-left: 5px; - padding-right: 5px; } - button.text-button.image-button label:first-child { - padding-left: 8px; - padding-right: 2px; } - button.text-button.image-button label:last-child { - padding-right: 8px; - padding-left: 2px; } - button.text-button.image-button label:only-child { - padding-left: 8px; - padding-right: 8px; } - button.text-button.image-button.popup { - padding-right: 8px; - padding-left: 8px; } - button:drop(active), combobox:drop(active) button.combo { - color: #b58900; - border-color: #b58900; - box-shadow: none; } - button.osd { - color: #657b83; - background-color: #073642; - border-color: #03181d; } - button.osd.image-button { - padding: 0; - min-height: 36px; - min-width: 36px; } - button.osd:hover { - color: #268bd2; } - button.osd:active, button.osd:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - button.osd:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .osd button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd button:active, .osd button:checked { - background-clip: padding-box; - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd button.flat, .osd button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd button.flat:hover, .osd button.sidebar-button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd button.flat:disabled, .osd button.sidebar-button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); - background-image: none; } - .osd button.flat:active, .osd button.sidebar-button:active, .osd button.flat:checked, .osd button.sidebar-button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd .linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child), - .osd .linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active) + button:not(:checked):not(:active) { - box-shadow: none; } - button.suggested-action { - background-clip: border-box; - color: white; - background-color: #2aa198; - border-color: #2aa198; } - button.suggested-action.flat, button.suggested-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; } - button.suggested-action:hover { - background-clip: border-box; - color: white; - background-color: #35c9be; - border-color: #35c9be; } - button.suggested-action:active, button.suggested-action:checked { - background-clip: border-box; - color: white; - background-color: #1f7972; - border-color: #1f7972; } - button.suggested-action.flat:disabled, button.suggested-action.sidebar-button:disabled { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(101, 123, 131, 0.45); } - button.suggested-action:disabled { - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - button.suggested-action:disabled label, button.suggested-action:disabled { - color: rgba(101, 123, 131, 0.45); } - button.destructive-action { - background-clip: border-box; - color: white; - background-color: #dc322f; - border-color: #dc322f; } - button.destructive-action.flat, button.destructive-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; } - button.destructive-action:hover { - background-clip: border-box; - color: white; - background-color: #e35d5b; - border-color: #e35d5b; } - button.destructive-action:active, button.destructive-action:checked { - background-clip: border-box; - color: white; - background-color: #b9221f; - border-color: #b9221f; } - button.destructive-action.flat:disabled, button.destructive-action.sidebar-button:disabled { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(101, 123, 131, 0.45); } - button.destructive-action:disabled { - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - button.destructive-action:disabled label, button.destructive-action:disabled { - color: rgba(101, 123, 131, 0.45); } - .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; } - .stack-switcher > button.needs-attention > label, .stack-switcher > button.needs-attention > image, button stacksidebar row.needs-attention > label, stacksidebar button row.needs-attention > label { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 2px; } - .stack-switcher > button.needs-attention > label:dir(rtl), .stack-switcher > button.needs-attention > image:dir(rtl), button stacksidebar row.needs-attention > label:dir(rtl), stacksidebar button row.needs-attention > label:dir(rtl) { - background-position: left 3px, left 2px; } - button.font separator, button.file separator { - background-color: transparent; } - .inline-toolbar button, .inline-toolbar button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar toolbutton > button { - color: #657b83; - border-color: #001317; - background-color: #083e4b; } - .inline-toolbar toolbutton > button:hover { - color: #657b83; - border-color: #001317; - background-color: #0a5062; } - .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { - color: #fdf6e3; - border-color: #001317; - background-color: #268bd2; } - .inline-toolbar toolbutton > button:disabled { - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - .inline-toolbar toolbutton > button:disabled label, .inline-toolbar toolbutton > button:disabled { - color: rgba(101, 123, 131, 0.45); } - .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked { - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar toolbutton > button:disabled:active label, .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked label, .inline-toolbar toolbutton > button:disabled:checked { - color: rgba(253, 246, 227, 0.8); } - -.linked:not(.vertical):not(.path-bar) > entry + entry { - border-left-color: rgba(0, 19, 23, 0.3); } - -.linked:not(.vertical):not(.path-bar) > entry.error + entry, -.linked:not(.vertical):not(.path-bar) > entry + entry.error { - border-left-color: rgba(0, 19, 23, 0.3); } - -.linked:not(.vertical):not(.path-bar) > entry.warning + entry, -.linked:not(.vertical):not(.path-bar) > entry + entry.warning { - border-left-color: rgba(0, 19, 23, 0.3); } - -.linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, -.linked:not(.vertical):not(.path-bar) > entry.warning + entry.error { - border-left-color: rgba(0, 19, 23, 0.3); } - -.linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > button:active + entry, -.linked:not(.vertical):not(.path-bar) > button:checked + entry { - border-left-color: #001317; } - -.linked:not(.vertical):not(.path-bar) > button + button { - border-left-style: none; } - -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 1px 0 #001317; } - -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5); } - -.linked:not(.vertical):not(.path-bar) > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:disabled, -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked:not(.vertical):not(.path-bar) > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child) { - box-shadow: none; } - -.linked:not(.vertical).path-bar > button + button { - border-left-style: none; } - -.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5), inset -1px 0 rgba(0, 19, 23, 0.5); } - -.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 19, 23, 0.5); } - -.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5); } - -.linked.vertical > entry + entry { - border-top-color: rgba(0, 19, 23, 0.3); } - -.linked.vertical > entry.error + entry, -.linked.vertical > entry + entry.error { - border-top-color: rgba(0, 19, 23, 0.3); } - -.linked.vertical > entry.warning + entry, -.linked.vertical > entry + entry.warning { - border-top-color: rgba(0, 19, 23, 0.3); } - -.linked.vertical > entry.error + entry.warning, -.linked.vertical > entry.warning + entry.error { - border-top-color: rgba(0, 19, 23, 0.3); } - -.linked.vertical > entry + entry:focus:not(:last-child), -.linked.vertical > entry + entry:focus:last-child { - border-top-color: #001317; } - -.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: #001317; } - -.linked.vertical > entry + entry:drop(active):not(:last-child), -.linked.vertical > entry + entry:drop(active):last-child { - border-top-color: #001317; } - -.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: #001317; } - -.linked.vertical > entry + entry.warning:focus:not(:last-child), -.linked.vertical > entry + entry.warning:focus:last-child { - border-top-color: #001317; } - -.linked.vertical > entry.warning:focus:not(:only-child) + entry, -.linked.vertical > entry.warning:focus:not(:only-child) + button, -.linked.vertical > entry.warning:focus:not(:only-child) + combobox > box > button.combo { - border-top-color: #001317; } - -.linked.vertical > entry + entry.error:focus:not(:last-child), -.linked.vertical > entry + entry.error:focus:last-child { - border-top-color: #001317; } - -.linked.vertical > entry.error:focus:not(:only-child) + entry, -.linked.vertical > entry.error:focus:not(:only-child) + button, -.linked.vertical > entry.error:focus:not(:only-child) + combobox > box > button.combo { - border-top-color: #001317; } - -.linked.vertical > button:active + entry, -.linked.vertical > button:checked + entry { - border-top-color: #001317; } - -.linked.vertical > button + button { - border-top-style: none; } - -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 0 1px #001317; } - -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { - box-shadow: inset 0 1px rgba(0, 19, 23, 0.5); } - -.linked.vertical > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:disabled, -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked.vertical > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child) { - box-shadow: none; } - -toolbar.inline-toolbar toolbutton > button.flat, .inline-toolbar toolbutton > button.flat, toolbar.inline-toolbar toolbutton > button.sidebar-button, .inline-toolbar toolbutton > button.sidebar-button, .linked:not(.vertical) > entry, -.linked:not(.vertical) > entry:focus, .inline-toolbar button, .inline-toolbar button:backdrop, .linked:not(.vertical) > button, -.linked:not(.vertical) > button:hover, -.linked:not(.vertical) > button:active, -.linked:not(.vertical) > button:checked, spinbutton:not(.vertical) button, spinbutton:not(.vertical) entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, .primary-toolbar .linked:not(.vertical).path-bar > button, headerbar .linked:not(.vertical).path-bar > button, .primary-toolbar .linked:not(.vertical).path-bar > button:hover, headerbar .linked:not(.vertical).path-bar > button:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:active, headerbar .linked:not(.vertical).path-bar > button:active, .primary-toolbar .linked:not(.vertical).path-bar > button:checked, headerbar .linked:not(.vertical).path-bar > button:checked, .primary-toolbar .linked:not(.vertical).path-bar > button:disabled, headerbar .linked:not(.vertical).path-bar > button:disabled, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:active, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:checked, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:disabled, .linked:not(.vertical) > combobox > box > button.combo:dir(ltr), .linked:not(.vertical) > combobox > box > button.combo:dir(rtl) { - border-radius: 0; - border-right-style: none; } - -.linked:not(.vertical) > entry:first-child, .inline-toolbar button:first-child, .linked:not(.vertical) > button:first-child, toolbar.inline-toolbar toolbutton:first-child > button.flat, .inline-toolbar toolbutton:first-child > button.flat, toolbar.inline-toolbar toolbutton:first-child > button.sidebar-button, .inline-toolbar toolbutton:first-child > button.sidebar-button, spinbutton:not(.vertical) button:first-child, spinbutton:not(.vertical) entry:first-child, .linked:not(.vertical) > combobox:first-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child, .primary-toolbar .linked:not(.vertical).path-bar > button:first-child, headerbar .linked:not(.vertical).path-bar > button:first-child, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -.linked:not(.vertical) > entry:last-child, .inline-toolbar button:last-child, .linked:not(.vertical) > button:last-child, toolbar.inline-toolbar toolbutton:last-child > button.flat, .inline-toolbar toolbutton:last-child > button.flat, toolbar.inline-toolbar toolbutton:last-child > button.sidebar-button, .inline-toolbar toolbutton:last-child > button.sidebar-button, spinbutton:not(.vertical) button:last-child, spinbutton:not(.vertical) entry:last-child, .linked:not(.vertical) > combobox:last-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child, .primary-toolbar .linked:not(.vertical).path-bar > button:last-child, headerbar .linked:not(.vertical).path-bar > button:last-child, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - border-right-style: solid; } - -.linked:not(.vertical) > entry:only-child, .inline-toolbar button:only-child, .linked:not(.vertical) > button:only-child, toolbar.inline-toolbar toolbutton:only-child > button.flat, .inline-toolbar toolbutton:only-child > button.flat, toolbar.inline-toolbar toolbutton:only-child > button.sidebar-button, .inline-toolbar toolbutton:only-child > button.sidebar-button, spinbutton:not(.vertical) button:only-child, spinbutton:not(.vertical) entry:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child, .primary-toolbar .linked:not(.vertical).path-bar > button:only-child, headerbar .linked:not(.vertical).path-bar > button:only-child, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:only-child { - border-radius: 3px; - border-style: solid; } - -.linked.vertical > entry, -.linked.vertical > entry:focus, .linked.vertical > button, -.linked.vertical > button:hover, -.linked.vertical > button:active, -.linked.vertical > button:checked, spinbutton.vertical button, spinbutton.vertical entry, .linked.vertical > combobox > box > button.combo { - border-radius: 0; - border-bottom-style: none; } - -.linked.vertical > entry:first-child, .linked.vertical > button:first-child, spinbutton.vertical button:first-child, spinbutton.vertical entry:first-child, .linked.vertical > combobox:first-child > box > button.combo { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -.linked.vertical > entry:last-child, .linked.vertical > button:last-child, spinbutton.vertical button:last-child, spinbutton.vertical entry:last-child, .linked.vertical > combobox:last-child > box > button.combo { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border-bottom-style: solid; } - -.linked.vertical > entry:only-child, .linked.vertical > button:only-child, spinbutton.vertical button:only-child, spinbutton.vertical entry:only-child, .linked.vertical > combobox:only-child > box > button.combo { - border-radius: 3px; - border-style: solid; } - -menuitem.button.flat, -modelbutton.flat, button:link, button:visited, button:link:hover, button:link:active, button:link:checked, button:visited:hover, button:visited:active, button:visited:checked, notebook > header > tabs > tab button.flat:hover, notebook > header > tabs > tab button.sidebar-button:hover, notebook > header > tabs > tab button.flat:active, notebook > header > tabs > tab button.sidebar-button:active, notebook > header > tabs > tab button.flat:active:hover, notebook > header > tabs > tab button.sidebar-button:active:hover, .app-notification button.flat, .app-notification button.sidebar-button, .app-notification button.flat:disabled, .app-notification button.sidebar-button:disabled, calendar.button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -menuitem.button.flat, -modelbutton.flat { - transition: none; - min-height: 24px; - padding-left: 8px; - padding-right: 8px; - outline-offset: -3px; - border-radius: 2px; } - menuitem.button.flat:hover, - modelbutton.flat:hover { - background-color: #0a333e; } - menuitem.button.flat:checked, - modelbutton.flat:checked { - color: #657b83; } - menuitem.button.flat check:last-child, - menuitem.button.flat radio:last-child, - modelbutton.flat check:last-child, - modelbutton.flat radio:last-child { - margin-left: 8px; } - menuitem.button.flat check:first-child, - menuitem.button.flat radio:first-child, - modelbutton.flat check:first-child, - modelbutton.flat radio:first-child { - margin-right: 8px; } - -modelbutton.flat arrow.left { - -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); } - -modelbutton.flat arrow.right { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - -*:link, button:link, button:visited { - color: #78b9e6; } - *:link:visited, button:visited { - color: #4ca2df; } - *:selected *:link:visited, *:selected button:visited:link, *:selected button:visited { - color: #a7cbdc; } - *:link:hover, button:hover:link, button:hover:visited { - color: #a3cfee; } - *:selected *:link:hover, *:selected button:hover:link, *:selected button:hover:visited { - color: #e8ebe1; } - *:link:active, button:active:link, button:active:visited { - color: #78b9e6; } - *:selected *:link:active, *:selected button:active:link, *:selected button:active:visited { - color: #d2e1e0; } - infobar.info *:link, infobar.info button:link, infobar.info button:visited, infobar.question *:link, infobar.question button:link, infobar.question button:visited, infobar.warning *:link, infobar.warning button:link, infobar.warning button:visited, infobar.error *:link, infobar.error button:link, infobar.error button:visited, *:link:selected, button:selected:link, button:selected:visited, headerbar.selection-mode .subtitle:link, .selection-mode.titlebar:not(headerbar) .subtitle:link, - *:selected *:link, - *:selected button:link, - *:selected button:visited { - color: #d2e1e0; } - -button:link > label, button:visited > label { - text-decoration-line: underline; } - -spinbutton:drop(active) { - box-shadow: none; } - -spinbutton button:active { - color: #fdf6e3; } - -spinbutton:disabled { - color: rgba(101, 123, 131, 0.45); } - -spinbutton:not(.vertical) entry { - min-width: 28px; } - -spinbutton:not(.vertical):dir(ltr) entry, -spinbutton:not(.vertical):dir(rtl) button.up { - border-radius: 3px 0 0 3px; } - -spinbutton:not(.vertical) > button + button { - border-left-style: none; } - -spinbutton:not(.vertical) > button:hover:not(:active), -spinbutton:not(.vertical) > button:hover + button { - box-shadow: inset 1px 0 #001317; } - -spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), -spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled { - box-shadow: inset 1px 0 rgba(0, 19, 23, 0.5); } - -spinbutton:not(.vertical) > button:first-child:hover:not(:active), -spinbutton:not(.vertical) > button.up:dir(rtl):hover:not(:active), -spinbutton:not(.vertical) > entry + button:not(:active):hover { - box-shadow: none; } - -spinbutton:not(.vertical) > entry:focus + button { - border-left-color: #001317; } - -spinbutton:not(.vertical) > entry:drop(active) + button { - border-left-color: #b58900; } - -.osd spinbutton:not(.vertical) > button:hover:not(:active), -.osd spinbutton:not(.vertical) > button:hover + button { - box-shadow: inset 1px 0 rgba(1, 9, 11, 0.4); } - -.osd spinbutton:not(.vertical) > button:first-child:hover:not(:active), -.osd spinbutton:not(.vertical) > button.up:dir(rtl):hover:not(:active), -.osd spinbutton:not(.vertical) > entry + button:not(:active):hover { - box-shadow: none; } - -.osd spinbutton:not(.vertical) > entry:focus + button { - border-left-color: rgba(1, 9, 11, 0.4); } - -spinbutton.vertical button, spinbutton.vertical entry { - padding-left: 4px; - padding-right: 4px; - min-width: 0; } - -spinbutton.vertical button.up { - border-radius: 3px 3px 0 0; } - -spinbutton.vertical > entry:focus + button { - border-top-color: #001317; } - -spinbutton.vertical > entry:drop(active) + button { - border-top-color: #b58900; } - -combobox button.combo { - min-width: 0; - padding-left: 8px; - padding-right: 8px; } - -combobox arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); - min-height: 16px; - min-width: 16px; } - -toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #002b36; } - toolbar separator, .inline-toolbar separator { - background: none; } - toolbar.horizontal separator, .horizontal.inline-toolbar separator { - margin: 0 6px; } - toolbar.vertical separator, .vertical.inline-toolbar separator { - margin: 6px 0; } - .osd toolbar, .osd .inline-toolbar { - background-color: transparent; } - toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.9); } - toolbar.osd.left, .osd.left.inline-toolbar, toolbar.osd.right, .osd.right.inline-toolbar, toolbar.osd.top, .osd.top.inline-toolbar, toolbar.osd.bottom, .osd.bottom.inline-toolbar { - border-radius: 0; } - toolbar.osd.top, .osd.top.inline-toolbar { - border-width: 0 0 1px 0; } - toolbar.osd.bottom, .osd.bottom.inline-toolbar { - border-width: 1px 0 0 0; } - toolbar.osd.left, .osd.left.inline-toolbar { - border-width: 0 1px 0 0; } - toolbar.osd.right, .osd.right.inline-toolbar { - border-width: 0 0 0 1px; } - toolbar:not(.inline-toolbar) switch, .inline-toolbar:not(.inline-toolbar) switch, - toolbar:not(.inline-toolbar) scale, .inline-toolbar:not(.inline-toolbar) scale, - toolbar:not(.inline-toolbar) entry, .inline-toolbar:not(.inline-toolbar) entry, - toolbar:not(.inline-toolbar) spinbutton, .inline-toolbar:not(.inline-toolbar) spinbutton, - toolbar:not(.inline-toolbar) button, .inline-toolbar:not(.inline-toolbar) button { - margin-right: 1px; - margin-bottom: 1px; } - toolbar:not(.inline-toolbar) .linked > button, .inline-toolbar:not(.inline-toolbar) .linked > button, - toolbar:not(.inline-toolbar) .linked > entry, .inline-toolbar:not(.inline-toolbar) .linked > entry { - margin-right: 0; } - -.primary-toolbar:not(.libreoffice-toolbar) { - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #002b36, #000f12) 1 0 1 0; } - -.inline-toolbar { - background-color: #001f27; - border-style: solid; - border-color: #001317; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -searchbar { - background-color: #002b36; - border-style: solid; - border-color: #001317; - border-width: 0 0 1px; - padding: 3px; } - -actionbar { - padding: 6px; - border-top: 1px solid #001317; - background-color: #001f27; } - -headerbar, -.titlebar:not(headerbar) { - min-height: 42px; - padding: 0 7px; - border-width: 0 0 1px; - border-style: solid; - border-color: #001b22; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: inset 0 1px #003745; } - .csd headerbar, - .csd .titlebar:not(headerbar) { - background-color: #002b36; - border-color: #001b22; } - headerbar:backdrop, - .titlebar:backdrop:not(headerbar) { - transition: 200ms ease-out; - color: rgba(89, 128, 143, 0.5); - background-color: #00313e; } - .csd headerbar:backdrop, - .csd .titlebar:backdrop:not(headerbar) { - background-color: #00313e; } - headerbar .title, .titlebar:not(headerbar) .title { - padding-left: 12px; - padding-right: 12px; } - headerbar .subtitle, .titlebar:not(headerbar) .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - headerbar.selection-mode, - .selection-mode.titlebar:not(headerbar) { - color: #fdf6e3; - background-color: #268bd2; - border-color: #2380c1; - box-shadow: none; } - headerbar.selection-mode:backdrop, - .selection-mode.titlebar:backdrop:not(headerbar) { - background-color: #268bd2; - color: rgba(253, 246, 227, 0.6); } - headerbar.selection-mode .selection-menu, .selection-mode.titlebar:not(headerbar) .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - headerbar.selection-mode .selection-menu GtkArrow, .selection-mode.titlebar:not(headerbar) .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - headerbar.selection-mode .selection-menu .arrow, .selection-mode.titlebar:not(headerbar) .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized headerbar.selection-mode, - .maximized .selection-mode.titlebar:not(headerbar) { - background-color: #268bd2; } - .tiled headerbar, .tiled headerbar:backdrop, - .maximized headerbar, .maximized headerbar:backdrop, - .tiled .titlebar:not(headerbar), - .tiled .titlebar:backdrop:not(headerbar), - .maximized .titlebar:not(headerbar), - .maximized .titlebar:backdrop:not(headerbar) { - border-radius: 0; } - .maximized headerbar, - .maximized .titlebar:not(headerbar) { - background-color: #002b36; - border-color: #001b22; } - .maximized headerbar:backdrop, - .maximized .titlebar:backdrop:not(headerbar) { - background-color: #00313e; } - headerbar.default-decoration, - .csd headerbar.default-decoration, headerbar.default-decoration:backdrop, - .csd headerbar.default-decoration:backdrop, - .default-decoration.titlebar:not(headerbar), - .csd .default-decoration.titlebar:not(headerbar), - .default-decoration.titlebar:backdrop:not(headerbar), - .csd .default-decoration.titlebar:backdrop:not(headerbar) { - min-height: 28px; - padding: 0 3px; - background-color: #002b36; - border-bottom-width: 0; } - .maximized headerbar.default-decoration, .maximized - .csd headerbar.default-decoration, .maximized headerbar.default-decoration:backdrop, .maximized - .csd headerbar.default-decoration:backdrop, - .maximized .default-decoration.titlebar:not(headerbar), - .maximized - .csd .default-decoration.titlebar:not(headerbar), - .maximized .default-decoration.titlebar:backdrop:not(headerbar), - .maximized - .csd .default-decoration.titlebar:backdrop:not(headerbar) { - background-color: #002b36; } - -.titlebar { - border-radius: 3px 3px 0 0; } - -headerbar entry, headerbar button, headerbar separator { - margin-top: 6px; - margin-bottom: 6px; } - -separator:first-child + headerbar, separator:first-child + headerbar:backdrop, headerbar:first-child, headerbar:first-child:backdrop { - border-top-left-radius: 3px; } - .maximized separator:first-child + headerbar, - .tiled separator:first-child + headerbar, .maximized separator:first-child + headerbar:backdrop, - .tiled separator:first-child + headerbar:backdrop, .maximized headerbar:first-child, - .tiled headerbar:first-child, .maximized headerbar:first-child:backdrop, - .tiled headerbar:first-child:backdrop { - border-radius: 0; } - -headerbar:last-child, headerbar:last-child:backdrop { - border-top-right-radius: 3px; } - .maximized headerbar:last-child, - .tiled headerbar:last-child, .maximized headerbar:last-child:backdrop, - .tiled headerbar:last-child:backdrop { - border-radius: 0; } - -window > .titlebar:not(headerbar), window > .titlebar:not(headerbar):backdrop, -window.csd > .titlebar:not(headerbar), -window.csd > .titlebar:not(headerbar):backdrop { - padding: 0; - background: none; - border: none; - box-shadow: none; } - -.titlebar:not(headerbar) > separator { - background-image: linear-gradient(to bottom, #001b22, #001b22); } - -.primary-toolbar:not(.libreoffice-toolbar) separator, headerbar separator.titlebutton, .titlebar:not(headerbar) separator.titlebutton { - min-width: 1px; - min-height: 1px; - background: none; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(89, 128, 143, 0) 25%, rgba(89, 128, 143, 0.15) 25%, rgba(89, 128, 143, 0.15) 75%, rgba(89, 128, 143, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar:not(.libreoffice-toolbar) separator:backdrop, headerbar separator.titlebutton:backdrop, .titlebar:not(headerbar) separator.titlebutton:backdrop { - opacity: 0.6; } - -.primary-toolbar entry, headerbar entry { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar entry image, headerbar entry image, .primary-toolbar entry image:hover, headerbar entry image:hover { - color: inherit; } - .primary-toolbar entry:backdrop, headerbar entry:backdrop { - opacity: 0.85; } - .primary-toolbar entry:focus, headerbar entry:focus { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar entry:focus image, headerbar entry:focus image { - color: #fdf6e3; } - .primary-toolbar entry:disabled, headerbar entry:disabled { - color: rgba(89, 128, 143, 0.35); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.25); } - .primary-toolbar entry selection:focus, headerbar entry selection:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar entry progress, headerbar entry progress { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar entry.warning, headerbar entry.warning { - color: white; - border-color: rgba(0, 0, 0, 0.4); - background-color: #7a3e23; } - .primary-toolbar entry.warning:focus, headerbar entry.warning:focus { - color: white; - background-color: #cb4b16; } - .primary-toolbar entry.warning selection, headerbar entry.warning selection, .primary-toolbar entry.warning selection:focus, headerbar entry.warning selection:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar entry.error, headerbar entry.error { - color: white; - border-color: rgba(0, 0, 0, 0.4); - background-color: #842f32; } - .primary-toolbar entry.error:focus, headerbar entry.error:focus { - color: white; - background-color: #dc322f; } - .primary-toolbar entry.error selection, headerbar entry.error selection, .primary-toolbar entry.error selection:focus, headerbar entry.error selection:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar button, headerbar button { - color: rgba(89, 128, 143, 0.8); - outline-offset: -3px; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar button:backdrop, headerbar button:backdrop { - opacity: 0.7; } - .primary-toolbar button:hover, headerbar button:hover { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar button:active, headerbar button:active, .primary-toolbar button:checked, headerbar button:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar button:disabled, headerbar button:disabled { - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar button:disabled label, headerbar button:disabled label, .primary-toolbar button:disabled, headerbar button:disabled { - color: rgba(89, 128, 143, 0.35); } - .primary-toolbar button:disabled:active, headerbar button:disabled:active, .primary-toolbar button:disabled:checked, headerbar button:disabled:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.selection-mode.primary-toolbar button, headerbar.selection-mode button, .selection-mode.primary-toolbar button.flat, headerbar.selection-mode button.flat, .selection-mode.primary-toolbar button.sidebar-button, headerbar.selection-mode button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar):not(.stack-switcher) button:not(:last-child):not(:only-child), headerbar .linked:not(.vertical):not(.path-bar):not(.stack-switcher) button:not(:last-child):not(:only-child) { - margin-right: 1px; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > button, headerbar .linked:not(.vertical):not(.path-bar) > button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:hover, headerbar .linked:not(.vertical):not(.path-bar) > button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:active, headerbar .linked:not(.vertical):not(.path-bar) > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:checked, headerbar .linked:not(.vertical):not(.path-bar) > button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:disabled, headerbar .linked:not(.vertical):not(.path-bar) > button:disabled { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { - box-shadow: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, .primary-toolbar .linked:not(.vertical).path-bar > button, headerbar .linked:not(.vertical).path-bar > button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover, headerbar .linked:not(.vertical).path-bar > button:hover { - background-color: rgba(0, 193, 243, 0.4); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, .primary-toolbar .linked:not(.vertical).path-bar > button:active, headerbar .linked:not(.vertical).path-bar > button:active, .primary-toolbar .linked:not(.vertical).path-bar > button:checked, headerbar .linked:not(.vertical).path-bar > button:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, .primary-toolbar .linked:not(.vertical).path-bar > button:disabled, headerbar .linked:not(.vertical).path-bar > button:disabled { - color: rgba(89, 128, 143, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button + button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button + button, .primary-toolbar .linked:not(.vertical).path-bar > button + button, headerbar .linked:not(.vertical).path-bar > button + button { - border-left-style: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover, headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4), inset -1px 0 rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.error + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, headerbar .linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry.error, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry.error { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > button:active + entry, headerbar .linked:not(.vertical):not(.path-bar) > button:active + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:checked + entry, headerbar .linked:not(.vertical):not(.path-bar) > button:checked + entry { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar button.suggested-action, headerbar button.suggested-action { - background-clip: border-box; - color: white; - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar button.suggested-action.flat, headerbar button.suggested-action.flat, .primary-toolbar button.suggested-action.sidebar-button, headerbar button.suggested-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; } - .primary-toolbar button.suggested-action:hover, headerbar button.suggested-action:hover { - background-clip: border-box; - color: white; - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar button.suggested-action:active, headerbar button.suggested-action:active, .primary-toolbar button.suggested-action:checked, headerbar button.suggested-action:checked { - background-clip: border-box; - color: white; - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar button.suggested-action.flat:disabled, headerbar button.suggested-action.flat:disabled, .primary-toolbar button.suggested-action.sidebar-button:disabled, headerbar button.suggested-action.sidebar-button:disabled, .primary-toolbar button.suggested-action:disabled, headerbar button.suggested-action:disabled { - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar button.suggested-action.flat:disabled label, headerbar button.suggested-action.flat:disabled label, .primary-toolbar button.suggested-action.sidebar-button:disabled label, headerbar button.suggested-action.sidebar-button:disabled label, .primary-toolbar button.suggested-action.flat:disabled, headerbar button.suggested-action.flat:disabled, .primary-toolbar button.suggested-action.sidebar-button:disabled, headerbar button.suggested-action.sidebar-button:disabled, .primary-toolbar button.suggested-action:disabled label, headerbar button.suggested-action:disabled label, .primary-toolbar button.suggested-action:disabled, headerbar button.suggested-action:disabled { - color: rgba(89, 128, 143, 0.35); } - -.primary-toolbar button.suggested-action:backdrop, headerbar button.suggested-action:backdrop, .primary-toolbar button.suggested-action:backdrop, headerbar button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar button.destructive-action, headerbar button.destructive-action { - background-clip: border-box; - color: white; - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar button.destructive-action.flat, headerbar button.destructive-action.flat, .primary-toolbar button.destructive-action.sidebar-button, headerbar button.destructive-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; } - .primary-toolbar button.destructive-action:hover, headerbar button.destructive-action:hover { - background-clip: border-box; - color: white; - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar button.destructive-action:active, headerbar button.destructive-action:active, .primary-toolbar button.destructive-action:checked, headerbar button.destructive-action:checked { - background-clip: border-box; - color: white; - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar button.destructive-action.flat:disabled, headerbar button.destructive-action.flat:disabled, .primary-toolbar button.destructive-action.sidebar-button:disabled, headerbar button.destructive-action.sidebar-button:disabled, .primary-toolbar button.destructive-action:disabled, headerbar button.destructive-action:disabled { - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar button.destructive-action.flat:disabled label, headerbar button.destructive-action.flat:disabled label, .primary-toolbar button.destructive-action.sidebar-button:disabled label, headerbar button.destructive-action.sidebar-button:disabled label, .primary-toolbar button.destructive-action.flat:disabled, headerbar button.destructive-action.flat:disabled, .primary-toolbar button.destructive-action.sidebar-button:disabled, headerbar button.destructive-action.sidebar-button:disabled, .primary-toolbar button.destructive-action:disabled label, headerbar button.destructive-action:disabled label, .primary-toolbar button.destructive-action:disabled, headerbar button.destructive-action:disabled { - color: rgba(89, 128, 143, 0.35); } - -.primary-toolbar button.destructive-action:backdrop, headerbar button.destructive-action:backdrop, .primary-toolbar button.destructive-action:backdrop, headerbar button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar spinbutton:not(.vertical):focus, headerbar spinbutton:not(.vertical):focus { - color: #fdf6e3; - caret-color: #fdf6e3; } - -.primary-toolbar spinbutton:not(.vertical) button, headerbar spinbutton:not(.vertical) button, .primary-toolbar spinbutton:not(.vertical) button:disabled, headerbar spinbutton:not(.vertical) button:disabled { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - -.primary-toolbar spinbutton:not(.vertical) button:hover, headerbar spinbutton:not(.vertical) button:hover { - background-color: rgba(0, 193, 243, 0.4); } - -.primary-toolbar spinbutton:not(.vertical) button:active, headerbar spinbutton:not(.vertical) button:active, .primary-toolbar spinbutton:not(.vertical) button:checked, headerbar spinbutton:not(.vertical) button:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - -.primary-toolbar spinbutton:not(.vertical) button:disabled, headerbar spinbutton:not(.vertical) button:disabled { - color: rgba(89, 128, 143, 0.4); } - -.primary-toolbar spinbutton:not(.vertical) > button + button, headerbar spinbutton:not(.vertical) > button + button { - border-left-style: none; } - -.primary-toolbar spinbutton:not(.vertical) > button:hover:not(:active), headerbar spinbutton:not(.vertical) > button:hover:not(:active), .primary-toolbar spinbutton:not(.vertical) > button:hover + button, headerbar spinbutton:not(.vertical) > button:hover + button { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - -.primary-toolbar spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), headerbar spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), .primary-toolbar spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled, headerbar spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - -.primary-toolbar spinbutton:not(.vertical) > button:first-child:hover:not(:active), headerbar spinbutton:not(.vertical) > button:first-child:hover:not(:active), .primary-toolbar spinbutton:not(.vertical) > entry + button:not(:active):hover, headerbar spinbutton:not(.vertical) > entry + button:not(:active):hover { - box-shadow: none; } - -.primary-toolbar spinbutton:not(.vertical) > entry:focus + button, headerbar spinbutton:not(.vertical) > entry:focus + button { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar combobox:disabled, headerbar combobox:disabled { - color: rgba(89, 128, 143, 0.2); } - -.primary-toolbar combobox > .linked > button.combo, headerbar combobox > .linked > button.combo { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar combobox > .linked > button.combo image, headerbar combobox > .linked > button.combo image, .primary-toolbar combobox > .linked > button.combo image:hover, headerbar combobox > .linked > button.combo image:hover { - color: inherit; } - .primary-toolbar combobox > .linked > button.combo:hover, headerbar combobox > .linked > button.combo:hover { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; - box-shadow: none; } - .primary-toolbar combobox > .linked > button.combo:disabled, headerbar combobox > .linked > button.combo:disabled { - color: rgba(89, 128, 143, 0.35); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.25); } - -.primary-toolbar combobox > .linked > entry.combo:dir(ltr), headerbar combobox > .linked > entry.combo:dir(ltr) { - border-right-style: none; } - .primary-toolbar combobox > .linked > entry.combo:dir(ltr):focus, headerbar combobox > .linked > entry.combo:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar combobox > .linked > entry.combo:dir(rtl), headerbar combobox > .linked > entry.combo:dir(rtl) { - border-left-style: none; } - .primary-toolbar combobox > .linked > entry.combo:dir(rtl):focus, headerbar combobox > .linked > entry.combo:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar combobox > .linked > button.combo:dir(ltr), headerbar combobox > .linked > button.combo:dir(ltr), .primary-toolbar combobox > .linked > button.combo:dir(ltr):hover, headerbar combobox > .linked > button.combo:dir(ltr):hover, .primary-toolbar combobox > .linked > button.combo:dir(ltr):active, headerbar combobox > .linked > button.combo:dir(ltr):active, .primary-toolbar combobox > .linked > button.combo:dir(ltr):checked, headerbar combobox > .linked > button.combo:dir(ltr):checked, .primary-toolbar combobox > .linked > button.combo:dir(ltr):disabled, headerbar combobox > .linked > button.combo:dir(ltr):disabled { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - -.primary-toolbar combobox > .linked > button.combo:dir(rtl), headerbar combobox > .linked > button.combo:dir(rtl), .primary-toolbar combobox > .linked > button.combo:dir(rtl):hover, headerbar combobox > .linked > button.combo:dir(rtl):hover, .primary-toolbar combobox > .linked > button.combo:dir(rtl):active, headerbar combobox > .linked > button.combo:dir(rtl):active, .primary-toolbar combobox > .linked > button.combo:dir(rtl):checked, headerbar combobox > .linked > button.combo:dir(rtl):checked, .primary-toolbar combobox > .linked > button.combo:dir(rtl):disabled, headerbar combobox > .linked > button.combo:dir(rtl):disabled { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.primary-toolbar switch:backdrop, headerbar switch:backdrop { - opacity: 0.75; } - -.primary-toolbar progressbar trough, headerbar progressbar trough { - background-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar progressbar:backdrop, headerbar progressbar:backdrop { - opacity: 0.75; } - -.primary-toolbar scale:backdrop, headerbar scale:backdrop { - opacity: 0.75; } - -.primary-toolbar scale slider, headerbar scale slider { - background-color: #005469; - border-color: rgba(0, 0, 0, 0.7); } - .primary-toolbar scale slider:hover, headerbar scale slider:hover { - background-color: #006883; - border-color: rgba(0, 0, 0, 0.7); } - .primary-toolbar scale slider:active, headerbar scale slider:active { - background-color: #268bd2; - border-color: #268bd2; } - .primary-toolbar scale slider:disabled, headerbar scale slider:disabled { - background-color: #00475a; - border-color: rgba(0, 0, 0, 0.7); } - -.primary-toolbar scale trough, headerbar scale trough { - background-color: rgba(0, 0, 0, 0.4); } - .primary-toolbar scale trough:disabled, headerbar scale trough:disabled { - background-color: rgba(0, 0, 0, 0.3); } - -.path-bar button.text-button, .path-bar button.image-button, .path-bar button { - padding-left: 6px; - padding-right: 6px; } - -.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: 10px; } - -.path-bar button.text-button.image-button label:first-child, .path-bar button label:first-child { - padding-left: 10px; } - -.path-bar button.slider-button, .path-bar button:not(.image-button):not(.text-button) { - padding-left: 1px; - padding-right: 1px; } - -.path-bar button image { - padding-left: 4px; - padding-right: 4px; } - -treeview.view { - border-left-color: rgba(101, 123, 131, 0.15); - border-top-color: rgba(0, 0, 0, 0.1); } - * { - -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 acceleditor > label { - background-color: #268bd2; } - treeview.view:selected, treeview.view:selected:focus { - border-radius: 0; - border-left-color: #92c1db; - border-top-color: rgba(101, 123, 131, 0.1); } - treeview.view:disabled { - color: rgba(101, 123, 131, 0.45); } - treeview.view:disabled:selected { - color: #7cb6d9; } - treeview.view.separator { - min-height: 2px; - color: rgba(0, 0, 0, 0.1); } - treeview.view:drop(active) { - border-style: solid none; - border-width: 1px; - border-color: #4683ab; } - 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: #365963; } - treeview.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - treeview.view.expander:hover { - color: #657b83; } - treeview.view.expander:selected { - color: #bdd6de; } - treeview.view.expander:selected:hover { - color: #fdf6e3; } - treeview.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - treeview.view.progressbar, treeview.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-color: #268bd2; } - treeview.view.progressbar:selected, treeview.view.progressbar:selected:focus, treeview.view.progressbar:focus:selected, treeview.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-color: #fdf6e3; } - treeview.view.trough { - color: #657b83; - background-color: #001317; - border-radius: 3px; - border-width: 0; } - treeview.view.trough:selected, treeview.view.trough:selected:focus { - color: #fdf6e3; - background-color: rgba(0, 0, 0, 0.2); - border-radius: 3px; - border-width: 0; } - treeview.view header button { - min-height: 0; - min-width: 0; - padding: 3px 6px; - font-weight: bold; - color: #526d76; - background-color: #073642; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, #073642 20%, rgba(255, 255, 255, 0.11) 20%, rgba(255, 255, 255, 0.11) 80%, #073642 80%) 0 1 0 0/0 1px 0 0 stretch; } - treeview.view header button:hover { - color: #268bd2; } - treeview.view header button:active { - color: #657b83; } - treeview.view header button:active, treeview.view header button:hover { - background-color: #073642; } - treeview.view header button:active:hover { - color: #657b83; } - treeview.view header button:disabled { - border-color: #002b36; - background-image: none; } - treeview.view header button:last-child { - border-right-style: none; - border-image: none; } - treeview.view button.dnd, treeview.view button.dnd:selected, treeview.view button.dnd:hover, treeview.view button.dnd:active, - treeview.view header.button.dnd, - treeview.view header.button.dnd:selected, - treeview.view header.button.dnd:hover, - treeview.view header.button.dnd:active { - padding: 0 6px; - transition: none; - color: #fdf6e3; - background-color: #268bd2; - border-radius: 0; - border-style: none; } - -menubar, -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #002b36; - color: rgba(89, 128, 143, 0.8); } - menubar:backdrop, - .menubar:backdrop { - color: rgba(89, 128, 143, 0.5); } - menubar > menuitem, - .menubar > menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - menubar > menuitem:hover, - .menubar > menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - menubar > menuitem:disabled, - .menubar > menuitem:disabled { - color: rgba(89, 128, 143, 0.2); - border-color: transparent; } - -menu, -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #002b36; - border: 1px solid #001317; } - .csd menu, .csd - .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - menu separator, - .csd menu separator, - .menu separator, - .csd - .menu separator { - margin: 2px 0; - background-color: #002b36; } - menu .separator:not(label), - .csd menu .separator:not(label), - .menu .separator:not(label), - .csd - .menu .separator:not(label) { - color: #002b36; } - menu menuitem, - .menu menuitem { - min-height: 16px; - min-width: 40px; - padding: 5px; } - menu menuitem:hover, - .menu menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - menu menuitem:disabled, - .menu menuitem:disabled { - color: rgba(101, 123, 131, 0.45); } - menu menuitem arrow, - .menu menuitem arrow { - min-height: 16px; - min-width: 16px; } - menu menuitem arrow:dir(ltr), - .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) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); - margin-right: 10px; } - 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: 6px; - margin-left: 2px; } - menuitem check:dir(rtl), menuitem radio:dir(rtl) { - margin-left: 6px; - margin-right: 2px; } - menu > arrow, - .menu > arrow { - border-color: transparent; - background-color: transparent; - background-image: none; - min-width: 16px; - min-height: 16px; - padding: 4px; - background-color: #002b36; - border-radius: 0; } - menu > arrow.top, - .menu > arrow.top { - margin-top: -6px; - border-bottom: 1px solid #103d49; - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } - menu > arrow.bottom, - .menu > arrow.bottom { - margin-bottom: -6px; - border-top: 1px solid #103d49; - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - menu > arrow:hover, - .menu > arrow:hover { - background-color: #103d49; } - menu > arrow:disabled, - .menu > arrow:disabled { - color: transparent; - background-color: transparent; - border-color: transparent; } - -popover, -popover.background { - padding: 2px; - border-radius: 3px; - background-clip: border-box; - background-color: #002b36; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.35); } - .csd popover, popover, .csd - popover.background, - popover.background { - border: 1px solid black; } - popover separator, - popover.background separator { - background-color: #002b36; } - popover > list, - popover > .view, - popover > iconview, - popover > toolbar, - popover > .inline-toolbar, - popover.background > list, - popover.background > .view, - popover.background > iconview, - popover.background > toolbar, - popover.background > .inline-toolbar { - border-style: none; - background-color: transparent; } - -cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -notebook { - padding: 0; } - notebook.frame { - border: 1px solid #001317; } - notebook.frame > header { - margin: -1px; } - notebook.frame > header.top { - margin-bottom: 0; } - notebook.frame > header.bottom { - margin-top: 0; } - notebook.frame > header.left { - margin-right: 0; } - notebook.frame > header.right { - margin-left: 0; } - notebook.frame > header.top, notebook.frame > header.bottom { - padding-left: 0; - padding-right: 0; } - notebook.frame > header.left, notebook.frame > header.right { - padding-top: 0; - padding-bottom: 0; } - notebook > stack:not(:only-child) { - background-color: #073642; } - notebook > header { - padding: 2px; - background-color: #002b36; } - notebook > header.top { - box-shadow: inset 0 -1px #001317; } - notebook > header.bottom { - box-shadow: inset 0 1px #001317; } - notebook > header.right { - box-shadow: inset 1px 0 #001317; } - notebook > header.left { - box-shadow: inset -1px 0 #001317; } - notebook > header.top { - padding-bottom: 0; } - notebook > header.top > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-bottom: none; - border-radius: 1px 1px 0 0; } - notebook > header.top > tabs > tab + tab { - margin-left: -1px; } - notebook > header.bottom { - padding-top: 0; } - notebook > header.bottom > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-top: none; - border-radius: 0 0 1px 1px; } - notebook > header.bottom > tabs > tab + tab { - margin-left: -1px; } - notebook > header.right { - padding-left: 0; } - notebook > header.right > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-left: none; - border-radius: 0 1px 1px 0; } - notebook > header.right > tabs > tab + tab { - margin-top: -1px; } - notebook > header.left { - padding-right: 0; } - notebook > header.left > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-right: none; - border-radius: 1px 0 0 1px; } - notebook > header.left > tabs > tab + tab { - margin-top: -1px; } - notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - notebook > header.top > tabs > arrow.up:last-child, notebook > header.bottom > tabs > arrow.up:last-child { - margin-left: 2px; } - 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.down:first-child, notebook > header.bottom > tabs > arrow.down:first-child { - margin-right: 2px; } - notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - notebook > header.left > tabs > arrow.up:last-child, notebook > header.right > tabs > arrow.up:last-child { - margin-top: 2px; } - 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.down:first-child, notebook > header.right > tabs > arrow.down:first-child { - margin-bottom: 2px; } - notebook > header > tabs > arrow { - color: rgba(101, 123, 131, 0.45); } - notebook > header > tabs > arrow:hover { - color: rgba(101, 123, 131, 0.725); } - notebook > header > tabs > arrow:active { - color: #657b83; } - notebook > header > tabs > arrow:disabled { - color: rgba(101, 123, 131, 0.15); } - notebook > header.top > tabs > tab:hover:not(:checked) { - box-shadow: inset 0 -1px #001317; } - notebook > header.bottom > tabs > tab:hover:not(:checked) { - box-shadow: inset 0 1px #001317; } - notebook > header.left > tabs > tab:hover:not(:checked) { - box-shadow: inset -1px 0 #001317; } - notebook > header.right > tabs > tab:hover:not(:checked) { - box-shadow: inset 1px 0 #001317; } - notebook > header > tabs > tab { - color: rgba(101, 123, 131, 0.45); - background-color: rgba(7, 54, 66, 0); } - notebook > header > tabs > tab:hover:not(:checked) { - color: rgba(101, 123, 131, 0.725); - background-color: rgba(7, 54, 66, 0.5); - border-color: #001317; } - notebook > header > tabs > tab:checked { - color: #657b83; - background-color: #073642; - border-color: #001317; } - notebook > header > tabs > tab button.flat, notebook > header > tabs > tab button.sidebar-button { - min-height: 22px; - min-width: 16px; - padding: 0; - color: #425f68; } - notebook > header > tabs > tab button.flat:hover, notebook > header > tabs > tab button.sidebar-button:hover { - color: #ff4d4d; } - notebook > header > tabs > tab button.flat:active, notebook > header > tabs > tab button.sidebar-button:active, notebook > header > tabs > tab button.flat:active:hover, notebook > header > tabs > tab button.sidebar-button:active:hover { - color: #268bd2; } - -scrollbar { - background-color: #07323d; - 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 #001317; } - scrollbar.bottom { - border-top: 1px solid #001317; } - scrollbar.left { - border-right: 1px solid #001317; } - scrollbar.right { - border-left: 1px solid #001317; } - scrollbar button { - border: none; } - 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-right-symbolic"); } - scrollbar.horizontal button.up { - -gtk-icon-source: -gtk-icontheme("pan-left-symbolic"); } - scrollbar slider { - min-width: 6px; - min-height: 6px; - margin: -1px; - border: 4px solid transparent; - border-radius: 8px; - background-clip: padding-box; - background-color: #284b55; } - scrollbar slider:hover { - background-color: #1e434d; } - scrollbar slider:hover:active { - background-color: #268bd2; } - 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) { - opacity: 0.4; - border-color: transparent; - background-color: transparent; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { - margin: 0; - min-width: 4px; - min-height: 4px; - background-color: #47636c; - border: 1px solid rgba(0, 0, 0, 0.3); } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { - margin: 0 2px; - min-width: 40px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { - margin: 2px 0; - min-height: 40px; } - scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { - opacity: 0.99; } - scrollbar.horizontal slider { - min-width: 40px; } - scrollbar.vertical slider { - min-height: 40px; } - -switch { - font-size: 1px; - min-width: 52px; - min-height: 24px; - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: center center; } - switch slider { - min-width: 1px; - min-height: 1px; } - switch, switch slider { - outline-color: transparent; - color: transparent; - border: none; - box-shadow: none; } - -switch { - background-image: -gtk-scaled(url("assets/switch-dark.png"), url("assets/switch-dark@2.png")); } - -menuitem:hover switch, -row:selected switch, -infobar switch { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -headerbar switch, -.primary-toolbar switch { - background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } - -switch:checked { - background-image: -gtk-scaled(url("assets/switch-active-dark.png"), url("assets/switch-active-dark@2.png")); } - -menuitem:hover switch:checked, -row:selected switch:checked, -infobar switch:checked { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -headerbar switch:checked, -.primary-toolbar switch:checked { - background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } - -switch:disabled { - background-image: -gtk-scaled(url("assets/switch-insensitive-dark.png"), url("assets/switch-insensitive-dark@2.png")); } - -menuitem:hover switch:disabled, -row:selected switch:disabled, -infobar switch:disabled { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -headerbar switch:disabled, -.primary-toolbar switch:disabled { - background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } - -switch:checked:disabled { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-dark.png"), url("assets/switch-active-insensitive-dark@2.png")); } - -menuitem:hover switch:checked:disabled, -row:selected switch:checked:disabled, -infobar switch:checked:disabled { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -headerbar switch:checked:disabled, -.primary-toolbar switch:checked:disabled { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } - -.check, -check, -treeview.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -.osd check, filechooser actionbar check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -menuitem check:hover, -.view check:selected, iconview check:selected, -treeview.check:selected, -row:selected check, -infobar check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:disabled, -check:disabled, -treeview.check:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -.osd check:disabled, filechooser actionbar check:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -menuitem check:disabled:hover, -.view check:disabled:selected, iconview check:disabled:selected, -treeview.check:disabled:selected, -row:selected check:disabled, -infobar check:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:indeterminate, -check:indeterminate, -treeview.check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -.osd check:indeterminate, filechooser actionbar check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -menuitem check:indeterminate:hover, -.view check:indeterminate:selected, iconview check:indeterminate:selected, -treeview.check:indeterminate:selected, -row:selected check:indeterminate, -infobar check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:indeterminate:disabled, -check:indeterminate:disabled, -treeview.check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -.osd check:indeterminate:disabled, filechooser actionbar check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -menuitem check:indeterminate:disabled:hover, -.view check:indeterminate:disabled:selected, iconview check:indeterminate:disabled:selected, -treeview.check:indeterminate:disabled:selected, -row:selected check:indeterminate:disabled, -infobar check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked, -check:checked, -treeview.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -.osd check:checked, filechooser actionbar check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -menuitem check:checked:hover, -.view check:checked:selected, iconview check:checked:selected, -treeview.check:checked:selected, -row:selected check:checked, -infobar check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:disabled, -check:checked:disabled, -treeview.check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -.osd check:checked:disabled, filechooser actionbar check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -menuitem check:checked:disabled:hover, -.view check:checked:disabled:selected, iconview check:checked:disabled:selected, -treeview.check:checked:disabled:selected, -row:selected check:checked:disabled, -infobar check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio, -radio, -treeview.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -.osd radio, filechooser actionbar radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -menuitem radio:hover, -.view radio:selected, iconview radio:selected, -treeview.radio:selected, -row:selected radio, -infobar radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:disabled, -radio:disabled, -treeview.radio:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -.osd radio:disabled, filechooser actionbar radio:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -menuitem radio:disabled:hover, -.view radio:disabled:selected, iconview radio:disabled:selected, -treeview.radio:disabled:selected, -row:selected radio:disabled, -infobar radio:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:indeterminate, -radio:indeterminate, -treeview.radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -.osd radio:indeterminate, filechooser actionbar radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -menuitem radio:indeterminate:hover, -.view radio:indeterminate:selected, iconview radio:indeterminate:selected, -treeview.radio:indeterminate:selected, -row:selected radio:indeterminate, -infobar radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:indeterminate:disabled, -radio:indeterminate:disabled, -treeview.radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -.osd radio:indeterminate:disabled, filechooser actionbar radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -menuitem radio:indeterminate:disabled:hover, -.view radio:indeterminate:disabled:selected, iconview radio:indeterminate:disabled:selected, -treeview.radio:indeterminate:disabled:selected, -row:selected radio:indeterminate:disabled, -infobar radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked, -radio:checked, -treeview.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -.osd radio:checked, filechooser actionbar radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -menuitem radio:checked:hover, -.view radio:checked:selected, iconview radio:checked:selected, -treeview.radio:checked:selected, -row:selected radio:checked, -infobar radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:disabled, -radio:checked:disabled, -treeview.radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -.osd radio:checked:disabled, filechooser actionbar radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -menuitem radio:checked:disabled:hover, -.view radio:checked:disabled:selected, iconview radio:checked:disabled:selected, -treeview.radio:checked:disabled:selected, -row:selected radio:checked:disabled, -infobar radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -.view.content-view.check:not(list), iconview.content-view.check:not(list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode-dark.png"), url("assets/checkbox-selectionmode-dark@2.png")); - background-color: transparent; } - -.view.content-view.check:checked:not(list), iconview.content-view.check:checked:not(list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode-dark.png"), url("assets/checkbox-checked-selectionmode-dark@2.png")); - background-color: transparent; } - -checkbutton.text-button, radiobutton.text-button { - padding: 2px 0; - outline-offset: 0; } - -checkbutton label:not(:only-child):first-child, radiobutton label:not(:only-child):first-child { - margin-left: 4px; } - -checkbutton label:not(:only-child):last-child, radiobutton label:not(:only-child):last-child { - margin-right: 4px; } - -check, -radio { - min-width: 16px; - min-height: 16px; - margin: 0 2px; } - check:only-child, - menu menuitem check, - radio:only-child, - menu menuitem - radio { - margin: 0; } - -scale { - min-height: 15px; - min-width: 15px; - padding: 3px; } - scale.horizontal trough { - padding: 0 4px; } - scale.horizontal highlight, scale.horizontal fill { - margin: 0 -4px; } - scale.vertical trough { - padding: 4px 0; } - scale.vertical highlight, scale.vertical fill { - margin: -4px 0; } - scale slider { - min-height: 15px; - min-width: 15px; - margin: -6px; } - scale.fine-tune slider { - margin: -4px; } - 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: 4.5px; - border-radius: 2.5px; - background-color: #00171d; } - scale trough:disabled { - background-color: rgba(0, 23, 29, 0.55); } - .osd scale trough { - background-color: #0a5062; } - .osd scale trough highlight { - background-color: #268bd2; } - menuitem:hover scale trough, - row:selected scale trough, - infobar scale trough { - background-color: rgba(0, 0, 0, 0.2); } - menuitem:hover scale trough highlight, - row:selected scale trough highlight, - infobar scale trough highlight { - background-color: #fdf6e3; } - menuitem:hover scale trough highlight:disabled, - row:selected scale trough highlight:disabled, - infobar scale trough highlight:disabled { - background-color: #9cc6db; } - menuitem:hover scale trough:disabled, - row:selected scale trough:disabled, - infobar scale trough:disabled { - background-color: rgba(0, 0, 0, 0.1); } - scale highlight { - border-radius: 2.5px; - background-color: #268bd2; } - scale highlight:disabled { - background-color: rgba(38, 139, 210, 0.55); } - scale fill { - border-radius: 2.5px; - background-color: rgba(38, 139, 210, 0.5); } - scale fill:disabled { - background-color: transparent; } - scale slider { - background-color: #083e4b; - border: 1px solid #000b0d; - border-radius: 100%; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-property: background, border; } - scale slider:hover { - background-color: #0a5062; } - scale slider:active { - background-clip: border-box; - background-color: #268bd2; - border-color: #268bd2; } - scale slider:disabled { - background-color: #04313d; - border-color: rgba(0, 11, 13, 0.8); } - menuitem:hover scale slider, - row:selected scale slider, - infobar scale slider { - background-clip: border-box; - background-color: #fdf6e3; - border-color: #fdf6e3; } - menuitem:hover scale slider:hover, - row:selected scale slider:hover, - infobar scale slider:hover { - background-color: #dde6e0; - border-color: #dde6e0; } - menuitem:hover scale slider:active, - row:selected scale slider:active, - infobar scale slider:active { - background-color: #92c1db; - border-color: #92c1db; } - menuitem:hover scale slider:disabled, - row:selected scale slider:disabled, - infobar scale slider:disabled { - background-color: #9cc6db; - border-color: #9cc6db; } - .osd scale slider { - background-clip: border-box; - background-color: #268bd2; - border-color: #268bd2; } - .osd scale slider:hover { - background-color: #4ca2df; - border-color: #4ca2df; } - .osd scale slider:active { - background-color: #1e6ea7; - border-color: #1e6ea7; } - scale value { - color: alpha(currentColor,0.4); } - scale marks { - color: alpha(currentColor,0.4); } - scale marks.top { - margin-bottom: 1px; - margin-top: -4px; } - scale marks.bottom { - margin-top: 1px; - margin-bottom: -4px; } - scale marks.top { - margin-right: 1px; - margin-left: -4px; } - scale marks.bottom { - margin-left: 1px; - margin-right: -4px; } - scale.fine-tune marks.top { - margin-bottom: 0px; - margin-top: -2px; } - scale.fine-tune marks.bottom { - margin-top: 0px; - margin-bottom: -2px; } - scale.fine-tune marks.top { - margin-right: 0px; - margin-left: -2px; } - scale.fine-tune marks.bottom { - margin-left: 0px; - margin-right: -2px; } - scale.horizontal indicator { - min-height: 3px; - min-width: 1px; } - scale.horizontal.fine-tune indicator { - min-height: 2px; } - scale.vertical indicator { - min-height: 1px; - min-width: 3px; } - scale.vertical.fine-tune indicator { - min-width: 2px; } - -progressbar { - padding: 0; - font-size: smaller; - color: rgba(101, 123, 131, 0.7); } - progressbar.osd { - min-width: 3px; - min-height: 3px; - background-color: transparent; } - progressbar.osd trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - progressbar progress { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - row:selected progressbar progress, - infobar progressbar progress { - background-color: #fdf6e3; } - progressbar trough { - border: none; - border-radius: 3px; - background-color: #00171d; } - row:selected progressbar trough, - infobar progressbar trough { - background-color: rgba(0, 0, 0, 0.2); } - -levelbar block { - min-width: 32px; - min-height: 1px; } - -levelbar.vertical block { - min-width: 1px; - min-height: 32px; } - -levelbar trough { - border: none; - padding: 3px; - border-radius: 3px; - background-color: #00171d; } - -levelbar.horizontal.discrete block { - margin: 0 1px; } - -levelbar.vertical.discrete block { - margin: 1px 0; } - -levelbar block:not(.empty) { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - -levelbar block.low { - border-color: #cb4b16; - background-color: #cb4b16; } - -levelbar block.high { - border-color: #268bd2; - background-color: #268bd2; } - -levelbar block.full { - border-color: #859900; - background-color: #859900; } - -levelbar block.empty { - background-color: #073642; - border-color: #073642; } - -printdialog paper { - border: 1px solid #001317; - background: #073642; - padding: 0; } - -printdialog .dialog-action-box { - margin: 12px; } - -frame > border, -.frame { - margin: 0; - padding: 0; - border-radius: 0; - border: 1px solid #001317; } - -frame.flat > border, -frame > border.flat, -.frame.flat { - border-style: none; } - -scrolledwindow viewport.frame { - border-style: none; } - -scrolledwindow overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 100%; - background-repeat: no-repeat; - background-position: right center; - background-color: transparent; - border: none; - box-shadow: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow junction { - border-color: transparent; - border-image: linear-gradient(to bottom, #001317 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #07323d; } - scrolledwindow junction:dir(rtl) { - border-image-slice: 0 1 0 0; } - -separator { - background-color: rgba(0, 0, 0, 0.1); - min-width: 1px; - min-height: 1px; } - -list { - background-color: #073642; - border-color: #001317; } - list row { - padding: 2px; } - -row:not(:hover) { - transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - -row.activatable.has-open-popup, row.activatable:hover { - background-color: rgba(255, 255, 255, 0.03); } - -row.activatable:active { - color: #657b83; } - -row.activatable:disabled { - color: rgba(101, 123, 131, 0.45); } - row.activatable:disabled image { - color: inherit; } - -row.activatable:selected:active { - color: #fdf6e3; } - -row.activatable:selected.has-open-popup, row.activatable:selected:hover { - background-color: #227dbd; } - -.app-notification { - padding: 10px; - color: #657b83; - background-color: #073642; - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: #021014; } - .app-notification border { - border: none; } - .app-notification button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .app-notification button.flat, .app-notification button.sidebar-button { - border-color: rgba(38, 139, 210, 0); } - .app-notification button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .app-notification button:active, .app-notification button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -expander arrow { - min-width: 16px; - min-height: 16px; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - expander arrow:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - expander arrow:hover { - color: #b8c4c9; } - expander arrow:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -calendar { - color: #657b83; - border: 1px solid #001317; - border-radius: 3px; - padding: 2px; } - calendar:selected { - border-radius: 1.5px; } - calendar.header { - color: #657b83; - border: none; } - calendar.button { - color: rgba(101, 123, 131, 0.45); } - calendar.button:hover { - color: #657b83; } - calendar.button:disabled { - color: rgba(101, 123, 131, 0.45); } - calendar:indeterminate { - color: alpha(currentColor,0.55); } - calendar.highlight { - color: #657b83; } - -messagedialog .titlebar { - min-height: 20px; - background-color: #002b36; - border-bottom: 1px solid #000f12; } - -messagedialog .dialog-action-area button { - padding: 8px; - min-height: 0; } - -messagedialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - -messagedialog.csd .dialog-action-area button { - border-bottom-style: none; } - -messagedialog.csd .dialog-action-area button { - border-radius: 0; - border-right-style: none; } - -messagedialog.csd .dialog-action-area button:last-child { - border-radius: 0 0 3px 0; - border-right-style: none; } - -messagedialog.csd .dialog-action-area button:first-child { - border-radius: 0 0 0 3px; - border-left-style: none; } - -messagedialog.csd .dialog-action-area button:only-child { - border-radius: 0 0 3px 3px; - border-left-style: none; - border-right-style: none; } - -filechooser #pathbarbox { - border-bottom: 1px solid rgba(0, 19, 23, 0.5); } - -filechooserbutton:drop(active) { - box-shadow: none; - border-color: transparent; } - -.sidebar { - border-style: none; - background-color: #003340; } - stacksidebar.sidebar:dir(ltr) list, - stacksidebar.sidebar.left list, - stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) { - border-right: 1px solid #001317; - border-left-style: none; } - stacksidebar.sidebar:dir(rtl) list, - stacksidebar.sidebar.right list, .sidebar:dir(rtl), .sidebar.right { - border-left: 1px solid #001317; - border-right-style: none; } - .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; } - -placessidebar > viewport.frame { - border-style: none; } - -placessidebar row { - min-height: 30px; - padding: 0px; } - placessidebar row > revealer { - padding: 0 10px; } - 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-width: 22px; - min-height: 22px; - margin-top: 2px; - margin-bottom: 2px; - padding: 0; - border-radius: 100%; - -gtk-outline-radius: 100%; } - button.sidebar-button:not(:hover):not(:active) > image { - opacity: 0.5; } - placessidebar row.sidebar-placeholder-row { - padding: 0 8px; - min-height: 2px; - background-image: linear-gradient(to bottom, #b58900, #b58900); - background-clip: content-box; } - placessidebar row.sidebar-new-bookmark-row { - color: #268bd2; } - placessidebar row:drop(active):not(:disabled) { - box-shadow: inset 0 1px #b58900, inset 0 -1px #b58900; } - placessidebar row:drop(active):not(:disabled), placessidebar row:drop(active):not(:disabled) label, placessidebar row:drop(active):not(:disabled) image { - color: #b58900; } - placessidebar row:drop(active):not(:disabled):selected { - background-color: #b58900; } - placessidebar row:drop(active):not(:disabled):selected, placessidebar row:drop(active):not(:disabled):selected label, placessidebar row:drop(active):not(:disabled):selected image { - color: #fdf6e3; } - -placesview .server-list-button > image { - -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 > actionbar > revealer > box > label { - padding-left: 8px; - padding-right: 8px; } - -paned > separator { - min-width: 1px; - min-height: 1px; - -gtk-icon-source: none; - border-style: none; - background-color: transparent; - background-image: linear-gradient(to bottom, #001317, #001317); - background-size: 1px 1px; } - paned > separator:selected { - background-image: linear-gradient(to bottom, #268bd2, #268bd2); } - paned > separator.wide { - min-width: 5px; - min-height: 5px; - background-color: #002b36; - background-image: linear-gradient(to bottom, #001317, #001317), linear-gradient(to bottom, #001317, #001317); - background-size: 1px 1px, 1px 1px; } - -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; } - -infobar { - border-style: none; } - infobar.info, infobar.question, infobar.warning, infobar.error { - background-color: #268bd2; - color: #fdf6e3; - caret-color: currentColor; } - infobar.info selection, infobar.question selection, infobar.warning selection, infobar.error selection { - color: #268bd2; - background-color: #fdf6e3; } - -.selection-mode.primary-toolbar button:hover, headerbar.selection-mode button:hover, row:selected button, infobar.info button, infobar.question button, infobar.warning button, infobar.error button, .nautilus-window .floating-bar button { - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - -row:selected button.flat, row:selected button.sidebar-button, infobar.info button.flat, infobar.info button.sidebar-button, infobar.question button.flat, infobar.question button.sidebar-button, infobar.warning button.flat, infobar.warning button.sidebar-button, infobar.error button.flat, infobar.error button.sidebar-button, .nautilus-window .floating-bar button.flat, .nautilus-window .floating-bar button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .selection-mode.primary-toolbar button:disabled, headerbar.selection-mode button:disabled, row:selected button.flat:disabled, row:selected button.sidebar-button:disabled, infobar.info button.flat:disabled, infobar.info button.sidebar-button:disabled, infobar.question button.flat:disabled, infobar.question button.sidebar-button:disabled, infobar.warning button.flat:disabled, infobar.warning button.sidebar-button:disabled, infobar.error button.flat:disabled, infobar.error button.sidebar-button:disabled, .nautilus-window .floating-bar button.flat:disabled, .nautilus-window .floating-bar button.sidebar-button:disabled, .selection-mode.primary-toolbar button:disabled label, headerbar.selection-mode button:disabled label, row:selected button.flat:disabled label, row:selected button.sidebar-button:disabled label, infobar.info button.flat:disabled label, infobar.info button.sidebar-button:disabled label, infobar.question button.flat:disabled label, infobar.question button.sidebar-button:disabled label, infobar.warning button.flat:disabled label, infobar.warning button.sidebar-button:disabled label, infobar.error button.flat:disabled label, infobar.error button.sidebar-button:disabled label, .nautilus-window .floating-bar button.flat:disabled label, .nautilus-window .floating-bar button.sidebar-button:disabled label { - color: rgba(253, 246, 227, 0.4); } - -row:selected button:hover, infobar.info button:hover, infobar.question button:hover, infobar.warning button:hover, infobar.error button:hover, .nautilus-window .floating-bar button:hover { - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - -.selection-mode.primary-toolbar button:active, headerbar.selection-mode button:active, .selection-mode.primary-toolbar button:checked, headerbar.selection-mode button:checked, row:selected button:active, infobar.info button:active, infobar.question button:active, infobar.warning button:active, infobar.error button:active, .nautilus-window .floating-bar button:active, .selection-mode.primary-toolbar button:hover:active, headerbar.selection-mode button:hover:active, .selection-mode.primary-toolbar button:hover:checked, headerbar.selection-mode button:hover:checked, row:selected button:active:hover, infobar.info button:active:hover, infobar.question button:active:hover, infobar.warning button:active:hover, infobar.error button:active:hover, .nautilus-window .floating-bar button:active:hover, row:selected button:checked, infobar.info button:checked, infobar.question button:checked, infobar.warning button:checked, infobar.error button:checked, .nautilus-window .floating-bar button:checked { - color: #268bd2; - background-color: #fdf6e3; - border-color: #fdf6e3; } - -row:selected button:disabled, infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, .nautilus-window .floating-bar button:disabled { - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.4); } - row:selected button:disabled, infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, .nautilus-window .floating-bar button:disabled, row:selected button:disabled label, infobar.info button:disabled label, infobar.question button:disabled label, infobar.warning button:disabled label, infobar.error button:disabled label, .nautilus-window .floating-bar button:disabled label { - color: rgba(253, 246, 227, 0.5); } - .selection-mode.primary-toolbar button:disabled:active, headerbar.selection-mode button:disabled:active, .selection-mode.primary-toolbar button:disabled:checked, headerbar.selection-mode button:disabled:checked, row:selected button:disabled:active, infobar.info button:disabled:active, infobar.question button:disabled:active, infobar.warning button:disabled:active, infobar.error button:disabled:active, .nautilus-window .floating-bar button:disabled:active, .selection-mode.primary-toolbar button:disabled:checked, headerbar.selection-mode button:disabled:checked, .selection-mode.primary-toolbar button:disabled:active, headerbar.selection-mode button:disabled:active, row:selected button:disabled:checked, infobar.info button:disabled:checked, infobar.question button:disabled:checked, infobar.warning button:disabled:checked, infobar.error button:disabled:checked, .nautilus-window .floating-bar button:disabled:checked { - color: #268bd2; - background-color: rgba(253, 246, 227, 0.5); - border-color: rgba(253, 246, 227, 0.4); } - -tooltip { - border-radius: 2px; - box-shadow: none; } - tooltip.background { - background-color: #0c5c70; - background-clip: padding-box; } - tooltip.background label { - padding: 4px; } - tooltip decoration { - background-color: transparent; } - tooltip * { - background-color: transparent; - color: #657b83; } - -colorswatch, colorswatch:drop(active) { - border-style: none; } - -colorswatch.top { - border-top-left-radius: 2.5px; - border-top-right-radius: 2.5px; } - colorswatch.top overlay { - border-top-left-radius: 2px; - border-top-right-radius: 2px; } - -colorswatch.bottom { - border-bottom-left-radius: 2.5px; - border-bottom-right-radius: 2.5px; } - colorswatch.bottom overlay { - border-bottom-left-radius: 2px; - border-bottom-right-radius: 2px; } - -colorswatch.left, colorswatch:first-child:not(.top) { - border-top-left-radius: 2.5px; - border-bottom-left-radius: 2.5px; } - colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { - border-top-left-radius: 2px; - border-bottom-left-radius: 2px; } - -colorswatch.right, colorswatch:last-child:not(.bottom) { - border-top-right-radius: 2.5px; - border-bottom-right-radius: 2.5px; } - colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { - border-top-right-radius: 2px; - border-bottom-right-radius: 2px; } - -colorswatch.dark overlay { - color: rgba(255, 255, 255, 0.7); } - colorswatch.dark overlay:hover { - border-color: #001317; } - -colorswatch.light overlay { - color: rgba(0, 0, 0, 0.7); } - colorswatch.light overlay:hover { - border-color: #001317; } - -colorswatch overlay { - border: 1px solid #001317; } - colorswatch overlay:hover { - background-color: rgba(255, 255, 255, 0.2); } - -colorswatch:disabled { - opacity: 0.5; } - colorswatch:disabled overlay { - border-color: rgba(0, 0, 0, 0.6); - box-shadow: none; } - -colorswatch#add-color-button { - border-style: solid; - border-width: 1px; - color: #657b83; - border-color: #001317; - background-color: #083e4b; } - colorswatch#add-color-button:hover { - color: #657b83; - border-color: #001317; - background-color: #0a5062; } - colorswatch#add-color-button overlay { - border-color: transparent; - background-color: transparent; - background-image: none; } - -button.color { - padding: 0; } - button.color colorswatch:first-child:last-child, button.color colorswatch:first-child:last-child overlay { - margin: 4px; - border-radius: 0; } - -colorchooser .popover.osd { - border-radius: 3px; } - -.content-view { - background-color: #073642; } - .content-view:hover { - -gtk-icon-effect: highlight; } - -.scale-popup button:hover { - color: #657b83; - border-color: #001317; - background-color: #0a5062; } - -.context-menu, popover.touch-selection, .csd popover.touch-selection, -popover.background.touch-selection, .csd popover.background.touch-selection { - font: initial; } - -.monospace { - font-family: Monospace; } - -button.circular, button.nautilus-circular-button.image-button, -button.circular-button { - padding: 0; - min-width: 16px; - min-height: 24px; - padding: 2px 6px; - border-radius: 50%; - -gtk-outline-radius: 50%; } - button.circular label, button.nautilus-circular-button.image-button label, - button.circular-button label { - padding: 0; } - -.keycap { - min-width: 16px; - min-height: 20px; - padding: 3px 6px 4px 6px; - color: #657b83; - background-color: #073642; - border: 1px solid #001317; - border-radius: 2.5px; - box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.15); } - -stackswitcher button.text-button { - min-width: 80px; } - -stackswitcher button.circular, stackswitcher button.nautilus-circular-button.image-button { - min-width: 0; } - -*:drop(active):focus, -*:drop(active) { - box-shadow: inset 0 0 0 1px #b58900; } - -decoration { - border-radius: 3px 3px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px #000f12, 0 8px 8px 0 rgba(0, 0, 0, 0.35); - margin: 10px; } - decoration:backdrop { - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.9), 0 8px 8px 0 transparent, 0 5px 5px 0 rgba(0, 0, 0, 0.35); - transition: 200ms ease-out; } - .fullscreen decoration, - .tiled decoration { - border-radius: 0; } - .popup decoration { - box-shadow: none; - border-radius: 0; } - .ssd decoration { - border-radius: 3px 3px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } - .ssd decoration.maximized { - border-radius: 0; } - .csd.popup decoration { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.45), 0 0 0 1px #000203; } - tooltip.csd decoration { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.25); } - messagedialog.csd decoration { - border-radius: 3px; } - .solid-csd decoration { - border-radius: 0; - margin: 1px; - background-color: #002b36; - box-shadow: none; } - -headerbar.default-decoration button.titlebutton, -.titlebar.default-decoration button.titlebutton { - padding: 0 4px; - min-width: 0; - min-height: 0; - margin: 0; } - -headerbar button.titlebutton, -.titlebar button.titlebutton { - padding: 0; - min-width: 24px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(0, 43, 54, 0); } - headerbar button.titlebutton:hover, - .titlebar button.titlebutton:hover { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - headerbar button.titlebutton:active, headerbar button.titlebutton:checked, - .titlebar button.titlebutton:active, - .titlebar button.titlebutton:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - headerbar button.titlebutton.close, headerbar button.titlebutton.maximize, headerbar button.titlebutton.minimize, - .titlebar button.titlebutton.close, - .titlebar button.titlebutton.maximize, - .titlebar button.titlebutton.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; } - headerbar button.titlebutton.close:backdrop, headerbar button.titlebutton.maximize:backdrop, headerbar button.titlebutton.minimize:backdrop, - .titlebar button.titlebutton.close:backdrop, - .titlebar button.titlebutton.maximize:backdrop, - .titlebar button.titlebutton.minimize:backdrop { - opacity: 1; } - headerbar button.titlebutton.close, - .titlebar button.titlebutton.close { - background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } - headerbar button.titlebutton.close:backdrop, - .titlebar button.titlebutton.close:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } - headerbar button.titlebutton.close:hover, - .titlebar button.titlebutton.close:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } - headerbar button.titlebutton.close:active, - .titlebar button.titlebutton.close:active { - background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } - headerbar button.titlebutton.maximize, - .titlebar button.titlebutton.maximize { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-dark.png"), url("assets/titlebutton-maximize-dark@2.png")); } - headerbar button.titlebutton.maximize:backdrop, - .titlebar button.titlebutton.maximize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop-dark.png"), url("assets/titlebutton-maximize-backdrop-dark@2.png")); } - headerbar button.titlebutton.maximize:hover, - .titlebar button.titlebutton.maximize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover-dark.png"), url("assets/titlebutton-maximize-hover-dark@2.png")); } - headerbar button.titlebutton.maximize:active, - .titlebar button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active-dark.png"), url("assets/titlebutton-maximize-active-dark@2.png")); } - headerbar button.titlebutton.minimize, - .titlebar button.titlebutton.minimize { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-dark.png"), url("assets/titlebutton-minimize-dark@2.png")); } - headerbar button.titlebutton.minimize:backdrop, - .titlebar button.titlebutton.minimize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop-dark.png"), url("assets/titlebutton-minimize-backdrop-dark@2.png")); } - headerbar button.titlebutton.minimize:hover, - .titlebar button.titlebutton.minimize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover-dark.png"), url("assets/titlebutton-minimize-hover-dark@2.png")); } - headerbar button.titlebutton.minimize:active, - .titlebar button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active-dark.png"), url("assets/titlebutton-minimize-active-dark@2.png")); } - -.view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, .view text:selected, iconview text:selected, -textview text:selected, iconview text:selected:focus, -textview text:selected:focus, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, -textview text selection:focus, -textview text selection, flowbox flowboxchild:selected, entry selection:focus, entry selection, menuitem.button.flat:active, menuitem.button.flat:active arrow, menuitem.button.flat:selected, menuitem.button.flat:selected arrow, -modelbutton.flat:active, -modelbutton.flat:active arrow, -modelbutton.flat:selected, -modelbutton.flat:selected arrow, treeview.view:selected, treeview.view:selected:focus, row:selected, calendar:selected, .nemo-window .nemo-window-pane widget.entry:selected:focus, .nemo-window .nemo-window-pane widget.entry:selected, filechooser placessidebar.sidebar row.sidebar-row.has-open-popup:selected, filechooser placessidebar.sidebar row.sidebar-row:selected, filechooser placessidebar.sidebar row.sidebar-row:selected:hover, filechooser placessidebar.sidebar row.sidebar-row:active:hover, -.nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup:selected, -.nautilus-window placessidebar.sidebar row.sidebar-row:selected, -.nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover, -.nautilus-window placessidebar.sidebar row.sidebar-row:active:hover { - background-color: #268bd2; } - row:selected label, label:selected, .view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, .view text:selected, iconview text:selected, - textview text:selected, iconview text:selected:focus, - textview text:selected:focus, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, - textview text selection:focus, - textview text selection, flowbox flowboxchild:selected, entry selection:focus, entry selection, menuitem.button.flat:active, menuitem.button.flat:active arrow, menuitem.button.flat:selected, menuitem.button.flat:selected arrow, - modelbutton.flat:active, - modelbutton.flat:active arrow, - modelbutton.flat:selected, - modelbutton.flat:selected arrow, treeview.view:selected, treeview.view:selected:focus, row:selected, calendar:selected, .nemo-window .nemo-window-pane widget.entry:selected:focus, .nemo-window .nemo-window-pane widget.entry:selected, filechooser placessidebar.sidebar row.sidebar-row.has-open-popup:selected, filechooser placessidebar.sidebar row.sidebar-row:selected, filechooser placessidebar.sidebar row.sidebar-row:selected:hover, filechooser placessidebar.sidebar row.sidebar-row:active:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup:selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row:active:hover { - color: #fdf6e3; } - row:selected label:disabled, label:disabled:selected, .view:disabled:selected, iconview:disabled:selected, iconview:disabled:selected:focus, .view text:disabled:selected, iconview text:disabled:selected, - textview text:disabled:selected, iconview text selection:disabled:focus, .view text selection:disabled, iconview text selection:disabled, - textview text selection:disabled, flowbox flowboxchild:disabled:selected, label:disabled selection, entry selection:disabled, menuitem.button.flat:disabled:active, menuitem.button.flat:active arrow:disabled, menuitem.button.flat:disabled:selected, menuitem.button.flat:selected arrow:disabled, - modelbutton.flat:disabled:active, - modelbutton.flat:active arrow:disabled, - modelbutton.flat:disabled:selected, - modelbutton.flat:selected arrow:disabled, treeview.view:disabled:selected:focus, row:disabled:selected, calendar:disabled:selected, .nemo-window .nemo-window-pane widget.entry:disabled:selected, filechooser placessidebar.sidebar row.sidebar-row:disabled:selected, filechooser placessidebar.sidebar row.sidebar-row:disabled:active:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled:selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled:active:hover { - color: #92c1db; } - -.gedit-bottom-panel-paned notebook > header.top > tabs > tab:checked, -terminal-window notebook > header.top > tabs > tab:checked { - box-shadow: inset 0 -1px #001317; } - -terminal-window notebook > header.top, -.mate-terminal notebook > header.top { - padding-top: 3px; - box-shadow: inset 0 1px #001b22, inset 0 -1px #001317; } - terminal-window notebook > header.top button, - .mate-terminal notebook > header.top button { - padding: 0; - min-width: 24px; - min-height: 24px; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item, .caja-desktop { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active, .caja-desktop:active { - color: #657b83; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected, .caja-desktop:selected { - color: #fdf6e3; - text-shadow: none; } - -.nautilus-canvas-item.dim-label, label.nautilus-canvas-item.separator, -popover.background label.nautilus-canvas-item.separator, headerbar .nautilus-canvas-item.subtitle, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle, -.nautilus-list-dim-label { - color: #33535d; } - .nautilus-canvas-item.dim-label:selected, label.nautilus-canvas-item.separator:selected, headerbar .nautilus-canvas-item.subtitle:selected, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, label.nautilus-canvas-item.separator:selected:focus, headerbar .nautilus-canvas-item.subtitle:selected:focus, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle:selected:focus, - .nautilus-list-dim-label:selected, - .nautilus-list-dim-label:selected:focus { - color: #d2e1e0; } - -.nautilus-window searchbar { - border-top: 1px solid #001317; } - -.nautilus-window .searchbar-container { - margin-top: -1px; } - -.nautilus-window notebook, -.nautilus-window notebook > stack:not(:only-child) searchbar { - background-color: #073642; } - -.disk-space-display { - border-style: solid; - border-width: 1px; } - .disk-space-display.unknown { - background-color: rgba(101, 123, 131, 0.5); - border-color: rgba(79, 96, 102, 0.5); } - .disk-space-display.used { - background-color: rgba(38, 139, 210, 0.8); - border-color: rgba(30, 110, 167, 0.8); } - .disk-space-display.free { - background-color: #001f27; - border-color: black; } - -@keyframes needs_attention_keyframes { - 0% { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - 100% { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } } - -.nautilus-operations-button-needs-attention { - animation: needs_attention_keyframes 2s ease-in-out; } - -.nautilus-operations-button-needs-attention-multiple { - animation: needs_attention_keyframes 3s ease-in-out; - animation-iteration-count: 3; } - -.conflict-row.activatable, .conflict-row.activatable:active { - color: white; - background-color: #dc322f; } - -.conflict-row.activatable:hover { - background-color: #e35d5b; } - -.conflict-row.activatable:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.nemo-window .nemo-places-sidebar.frame { - border-width: 0; } - -.nemo-window notebook { - background-color: #073642; } - -.nemo-window .nemo-window-pane widget.entry { - border: 1px solid; - border-radius: 3px; - color: #657b83; - border-color: #001317; - background-color: #073642; - box-shadow: inset 1px 0 #268bd2, inset -1px 0 #268bd2, inset 0 1px #268bd2, inset 0 -1px #268bd2; } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:not(:last-child):not(:only-child) { - margin: 0 0 1px 0; } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover { - background-color: rgba(0, 193, 243, 0.4); } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:active, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:disabled { - color: rgba(89, 128, 143, 0.4); } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button + button { - border-left-style: none; } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4), inset -1px 0 rgba(0, 0, 0, 0.4); } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - -.caja-notebook { - border-top: 1px solid #001317; } - -.caja-side-pane .frame { - border-width: 1px 0 0; } - -.caja-notebook .frame { - border-width: 0 0 1px; } - -.open-document-selector-treeview.view, iconview.open-document-selector-treeview { - padding: 3px 6px 3px 6px; - border-color: #073642; } - .open-document-selector-treeview.view:hover, iconview.open-document-selector-treeview:hover { - background-color: #0e3b47; } - .open-document-selector-treeview.view:hover:selected, iconview.open-document-selector-treeview:hover:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.open-document-selector-name-label { - color: #657b83; } - -.open-document-selector-path-label { - color: #365963; - font-size: smaller; } - .open-document-selector-path-label:selected { - color: rgba(253, 246, 227, 0.9); } - -.gedit-document-panel row button { - min-width: 22px; - min-height: 22px; - padding: 0; - color: transparent; - background: none; - border: none; - box-shadow: none; } - .gedit-document-panel row button image { - color: inherit; } - -.gedit-document-panel row:hover:not(:selected) button { - color: #425f68; } - .gedit-document-panel row:hover:not(:selected) button:hover { - color: #ff4d4d; } - .gedit-document-panel row:hover:not(:selected) button:active { - color: #657b83; } - -.gedit-document-panel row:hover:selected button:hover { - color: #ff6666; - background: none; - border: none; - box-shadow: none; } - .gedit-document-panel row:hover:selected button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel-dragged-row { - border: 1px solid #001317; - background-color: #000203; - color: #657b83; } - -.gedit-side-panel-paned statusbar { - border-top: 1px solid #001317; - background-color: #002b36; } - -.gedit-search-slider { - background-color: #003340; - padding: 6px; - border-color: #001317; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -.gedit-search-entry-occurrences-tag { - color: rgba(101, 123, 131, 0.6); - border: none; - margin: 2px; - padding: 2px; } - -.gedit-map-frame border { - border-width: 0; } - .gedit-map-frame border:dir(ltr) { - border-left-width: 1px; } - .gedit-map-frame border:dir(rtl) { - border-right-width: 1px; } - -.pluma-window statusbar frame > border { - border: none; } - -.pluma-window notebook > stack scrolledwindow { - border-width: 0 0 1px 0; } - -#pluma-status-combo-button { - min-height: 0; - padding: 0; - border-top: none; - border-bottom: none; - border-radius: 0; } - -.gb-search-entry-occurrences-tag { - background: none; } - -workbench.csd > stack.titlebar:not(headerbar) { - padding: 0; - background: none; - border: none; - box-shadow: none; } - workbench.csd > stack.titlebar:not(headerbar) headerbar, workbench.csd > stack.titlebar:not(headerbar) headerbar:first-child, workbench.csd > stack.titlebar:not(headerbar) headerbar:last-child { - border-radius: 3px 3px 0 0; } - -editortweak .linked > entry.search:focus + .gb-linked-scroller { - border-top-color: #268bd2; } - -layouttab { - background-color: #073642; } - -layout { - border: 1px solid #001317; - -PnlDockBin-handle-size: 1; } - -eggsearchbar box.search-bar { - border-bottom: 1px solid #001317; } - -pillbox { - color: #fdf6e3; - background-color: #268bd2; - border-radius: 3px; } - pillbox:disabled label { - color: rgba(253, 246, 227, 0.5); } - -docktabstrip { - padding: 0 6px; - background-color: #002b36; - border-bottom: 1px solid #001317; } - docktabstrip docktab { - min-height: 28px; - border: solid transparent; - border-width: 0 1px; } - docktabstrip docktab label { - opacity: 0.5; } - docktabstrip docktab:checked label, docktabstrip docktab:hover label { - opacity: 1; } - docktabstrip docktab:checked { - border-color: #001317; - background-color: #073642; } - -dockbin { - border: 1px solid #001317; - -PnlDockBin-handle-size: 1; } - -dockpaned { - border: 1px solid #001317; } - -dockoverlayedge { - background-color: #002b36; } - dockoverlayedge docktabstrip { - padding: 0; - border: none; } - dockoverlayedge.left-edge tab:checked, - dockoverlayedge.right-edge tab:checked { - border-width: 1px 0; } - -popover.messagepopover.background { - padding: 0; } - -popover.messagepopover .popover-content-area { - margin: 16px; } - -popover.messagepopover .popover-action-area { - margin: 8px; } - popover.messagepopover .popover-action-area button:not(:first-child):not(:last-child) { - margin: 0 4px; } - -popover.popover-selector { - padding: 0; } - popover.popover-selector list row { - padding: 5px 0; } - popover.popover-selector list row image { - margin-left: 3px; - margin-right: 10px; } - -entry.search.preferences-search { - border: none; - border-right: 1px solid #001317; - border-bottom: 1px solid #001317; - border-radius: 0; } - -preferences stacksidebar.sidebar list { - background-image: linear-gradient(to bottom, #073642, #073642); } - -preferences stacksidebar.sidebar list separator { - background-color: transparent; } - -devhelppanel entry:focus, -symboltreepanel entry:focus { - border-color: #001317; } - -button.run-arrow-button { - min-width: 12px; } - -omnibar.linked > entry:not(:only-child) { - border-style: solid; - border-radius: 3px; - margin-left: 1px; - margin-right: 1px; } - -gstyleslidein #scale_box button.toggle:checked, -gstyleslidein #strings_controls button.toggle:checked, -gstyleslidein #palette_controls button.toggle:checked, -gstyleslidein #components_controls button.toggle:checked { - color: #657b83; } - -configurationview entry.flat { - background: none; } - -configurationview list { - border-width: 0; } - -.documents-scrolledwin.frame { - border-width: 0; } - -button.documents-load-more { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon, .photos-collection-icon { - background-color: rgba(101, 123, 131, 0.3); - border-radius: 2px; } - -button.documents-favorite:active, -button.documents-favorite:active:hover { - color: #78b9e6; } - -.documents-entry-tag, .photos-entry-tag { - color: #fdf6e3; - background: #268bd2; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover, .photos-entry-tag:hover { - color: #fdf6e3; - background: #3295da; } - .documents-entry-tag:active, .photos-entry-tag:active { - color: #fdf6e3; - background: #2380c1; } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -.photos-fade-in { - opacity: 1.0; - transition: opacity 0.2s ease-out; } - -.photos-fade-out { - opacity: 0.0; - transition: opacity 0.2s ease-out; } - -.tweak-categories, -.tweak-category:not(:selected):not(:hover) { - background-image: linear-gradient(to bottom, #073642, #073642); } - -.tr-workarea undershoot, -.tr-workarea overshoot { - border-color: transparent; } - -.atril-window .primary-toolbar toolbar, .atril-window .primary-toolbar .inline-toolbar { - background: none; } - -#gf-bubble, #gf-bubble.solid, -#gf-osd-window, -#gf-osd-window.solid, -#gf-input-source-popup, -#gf-input-source-popup.solid, -#gf-candidate-popup, -#gf-candidate-popup.solid { - color: #768d96; - background-color: #073642; - border: 1px solid #03181d; - border-radius: 2px; } - -#gf-bubble levelbar block.low, #gf-bubble levelbar block.high, #gf-bubble levelbar block.full, -#gf-osd-window levelbar block.low, -#gf-osd-window levelbar block.high, -#gf-osd-window levelbar block.full, -#gf-input-source-popup levelbar block.low, -#gf-input-source-popup levelbar block.high, -#gf-input-source-popup levelbar block.full, -#gf-candidate-popup levelbar block.low, -#gf-candidate-popup levelbar block.high, -#gf-candidate-popup levelbar block.full { - background-color: #268bd2; - border-color: #268bd2; } - -#gf-bubble levelbar block.empty, -#gf-osd-window levelbar block.empty, -#gf-input-source-popup levelbar block.empty, -#gf-candidate-popup levelbar block.empty { - background-color: #05232b; } - -#gf-bubble levelbar trough, -#gf-osd-window levelbar trough, -#gf-input-source-popup levelbar trough, -#gf-candidate-popup levelbar trough { - background: none; } - -#gf-input-source { - min-height: 32px; - min-width: 40px; } - #gf-input-source:selected { - color: #fdf6e3; - background-color: #268bd2; - border-radius: 2px; } - -gf-candidate-box label { - padding: 3px; } - -gf-candidate-box:hover, gf-candidate-box:selected { - color: #fdf6e3; - background-color: #268bd2; - border-radius: 2px; } - -MsdOsdWindow.background.osd { - border-radius: 2px; - border: 1px solid #03181d; } - MsdOsdWindow.background.osd .progressbar { - background-color: #268bd2; - border: none; - border-color: red; - border-radius: 5px; } - MsdOsdWindow.background.osd .trough { - background-color: #05232b; - border: none; - border-radius: 5px; } - -.mate-panel-menu-bar, .mate-panel-menu-bar menubar, -panel-toplevel.background, -panel-toplevel.background menubar { - background-color: #05242c; } - -.mate-panel-menu-bar menubar, -.mate-panel-menu-bar #PanelApplet label, -.mate-panel-menu-bar #PanelApplet image, -panel-toplevel.background menubar, -panel-toplevel.background #PanelApplet label, -panel-toplevel.background #PanelApplet image { - color: #657b83; } - -.mate-panel-menu-bar button label, .mate-panel-menu-bar button image, -.mate-panel-menu-bar #tasklist-button label, -.mate-panel-menu-bar #tasklist-button image, -panel-toplevel.background button label, -panel-toplevel.background button image, -panel-toplevel.background #tasklist-button label, -panel-toplevel.background #tasklist-button image { - color: inherit; } - -.mate-panel-menu-bar .wnck-pager, -panel-toplevel.background .wnck-pager { - color: #333e42; - background-color: black; } - .mate-panel-menu-bar .wnck-pager:hover, - panel-toplevel.background .wnck-pager:hover { - background-color: #073743; } - .mate-panel-menu-bar .wnck-pager:selected, - panel-toplevel.background .wnck-pager:selected { - color: #78b9e6; - background-color: #268bd2; } - -.mate-panel-menu-bar na-tray-applet, -panel-toplevel.background na-tray-applet { - -NaTrayApplet-icon-padding: 0; - -NaTrayApplet-icon-size: 16px; } - -.xfce4-panel.panel { - background-color: #05242c; - text-shadow: none; - -gtk-icon-shadow: none; } - -#tasklist-button { - color: rgba(101, 123, 131, 0.8); - border-radius: 0; - border: none; - background-color: rgba(5, 36, 44, 0); } - #tasklist-button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); } - #tasklist-button:checked { - color: white; - background-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -.mate-panel-menu-bar button:not(#tasklist-button), -panel-toplevel.background button:not(#tasklist-button), .xfce4-panel.panel button.flat, .xfce4-panel.panel button.sidebar-button { - color: #657b83; - border-radius: 0; - border: none; - background-color: rgba(5, 36, 44, 0); } - .mate-panel-menu-bar button:hover:not(#tasklist-button), - panel-toplevel.background button:hover:not(#tasklist-button), .xfce4-panel.panel button.flat:hover, .xfce4-panel.panel button.sidebar-button:hover { - border: none; - background-color: #0a4a5a; } - .mate-panel-menu-bar button:active:not(#tasklist-button), - panel-toplevel.background button:active:not(#tasklist-button), .xfce4-panel.panel button.flat:active, .xfce4-panel.panel button.sidebar-button:active, .mate-panel-menu-bar button:checked:not(#tasklist-button), - panel-toplevel.background button:checked:not(#tasklist-button), .xfce4-panel.panel button.flat:checked, .xfce4-panel.panel button.sidebar-button:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - .mate-panel-menu-bar button:active:not(#tasklist-button) label, - panel-toplevel.background button:active:not(#tasklist-button) label, .xfce4-panel.panel button.flat:active label, .xfce4-panel.panel button.sidebar-button:active label, .mate-panel-menu-bar button:active:not(#tasklist-button) image, - panel-toplevel.background button:active:not(#tasklist-button) image, .xfce4-panel.panel button.flat:active image, .xfce4-panel.panel button.sidebar-button:active image, .mate-panel-menu-bar button:checked:not(#tasklist-button) label, - panel-toplevel.background button:checked:not(#tasklist-button) label, .xfce4-panel.panel button.flat:checked label, .xfce4-panel.panel button.sidebar-button:checked label, .mate-panel-menu-bar button:checked:not(#tasklist-button) image, - panel-toplevel.background button:checked:not(#tasklist-button) image, .xfce4-panel.panel button.flat:checked image, .xfce4-panel.panel button.sidebar-button:checked image { - color: inherit; } - -.nautilus-window .floating-bar { - padding: 1px; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px 2px 0 0; } - .nautilus-window .floating-bar.bottom.left { - border-top-left-radius: 0; } - .nautilus-window .floating-bar.bottom.right { - border-top-right-radius: 0; } - .nautilus-window .floating-bar button { - border: none; - border-radius: 0; - min-height: 0; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .marlin-pathbar.pathbar image, .marlin-pathbar.pathbar image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - .marlin-pathbar.pathbar:disabled { - color: rgba(89, 128, 143, 0.35); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.25); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - -gtk-icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:hover { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration .top { - border: 1px solid #000f12; - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #002b36, #002b36); - color: rgba(89, 128, 143, 0.8); - box-shadow: inset 0 1px #003745; } - UnityDecoration .top:backdrop { - border-bottom-width: 0; - color: rgba(89, 128, 143, 0.5); } - UnityDecoration .left, UnityDecoration .right, UnityDecoration .bottom, - UnityDecoration .left:backdrop, UnityDecoration .right:backdrop, UnityDecoration .bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, #000f12, #000f12); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: #004b5f; - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focus, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focus { - background-image: none; - border-image: none; } - -.lightdm.button:focus, -.lightdm.entry:focus { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar label { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #001317; - border-right: 1px solid #001317; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -toolbar.secondary-toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #001317; } - toolbar.secondary-toolbar button, .secondary-toolbar.inline-toolbar button { - padding: 0 3px 0 3px; } - -toolbar.bottom-toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #001317; - background-color: #002b36; } - toolbar.bottom-toolbar button, .bottom-toolbar.inline-toolbar button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view, -iconview.source-list { - background-color: #002b36; - color: #657b83; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:hover, iconview.source-list:hover { - background-color: #003f50; } - -.source-list.view:selected, iconview.source-list:selected, -.source-list.view:hover:selected, -iconview.source-list:hover:selected, -.source-list.view:selected:focus, -iconview.source-list:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list scrollbar, -.source-list junction { - border-image: none; - border-color: transparent; - background-color: #002b36; - background-image: none; } - -.source-list.badge, -.source-list.badge:hover, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:hover:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:hover:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #657b83; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GraniteWidgetsWelcome { - background-color: #073642; } - -GraniteWidgetsWelcome label { - color: #33535d; - font-size: 11px; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(101, 123, 131, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #073642, #073642); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, GraniteWidgetsPopOver iconview.sidebar, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry entry { - padding: 4px; } - -.h1 { - font-size: 24px; } - -.h2 { - font-size: 18px; } - -.h3 { - font-size: 11px; } - -.h4, -.category-label { - color: #47636c; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: #05242c; - color: #657b83; - font-weight: bold; - box-shadow: inset 0 -1px #010a0c; } - #panel_window menubar { - padding-left: 5px; } - #panel_window menubar, #panel_window menubar > menuitem { - background-color: transparent; - color: #657b83; - font-weight: bold; } - #panel_window menubar menuitem:disabled { - color: rgba(101, 123, 131, 0.5); } - #panel_window menubar menuitem:disabled label { - color: inherit; } - #panel_window menubar menu > menuitem { - font-weight: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font-weight: normal; - border-style: none; - background-color: transparent; - color: #657b83; } - -#content_frame { - padding-bottom: 14px; - background-color: #002b36; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame button { - color: #657b83; - border-color: #001317; - background-color: #083e4b; } - #content_frame button:hover { - color: #657b83; - border-color: #001317; - background-color: #0a5062; } - #content_frame button:active, #content_frame button:checked { - color: #fdf6e3; - border-color: #001317; - background-color: #268bd2; } - #content_frame button:disabled { - border-color: rgba(0, 19, 23, 0.55); - background-color: rgba(8, 62, 75, 0.55); } - #content_frame button:disabled label, #content_frame button:disabled { - color: rgba(101, 123, 131, 0.45); } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: #002b36; - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px #001b22; } - -#buttonbox_frame button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - #buttonbox_frame button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - #buttonbox_frame button:active, #buttonbox_frame button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - #buttonbox_frame button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -#login_window #user_combobox { - color: #657b83; - font-size: 13px; } - #login_window #user_combobox menu { - font-weight: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font-weight: bold; } - -.nautilus-window paned > separator { - background-image: linear-gradient(to bottom, #05232b, #05232b); } - -filechooser paned > separator { - background-image: linear-gradient(to bottom, #05232b, #05232b); } - -filechooser.csd.background, filechooser placessidebar list, -.nautilus-window.csd.background, -.nautilus-window placessidebar list { - background-color: transparent; } - -filechooser placessidebar.sidebar, -.nautilus-window placessidebar.sidebar { - background-color: #073642; } - filechooser placessidebar.sidebar row.sidebar-row, - .nautilus-window placessidebar.sidebar row.sidebar-row { - border: none; - color: #657b83; } - filechooser placessidebar.sidebar row.sidebar-row .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row .sidebar-icon { - color: rgba(101, 123, 131, 0.6); } - filechooser placessidebar.sidebar row.sidebar-row.has-open-popup, filechooser placessidebar.sidebar row.sidebar-row:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup, - .nautilus-window placessidebar.sidebar row.sidebar-row:hover { - background-color: rgba(101, 123, 131, 0.15); } - filechooser placessidebar.sidebar row.sidebar-row:disabled, filechooser placessidebar.sidebar row.sidebar-row:disabled label, filechooser placessidebar.sidebar row.sidebar-row:disabled image, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled label, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled image { - color: rgba(101, 123, 131, 0.4); } - filechooser placessidebar.sidebar row.sidebar-row:selected.has-open-popup .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:selected .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:active:hover .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected.has-open-popup .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:active:hover .sidebar-icon { - color: inherit; } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button { - color: #657b83; } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:active, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:active { - color: #fdf6e3; - border-color: #001317; - background-color: #268bd2; } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:not(:hover):not(:active) > image, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:not(:hover):not(:active) > image { - opacity: 0.5; } - filechooser placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row, - .nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row { - color: #268bd2; } - filechooser placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon { - color: inherit; } - filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) .sidebar-icon { - color: #b58900; } - filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected { - background-color: #b58900; } - filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected .sidebar-icon { - color: #fdf6e3; } - filechooser placessidebar.sidebar separator, - .nautilus-window placessidebar.sidebar separator { - background-color: transparent; } - -filechooser.maximized placessidebar.sidebar, -.nautilus-window.maximized placessidebar.sidebar { - background-color: #073642; } - -.nemo-window .sidebar { - color: #657b83; - background-color: #073642; } - .nemo-window .sidebar .view, .nemo-window .sidebar iconview, .nemo-window .sidebar row { - background-color: transparent; - color: #657b83; } - .nemo-window .sidebar .view.cell:selected, .nemo-window .sidebar iconview.cell:selected, .nemo-window .sidebar row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - .nemo-window .sidebar .view.expander, .nemo-window .sidebar iconview.expander, .nemo-window .sidebar row.expander { - color: #365963; } - .nemo-window .sidebar .view.expander:hover, .nemo-window .sidebar iconview.expander:hover, .nemo-window .sidebar row.expander:hover { - color: #657b83; } - .nemo-window .sidebar separator { - background-color: transparent; } - -.caja-side-pane, -.caja-side-pane > notebook > stack > widget > box, -.caja-side-pane text, -.caja-side-pane treeview { - color: #657b83; - caret-color: #657b83; - background-color: #073642; } - -.caja-side-pane > box button:not(:active):not(:checked) { - color: #657b83; } - -.caja-side-pane .frame { - border-color: #05232b; } - -.caja-side-pane junction { - background-color: #05232b; } - -filechooser actionbar { - color: #657b83; - background-color: #073642; - border-color: black; } - filechooser actionbar label, filechooser actionbar combobox { - color: #657b83; } - -.gedit-bottom-panel-paned { - background-color: #073642; } - -.gedit-side-panel-paned > separator { - background-image: linear-gradient(to bottom, #05232b, #05232b); } - -.gedit-bottom-panel-paned > separator { - background-image: linear-gradient(to bottom, #001317, #001317); } - -.gedit-document-panel { - background-color: #073642; } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel row { - color: #657b83; - background-color: rgba(101, 123, 131, 0); } - .gedit-document-panel row:hover { - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel row:active { - color: #fdf6e3; - background-color: #268bd2; } - .gedit-document-panel row:active button { - color: #fdf6e3; } - .gedit-document-panel row:selected, .gedit-document-panel row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; } - .gedit-document-panel row:hover:not(:selected) button:active { - color: #657b83; } - -filechooser actionbar button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .caja-side-pane > box button:hover:not(:active), filechooser actionbar button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - filechooser actionbar button:active, filechooser actionbar button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - filechooser actionbar button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -filechooser actionbar entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - filechooser actionbar entry image, filechooser actionbar entry image:hover { - color: inherit; } - filechooser actionbar entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - filechooser actionbar entry:disabled { - color: rgba(101, 123, 131, 0.55); - background-color: rgba(18, 137, 167, 0.25); } - -filechooser placessidebar.sidebar scrollbar, -.nautilus-window placessidebar.sidebar scrollbar, .nemo-window .sidebar scrollbar, .caja-side-pane scrollbar { - border-color: #05232b; } - filechooser placessidebar.sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, - .nautilus-window placessidebar.sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, .nemo-window .sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, .caja-side-pane scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { - background-color: #8da0a7; - border: 1px solid rgba(0, 0, 0, 0.3); } - filechooser placessidebar.sidebar scrollbar slider, - .nautilus-window placessidebar.sidebar scrollbar slider, .nemo-window .sidebar scrollbar slider, .caja-side-pane scrollbar slider { - background-color: rgba(141, 160, 167, 0.7); } - filechooser placessidebar.sidebar scrollbar slider:hover, - .nautilus-window placessidebar.sidebar scrollbar slider:hover, .nemo-window .sidebar scrollbar slider:hover, .caja-side-pane scrollbar slider:hover { - background-color: #9cacb2; } - filechooser placessidebar.sidebar scrollbar slider:hover:active, - .nautilus-window placessidebar.sidebar scrollbar slider:hover:active, .nemo-window .sidebar scrollbar slider:hover:active, .caja-side-pane scrollbar slider:hover:active { - background-color: #268bd2; } - filechooser placessidebar.sidebar scrollbar slider:disabled, - .nautilus-window placessidebar.sidebar scrollbar slider:disabled, .nemo-window .sidebar scrollbar slider:disabled, .caja-side-pane scrollbar slider:disabled { - background-color: transparent; } - filechooser placessidebar.sidebar scrollbar trough, - .nautilus-window placessidebar.sidebar scrollbar trough, .nemo-window .sidebar scrollbar trough, .caja-side-pane scrollbar trough { - background-color: #05232b; } - -@define-color theme_fg_color #657b83; -@define-color theme_text_color #657b83; -@define-color theme_bg_color #002b36; -@define-color theme_base_color #073642; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #657b83; -@define-color text_color #657b83; -@define-color bg_color #002b36; -@define-color base_color #073642; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #003340; -@define-color insensitive_fg_color alpha(#657b83, 0.5); -@define-color insensitive_base_color #073642; -@define-color theme_unfocused_fg_color #657b83; -@define-color theme_unfocused_text_color #657b83; -@define-color theme_unfocused_bg_color #002b36; -@define-color theme_unfocused_base_color #073642; -@define-color borders #001317; -@define-color unfocused_borders #001317; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #78b9e6; -@define-color content_view_bg #073642; -@define-color wm_title alpha(#59808f, 0.8); -@define-color wm_unfocused_title alpha(#59808f, 0.5); -@define-color wm_bg #002b36; -@define-color wm_bg_unfocused #00313e; -@define-color wm_highlight #003745; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #dc322f; -@define-color wm_button_close_hover_bg #cb4b16; -@define-color wm_button_close_active_bg #dc322f; -@define-color wm_icon_close_bg #002b36; -@define-color wm_button_hover_bg #657b83; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #002b36; -@define-color wm_icon_bg #93a1a1; -@define-color wm_icon_unfocused_bg #657b83; -@define-color wm_icon_hover_bg #93a1a1; -@define-color wm_icon_active_bg #fdf6e3; diff --git a/common/gtk-3.0/3.20/gtk-solid-darker.css b/common/gtk-3.0/3.20/gtk-solid-darker.css deleted file mode 100644 index 38a80ec..0000000 --- a/common/gtk-3.0/3.20/gtk-solid-darker.css +++ /dev/null @@ -1,4308 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -GtkScrolledWindow-scrollbar-spacing: 0; - -GtkToolItemGroup-expander-size: 11; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -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; } - -.background { - color: #5c616c; - background-color: #F5F6F7; } - -*:disabled { - -gtk-icon-effect: dim; } - -.gtkstyle-fallback { - background-color: #F5F6F7; - color: #5c616c; } - .gtkstyle-fallback:hover { - background-color: white; - color: #5c616c; } - .gtkstyle-fallback:active { - background-color: #d9dde0; - color: #5c616c; } - .gtkstyle-fallback:disabled { - background-color: #faf6eb; - color: rgba(92, 97, 108, 0.55); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view, iconview, -.view text, -iconview text, -textview text { - color: #5c616c; - background-color: #fdf6e3; } - .view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, - .view text:selected, - iconview text:selected, - textview text:selected, - .view text:selected:focus, - iconview text:selected:focus, - textview text:selected:focus { - border-radius: 2px; } - -textview border { - background-color: #f9f6ed; } - -rubberband, flowbox rubberband, treeview.view rubberband, .content-view rubberband, -.rubberband { - border: 1px solid #1e6ea7; - background-color: rgba(30, 110, 167, 0.2); } - -flowbox flowboxchild { - padding: 3px; - border-radius: 2px; } - flowbox flowboxchild:selected { - outline-offset: -2px; } - -label.separator, popover label.separator, -popover.background label.separator { - color: #5c616c; } - -label selection { - color: #fdf6e3; - background-color: #268bd2; } - -label:disabled { - color: rgba(92, 97, 108, 0.55); } - -.dim-label, label.separator, popover label.separator, -popover.background label.separator, headerbar .subtitle, .titlebar:not(headerbar) .subtitle { - opacity: 0.55; } - -assistant .sidebar { - background-color: #fdf6e3; - border-top: 1px solid #dcdfe3; } - -assistant.csd .sidebar { - border-top-style: none; } - -assistant .sidebar label { - padding: 6px 12px; } - -assistant .sidebar label.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -textview { - background-color: #fdf6e3; } - -popover.osd, popover.magnifier, .csd popover.osd, .csd popover.magnifier, -popover.background.osd, -popover.background.magnifier, .csd popover.background.osd, .csd popover.background.magnifier, .osd .scale-popup, .osd { - color: #657b83; - border: none; - background-color: #073642; - background-clip: padding-box; - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -spinner { - background: none; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - spinner:checked { - opacity: 1; - animation: spin 1s linear infinite; } - spinner:checked:disabled { - opacity: 0.5; } - -entry { - min-height: 22px; - border: 1px solid; - padding: 2px 8px; - caret-color: currentColor; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; } - entry.search { - border-radius: 20px; } - entry image { - color: #7c7f84; } - entry image.left { - padding-left: 0; - padding-right: 5px; } - entry image.right { - padding-right: 0; - padding-left: 5px; } - entry.flat, entry.flat:focus { - min-height: 0; - padding: 2px; - background-image: none; - border-color: transparent; - border-radius: 0; } - entry:focus { - background-clip: border-box; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; } - entry:disabled { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(253, 246, 227, 0.55); } - entry.warning { - color: white; - border-color: #cb4b16; - background-color: #df8f68; } - entry.warning image { - color: white; } - entry.warning:focus { - color: white; - background-color: #cb4b16; - box-shadow: none; } - entry.warning selection, entry.warning selection:focus { - background-color: white; - color: #cb4b16; } - entry.error { - color: white; - border-color: #dc322f; - background-color: #e98077; } - entry.error image { - color: white; } - entry.error:focus { - color: white; - background-color: #dc322f; - box-shadow: none; } - entry.error selection, entry.error selection:focus { - background-color: white; - color: #dc322f; } - entry.search-missing { - color: white; - border-color: #dc322f; - background-color: #e98077; } - entry.search-missing image { - color: white; } - entry.search-missing:focus { - color: white; - background-color: #dc322f; - box-shadow: none; } - entry.search-missing selection, entry.search-missing selection:focus { - background-color: white; - color: #dc322f; } - entry:drop(active):focus, entry:drop(active) { - border-color: #b58900; - box-shadow: none; } - .osd entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .osd entry image, .osd entry image:hover { - color: inherit; } - .osd entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd entry:disabled { - color: rgba(101, 123, 131, 0.55); - background-color: rgba(18, 137, 167, 0.25); } - .osd entry selection:focus, .osd entry selection { - color: #268bd2; - background-color: #fdf6e3; } - entry progress { - margin: 0 -6px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - -treeview entry.flat, treeview entry { - border-radius: 0; - background-image: none; - background-color: #fdf6e3; } - treeview entry.flat:focus, treeview entry:focus { - border-color: #268bd2; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -button { - min-height: 22px; - min-width: 20px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 2px 6px; - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - button separator { - margin: 4px 1px; } - button.flat, button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - transition: none; } - button.flat:hover, button.sidebar-button:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - button.flat:hover:active, button.sidebar-button:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; - -gtk-icon-effect: highlight; } - button:active, button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; - background-clip: border-box; - transition-duration: 50ms; } - button:active:not(:disabled) label:disabled, button:checked:not(:disabled) label:disabled { - color: inherit; - opacity: 0.6; } - button:active { - color: #5c616c; } - button:active:hover, button:checked { - color: #fdf6e3; } - button.flat:disabled, button.sidebar-button:disabled { - border-color: transparent; - background-color: transparent; - background-image: none; } - button:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - button:disabled label, button:disabled { - color: rgba(92, 97, 108, 0.55); } - button:disabled:active, button:disabled:checked { - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - button:disabled:active label, button:disabled:active, button:disabled:checked label, button:disabled:checked { - color: rgba(253, 246, 227, 0.8); } - button.image-button { - min-width: 24px; - padding-left: 5px; - padding-right: 5px; } - button.text-button { - padding-left: 12px; - padding-right: 12px; } - button.text-button.image-button { - padding-left: 5px; - padding-right: 5px; } - button.text-button.image-button label:first-child { - padding-left: 8px; - padding-right: 2px; } - button.text-button.image-button label:last-child { - padding-right: 8px; - padding-left: 2px; } - button.text-button.image-button label:only-child { - padding-left: 8px; - padding-right: 8px; } - button.text-button.image-button.popup { - padding-right: 8px; - padding-left: 8px; } - button:drop(active), combobox:drop(active) button.combo { - color: #b58900; - border-color: #b58900; - box-shadow: none; } - button.osd { - color: #657b83; - background-color: #073642; - border-color: #03181d; } - button.osd.image-button { - padding: 0; - min-height: 36px; - min-width: 36px; } - button.osd:hover { - color: #268bd2; } - button.osd:active, button.osd:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - button.osd:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .osd button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd button:active, .osd button:checked { - background-clip: padding-box; - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd button.flat, .osd button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd button.flat:hover, .osd button.sidebar-button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd button.flat:disabled, .osd button.sidebar-button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); - background-image: none; } - .osd button.flat:active, .osd button.sidebar-button:active, .osd button.flat:checked, .osd button.sidebar-button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd .linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child), - .osd .linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active) + button:not(:checked):not(:active) { - box-shadow: none; } - button.suggested-action { - background-clip: border-box; - color: white; - background-color: #2aa198; - border-color: #2aa198; } - button.suggested-action.flat, button.suggested-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; } - button.suggested-action:hover { - background-clip: border-box; - color: white; - background-color: #35c9be; - border-color: #35c9be; } - button.suggested-action:active, button.suggested-action:checked { - background-clip: border-box; - color: white; - background-color: #1f7972; - border-color: #1f7972; } - button.suggested-action.flat:disabled, button.suggested-action.sidebar-button:disabled { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - button.suggested-action:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - button.suggested-action:disabled label, button.suggested-action:disabled { - color: rgba(92, 97, 108, 0.55); } - button.destructive-action { - background-clip: border-box; - color: white; - background-color: #dc322f; - border-color: #dc322f; } - button.destructive-action.flat, button.destructive-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; } - button.destructive-action:hover { - background-clip: border-box; - color: white; - background-color: #e35d5b; - border-color: #e35d5b; } - button.destructive-action:active, button.destructive-action:checked { - background-clip: border-box; - color: white; - background-color: #b9221f; - border-color: #b9221f; } - button.destructive-action.flat:disabled, button.destructive-action.sidebar-button:disabled { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - button.destructive-action:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - button.destructive-action:disabled label, button.destructive-action:disabled { - color: rgba(92, 97, 108, 0.55); } - .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; } - .stack-switcher > button.needs-attention > label, .stack-switcher > button.needs-attention > image, button stacksidebar row.needs-attention > label, stacksidebar button row.needs-attention > label { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 4px; } - .stack-switcher > button.needs-attention > label:dir(rtl), .stack-switcher > button.needs-attention > image:dir(rtl), button stacksidebar row.needs-attention > label:dir(rtl), stacksidebar button row.needs-attention > label:dir(rtl) { - background-position: left 3px, left 4px; } - button.font separator, button.file separator { - background-color: transparent; } - .inline-toolbar button, .inline-toolbar button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar toolbutton > button { - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - .inline-toolbar toolbutton > button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; } - .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - .inline-toolbar toolbutton > button:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .inline-toolbar toolbutton > button:disabled label, .inline-toolbar toolbutton > button:disabled { - color: rgba(92, 97, 108, 0.55); } - .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked { - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar toolbutton > button:disabled:active label, .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked label, .inline-toolbar toolbutton > button:disabled:checked { - color: rgba(253, 246, 227, 0.8); } - -.linked:not(.vertical):not(.path-bar) > entry + entry { - border-left-color: rgba(101, 123, 131, 0.3); } - -.linked:not(.vertical):not(.path-bar) > entry.error + entry, -.linked:not(.vertical):not(.path-bar) > entry + entry.error { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > entry.warning + entry, -.linked:not(.vertical):not(.path-bar) > entry + entry.warning { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, -.linked:not(.vertical):not(.path-bar) > entry.warning + entry.error { - border-left-color: #d43f23; } - -.linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child { - border-left-color: #b58900; } - -.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo { - border-left-color: #b58900; } - -.linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > button:active + entry, -.linked:not(.vertical):not(.path-bar) > button:checked + entry { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > button + button { - border-left-style: none; } - -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 1px 0 #657b83; } - -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.5); } - -.linked:not(.vertical):not(.path-bar) > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:disabled, -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked:not(.vertical):not(.path-bar) > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child) { - box-shadow: none; } - -.linked:not(.vertical).path-bar > button + button { - border-left-style: none; } - -.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4), inset -1px 0 rgba(101, 123, 131, 0.4); } - -.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.4); } - -.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4); } - -.linked.vertical > entry + entry { - border-top-color: rgba(101, 123, 131, 0.3); } - -.linked.vertical > entry.error + entry, -.linked.vertical > entry + entry.error { - border-top-color: #dc322f; } - -.linked.vertical > entry.warning + entry, -.linked.vertical > entry + entry.warning { - border-top-color: #cb4b16; } - -.linked.vertical > entry.error + entry.warning, -.linked.vertical > entry.warning + entry.error { - border-top-color: #d43f23; } - -.linked.vertical > entry + entry:focus:not(:last-child), -.linked.vertical > entry + entry:focus:last-child { - border-top-color: #268bd2; } - -.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: #268bd2; } - -.linked.vertical > entry + entry:drop(active):not(:last-child), -.linked.vertical > entry + entry:drop(active):last-child { - border-top-color: #b58900; } - -.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: #b58900; } - -.linked.vertical > entry + entry.warning:focus:not(:last-child), -.linked.vertical > entry + entry.warning:focus:last-child { - border-top-color: #cb4b16; } - -.linked.vertical > entry.warning:focus:not(:only-child) + entry, -.linked.vertical > entry.warning:focus:not(:only-child) + button, -.linked.vertical > entry.warning:focus:not(:only-child) + combobox > box > button.combo { - border-top-color: #cb4b16; } - -.linked.vertical > entry + entry.error:focus:not(:last-child), -.linked.vertical > entry + entry.error:focus:last-child { - border-top-color: #dc322f; } - -.linked.vertical > entry.error:focus:not(:only-child) + entry, -.linked.vertical > entry.error:focus:not(:only-child) + button, -.linked.vertical > entry.error:focus:not(:only-child) + combobox > box > button.combo { - border-top-color: #dc322f; } - -.linked.vertical > button:active + entry, -.linked.vertical > button:checked + entry { - border-top-color: #268bd2; } - -.linked.vertical > button + button { - border-top-style: none; } - -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 0 1px #657b83; } - -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { - box-shadow: inset 0 1px rgba(101, 123, 131, 0.5); } - -.linked.vertical > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:disabled, -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked.vertical > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child) { - box-shadow: none; } - -toolbar.inline-toolbar toolbutton > button.flat, .inline-toolbar toolbutton > button.flat, toolbar.inline-toolbar toolbutton > button.sidebar-button, .inline-toolbar toolbutton > button.sidebar-button, .linked:not(.vertical) > entry, -.linked:not(.vertical) > entry:focus, .inline-toolbar button, .inline-toolbar button:backdrop, .linked:not(.vertical) > button, -.linked:not(.vertical) > button:hover, -.linked:not(.vertical) > button:active, -.linked:not(.vertical) > button:checked, spinbutton:not(.vertical) button, spinbutton:not(.vertical) entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, .primary-toolbar .linked:not(.vertical).path-bar > button, headerbar .linked:not(.vertical).path-bar > button, .primary-toolbar .linked:not(.vertical).path-bar > button:hover, headerbar .linked:not(.vertical).path-bar > button:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:active, headerbar .linked:not(.vertical).path-bar > button:active, .primary-toolbar .linked:not(.vertical).path-bar > button:checked, headerbar .linked:not(.vertical).path-bar > button:checked, .primary-toolbar .linked:not(.vertical).path-bar > button:disabled, headerbar .linked:not(.vertical).path-bar > button:disabled, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:active, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:checked, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:disabled, .linked:not(.vertical) > combobox > box > button.combo:dir(ltr), .linked:not(.vertical) > combobox > box > button.combo:dir(rtl) { - border-radius: 0; - border-right-style: none; } - -.linked:not(.vertical) > entry:first-child, .inline-toolbar button:first-child, .linked:not(.vertical) > button:first-child, toolbar.inline-toolbar toolbutton:first-child > button.flat, .inline-toolbar toolbutton:first-child > button.flat, toolbar.inline-toolbar toolbutton:first-child > button.sidebar-button, .inline-toolbar toolbutton:first-child > button.sidebar-button, spinbutton:not(.vertical) button:first-child, spinbutton:not(.vertical) entry:first-child, .linked:not(.vertical) > combobox:first-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child, .primary-toolbar .linked:not(.vertical).path-bar > button:first-child, headerbar .linked:not(.vertical).path-bar > button:first-child, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -.linked:not(.vertical) > entry:last-child, .inline-toolbar button:last-child, .linked:not(.vertical) > button:last-child, toolbar.inline-toolbar toolbutton:last-child > button.flat, .inline-toolbar toolbutton:last-child > button.flat, toolbar.inline-toolbar toolbutton:last-child > button.sidebar-button, .inline-toolbar toolbutton:last-child > button.sidebar-button, spinbutton:not(.vertical) button:last-child, spinbutton:not(.vertical) entry:last-child, .linked:not(.vertical) > combobox:last-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child, .primary-toolbar .linked:not(.vertical).path-bar > button:last-child, headerbar .linked:not(.vertical).path-bar > button:last-child, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - border-right-style: solid; } - -.linked:not(.vertical) > entry:only-child, .inline-toolbar button:only-child, .linked:not(.vertical) > button:only-child, toolbar.inline-toolbar toolbutton:only-child > button.flat, .inline-toolbar toolbutton:only-child > button.flat, toolbar.inline-toolbar toolbutton:only-child > button.sidebar-button, .inline-toolbar toolbutton:only-child > button.sidebar-button, spinbutton:not(.vertical) button:only-child, spinbutton:not(.vertical) entry:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child, .primary-toolbar .linked:not(.vertical).path-bar > button:only-child, headerbar .linked:not(.vertical).path-bar > button:only-child, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:only-child { - border-radius: 3px; - border-style: solid; } - -.linked.vertical > entry, -.linked.vertical > entry:focus, .linked.vertical > button, -.linked.vertical > button:hover, -.linked.vertical > button:active, -.linked.vertical > button:checked, spinbutton.vertical button, spinbutton.vertical entry, .linked.vertical > combobox > box > button.combo { - border-radius: 0; - border-bottom-style: none; } - -.linked.vertical > entry:first-child, .linked.vertical > button:first-child, spinbutton.vertical button:first-child, spinbutton.vertical entry:first-child, .linked.vertical > combobox:first-child > box > button.combo { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -.linked.vertical > entry:last-child, .linked.vertical > button:last-child, spinbutton.vertical button:last-child, spinbutton.vertical entry:last-child, .linked.vertical > combobox:last-child > box > button.combo { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border-bottom-style: solid; } - -.linked.vertical > entry:only-child, .linked.vertical > button:only-child, spinbutton.vertical button:only-child, spinbutton.vertical entry:only-child, .linked.vertical > combobox:only-child > box > button.combo { - border-radius: 3px; - border-style: solid; } - -menuitem.button.flat, -modelbutton.flat, button:link, button:visited, button:link:hover, button:link:active, button:link:checked, button:visited:hover, button:visited:active, button:visited:checked, notebook > header > tabs > tab button.flat:hover, notebook > header > tabs > tab button.sidebar-button:hover, notebook > header > tabs > tab button.flat:active, notebook > header > tabs > tab button.sidebar-button:active, notebook > header > tabs > tab button.flat:active:hover, notebook > header > tabs > tab button.sidebar-button:active:hover, .app-notification button.flat, .app-notification button.sidebar-button, .app-notification button.flat:disabled, .app-notification button.sidebar-button:disabled, calendar.button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -menuitem.button.flat, -modelbutton.flat { - transition: none; - min-height: 24px; - padding-left: 8px; - padding-right: 8px; - outline-offset: -3px; - border-radius: 2px; } - menuitem.button.flat:hover, - modelbutton.flat:hover { - background-color: #edeff0; } - menuitem.button.flat:checked, - modelbutton.flat:checked { - color: #5c616c; } - menuitem.button.flat check:last-child, - menuitem.button.flat radio:last-child, - modelbutton.flat check:last-child, - modelbutton.flat radio:last-child { - margin-left: 8px; } - menuitem.button.flat check:first-child, - menuitem.button.flat radio:first-child, - modelbutton.flat check:first-child, - modelbutton.flat radio:first-child { - margin-right: 8px; } - -modelbutton.flat arrow.left { - -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); } - -modelbutton.flat arrow.right { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - -*:link, button:link, button:visited { - color: #1e6ea7; } - *:link:visited, button:visited { - color: #16527c; } - *:selected *:link:visited, *:selected button:visited:link, *:selected button:visited { - color: #a7cbdc; } - *:link:hover, button:hover:link, button:hover:visited { - color: #268bd2; } - *:selected *:link:hover, *:selected button:hover:link, *:selected button:hover:visited { - color: #e8ebe1; } - *:link:active, button:active:link, button:active:visited { - color: #1e6ea7; } - *:selected *:link:active, *:selected button:active:link, *:selected button:active:visited { - color: #d2e1e0; } - infobar.info *:link, infobar.info button:link, infobar.info button:visited, infobar.question *:link, infobar.question button:link, infobar.question button:visited, infobar.warning *:link, infobar.warning button:link, infobar.warning button:visited, infobar.error *:link, infobar.error button:link, infobar.error button:visited, *:link:selected, button:selected:link, button:selected:visited, headerbar.selection-mode .subtitle:link, .selection-mode.titlebar:not(headerbar) .subtitle:link, - *:selected *:link, - *:selected button:link, - *:selected button:visited { - color: #d2e1e0; } - -button:link > label, button:visited > label { - text-decoration-line: underline; } - -spinbutton:drop(active) { - box-shadow: none; } - -spinbutton button:active { - color: #fdf6e3; } - -spinbutton:disabled { - color: rgba(92, 97, 108, 0.55); } - -spinbutton:not(.vertical) entry { - min-width: 28px; } - -spinbutton:not(.vertical):dir(ltr) entry, -spinbutton:not(.vertical):dir(rtl) button.up { - border-radius: 3px 0 0 3px; } - -spinbutton:not(.vertical) > button + button { - border-left-style: none; } - -spinbutton:not(.vertical) > button:hover:not(:active), -spinbutton:not(.vertical) > button:hover + button { - box-shadow: inset 1px 0 #657b83; } - -spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), -spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.5); } - -spinbutton:not(.vertical) > button:first-child:hover:not(:active), -spinbutton:not(.vertical) > button.up:dir(rtl):hover:not(:active), -spinbutton:not(.vertical) > entry + button:not(:active):hover { - box-shadow: none; } - -spinbutton:not(.vertical) > entry:focus + button { - border-left-color: #268bd2; } - -spinbutton:not(.vertical) > entry:drop(active) + button { - border-left-color: #b58900; } - -.osd spinbutton:not(.vertical) > button:hover:not(:active), -.osd spinbutton:not(.vertical) > button:hover + button { - box-shadow: inset 1px 0 rgba(1, 9, 11, 0.4); } - -.osd spinbutton:not(.vertical) > button:first-child:hover:not(:active), -.osd spinbutton:not(.vertical) > button.up:dir(rtl):hover:not(:active), -.osd spinbutton:not(.vertical) > entry + button:not(:active):hover { - box-shadow: none; } - -.osd spinbutton:not(.vertical) > entry:focus + button { - border-left-color: rgba(1, 9, 11, 0.4); } - -spinbutton.vertical button, spinbutton.vertical entry { - padding-left: 4px; - padding-right: 4px; - min-width: 0; } - -spinbutton.vertical button.up { - border-radius: 3px 3px 0 0; } - -spinbutton.vertical > entry:focus + button { - border-top-color: #268bd2; } - -spinbutton.vertical > entry:drop(active) + button { - border-top-color: #b58900; } - -combobox button.combo { - min-width: 0; - padding-left: 8px; - padding-right: 8px; } - -combobox arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); - min-height: 16px; - min-width: 16px; } - -toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #F5F6F7; } - toolbar separator, .inline-toolbar separator { - background: none; } - toolbar.horizontal separator, .horizontal.inline-toolbar separator { - margin: 0 6px; } - toolbar.vertical separator, .vertical.inline-toolbar separator { - margin: 6px 0; } - .osd toolbar, .osd .inline-toolbar { - background-color: transparent; } - toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.9); } - toolbar.osd.left, .osd.left.inline-toolbar, toolbar.osd.right, .osd.right.inline-toolbar, toolbar.osd.top, .osd.top.inline-toolbar, toolbar.osd.bottom, .osd.bottom.inline-toolbar { - border-radius: 0; } - toolbar.osd.top, .osd.top.inline-toolbar { - border-width: 0 0 1px 0; } - toolbar.osd.bottom, .osd.bottom.inline-toolbar { - border-width: 1px 0 0 0; } - toolbar.osd.left, .osd.left.inline-toolbar { - border-width: 0 1px 0 0; } - toolbar.osd.right, .osd.right.inline-toolbar { - border-width: 0 0 0 1px; } - toolbar:not(.inline-toolbar) switch, .inline-toolbar:not(.inline-toolbar) switch, - toolbar:not(.inline-toolbar) scale, .inline-toolbar:not(.inline-toolbar) scale, - toolbar:not(.inline-toolbar) entry, .inline-toolbar:not(.inline-toolbar) entry, - toolbar:not(.inline-toolbar) spinbutton, .inline-toolbar:not(.inline-toolbar) spinbutton, - toolbar:not(.inline-toolbar) button, .inline-toolbar:not(.inline-toolbar) button { - margin-right: 1px; - margin-bottom: 1px; } - toolbar:not(.inline-toolbar) .linked > button, .inline-toolbar:not(.inline-toolbar) .linked > button, - toolbar:not(.inline-toolbar) .linked > entry, .inline-toolbar:not(.inline-toolbar) .linked > entry { - margin-right: 0; } - -.primary-toolbar:not(.libreoffice-toolbar) { - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #002b36, #000f12) 1 0 1 0; } - -.inline-toolbar { - background-color: #edeef0; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -searchbar { - background-color: #F5F6F7; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 0 1px; - padding: 3px; } - -actionbar { - padding: 6px; - border-top: 1px solid #dcdfe3; - background-color: #edeef0; } - -headerbar, -.titlebar:not(headerbar) { - min-height: 42px; - padding: 0 7px; - border-width: 0 0 1px; - border-style: solid; - border-color: #001b22; - color: rgba(89, 128, 143, 0.8); - background-color: #002b36; - box-shadow: inset 0 1px #003745; } - .csd headerbar, - .csd .titlebar:not(headerbar) { - background-color: #002b36; - border-color: #001b22; } - headerbar:backdrop, - .titlebar:backdrop:not(headerbar) { - transition: 200ms ease-out; - color: rgba(89, 128, 143, 0.5); - background-color: #00313e; } - .csd headerbar:backdrop, - .csd .titlebar:backdrop:not(headerbar) { - background-color: #00313e; } - headerbar .title, .titlebar:not(headerbar) .title { - padding-left: 12px; - padding-right: 12px; } - headerbar .subtitle, .titlebar:not(headerbar) .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - headerbar.selection-mode, - .selection-mode.titlebar:not(headerbar) { - color: #fdf6e3; - background-color: #268bd2; - border-color: #2380c1; - box-shadow: none; } - headerbar.selection-mode:backdrop, - .selection-mode.titlebar:backdrop:not(headerbar) { - background-color: #268bd2; - color: rgba(253, 246, 227, 0.6); } - headerbar.selection-mode .selection-menu, .selection-mode.titlebar:not(headerbar) .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - headerbar.selection-mode .selection-menu GtkArrow, .selection-mode.titlebar:not(headerbar) .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - headerbar.selection-mode .selection-menu .arrow, .selection-mode.titlebar:not(headerbar) .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized headerbar.selection-mode, - .maximized .selection-mode.titlebar:not(headerbar) { - background-color: #268bd2; } - .tiled headerbar, .tiled headerbar:backdrop, - .maximized headerbar, .maximized headerbar:backdrop, - .tiled .titlebar:not(headerbar), - .tiled .titlebar:backdrop:not(headerbar), - .maximized .titlebar:not(headerbar), - .maximized .titlebar:backdrop:not(headerbar) { - border-radius: 0; } - .maximized headerbar, - .maximized .titlebar:not(headerbar) { - background-color: #002b36; - border-color: #001b22; } - .maximized headerbar:backdrop, - .maximized .titlebar:backdrop:not(headerbar) { - background-color: #00313e; } - headerbar.default-decoration, - .csd headerbar.default-decoration, headerbar.default-decoration:backdrop, - .csd headerbar.default-decoration:backdrop, - .default-decoration.titlebar:not(headerbar), - .csd .default-decoration.titlebar:not(headerbar), - .default-decoration.titlebar:backdrop:not(headerbar), - .csd .default-decoration.titlebar:backdrop:not(headerbar) { - min-height: 28px; - padding: 0 3px; - background-color: #002b36; - border-bottom-width: 0; } - .maximized headerbar.default-decoration, .maximized - .csd headerbar.default-decoration, .maximized headerbar.default-decoration:backdrop, .maximized - .csd headerbar.default-decoration:backdrop, - .maximized .default-decoration.titlebar:not(headerbar), - .maximized - .csd .default-decoration.titlebar:not(headerbar), - .maximized .default-decoration.titlebar:backdrop:not(headerbar), - .maximized - .csd .default-decoration.titlebar:backdrop:not(headerbar) { - background-color: #002b36; } - -.titlebar { - border-radius: 3px 3px 0 0; } - -headerbar entry, headerbar button, headerbar separator { - margin-top: 6px; - margin-bottom: 6px; } - -separator:first-child + headerbar, separator:first-child + headerbar:backdrop, headerbar:first-child, headerbar:first-child:backdrop { - border-top-left-radius: 3px; } - .maximized separator:first-child + headerbar, - .tiled separator:first-child + headerbar, .maximized separator:first-child + headerbar:backdrop, - .tiled separator:first-child + headerbar:backdrop, .maximized headerbar:first-child, - .tiled headerbar:first-child, .maximized headerbar:first-child:backdrop, - .tiled headerbar:first-child:backdrop { - border-radius: 0; } - -headerbar:last-child, headerbar:last-child:backdrop { - border-top-right-radius: 3px; } - .maximized headerbar:last-child, - .tiled headerbar:last-child, .maximized headerbar:last-child:backdrop, - .tiled headerbar:last-child:backdrop { - border-radius: 0; } - -window > .titlebar:not(headerbar), window > .titlebar:not(headerbar):backdrop, -window.csd > .titlebar:not(headerbar), -window.csd > .titlebar:not(headerbar):backdrop { - padding: 0; - background: none; - border: none; - box-shadow: none; } - -.titlebar:not(headerbar) > separator { - background-image: linear-gradient(to bottom, #001b22, #001b22); } - -.primary-toolbar:not(.libreoffice-toolbar) separator, headerbar separator.titlebutton, .titlebar:not(headerbar) separator.titlebutton { - min-width: 1px; - min-height: 1px; - background: none; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(89, 128, 143, 0) 25%, rgba(89, 128, 143, 0.15) 25%, rgba(89, 128, 143, 0.15) 75%, rgba(89, 128, 143, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar:not(.libreoffice-toolbar) separator:backdrop, headerbar separator.titlebutton:backdrop, .titlebar:not(headerbar) separator.titlebutton:backdrop { - opacity: 0.6; } - -.primary-toolbar entry, headerbar entry { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar entry image, headerbar entry image, .primary-toolbar entry image:hover, headerbar entry image:hover { - color: inherit; } - .primary-toolbar entry:backdrop, headerbar entry:backdrop { - opacity: 0.85; } - .primary-toolbar entry:focus, headerbar entry:focus { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar entry:focus image, headerbar entry:focus image { - color: #fdf6e3; } - .primary-toolbar entry:disabled, headerbar entry:disabled { - color: rgba(89, 128, 143, 0.35); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.25); } - .primary-toolbar entry selection:focus, headerbar entry selection:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar entry progress, headerbar entry progress { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar entry.warning, headerbar entry.warning { - color: white; - border-color: rgba(0, 0, 0, 0.4); - background-color: #7a3e23; } - .primary-toolbar entry.warning:focus, headerbar entry.warning:focus { - color: white; - background-color: #cb4b16; } - .primary-toolbar entry.warning selection, headerbar entry.warning selection, .primary-toolbar entry.warning selection:focus, headerbar entry.warning selection:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar entry.error, headerbar entry.error { - color: white; - border-color: rgba(0, 0, 0, 0.4); - background-color: #842f32; } - .primary-toolbar entry.error:focus, headerbar entry.error:focus { - color: white; - background-color: #dc322f; } - .primary-toolbar entry.error selection, headerbar entry.error selection, .primary-toolbar entry.error selection:focus, headerbar entry.error selection:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar button, headerbar button { - color: rgba(89, 128, 143, 0.8); - outline-offset: -3px; - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar button:backdrop, headerbar button:backdrop { - opacity: 0.7; } - .primary-toolbar button:hover, headerbar button:hover { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar button:active, headerbar button:active, .primary-toolbar button:checked, headerbar button:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; - background-clip: padding-box; } - .primary-toolbar button:disabled, headerbar button:disabled { - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar button:disabled label, headerbar button:disabled label, .primary-toolbar button:disabled, headerbar button:disabled { - color: rgba(89, 128, 143, 0.35); } - .primary-toolbar button:disabled:active, headerbar button:disabled:active, .primary-toolbar button:disabled:checked, headerbar button:disabled:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.selection-mode.primary-toolbar button, headerbar.selection-mode button, .selection-mode.primary-toolbar button.flat, headerbar.selection-mode button.flat, .selection-mode.primary-toolbar button.sidebar-button, headerbar.selection-mode button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar):not(.stack-switcher) button:not(:last-child):not(:only-child), headerbar .linked:not(.vertical):not(.path-bar):not(.stack-switcher) button:not(:last-child):not(:only-child) { - margin-right: 1px; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > button, headerbar .linked:not(.vertical):not(.path-bar) > button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:hover, headerbar .linked:not(.vertical):not(.path-bar) > button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:active, headerbar .linked:not(.vertical):not(.path-bar) > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:checked, headerbar .linked:not(.vertical):not(.path-bar) > button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:disabled, headerbar .linked:not(.vertical):not(.path-bar) > button:disabled { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { - box-shadow: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, .primary-toolbar .linked:not(.vertical).path-bar > button, headerbar .linked:not(.vertical).path-bar > button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover, headerbar .linked:not(.vertical).path-bar > button:hover { - background-color: rgba(0, 193, 243, 0.4); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, .primary-toolbar .linked:not(.vertical).path-bar > button:active, headerbar .linked:not(.vertical).path-bar > button:active, .primary-toolbar .linked:not(.vertical).path-bar > button:checked, headerbar .linked:not(.vertical).path-bar > button:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, .primary-toolbar .linked:not(.vertical).path-bar > button:disabled, headerbar .linked:not(.vertical).path-bar > button:disabled { - color: rgba(89, 128, 143, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button + button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button + button, .primary-toolbar .linked:not(.vertical).path-bar > button + button, headerbar .linked:not(.vertical).path-bar > button + button { - border-left-style: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover, headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4), inset -1px 0 rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.error + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, headerbar .linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry.error, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry.error { - border-left-color: transparent; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > button:active + entry, headerbar .linked:not(.vertical):not(.path-bar) > button:active + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:checked + entry, headerbar .linked:not(.vertical):not(.path-bar) > button:checked + entry { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar button.suggested-action, headerbar button.suggested-action { - background-clip: border-box; - color: white; - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar button.suggested-action.flat, headerbar button.suggested-action.flat, .primary-toolbar button.suggested-action.sidebar-button, headerbar button.suggested-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; } - .primary-toolbar button.suggested-action:hover, headerbar button.suggested-action:hover { - background-clip: border-box; - color: white; - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar button.suggested-action:active, headerbar button.suggested-action:active, .primary-toolbar button.suggested-action:checked, headerbar button.suggested-action:checked { - background-clip: border-box; - color: white; - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar button.suggested-action.flat:disabled, headerbar button.suggested-action.flat:disabled, .primary-toolbar button.suggested-action.sidebar-button:disabled, headerbar button.suggested-action.sidebar-button:disabled, .primary-toolbar button.suggested-action:disabled, headerbar button.suggested-action:disabled { - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar button.suggested-action.flat:disabled label, headerbar button.suggested-action.flat:disabled label, .primary-toolbar button.suggested-action.sidebar-button:disabled label, headerbar button.suggested-action.sidebar-button:disabled label, .primary-toolbar button.suggested-action.flat:disabled, headerbar button.suggested-action.flat:disabled, .primary-toolbar button.suggested-action.sidebar-button:disabled, headerbar button.suggested-action.sidebar-button:disabled, .primary-toolbar button.suggested-action:disabled label, headerbar button.suggested-action:disabled label, .primary-toolbar button.suggested-action:disabled, headerbar button.suggested-action:disabled { - color: rgba(89, 128, 143, 0.35); } - -.primary-toolbar button.suggested-action:backdrop, headerbar button.suggested-action:backdrop, .primary-toolbar button.suggested-action:backdrop, headerbar button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar button.destructive-action, headerbar button.destructive-action { - background-clip: border-box; - color: white; - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar button.destructive-action.flat, headerbar button.destructive-action.flat, .primary-toolbar button.destructive-action.sidebar-button, headerbar button.destructive-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; } - .primary-toolbar button.destructive-action:hover, headerbar button.destructive-action:hover { - background-clip: border-box; - color: white; - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar button.destructive-action:active, headerbar button.destructive-action:active, .primary-toolbar button.destructive-action:checked, headerbar button.destructive-action:checked { - background-clip: border-box; - color: white; - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar button.destructive-action.flat:disabled, headerbar button.destructive-action.flat:disabled, .primary-toolbar button.destructive-action.sidebar-button:disabled, headerbar button.destructive-action.sidebar-button:disabled, .primary-toolbar button.destructive-action:disabled, headerbar button.destructive-action:disabled { - background-color: rgba(0, 43, 54, 0); - border-color: rgba(0, 43, 54, 0); } - .primary-toolbar button.destructive-action.flat:disabled label, headerbar button.destructive-action.flat:disabled label, .primary-toolbar button.destructive-action.sidebar-button:disabled label, headerbar button.destructive-action.sidebar-button:disabled label, .primary-toolbar button.destructive-action.flat:disabled, headerbar button.destructive-action.flat:disabled, .primary-toolbar button.destructive-action.sidebar-button:disabled, headerbar button.destructive-action.sidebar-button:disabled, .primary-toolbar button.destructive-action:disabled label, headerbar button.destructive-action:disabled label, .primary-toolbar button.destructive-action:disabled, headerbar button.destructive-action:disabled { - color: rgba(89, 128, 143, 0.35); } - -.primary-toolbar button.destructive-action:backdrop, headerbar button.destructive-action:backdrop, .primary-toolbar button.destructive-action:backdrop, headerbar button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar spinbutton:not(.vertical):focus, headerbar spinbutton:not(.vertical):focus { - color: #fdf6e3; - caret-color: #fdf6e3; } - -.primary-toolbar spinbutton:not(.vertical) button, headerbar spinbutton:not(.vertical) button, .primary-toolbar spinbutton:not(.vertical) button:disabled, headerbar spinbutton:not(.vertical) button:disabled { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - -.primary-toolbar spinbutton:not(.vertical) button:hover, headerbar spinbutton:not(.vertical) button:hover { - background-color: rgba(0, 193, 243, 0.4); } - -.primary-toolbar spinbutton:not(.vertical) button:active, headerbar spinbutton:not(.vertical) button:active, .primary-toolbar spinbutton:not(.vertical) button:checked, headerbar spinbutton:not(.vertical) button:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - -.primary-toolbar spinbutton:not(.vertical) button:disabled, headerbar spinbutton:not(.vertical) button:disabled { - color: rgba(89, 128, 143, 0.4); } - -.primary-toolbar spinbutton:not(.vertical) > button + button, headerbar spinbutton:not(.vertical) > button + button { - border-left-style: none; } - -.primary-toolbar spinbutton:not(.vertical) > button:hover:not(:active), headerbar spinbutton:not(.vertical) > button:hover:not(:active), .primary-toolbar spinbutton:not(.vertical) > button:hover + button, headerbar spinbutton:not(.vertical) > button:hover + button { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - -.primary-toolbar spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), headerbar spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), .primary-toolbar spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled, headerbar spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - -.primary-toolbar spinbutton:not(.vertical) > button:first-child:hover:not(:active), headerbar spinbutton:not(.vertical) > button:first-child:hover:not(:active), .primary-toolbar spinbutton:not(.vertical) > entry + button:not(:active):hover, headerbar spinbutton:not(.vertical) > entry + button:not(:active):hover { - box-shadow: none; } - -.primary-toolbar spinbutton:not(.vertical) > entry:focus + button, headerbar spinbutton:not(.vertical) > entry:focus + button { - border-left-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar combobox:disabled, headerbar combobox:disabled { - color: rgba(89, 128, 143, 0.2); } - -.primary-toolbar combobox > .linked > button.combo, headerbar combobox > .linked > button.combo { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .primary-toolbar combobox > .linked > button.combo image, headerbar combobox > .linked > button.combo image, .primary-toolbar combobox > .linked > button.combo image:hover, headerbar combobox > .linked > button.combo image:hover { - color: inherit; } - .primary-toolbar combobox > .linked > button.combo:hover, headerbar combobox > .linked > button.combo:hover { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; - box-shadow: none; } - .primary-toolbar combobox > .linked > button.combo:disabled, headerbar combobox > .linked > button.combo:disabled { - color: rgba(89, 128, 143, 0.35); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.25); } - -.primary-toolbar combobox > .linked > entry.combo:dir(ltr), headerbar combobox > .linked > entry.combo:dir(ltr) { - border-right-style: none; } - .primary-toolbar combobox > .linked > entry.combo:dir(ltr):focus, headerbar combobox > .linked > entry.combo:dir(ltr):focus { - box-shadow: none; } - -.primary-toolbar combobox > .linked > entry.combo:dir(rtl), headerbar combobox > .linked > entry.combo:dir(rtl) { - border-left-style: none; } - .primary-toolbar combobox > .linked > entry.combo:dir(rtl):focus, headerbar combobox > .linked > entry.combo:dir(rtl):focus { - box-shadow: none; } - -.primary-toolbar combobox > .linked > button.combo:dir(ltr), headerbar combobox > .linked > button.combo:dir(ltr), .primary-toolbar combobox > .linked > button.combo:dir(ltr):hover, headerbar combobox > .linked > button.combo:dir(ltr):hover, .primary-toolbar combobox > .linked > button.combo:dir(ltr):active, headerbar combobox > .linked > button.combo:dir(ltr):active, .primary-toolbar combobox > .linked > button.combo:dir(ltr):checked, headerbar combobox > .linked > button.combo:dir(ltr):checked, .primary-toolbar combobox > .linked > button.combo:dir(ltr):disabled, headerbar combobox > .linked > button.combo:dir(ltr):disabled { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - -.primary-toolbar combobox > .linked > button.combo:dir(rtl), headerbar combobox > .linked > button.combo:dir(rtl), .primary-toolbar combobox > .linked > button.combo:dir(rtl):hover, headerbar combobox > .linked > button.combo:dir(rtl):hover, .primary-toolbar combobox > .linked > button.combo:dir(rtl):active, headerbar combobox > .linked > button.combo:dir(rtl):active, .primary-toolbar combobox > .linked > button.combo:dir(rtl):checked, headerbar combobox > .linked > button.combo:dir(rtl):checked, .primary-toolbar combobox > .linked > button.combo:dir(rtl):disabled, headerbar combobox > .linked > button.combo:dir(rtl):disabled { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.primary-toolbar switch:backdrop, headerbar switch:backdrop { - opacity: 0.75; } - -.primary-toolbar progressbar trough, headerbar progressbar trough { - background-color: rgba(0, 0, 0, 0.4); } - -.primary-toolbar progressbar:backdrop, headerbar progressbar:backdrop { - opacity: 0.75; } - -.primary-toolbar scale:backdrop, headerbar scale:backdrop { - opacity: 0.75; } - -.primary-toolbar scale slider, headerbar scale slider { - background-color: #005469; - border-color: rgba(0, 0, 0, 0.7); } - .primary-toolbar scale slider:hover, headerbar scale slider:hover { - background-color: #006883; - border-color: rgba(0, 0, 0, 0.7); } - .primary-toolbar scale slider:active, headerbar scale slider:active { - background-color: #268bd2; - border-color: #268bd2; } - .primary-toolbar scale slider:disabled, headerbar scale slider:disabled { - background-color: #00475a; - border-color: rgba(0, 0, 0, 0.7); } - -.primary-toolbar scale trough, headerbar scale trough { - background-color: rgba(0, 0, 0, 0.4); } - .primary-toolbar scale trough:disabled, headerbar scale trough:disabled { - background-color: rgba(0, 0, 0, 0.3); } - -.path-bar button.text-button, .path-bar button.image-button, .path-bar button { - padding-left: 6px; - padding-right: 6px; } - -.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: 10px; } - -.path-bar button.text-button.image-button label:first-child, .path-bar button label:first-child { - padding-left: 10px; } - -.path-bar button.slider-button, .path-bar button:not(.image-button):not(.text-button) { - padding-left: 1px; - padding-right: 1px; } - -.path-bar button image { - padding-left: 4px; - padding-right: 4px; } - -treeview.view { - border-left-color: rgba(92, 97, 108, 0.15); - border-top-color: rgba(0, 0, 0, 0.1); } - * { - -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 acceleditor > label { - background-color: #268bd2; } - treeview.view:selected, treeview.view:selected:focus { - border-radius: 0; - border-left-color: #92c1db; - border-top-color: rgba(92, 97, 108, 0.1); } - treeview.view:disabled { - color: rgba(92, 97, 108, 0.55); } - treeview.view:disabled:selected { - color: #7cb6d9; } - treeview.view.separator { - min-height: 2px; - color: rgba(0, 0, 0, 0.1); } - treeview.view:drop(active) { - border-style: solid none; - border-width: 1px; - border-color: #41769f; } - 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: #adaca8; } - treeview.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - treeview.view.expander:hover { - color: #5c616c; } - treeview.view.expander:selected { - color: #bdd6de; } - treeview.view.expander:selected:hover { - color: #fdf6e3; } - treeview.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - treeview.view.progressbar, treeview.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-color: #268bd2; } - treeview.view.progressbar:selected, treeview.view.progressbar:selected:focus, treeview.view.progressbar:focus:selected, treeview.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-color: #fdf6e3; } - treeview.view.trough { - color: #5c616c; - background-color: #657b83; - border-radius: 3px; - border-width: 0; } - treeview.view.trough:selected, treeview.view.trough:selected:focus { - color: #fdf6e3; - background-color: rgba(0, 0, 0, 0.2); - border-radius: 3px; - border-width: 0; } - treeview.view header button { - min-height: 0; - min-width: 0; - padding: 3px 6px; - font-weight: bold; - color: #7c7f84; - background-color: #fdf6e3; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, #fdf6e3 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, #fdf6e3 80%) 0 1 0 0/0 1px 0 0 stretch; } - treeview.view header button:hover { - color: #268bd2; } - treeview.view header button:active { - color: #5c616c; } - treeview.view header button:active, treeview.view header button:hover { - background-color: #fdf6e3; } - treeview.view header button:active:hover { - color: #5c616c; } - treeview.view header button:disabled { - border-color: #F5F6F7; - background-image: none; } - treeview.view header button:last-child { - border-right-style: none; - border-image: none; } - treeview.view button.dnd, treeview.view button.dnd:selected, treeview.view button.dnd:hover, treeview.view button.dnd:active, - treeview.view header.button.dnd, - treeview.view header.button.dnd:selected, - treeview.view header.button.dnd:hover, - treeview.view header.button.dnd:active { - padding: 0 6px; - transition: none; - color: #fdf6e3; - background-color: #268bd2; - border-radius: 0; - border-style: none; } - -menubar, -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #002b36; - color: rgba(89, 128, 143, 0.8); } - menubar:backdrop, - .menubar:backdrop { - color: rgba(89, 128, 143, 0.5); } - menubar > menuitem, - .menubar > menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - menubar > menuitem:hover, - .menubar > menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - menubar > menuitem:disabled, - .menubar > menuitem:disabled { - color: rgba(89, 128, 143, 0.2); - border-color: transparent; } - -menu, -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; } - .csd menu, .csd - .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - menu separator, - .csd menu separator, - .menu separator, - .csd - .menu separator { - margin: 2px 0; - background-color: #fdf6e3; } - menu .separator:not(label), - .csd menu .separator:not(label), - .menu .separator:not(label), - .csd - .menu .separator:not(label) { - color: #fdf6e3; } - menu menuitem, - .menu menuitem { - min-height: 16px; - min-width: 40px; - padding: 5px; } - menu menuitem:hover, - .menu menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - menu menuitem:disabled, - .menu menuitem:disabled { - color: rgba(92, 97, 108, 0.55); } - menu menuitem arrow, - .menu menuitem arrow { - min-height: 16px; - min-width: 16px; } - menu menuitem arrow:dir(ltr), - .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) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); - margin-right: 10px; } - 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: 6px; - margin-left: 2px; } - menuitem check:dir(rtl), menuitem radio:dir(rtl) { - margin-left: 6px; - margin-right: 2px; } - menu > arrow, - .menu > arrow { - border-color: transparent; - background-color: transparent; - background-image: none; - min-width: 16px; - min-height: 16px; - padding: 4px; - background-color: #fdf6e3; - border-radius: 0; } - menu > arrow.top, - .menu > arrow.top { - margin-top: -6px; - border-bottom: 1px solid #ede7d7; - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } - menu > arrow.bottom, - .menu > arrow.bottom { - margin-bottom: -6px; - border-top: 1px solid #ede7d7; - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - menu > arrow:hover, - .menu > arrow:hover { - background-color: #ede7d7; } - menu > arrow:disabled, - .menu > arrow:disabled { - color: transparent; - background-color: transparent; - border-color: transparent; } - -popover, -popover.background { - padding: 2px; - border-radius: 3px; - background-clip: border-box; - background-color: #fdf6e3; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } - .csd popover, popover, .csd - popover.background, - popover.background { - border: 1px solid #cdd2d7; } - popover separator, - popover.background separator { - background-color: #fdf6e3; } - popover > list, - popover > .view, - popover > iconview, - popover > toolbar, - popover > .inline-toolbar, - popover.background > list, - popover.background > .view, - popover.background > iconview, - popover.background > toolbar, - popover.background > .inline-toolbar { - border-style: none; - background-color: transparent; } - -cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -notebook { - padding: 0; } - notebook.frame { - border: 1px solid #dcdfe3; } - notebook.frame > header { - margin: -1px; } - notebook.frame > header.top { - margin-bottom: 0; } - notebook.frame > header.bottom { - margin-top: 0; } - notebook.frame > header.left { - margin-right: 0; } - notebook.frame > header.right { - margin-left: 0; } - notebook.frame > header.top, notebook.frame > header.bottom { - padding-left: 0; - padding-right: 0; } - notebook.frame > header.left, notebook.frame > header.right { - padding-top: 0; - padding-bottom: 0; } - notebook > stack:not(:only-child) { - background-color: #fdf6e3; } - notebook > header { - padding: 2px; - background-color: #F5F6F7; } - notebook > header.top { - box-shadow: inset 0 -1px #dcdfe3; } - notebook > header.bottom { - box-shadow: inset 0 1px #dcdfe3; } - notebook > header.right { - box-shadow: inset 1px 0 #dcdfe3; } - notebook > header.left { - box-shadow: inset -1px 0 #dcdfe3; } - notebook > header.top { - padding-bottom: 0; } - notebook > header.top > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-bottom: none; - border-radius: 1px 1px 0 0; } - notebook > header.top > tabs > tab + tab { - margin-left: -1px; } - notebook > header.bottom { - padding-top: 0; } - notebook > header.bottom > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-top: none; - border-radius: 0 0 1px 1px; } - notebook > header.bottom > tabs > tab + tab { - margin-left: -1px; } - notebook > header.right { - padding-left: 0; } - notebook > header.right > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-left: none; - border-radius: 0 1px 1px 0; } - notebook > header.right > tabs > tab + tab { - margin-top: -1px; } - notebook > header.left { - padding-right: 0; } - notebook > header.left > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-right: none; - border-radius: 1px 0 0 1px; } - notebook > header.left > tabs > tab + tab { - margin-top: -1px; } - notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - notebook > header.top > tabs > arrow.up:last-child, notebook > header.bottom > tabs > arrow.up:last-child { - margin-left: 2px; } - 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.down:first-child, notebook > header.bottom > tabs > arrow.down:first-child { - margin-right: 2px; } - notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - notebook > header.left > tabs > arrow.up:last-child, notebook > header.right > tabs > arrow.up:last-child { - margin-top: 2px; } - 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.down:first-child, notebook > header.right > tabs > arrow.down:first-child { - margin-bottom: 2px; } - notebook > header > tabs > arrow { - color: rgba(92, 97, 108, 0.55); } - notebook > header > tabs > arrow:hover { - color: rgba(92, 97, 108, 0.775); } - notebook > header > tabs > arrow:active { - color: #5c616c; } - notebook > header > tabs > arrow:disabled { - color: rgba(92, 97, 108, 0.25); } - notebook > header.top > tabs > tab:hover:not(:checked) { - box-shadow: inset 0 -1px #dcdfe3; } - notebook > header.bottom > tabs > tab:hover:not(:checked) { - box-shadow: inset 0 1px #dcdfe3; } - notebook > header.left > tabs > tab:hover:not(:checked) { - box-shadow: inset -1px 0 #dcdfe3; } - notebook > header.right > tabs > tab:hover:not(:checked) { - box-shadow: inset 1px 0 #dcdfe3; } - notebook > header > tabs > tab { - color: rgba(92, 97, 108, 0.55); - background-color: rgba(253, 246, 227, 0); } - notebook > header > tabs > tab:hover:not(:checked) { - color: rgba(92, 97, 108, 0.775); - background-color: rgba(253, 246, 227, 0.5); - border-color: #dcdfe3; } - notebook > header > tabs > tab:checked { - color: #5c616c; - background-color: #fdf6e3; - border-color: #dcdfe3; } - notebook > header > tabs > tab button.flat, notebook > header > tabs > tab button.sidebar-button { - min-height: 22px; - min-width: 16px; - padding: 0; - color: #92959d; } - notebook > header > tabs > tab button.flat:hover, notebook > header > tabs > tab button.sidebar-button:hover { - color: #ff4d4d; } - notebook > header > tabs > tab button.flat:active, notebook > header > tabs > tab button.sidebar-button:active, notebook > header > tabs > tab button.flat:active:hover, notebook > header > tabs > tab button.sidebar-button:active:hover { - color: #268bd2; } - -scrollbar { - background-color: #fdf4de; - 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 #dcdfe3; } - scrollbar.bottom { - border-top: 1px solid #dcdfe3; } - scrollbar.left { - border-right: 1px solid #dcdfe3; } - scrollbar.right { - border-left: 1px solid #dcdfe3; } - scrollbar button { - border: none; } - 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-right-symbolic"); } - scrollbar.horizontal button.up { - -gtk-icon-source: -gtk-icontheme("pan-left-symbolic"); } - scrollbar slider { - min-width: 6px; - min-height: 6px; - margin: -1px; - border: 4px solid transparent; - border-radius: 8px; - background-clip: padding-box; - background-color: #b8babf; } - scrollbar slider:hover { - background-color: #c7c9cd; } - scrollbar slider:hover:active { - background-color: #268bd2; } - 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) { - opacity: 0.4; - border-color: transparent; - background-color: transparent; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { - margin: 0; - min-width: 4px; - min-height: 4px; - background-color: #8a8e96; - border: 1px solid rgba(255, 255, 255, 0.6); } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { - margin: 0 2px; - min-width: 40px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { - margin: 2px 0; - min-height: 40px; } - scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { - opacity: 0.99; } - scrollbar.horizontal slider { - min-width: 40px; } - scrollbar.vertical slider { - min-height: 40px; } - -switch { - font-size: 1px; - min-width: 52px; - min-height: 24px; - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: center center; } - switch slider { - min-width: 1px; - min-height: 1px; } - switch, switch slider { - outline-color: transparent; - color: transparent; - border: none; - box-shadow: none; } - -switch { - background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } - -menuitem:hover switch, -row:selected switch, -infobar switch { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -headerbar switch, -.primary-toolbar switch { - background-image: -gtk-scaled(url("assets/switch-header-dark.png"), url("assets/switch-header-dark@2.png")); } - -switch:checked { - background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } - -menuitem:hover switch:checked, -row:selected switch:checked, -infobar switch:checked { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -headerbar switch:checked, -.primary-toolbar switch:checked { - background-image: -gtk-scaled(url("assets/switch-active-header-dark.png"), url("assets/switch-active-header-dark@2.png")); } - -switch:disabled { - background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } - -menuitem:hover switch:disabled, -row:selected switch:disabled, -infobar switch:disabled { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -headerbar switch:disabled, -.primary-toolbar switch:disabled { - background-image: -gtk-scaled(url("assets/switch-insensitive-header-dark.png"), url("assets/switch-insensitive-header-dark@2.png")); } - -switch:checked:disabled { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } - -menuitem:hover switch:checked:disabled, -row:selected switch:checked:disabled, -infobar switch:checked:disabled { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -headerbar switch:checked:disabled, -.primary-toolbar switch:checked:disabled { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header-dark.png"), url("assets/switch-active-insensitive-header-dark@2.png")); } - -.check, -check, -treeview.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } - -.osd check, filechooser actionbar check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -menuitem check:hover, -.view check:selected, iconview check:selected, -treeview.check:selected, -row:selected check, -infobar check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:disabled, -check:disabled, -treeview.check:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } - -.osd check:disabled, filechooser actionbar check:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -menuitem check:disabled:hover, -.view check:disabled:selected, iconview check:disabled:selected, -treeview.check:disabled:selected, -row:selected check:disabled, -infobar check:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:indeterminate, -check:indeterminate, -treeview.check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } - -.osd check:indeterminate, filechooser actionbar check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -menuitem check:indeterminate:hover, -.view check:indeterminate:selected, iconview check:indeterminate:selected, -treeview.check:indeterminate:selected, -row:selected check:indeterminate, -infobar check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:indeterminate:disabled, -check:indeterminate:disabled, -treeview.check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } - -.osd check:indeterminate:disabled, filechooser actionbar check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -menuitem check:indeterminate:disabled:hover, -.view check:indeterminate:disabled:selected, iconview check:indeterminate:disabled:selected, -treeview.check:indeterminate:disabled:selected, -row:selected check:indeterminate:disabled, -infobar check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked, -check:checked, -treeview.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } - -.osd check:checked, filechooser actionbar check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -menuitem check:checked:hover, -.view check:checked:selected, iconview check:checked:selected, -treeview.check:checked:selected, -row:selected check:checked, -infobar check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:disabled, -check:checked:disabled, -treeview.check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } - -.osd check:checked:disabled, filechooser actionbar check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -menuitem check:checked:disabled:hover, -.view check:checked:disabled:selected, iconview check:checked:disabled:selected, -treeview.check:checked:disabled:selected, -row:selected check:checked:disabled, -infobar check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio, -radio, -treeview.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } - -.osd radio, filechooser actionbar radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -menuitem radio:hover, -.view radio:selected, iconview radio:selected, -treeview.radio:selected, -row:selected radio, -infobar radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:disabled, -radio:disabled, -treeview.radio:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } - -.osd radio:disabled, filechooser actionbar radio:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -menuitem radio:disabled:hover, -.view radio:disabled:selected, iconview radio:disabled:selected, -treeview.radio:disabled:selected, -row:selected radio:disabled, -infobar radio:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:indeterminate, -radio:indeterminate, -treeview.radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } - -.osd radio:indeterminate, filechooser actionbar radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -menuitem radio:indeterminate:hover, -.view radio:indeterminate:selected, iconview radio:indeterminate:selected, -treeview.radio:indeterminate:selected, -row:selected radio:indeterminate, -infobar radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:indeterminate:disabled, -radio:indeterminate:disabled, -treeview.radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } - -.osd radio:indeterminate:disabled, filechooser actionbar radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -menuitem radio:indeterminate:disabled:hover, -.view radio:indeterminate:disabled:selected, iconview radio:indeterminate:disabled:selected, -treeview.radio:indeterminate:disabled:selected, -row:selected radio:indeterminate:disabled, -infobar radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked, -radio:checked, -treeview.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } - -.osd radio:checked, filechooser actionbar radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -menuitem radio:checked:hover, -.view radio:checked:selected, iconview radio:checked:selected, -treeview.radio:checked:selected, -row:selected radio:checked, -infobar radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:disabled, -radio:checked:disabled, -treeview.radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } - -.osd radio:checked:disabled, filechooser actionbar radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -menuitem radio:checked:disabled:hover, -.view radio:checked:disabled:selected, iconview radio:checked:disabled:selected, -treeview.radio:checked:disabled:selected, -row:selected radio:checked:disabled, -infobar radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -.view.content-view.check:not(list), iconview.content-view.check:not(list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); - background-color: transparent; } - -.view.content-view.check:checked:not(list), iconview.content-view.check:checked:not(list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png")); - background-color: transparent; } - -checkbutton.text-button, radiobutton.text-button { - padding: 2px 0; - outline-offset: 0; } - -checkbutton label:not(:only-child):first-child, radiobutton label:not(:only-child):first-child { - margin-left: 4px; } - -checkbutton label:not(:only-child):last-child, radiobutton label:not(:only-child):last-child { - margin-right: 4px; } - -check, -radio { - min-width: 16px; - min-height: 16px; - margin: 0 2px; } - check:only-child, - menu menuitem check, - radio:only-child, - menu menuitem - radio { - margin: 0; } - -scale { - min-height: 15px; - min-width: 15px; - padding: 3px; } - scale.horizontal trough { - padding: 0 4px; } - scale.horizontal highlight, scale.horizontal fill { - margin: 0 -4px; } - scale.vertical trough { - padding: 4px 0; } - scale.vertical highlight, scale.vertical fill { - margin: -4px 0; } - scale slider { - min-height: 15px; - min-width: 15px; - margin: -6px; } - scale.fine-tune slider { - margin: -4px; } - 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: 4.5px; - border-radius: 2.5px; - background-color: #657b83; } - scale trough:disabled { - background-color: rgba(101, 123, 131, 0.55); } - .osd scale trough { - background-color: #0a5062; } - .osd scale trough highlight { - background-color: #268bd2; } - menuitem:hover scale trough, - row:selected scale trough, - infobar scale trough { - background-color: rgba(0, 0, 0, 0.2); } - menuitem:hover scale trough highlight, - row:selected scale trough highlight, - infobar scale trough highlight { - background-color: #fdf6e3; } - menuitem:hover scale trough highlight:disabled, - row:selected scale trough highlight:disabled, - infobar scale trough highlight:disabled { - background-color: #9cc6db; } - menuitem:hover scale trough:disabled, - row:selected scale trough:disabled, - infobar scale trough:disabled { - background-color: rgba(0, 0, 0, 0.1); } - scale highlight { - border-radius: 2.5px; - background-color: #268bd2; } - scale highlight:disabled { - background-color: rgba(38, 139, 210, 0.55); } - scale fill { - border-radius: 2.5px; - background-color: rgba(38, 139, 210, 0.5); } - scale fill:disabled { - background-color: transparent; } - scale slider { - background-color: #fbfbfc; - border: 1px solid rgba(45, 55, 59, 0.5); - border-radius: 100%; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-property: background, border; } - scale slider:hover { - background-color: white; } - scale slider:active { - background-clip: border-box; - background-color: #268bd2; - border-color: #268bd2; } - scale slider:disabled { - background-color: #f9f6ec; - border-color: rgba(45, 55, 59, 0.3); } - menuitem:hover scale slider, - row:selected scale slider, - infobar scale slider { - background-clip: border-box; - background-color: #fdf6e3; - border-color: #fdf6e3; } - menuitem:hover scale slider:hover, - row:selected scale slider:hover, - infobar scale slider:hover { - background-color: #dde6e0; - border-color: #dde6e0; } - menuitem:hover scale slider:active, - row:selected scale slider:active, - infobar scale slider:active { - background-color: #92c1db; - border-color: #92c1db; } - menuitem:hover scale slider:disabled, - row:selected scale slider:disabled, - infobar scale slider:disabled { - background-color: #9cc6db; - border-color: #9cc6db; } - .osd scale slider { - background-clip: border-box; - background-color: #268bd2; - border-color: #268bd2; } - .osd scale slider:hover { - background-color: #4ca2df; - border-color: #4ca2df; } - .osd scale slider:active { - background-color: #1e6ea7; - border-color: #1e6ea7; } - scale value { - color: alpha(currentColor,0.4); } - scale marks { - color: alpha(currentColor,0.4); } - scale marks.top { - margin-bottom: 1px; - margin-top: -4px; } - scale marks.bottom { - margin-top: 1px; - margin-bottom: -4px; } - scale marks.top { - margin-right: 1px; - margin-left: -4px; } - scale marks.bottom { - margin-left: 1px; - margin-right: -4px; } - scale.fine-tune marks.top { - margin-bottom: 0px; - margin-top: -2px; } - scale.fine-tune marks.bottom { - margin-top: 0px; - margin-bottom: -2px; } - scale.fine-tune marks.top { - margin-right: 0px; - margin-left: -2px; } - scale.fine-tune marks.bottom { - margin-left: 0px; - margin-right: -2px; } - scale.horizontal indicator { - min-height: 3px; - min-width: 1px; } - scale.horizontal.fine-tune indicator { - min-height: 2px; } - scale.vertical indicator { - min-height: 1px; - min-width: 3px; } - scale.vertical.fine-tune indicator { - min-width: 2px; } - -progressbar { - padding: 0; - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - progressbar.osd { - min-width: 3px; - min-height: 3px; - background-color: transparent; } - progressbar.osd trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - progressbar progress { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - row:selected progressbar progress, - infobar progressbar progress { - background-color: #fdf6e3; } - progressbar trough { - border: none; - border-radius: 3px; - background-color: #657b83; } - row:selected progressbar trough, - infobar progressbar trough { - background-color: rgba(0, 0, 0, 0.2); } - -levelbar block { - min-width: 32px; - min-height: 1px; } - -levelbar.vertical block { - min-width: 1px; - min-height: 32px; } - -levelbar trough { - border: none; - padding: 3px; - border-radius: 3px; - background-color: #657b83; } - -levelbar.horizontal.discrete block { - margin: 0 1px; } - -levelbar.vertical.discrete block { - margin: 1px 0; } - -levelbar block:not(.empty) { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - -levelbar block.low { - border-color: #cb4b16; - background-color: #cb4b16; } - -levelbar block.high { - border-color: #268bd2; - background-color: #268bd2; } - -levelbar block.full { - border-color: #859900; - background-color: #859900; } - -levelbar block.empty { - background-color: rgba(92, 97, 108, 0.2); - border-color: rgba(92, 97, 108, 0.2); } - -printdialog paper { - border: 1px solid #dcdfe3; - background: #fdf6e3; - padding: 0; } - -printdialog .dialog-action-box { - margin: 12px; } - -frame > border, -.frame { - margin: 0; - padding: 0; - border-radius: 0; - border: 1px solid #dcdfe3; } - -frame.flat > border, -frame > border.flat, -.frame.flat { - border-style: none; } - -scrolledwindow viewport.frame { - border-style: none; } - -scrolledwindow overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 100%; - background-repeat: no-repeat; - background-position: right center; - background-color: transparent; - border: none; - box-shadow: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow junction { - border-color: transparent; - border-image: linear-gradient(to bottom, #dcdfe3 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #fdf4de; } - scrolledwindow junction:dir(rtl) { - border-image-slice: 0 1 0 0; } - -separator { - background-color: rgba(0, 0, 0, 0.1); - min-width: 1px; - min-height: 1px; } - -list { - background-color: #fdf6e3; - border-color: #dcdfe3; } - list row { - padding: 2px; } - -row:not(:hover) { - transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - -row.activatable.has-open-popup, row.activatable:hover { - background-color: rgba(0, 0, 0, 0.05); } - -row.activatable:active { - color: #5c616c; } - -row.activatable:disabled { - color: rgba(92, 97, 108, 0.55); } - row.activatable:disabled image { - color: inherit; } - -row.activatable:selected:active { - color: #fdf6e3; } - -row.activatable:selected.has-open-popup, row.activatable:selected:hover { - background-color: #227dbd; } - -.app-notification { - padding: 10px; - color: #657b83; - background-color: #073642; - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: #021014; } - .app-notification border { - border: none; } - .app-notification button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .app-notification button.flat, .app-notification button.sidebar-button { - border-color: rgba(38, 139, 210, 0); } - .app-notification button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .app-notification button:active, .app-notification button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -expander arrow { - min-width: 16px; - min-height: 16px; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - expander arrow:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - expander arrow:hover { - color: #aaaeb7; } - expander arrow:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -calendar { - color: #5c616c; - border: 1px solid #dcdfe3; - border-radius: 3px; - padding: 2px; } - calendar:selected { - border-radius: 1.5px; } - calendar.header { - color: #5c616c; - border: none; } - calendar.button { - color: rgba(92, 97, 108, 0.45); } - calendar.button:hover { - color: #5c616c; } - calendar.button:disabled { - color: rgba(92, 97, 108, 0.55); } - calendar:indeterminate { - color: alpha(currentColor,0.55); } - calendar.highlight { - color: #5c616c; } - -messagedialog .titlebar { - min-height: 20px; - background-color: #002b36; - border-bottom: 1px solid #000f12; } - -messagedialog .dialog-action-area button { - padding: 8px; - min-height: 0; } - -messagedialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - -messagedialog.csd .dialog-action-area button { - border-bottom-style: none; } - -messagedialog.csd .dialog-action-area button { - border-radius: 0; - border-right-style: none; } - -messagedialog.csd .dialog-action-area button:last-child { - border-radius: 0 0 3px 0; - border-right-style: none; } - -messagedialog.csd .dialog-action-area button:first-child { - border-radius: 0 0 0 3px; - border-left-style: none; } - -messagedialog.csd .dialog-action-area button:only-child { - border-radius: 0 0 3px 3px; - border-left-style: none; - border-right-style: none; } - -filechooser #pathbarbox { - border-bottom: 1px solid rgba(220, 223, 227, 0.5); } - -filechooserbutton:drop(active) { - box-shadow: none; - border-color: transparent; } - -.sidebar { - border-style: none; - background-color: #fbfbfc; } - stacksidebar.sidebar:dir(ltr) list, - stacksidebar.sidebar.left list, - stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) { - border-right: 1px solid #dcdfe3; - border-left-style: none; } - stacksidebar.sidebar:dir(rtl) list, - stacksidebar.sidebar.right list, .sidebar:dir(rtl), .sidebar.right { - border-left: 1px solid #dcdfe3; - border-right-style: none; } - .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; } - -placessidebar > viewport.frame { - border-style: none; } - -placessidebar row { - min-height: 30px; - padding: 0px; } - placessidebar row > revealer { - padding: 0 10px; } - 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-width: 22px; - min-height: 22px; - margin-top: 2px; - margin-bottom: 2px; - padding: 0; - border-radius: 100%; - -gtk-outline-radius: 100%; } - button.sidebar-button:not(:hover):not(:active) > image { - opacity: 0.5; } - placessidebar row.sidebar-placeholder-row { - padding: 0 8px; - min-height: 2px; - background-image: linear-gradient(to bottom, #b58900, #b58900); - background-clip: content-box; } - placessidebar row.sidebar-new-bookmark-row { - color: #268bd2; } - placessidebar row:drop(active):not(:disabled) { - box-shadow: inset 0 1px #b58900, inset 0 -1px #b58900; } - placessidebar row:drop(active):not(:disabled), placessidebar row:drop(active):not(:disabled) label, placessidebar row:drop(active):not(:disabled) image { - color: #b58900; } - placessidebar row:drop(active):not(:disabled):selected { - background-color: #b58900; } - placessidebar row:drop(active):not(:disabled):selected, placessidebar row:drop(active):not(:disabled):selected label, placessidebar row:drop(active):not(:disabled):selected image { - color: #fdf6e3; } - -placesview .server-list-button > image { - -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 > actionbar > revealer > box > label { - padding-left: 8px; - padding-right: 8px; } - -paned > separator { - min-width: 1px; - min-height: 1px; - -gtk-icon-source: none; - border-style: none; - background-color: transparent; - background-image: linear-gradient(to bottom, #dcdfe3, #dcdfe3); - background-size: 1px 1px; } - paned > separator:selected { - background-image: linear-gradient(to bottom, #268bd2, #268bd2); } - paned > separator.wide { - min-width: 5px; - min-height: 5px; - background-color: #F5F6F7; - background-image: linear-gradient(to bottom, #dcdfe3, #dcdfe3), linear-gradient(to bottom, #dcdfe3, #dcdfe3); - background-size: 1px 1px, 1px 1px; } - -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; } - -infobar { - border-style: none; } - infobar.info, infobar.question, infobar.warning, infobar.error { - background-color: #268bd2; - color: #fdf6e3; - caret-color: currentColor; } - infobar.info selection, infobar.question selection, infobar.warning selection, infobar.error selection { - color: #268bd2; - background-color: #fdf6e3; } - -.selection-mode.primary-toolbar button:hover, headerbar.selection-mode button:hover, row:selected button, infobar.info button, infobar.question button, infobar.warning button, infobar.error button, .nautilus-window .floating-bar button { - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - -row:selected button.flat, row:selected button.sidebar-button, infobar.info button.flat, infobar.info button.sidebar-button, infobar.question button.flat, infobar.question button.sidebar-button, infobar.warning button.flat, infobar.warning button.sidebar-button, infobar.error button.flat, infobar.error button.sidebar-button, .nautilus-window .floating-bar button.flat, .nautilus-window .floating-bar button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .selection-mode.primary-toolbar button:disabled, headerbar.selection-mode button:disabled, row:selected button.flat:disabled, row:selected button.sidebar-button:disabled, infobar.info button.flat:disabled, infobar.info button.sidebar-button:disabled, infobar.question button.flat:disabled, infobar.question button.sidebar-button:disabled, infobar.warning button.flat:disabled, infobar.warning button.sidebar-button:disabled, infobar.error button.flat:disabled, infobar.error button.sidebar-button:disabled, .nautilus-window .floating-bar button.flat:disabled, .nautilus-window .floating-bar button.sidebar-button:disabled, .selection-mode.primary-toolbar button:disabled label, headerbar.selection-mode button:disabled label, row:selected button.flat:disabled label, row:selected button.sidebar-button:disabled label, infobar.info button.flat:disabled label, infobar.info button.sidebar-button:disabled label, infobar.question button.flat:disabled label, infobar.question button.sidebar-button:disabled label, infobar.warning button.flat:disabled label, infobar.warning button.sidebar-button:disabled label, infobar.error button.flat:disabled label, infobar.error button.sidebar-button:disabled label, .nautilus-window .floating-bar button.flat:disabled label, .nautilus-window .floating-bar button.sidebar-button:disabled label { - color: rgba(253, 246, 227, 0.4); } - -row:selected button:hover, infobar.info button:hover, infobar.question button:hover, infobar.warning button:hover, infobar.error button:hover, .nautilus-window .floating-bar button:hover { - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - -.selection-mode.primary-toolbar button:active, headerbar.selection-mode button:active, .selection-mode.primary-toolbar button:checked, headerbar.selection-mode button:checked, row:selected button:active, infobar.info button:active, infobar.question button:active, infobar.warning button:active, infobar.error button:active, .nautilus-window .floating-bar button:active, .selection-mode.primary-toolbar button:hover:active, headerbar.selection-mode button:hover:active, .selection-mode.primary-toolbar button:hover:checked, headerbar.selection-mode button:hover:checked, row:selected button:active:hover, infobar.info button:active:hover, infobar.question button:active:hover, infobar.warning button:active:hover, infobar.error button:active:hover, .nautilus-window .floating-bar button:active:hover, row:selected button:checked, infobar.info button:checked, infobar.question button:checked, infobar.warning button:checked, infobar.error button:checked, .nautilus-window .floating-bar button:checked { - color: #268bd2; - background-color: #fdf6e3; - border-color: #fdf6e3; } - -row:selected button:disabled, infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, .nautilus-window .floating-bar button:disabled { - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.4); } - row:selected button:disabled, infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, .nautilus-window .floating-bar button:disabled, row:selected button:disabled label, infobar.info button:disabled label, infobar.question button:disabled label, infobar.warning button:disabled label, infobar.error button:disabled label, .nautilus-window .floating-bar button:disabled label { - color: rgba(253, 246, 227, 0.5); } - .selection-mode.primary-toolbar button:disabled:active, headerbar.selection-mode button:disabled:active, .selection-mode.primary-toolbar button:disabled:checked, headerbar.selection-mode button:disabled:checked, row:selected button:disabled:active, infobar.info button:disabled:active, infobar.question button:disabled:active, infobar.warning button:disabled:active, infobar.error button:disabled:active, .nautilus-window .floating-bar button:disabled:active, .selection-mode.primary-toolbar button:disabled:checked, headerbar.selection-mode button:disabled:checked, .selection-mode.primary-toolbar button:disabled:active, headerbar.selection-mode button:disabled:active, row:selected button:disabled:checked, infobar.info button:disabled:checked, infobar.question button:disabled:checked, infobar.warning button:disabled:checked, infobar.error button:disabled:checked, .nautilus-window .floating-bar button:disabled:checked { - color: #268bd2; - background-color: rgba(253, 246, 227, 0.5); - border-color: rgba(253, 246, 227, 0.4); } - -tooltip { - border-radius: 2px; - box-shadow: none; } - tooltip.background { - background-color: #0c5c70; - background-clip: padding-box; } - tooltip.background label { - padding: 4px; } - tooltip decoration { - background-color: transparent; } - tooltip * { - background-color: transparent; - color: #657b83; } - -colorswatch, colorswatch:drop(active) { - border-style: none; } - -colorswatch.top { - border-top-left-radius: 2.5px; - border-top-right-radius: 2.5px; } - colorswatch.top overlay { - border-top-left-radius: 2px; - border-top-right-radius: 2px; } - -colorswatch.bottom { - border-bottom-left-radius: 2.5px; - border-bottom-right-radius: 2.5px; } - colorswatch.bottom overlay { - border-bottom-left-radius: 2px; - border-bottom-right-radius: 2px; } - -colorswatch.left, colorswatch:first-child:not(.top) { - border-top-left-radius: 2.5px; - border-bottom-left-radius: 2.5px; } - colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { - border-top-left-radius: 2px; - border-bottom-left-radius: 2px; } - -colorswatch.right, colorswatch:last-child:not(.bottom) { - border-top-right-radius: 2.5px; - border-bottom-right-radius: 2.5px; } - colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { - border-top-right-radius: 2px; - border-bottom-right-radius: 2px; } - -colorswatch.dark overlay { - color: rgba(255, 255, 255, 0.7); } - colorswatch.dark overlay:hover { - border-color: rgba(0, 0, 0, 0.5); } - -colorswatch.light overlay { - color: rgba(0, 0, 0, 0.7); } - colorswatch.light overlay:hover { - border-color: rgba(0, 0, 0, 0.3); } - -colorswatch overlay { - border: 1px solid rgba(0, 0, 0, 0.15); } - colorswatch overlay:hover { - background-color: rgba(255, 255, 255, 0.2); } - -colorswatch:disabled { - opacity: 0.5; } - colorswatch:disabled overlay { - border-color: rgba(0, 0, 0, 0.6); - box-shadow: none; } - -colorswatch#add-color-button { - border-style: solid; - border-width: 1px; - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - colorswatch#add-color-button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; } - colorswatch#add-color-button overlay { - border-color: transparent; - background-color: transparent; - background-image: none; } - -button.color { - padding: 0; } - button.color colorswatch:first-child:last-child, button.color colorswatch:first-child:last-child overlay { - margin: 4px; - border-radius: 0; } - -colorchooser .popover.osd { - border-radius: 3px; } - -.content-view { - background-color: #fdf6e3; } - .content-view:hover { - -gtk-icon-effect: highlight; } - -.scale-popup button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; } - -.context-menu, popover.touch-selection, .csd popover.touch-selection, -popover.background.touch-selection, .csd popover.background.touch-selection { - font: initial; } - -.monospace { - font-family: Monospace; } - -button.circular, button.nautilus-circular-button.image-button, -button.circular-button { - padding: 0; - min-width: 16px; - min-height: 24px; - padding: 2px 6px; - border-radius: 50%; - -gtk-outline-radius: 50%; } - button.circular label, button.nautilus-circular-button.image-button label, - button.circular-button label { - padding: 0; } - -.keycap { - min-width: 16px; - min-height: 20px; - padding: 3px 6px 4px 6px; - color: #5c616c; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; - border-radius: 2.5px; - box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.05); } - -stackswitcher button.text-button { - min-width: 80px; } - -stackswitcher button.circular, stackswitcher button.nautilus-circular-button.image-button { - min-width: 0; } - -*:drop(active):focus, -*:drop(active) { - box-shadow: inset 0 0 0 1px #b58900; } - -decoration { - border-radius: 3px 3px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px #000f12, 0 8px 8px 0 rgba(0, 0, 0, 0.2); - margin: 10px; } - decoration:backdrop { - box-shadow: 0 0 0 1px rgba(0, 15, 18, 0.9), 0 8px 8px 0 transparent, 0 5px 5px 0 rgba(0, 0, 0, 0.2); - transition: 200ms ease-out; } - .fullscreen decoration, - .tiled decoration { - border-radius: 0; } - .popup decoration { - box-shadow: none; - border-radius: 0; } - .ssd decoration { - border-radius: 3px 3px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.65); } - .ssd decoration.maximized { - border-radius: 0; } - .csd.popup decoration { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } - tooltip.csd decoration { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } - messagedialog.csd decoration { - border-radius: 3px; } - .solid-csd decoration { - border-radius: 0; - margin: 1px; - background-color: #002b36; - box-shadow: none; } - -headerbar.default-decoration button.titlebutton, -.titlebar.default-decoration button.titlebutton { - padding: 0 4px; - min-width: 0; - min-height: 0; - margin: 0; } - -headerbar button.titlebutton, -.titlebar button.titlebutton { - padding: 0; - min-width: 24px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(0, 43, 54, 0); } - headerbar button.titlebutton:hover, - .titlebar button.titlebutton:hover { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - headerbar button.titlebutton:active, headerbar button.titlebutton:checked, - .titlebar button.titlebutton:active, - .titlebar button.titlebutton:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - headerbar button.titlebutton.close, headerbar button.titlebutton.maximize, headerbar button.titlebutton.minimize, - .titlebar button.titlebutton.close, - .titlebar button.titlebutton.maximize, - .titlebar button.titlebutton.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; } - headerbar button.titlebutton.close:backdrop, headerbar button.titlebutton.maximize:backdrop, headerbar button.titlebutton.minimize:backdrop, - .titlebar button.titlebutton.close:backdrop, - .titlebar button.titlebutton.maximize:backdrop, - .titlebar button.titlebutton.minimize:backdrop { - opacity: 1; } - headerbar button.titlebutton.close, - .titlebar button.titlebutton.close { - background-image: -gtk-scaled(url("assets/titlebutton-close-dark.png"), url("assets/titlebutton-close-dark@2.png")); } - headerbar button.titlebutton.close:backdrop, - .titlebar button.titlebutton.close:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop-dark.png"), url("assets/titlebutton-close-backdrop-dark@2.png")); } - headerbar button.titlebutton.close:hover, - .titlebar button.titlebutton.close:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover-dark.png"), url("assets/titlebutton-close-hover-dark@2.png")); } - headerbar button.titlebutton.close:active, - .titlebar button.titlebutton.close:active { - background-image: -gtk-scaled(url("assets/titlebutton-close-active-dark.png"), url("assets/titlebutton-close-active-dark@2.png")); } - headerbar button.titlebutton.maximize, - .titlebar button.titlebutton.maximize { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-dark.png"), url("assets/titlebutton-maximize-dark@2.png")); } - headerbar button.titlebutton.maximize:backdrop, - .titlebar button.titlebutton.maximize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop-dark.png"), url("assets/titlebutton-maximize-backdrop-dark@2.png")); } - headerbar button.titlebutton.maximize:hover, - .titlebar button.titlebutton.maximize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover-dark.png"), url("assets/titlebutton-maximize-hover-dark@2.png")); } - headerbar button.titlebutton.maximize:active, - .titlebar button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active-dark.png"), url("assets/titlebutton-maximize-active-dark@2.png")); } - headerbar button.titlebutton.minimize, - .titlebar button.titlebutton.minimize { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-dark.png"), url("assets/titlebutton-minimize-dark@2.png")); } - headerbar button.titlebutton.minimize:backdrop, - .titlebar button.titlebutton.minimize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop-dark.png"), url("assets/titlebutton-minimize-backdrop-dark@2.png")); } - headerbar button.titlebutton.minimize:hover, - .titlebar button.titlebutton.minimize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover-dark.png"), url("assets/titlebutton-minimize-hover-dark@2.png")); } - headerbar button.titlebutton.minimize:active, - .titlebar button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active-dark.png"), url("assets/titlebutton-minimize-active-dark@2.png")); } - -.view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, .view text:selected, iconview text:selected, -textview text:selected, iconview text:selected:focus, -textview text:selected:focus, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, -textview text selection:focus, -textview text selection, flowbox flowboxchild:selected, entry selection:focus, entry selection, menuitem.button.flat:active, menuitem.button.flat:active arrow, menuitem.button.flat:selected, menuitem.button.flat:selected arrow, -modelbutton.flat:active, -modelbutton.flat:active arrow, -modelbutton.flat:selected, -modelbutton.flat:selected arrow, treeview.view:selected, treeview.view:selected:focus, row:selected, calendar:selected, .nemo-window .nemo-window-pane widget.entry:selected:focus, .nemo-window .nemo-window-pane widget.entry:selected, filechooser placessidebar.sidebar row.sidebar-row.has-open-popup:selected, filechooser placessidebar.sidebar row.sidebar-row:selected, filechooser placessidebar.sidebar row.sidebar-row:selected:hover, filechooser placessidebar.sidebar row.sidebar-row:active:hover, -.nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup:selected, -.nautilus-window placessidebar.sidebar row.sidebar-row:selected, -.nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover, -.nautilus-window placessidebar.sidebar row.sidebar-row:active:hover { - background-color: #268bd2; } - row:selected label, label:selected, .view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, .view text:selected, iconview text:selected, - textview text:selected, iconview text:selected:focus, - textview text:selected:focus, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, - textview text selection:focus, - textview text selection, flowbox flowboxchild:selected, entry selection:focus, entry selection, menuitem.button.flat:active, menuitem.button.flat:active arrow, menuitem.button.flat:selected, menuitem.button.flat:selected arrow, - modelbutton.flat:active, - modelbutton.flat:active arrow, - modelbutton.flat:selected, - modelbutton.flat:selected arrow, treeview.view:selected, treeview.view:selected:focus, row:selected, calendar:selected, .nemo-window .nemo-window-pane widget.entry:selected:focus, .nemo-window .nemo-window-pane widget.entry:selected, filechooser placessidebar.sidebar row.sidebar-row.has-open-popup:selected, filechooser placessidebar.sidebar row.sidebar-row:selected, filechooser placessidebar.sidebar row.sidebar-row:selected:hover, filechooser placessidebar.sidebar row.sidebar-row:active:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup:selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row:active:hover { - color: #fdf6e3; } - row:selected label:disabled, label:disabled:selected, .view:disabled:selected, iconview:disabled:selected, iconview:disabled:selected:focus, .view text:disabled:selected, iconview text:disabled:selected, - textview text:disabled:selected, iconview text selection:disabled:focus, .view text selection:disabled, iconview text selection:disabled, - textview text selection:disabled, flowbox flowboxchild:disabled:selected, label:disabled selection, entry selection:disabled, menuitem.button.flat:disabled:active, menuitem.button.flat:active arrow:disabled, menuitem.button.flat:disabled:selected, menuitem.button.flat:selected arrow:disabled, - modelbutton.flat:disabled:active, - modelbutton.flat:active arrow:disabled, - modelbutton.flat:disabled:selected, - modelbutton.flat:selected arrow:disabled, treeview.view:disabled:selected:focus, row:disabled:selected, calendar:disabled:selected, .nemo-window .nemo-window-pane widget.entry:disabled:selected, filechooser placessidebar.sidebar row.sidebar-row:disabled:selected, filechooser placessidebar.sidebar row.sidebar-row:disabled:active:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled:selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled:active:hover { - color: #92c1db; } - -.gedit-bottom-panel-paned notebook > header.top > tabs > tab:checked, -terminal-window notebook > header.top > tabs > tab:checked { - box-shadow: inset 0 -1px #dcdfe3; } - -terminal-window notebook > header.top, -.mate-terminal notebook > header.top { - padding-top: 3px; - box-shadow: inset 0 1px #001b22, inset 0 -1px #dcdfe3; } - terminal-window notebook > header.top button, - .mate-terminal notebook > header.top button { - padding: 0; - min-width: 24px; - min-height: 24px; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item, .caja-desktop { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active, .caja-desktop:active { - color: #5c616c; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected, .caja-desktop:selected { - color: #fdf6e3; - text-shadow: none; } - -.nautilus-canvas-item.dim-label, label.nautilus-canvas-item.separator, -popover.background label.nautilus-canvas-item.separator, headerbar .nautilus-canvas-item.subtitle, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle, -.nautilus-list-dim-label { - color: #a9acb2; } - .nautilus-canvas-item.dim-label:selected, label.nautilus-canvas-item.separator:selected, headerbar .nautilus-canvas-item.subtitle:selected, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, label.nautilus-canvas-item.separator:selected:focus, headerbar .nautilus-canvas-item.subtitle:selected:focus, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle:selected:focus, - .nautilus-list-dim-label:selected, - .nautilus-list-dim-label:selected:focus { - color: #d2e1e0; } - -.nautilus-window searchbar { - border-top: 1px solid #dcdfe3; } - -.nautilus-window .searchbar-container { - margin-top: -1px; } - -.nautilus-window notebook, -.nautilus-window notebook > stack:not(:only-child) searchbar { - background-color: #fdf6e3; } - -.disk-space-display { - border-style: solid; - border-width: 1px; } - .disk-space-display.unknown { - background-color: rgba(92, 97, 108, 0.5); - border-color: rgba(69, 72, 80, 0.5); } - .disk-space-display.used { - background-color: rgba(38, 139, 210, 0.8); - border-color: rgba(30, 110, 167, 0.8); } - .disk-space-display.free { - background-color: #edeef0; - border-color: #d0d5da; } - -@keyframes needs_attention_keyframes { - 0% { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - 100% { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } } - -.nautilus-operations-button-needs-attention { - animation: needs_attention_keyframes 2s ease-in-out; } - -.nautilus-operations-button-needs-attention-multiple { - animation: needs_attention_keyframes 3s ease-in-out; - animation-iteration-count: 3; } - -.conflict-row.activatable, .conflict-row.activatable:active { - color: white; - background-color: #dc322f; } - -.conflict-row.activatable:hover { - background-color: #e35d5b; } - -.conflict-row.activatable:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.nemo-window .nemo-places-sidebar.frame { - border-width: 0; } - -.nemo-window notebook { - background-color: #fdf6e3; } - -.nemo-window .nemo-window-pane widget.entry { - border: 1px solid; - border-radius: 3px; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button { - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:not(:last-child):not(:only-child) { - margin: 0 0 1px 0; } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover { - background-color: rgba(0, 193, 243, 0.4); } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:active, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:checked { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:disabled { - color: rgba(89, 128, 143, 0.4); } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button + button { - border-left-style: none; } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4), inset -1px 0 rgba(0, 0, 0, 0.4); } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(0, 0, 0, 0.4); } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(0, 0, 0, 0.4); } - -.caja-notebook { - border-top: 1px solid #dcdfe3; } - -.caja-side-pane .frame { - border-width: 1px 0 0; } - -.caja-notebook .frame { - border-width: 0 0 1px; } - -.open-document-selector-treeview.view, iconview.open-document-selector-treeview { - padding: 3px 6px 3px 6px; - border-color: #fdf6e3; } - .open-document-selector-treeview.view:hover, iconview.open-document-selector-treeview:hover { - background-color: #f2ecdb; } - .open-document-selector-treeview.view:hover:selected, iconview.open-document-selector-treeview:hover:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.open-document-selector-name-label { - color: #5c616c; } - -.open-document-selector-path-label { - color: #adaca8; - font-size: smaller; } - .open-document-selector-path-label:selected { - color: rgba(253, 246, 227, 0.9); } - -.gedit-document-panel row button { - min-width: 22px; - min-height: 22px; - padding: 0; - color: transparent; - background: none; - border: none; - box-shadow: none; } - .gedit-document-panel row button image { - color: inherit; } - -.gedit-document-panel row:hover:not(:selected) button { - color: #92959d; } - .gedit-document-panel row:hover:not(:selected) button:hover { - color: #ff4d4d; } - .gedit-document-panel row:hover:not(:selected) button:active { - color: #5c616c; } - -.gedit-document-panel row:hover:selected button:hover { - color: #ff6666; - background: none; - border: none; - box-shadow: none; } - .gedit-document-panel row:hover:selected button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel-dragged-row { - border: 1px solid #dcdfe3; - background-color: #d9dde0; - color: #5c616c; } - -.gedit-side-panel-paned statusbar { - border-top: 1px solid #dcdfe3; - background-color: #F5F6F7; } - -.gedit-search-slider { - background-color: #fbfbfc; - padding: 6px; - border-color: #dcdfe3; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -.gedit-search-entry-occurrences-tag { - color: rgba(92, 97, 108, 0.6); - border: none; - margin: 2px; - padding: 2px; } - -.gedit-map-frame border { - border-color: rgba(0, 0, 0, 0.3); - border-width: 0; } - .gedit-map-frame border:dir(ltr) { - border-left-width: 1px; } - .gedit-map-frame border:dir(rtl) { - border-right-width: 1px; } - -.pluma-window statusbar frame > border { - border: none; } - -.pluma-window notebook > stack scrolledwindow { - border-width: 0 0 1px 0; } - -#pluma-status-combo-button { - min-height: 0; - padding: 0; - border-top: none; - border-bottom: none; - border-radius: 0; } - -.gb-search-entry-occurrences-tag { - background: none; } - -workbench.csd > stack.titlebar:not(headerbar) { - padding: 0; - background: none; - border: none; - box-shadow: none; } - workbench.csd > stack.titlebar:not(headerbar) headerbar, workbench.csd > stack.titlebar:not(headerbar) headerbar:first-child, workbench.csd > stack.titlebar:not(headerbar) headerbar:last-child { - border-radius: 3px 3px 0 0; } - -editortweak .linked > entry.search:focus + .gb-linked-scroller { - border-top-color: #268bd2; } - -layouttab { - background-color: #fdf6e3; } - -layout { - border: 1px solid #dcdfe3; - -PnlDockBin-handle-size: 1; } - -eggsearchbar box.search-bar { - border-bottom: 1px solid #dcdfe3; } - -pillbox { - color: #fdf6e3; - background-color: #268bd2; - border-radius: 3px; } - pillbox:disabled label { - color: rgba(253, 246, 227, 0.5); } - -docktabstrip { - padding: 0 6px; - background-color: #F5F6F7; - border-bottom: 1px solid #dcdfe3; } - docktabstrip docktab { - min-height: 28px; - border: solid transparent; - border-width: 0 1px; } - docktabstrip docktab label { - opacity: 0.5; } - docktabstrip docktab:checked label, docktabstrip docktab:hover label { - opacity: 1; } - docktabstrip docktab:checked { - border-color: #dcdfe3; - background-color: #fdf6e3; } - -dockbin { - border: 1px solid #dcdfe3; - -PnlDockBin-handle-size: 1; } - -dockpaned { - border: 1px solid #dcdfe3; } - -dockoverlayedge { - background-color: #F5F6F7; } - dockoverlayedge docktabstrip { - padding: 0; - border: none; } - dockoverlayedge.left-edge tab:checked, - dockoverlayedge.right-edge tab:checked { - border-width: 1px 0; } - -popover.messagepopover.background { - padding: 0; } - -popover.messagepopover .popover-content-area { - margin: 16px; } - -popover.messagepopover .popover-action-area { - margin: 8px; } - popover.messagepopover .popover-action-area button:not(:first-child):not(:last-child) { - margin: 0 4px; } - -popover.popover-selector { - padding: 0; } - popover.popover-selector list row { - padding: 5px 0; } - popover.popover-selector list row image { - margin-left: 3px; - margin-right: 10px; } - -entry.search.preferences-search { - border: none; - border-right: 1px solid #dcdfe3; - border-bottom: 1px solid #dcdfe3; - border-radius: 0; } - -preferences stacksidebar.sidebar list { - background-image: linear-gradient(to bottom, #fdf6e3, #fdf6e3); } - -preferences stacksidebar.sidebar list separator { - background-color: transparent; } - -devhelppanel entry:focus, -symboltreepanel entry:focus { - border-color: #dcdfe3; } - -button.run-arrow-button { - min-width: 12px; } - -omnibar.linked > entry:not(:only-child) { - border-style: solid; - border-radius: 3px; - margin-left: 1px; - margin-right: 1px; } - -gstyleslidein #scale_box button.toggle:checked, -gstyleslidein #strings_controls button.toggle:checked, -gstyleslidein #palette_controls button.toggle:checked, -gstyleslidein #components_controls button.toggle:checked { - color: #5c616c; } - -configurationview entry.flat { - background: none; } - -configurationview list { - border-width: 0; } - -.documents-scrolledwin.frame { - border-width: 0; } - -button.documents-load-more { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon, .photos-collection-icon { - background-color: rgba(92, 97, 108, 0.3); - border-radius: 2px; } - -button.documents-favorite:active, -button.documents-favorite:active:hover { - color: #78b9e6; } - -.documents-entry-tag, .photos-entry-tag { - color: #fdf6e3; - background: #268bd2; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover, .photos-entry-tag:hover { - color: #fdf6e3; - background: #3295da; } - .documents-entry-tag:active, .photos-entry-tag:active { - color: #fdf6e3; - background: #2380c1; } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -.photos-fade-in { - opacity: 1.0; - transition: opacity 0.2s ease-out; } - -.photos-fade-out { - opacity: 0.0; - transition: opacity 0.2s ease-out; } - -.tweak-categories, -.tweak-category:not(:selected):not(:hover) { - background-image: linear-gradient(to bottom, #fdf6e3, #fdf6e3); } - -.tr-workarea undershoot, -.tr-workarea overshoot { - border-color: transparent; } - -.atril-window .primary-toolbar toolbar, .atril-window .primary-toolbar .inline-toolbar { - background: none; } - -#gf-bubble, #gf-bubble.solid, -#gf-osd-window, -#gf-osd-window.solid, -#gf-input-source-popup, -#gf-input-source-popup.solid, -#gf-candidate-popup, -#gf-candidate-popup.solid { - color: #768d96; - background-color: #073642; - border: 1px solid #03181d; - border-radius: 2px; } - -#gf-bubble levelbar block.low, #gf-bubble levelbar block.high, #gf-bubble levelbar block.full, -#gf-osd-window levelbar block.low, -#gf-osd-window levelbar block.high, -#gf-osd-window levelbar block.full, -#gf-input-source-popup levelbar block.low, -#gf-input-source-popup levelbar block.high, -#gf-input-source-popup levelbar block.full, -#gf-candidate-popup levelbar block.low, -#gf-candidate-popup levelbar block.high, -#gf-candidate-popup levelbar block.full { - background-color: #268bd2; - border-color: #268bd2; } - -#gf-bubble levelbar block.empty, -#gf-osd-window levelbar block.empty, -#gf-input-source-popup levelbar block.empty, -#gf-candidate-popup levelbar block.empty { - background-color: #05232b; } - -#gf-bubble levelbar trough, -#gf-osd-window levelbar trough, -#gf-input-source-popup levelbar trough, -#gf-candidate-popup levelbar trough { - background: none; } - -#gf-input-source { - min-height: 32px; - min-width: 40px; } - #gf-input-source:selected { - color: #fdf6e3; - background-color: #268bd2; - border-radius: 2px; } - -gf-candidate-box label { - padding: 3px; } - -gf-candidate-box:hover, gf-candidate-box:selected { - color: #fdf6e3; - background-color: #268bd2; - border-radius: 2px; } - -MsdOsdWindow.background.osd { - border-radius: 2px; - border: 1px solid #03181d; } - MsdOsdWindow.background.osd .progressbar { - background-color: #268bd2; - border: none; - border-color: red; - border-radius: 5px; } - MsdOsdWindow.background.osd .trough { - background-color: #05232b; - border: none; - border-radius: 5px; } - -.mate-panel-menu-bar, .mate-panel-menu-bar menubar, -panel-toplevel.background, -panel-toplevel.background menubar { - background-color: #05242c; } - -.mate-panel-menu-bar menubar, -.mate-panel-menu-bar #PanelApplet label, -.mate-panel-menu-bar #PanelApplet image, -panel-toplevel.background menubar, -panel-toplevel.background #PanelApplet label, -panel-toplevel.background #PanelApplet image { - color: #657b83; } - -.mate-panel-menu-bar button label, .mate-panel-menu-bar button image, -.mate-panel-menu-bar #tasklist-button label, -.mate-panel-menu-bar #tasklist-button image, -panel-toplevel.background button label, -panel-toplevel.background button image, -panel-toplevel.background #tasklist-button label, -panel-toplevel.background #tasklist-button image { - color: inherit; } - -.mate-panel-menu-bar .wnck-pager, -panel-toplevel.background .wnck-pager { - color: #333e42; - background-color: black; } - .mate-panel-menu-bar .wnck-pager:hover, - panel-toplevel.background .wnck-pager:hover { - background-color: #073743; } - .mate-panel-menu-bar .wnck-pager:selected, - panel-toplevel.background .wnck-pager:selected { - color: #78b9e6; - background-color: #268bd2; } - -.mate-panel-menu-bar na-tray-applet, -panel-toplevel.background na-tray-applet { - -NaTrayApplet-icon-padding: 0; - -NaTrayApplet-icon-size: 16px; } - -.xfce4-panel.panel { - background-color: #05242c; - text-shadow: none; - -gtk-icon-shadow: none; } - -#tasklist-button { - color: rgba(101, 123, 131, 0.8); - border-radius: 0; - border: none; - background-color: rgba(5, 36, 44, 0); } - #tasklist-button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); } - #tasklist-button:checked { - color: white; - background-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -.mate-panel-menu-bar button:not(#tasklist-button), -panel-toplevel.background button:not(#tasklist-button), .xfce4-panel.panel button.flat, .xfce4-panel.panel button.sidebar-button { - color: #657b83; - border-radius: 0; - border: none; - background-color: rgba(5, 36, 44, 0); } - .mate-panel-menu-bar button:hover:not(#tasklist-button), - panel-toplevel.background button:hover:not(#tasklist-button), .xfce4-panel.panel button.flat:hover, .xfce4-panel.panel button.sidebar-button:hover { - border: none; - background-color: #0a4a5a; } - .mate-panel-menu-bar button:active:not(#tasklist-button), - panel-toplevel.background button:active:not(#tasklist-button), .xfce4-panel.panel button.flat:active, .xfce4-panel.panel button.sidebar-button:active, .mate-panel-menu-bar button:checked:not(#tasklist-button), - panel-toplevel.background button:checked:not(#tasklist-button), .xfce4-panel.panel button.flat:checked, .xfce4-panel.panel button.sidebar-button:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - .mate-panel-menu-bar button:active:not(#tasklist-button) label, - panel-toplevel.background button:active:not(#tasklist-button) label, .xfce4-panel.panel button.flat:active label, .xfce4-panel.panel button.sidebar-button:active label, .mate-panel-menu-bar button:active:not(#tasklist-button) image, - panel-toplevel.background button:active:not(#tasklist-button) image, .xfce4-panel.panel button.flat:active image, .xfce4-panel.panel button.sidebar-button:active image, .mate-panel-menu-bar button:checked:not(#tasklist-button) label, - panel-toplevel.background button:checked:not(#tasklist-button) label, .xfce4-panel.panel button.flat:checked label, .xfce4-panel.panel button.sidebar-button:checked label, .mate-panel-menu-bar button:checked:not(#tasklist-button) image, - panel-toplevel.background button:checked:not(#tasklist-button) image, .xfce4-panel.panel button.flat:checked image, .xfce4-panel.panel button.sidebar-button:checked image { - color: inherit; } - -.nautilus-window .floating-bar { - padding: 1px; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px 2px 0 0; } - .nautilus-window .floating-bar.bottom.left { - border-top-left-radius: 0; } - .nautilus-window .floating-bar.bottom.right { - border-top-right-radius: 0; } - .nautilus-window .floating-bar button { - border: none; - border-radius: 0; - min-height: 0; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(89, 128, 143, 0.8); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.4); } - .marlin-pathbar.pathbar image, .marlin-pathbar.pathbar image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: transparent; - background-color: #268bd2; } - .marlin-pathbar.pathbar:disabled { - color: rgba(89, 128, 143, 0.35); - border-color: rgba(0, 0, 0, 0.4); - background-color: rgba(0, 132, 166, 0.25); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - -gtk-icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:hover { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration .top { - border: 1px solid #000f12; - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #002b36, #002b36); - color: rgba(89, 128, 143, 0.8); - box-shadow: inset 0 1px #003745; } - UnityDecoration .top:backdrop { - border-bottom-width: 0; - color: rgba(89, 128, 143, 0.5); } - UnityDecoration .left, UnityDecoration .right, UnityDecoration .bottom, - UnityDecoration .left:backdrop, UnityDecoration .right:backdrop, UnityDecoration .bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, #000f12, #000f12); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: #004b5f; - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focus, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focus { - background-image: none; - border-image: none; } - -.lightdm.button:focus, -.lightdm.entry:focus { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar label { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #dcdfe3; - border-right: 1px solid #dcdfe3; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -toolbar.secondary-toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #dcdfe3; } - toolbar.secondary-toolbar button, .secondary-toolbar.inline-toolbar button { - padding: 0 3px 0 3px; } - -toolbar.bottom-toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #dcdfe3; - background-color: #F5F6F7; } - toolbar.bottom-toolbar button, .bottom-toolbar.inline-toolbar button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view, -iconview.source-list { - background-color: #F5F6F7; - color: #5c616c; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:hover, iconview.source-list:hover { - background-color: white; } - -.source-list.view:selected, iconview.source-list:selected, -.source-list.view:hover:selected, -iconview.source-list:hover:selected, -.source-list.view:selected:focus, -iconview.source-list:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list scrollbar, -.source-list junction { - border-image: none; - border-color: transparent; - background-color: #F5F6F7; - background-image: none; } - -.source-list.badge, -.source-list.badge:hover, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:hover:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:hover:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #5c616c; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GraniteWidgetsWelcome { - background-color: #fdf6e3; } - -GraniteWidgetsWelcome label { - color: #a9acb2; - font-size: 11px; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(92, 97, 108, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #fdf6e3, #fdf6e3); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, GraniteWidgetsPopOver iconview.sidebar, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry entry { - padding: 4px; } - -.h1 { - font-size: 24px; } - -.h2 { - font-size: 18px; } - -.h3 { - font-size: 11px; } - -.h4, -.category-label { - color: #8a8e96; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: #05242c; - color: #657b83; - font-weight: bold; - box-shadow: inset 0 -1px #010a0c; } - #panel_window menubar { - padding-left: 5px; } - #panel_window menubar, #panel_window menubar > menuitem { - background-color: transparent; - color: #657b83; - font-weight: bold; } - #panel_window menubar menuitem:disabled { - color: rgba(101, 123, 131, 0.5); } - #panel_window menubar menuitem:disabled label { - color: inherit; } - #panel_window menubar menu > menuitem { - font-weight: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font-weight: normal; - border-style: none; - background-color: transparent; - color: #5c616c; } - -#content_frame { - padding-bottom: 14px; - background-color: #F5F6F7; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame button { - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - #content_frame button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; } - #content_frame button:active, #content_frame button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - #content_frame button:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - #content_frame button:disabled label, #content_frame button:disabled { - color: rgba(92, 97, 108, 0.55); } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: #073642; - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px #073642; } - -#buttonbox_frame button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - #buttonbox_frame button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - #buttonbox_frame button:active, #buttonbox_frame button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - #buttonbox_frame button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -#login_window #user_combobox { - color: #5c616c; - font-size: 13px; } - #login_window #user_combobox menu { - font-weight: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font-weight: bold; } - -.nautilus-window paned > separator { - background-image: linear-gradient(to bottom, #073642, #073642); } - .nautilus-window paned > separator:dir(ltr) { - margin-left: -1px; } - .nautilus-window paned > separator:dir(rtl) { - margin-right: -1px; } - -filechooser paned > separator { - background-image: linear-gradient(to bottom, #073642, #073642); } - -filechooser.csd.background, filechooser placessidebar list, -.nautilus-window.csd.background, -.nautilus-window placessidebar list { - background-color: transparent; } - -filechooser placessidebar.sidebar, -.nautilus-window placessidebar.sidebar { - background-color: #073642; } - filechooser placessidebar.sidebar row.sidebar-row, - .nautilus-window placessidebar.sidebar row.sidebar-row { - border: none; - color: #657b83; } - filechooser placessidebar.sidebar row.sidebar-row .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row .sidebar-icon { - color: rgba(101, 123, 131, 0.6); } - filechooser placessidebar.sidebar row.sidebar-row.has-open-popup, filechooser placessidebar.sidebar row.sidebar-row:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup, - .nautilus-window placessidebar.sidebar row.sidebar-row:hover { - background-color: rgba(101, 123, 131, 0.15); } - filechooser placessidebar.sidebar row.sidebar-row:disabled, filechooser placessidebar.sidebar row.sidebar-row:disabled label, filechooser placessidebar.sidebar row.sidebar-row:disabled image, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled label, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled image { - color: rgba(101, 123, 131, 0.4); } - filechooser placessidebar.sidebar row.sidebar-row:selected.has-open-popup .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:selected .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:active:hover .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected.has-open-popup .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:active:hover .sidebar-icon { - color: inherit; } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button { - color: #657b83; } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:active, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:active { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:not(:hover):not(:active) > image, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:not(:hover):not(:active) > image { - opacity: 0.5; } - filechooser placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row, - .nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row { - color: #268bd2; } - filechooser placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon { - color: inherit; } - filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) .sidebar-icon { - color: #b58900; } - filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected { - background-color: #b58900; } - filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected .sidebar-icon { - color: #fdf6e3; } - filechooser placessidebar.sidebar separator, - .nautilus-window placessidebar.sidebar separator { - background-color: transparent; } - -filechooser.maximized placessidebar.sidebar, -.nautilus-window.maximized placessidebar.sidebar { - background-color: #073642; } - -.nemo-window .sidebar { - color: #657b83; - background-color: #073642; } - .nemo-window .sidebar .view, .nemo-window .sidebar iconview, .nemo-window .sidebar row { - background-color: transparent; - color: #657b83; } - .nemo-window .sidebar .view.cell:selected, .nemo-window .sidebar iconview.cell:selected, .nemo-window .sidebar row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - .nemo-window .sidebar .view.expander, .nemo-window .sidebar iconview.expander, .nemo-window .sidebar row.expander { - color: #365963; } - .nemo-window .sidebar .view.expander:hover, .nemo-window .sidebar iconview.expander:hover, .nemo-window .sidebar row.expander:hover { - color: #657b83; } - .nemo-window .sidebar separator { - background-color: transparent; } - -.caja-side-pane, -.caja-side-pane > notebook > stack > widget > box, -.caja-side-pane text, -.caja-side-pane treeview { - color: #657b83; - caret-color: #657b83; - background-color: #073642; } - -.caja-side-pane > box button:not(:active):not(:checked) { - color: #657b83; } - -.caja-side-pane .frame { - border-color: #05232b; } - -.caja-side-pane junction { - background-color: #05232b; } - -filechooser actionbar { - color: #657b83; - background-color: #073642; - border-color: #041c22; } - filechooser actionbar label, filechooser actionbar combobox { - color: #657b83; } - -.gedit-bottom-panel-paned { - background-color: #fdf6e3; } - -.gedit-side-panel-paned > separator { - background-image: linear-gradient(to bottom, #073642, #073642); } - -.gedit-bottom-panel-paned > separator { - background-image: linear-gradient(to bottom, #dcdfe3, #dcdfe3); } - -.gedit-document-panel { - background-color: #073642; } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel row { - color: #657b83; - background-color: rgba(101, 123, 131, 0); } - .gedit-document-panel row:hover { - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel row:active { - color: #fdf6e3; - background-color: #268bd2; } - .gedit-document-panel row:active button { - color: #fdf6e3; } - .gedit-document-panel row:selected, .gedit-document-panel row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; } - .gedit-document-panel row:hover:not(:selected) button:active { - color: #657b83; } - -filechooser actionbar button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .caja-side-pane > box button:hover:not(:active), filechooser actionbar button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - filechooser actionbar button:active, filechooser actionbar button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - filechooser actionbar button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -filechooser actionbar entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - filechooser actionbar entry image, filechooser actionbar entry image:hover { - color: inherit; } - filechooser actionbar entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - filechooser actionbar entry:disabled { - color: rgba(101, 123, 131, 0.55); - background-color: rgba(18, 137, 167, 0.25); } - -filechooser placessidebar.sidebar scrollbar, -.nautilus-window placessidebar.sidebar scrollbar, .nemo-window .sidebar scrollbar, .caja-side-pane scrollbar { - border-color: #05232b; } - filechooser placessidebar.sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, - .nautilus-window placessidebar.sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, .nemo-window .sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, .caja-side-pane scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { - background-color: #8da0a7; - border: 1px solid rgba(0, 0, 0, 0.3); } - filechooser placessidebar.sidebar scrollbar slider, - .nautilus-window placessidebar.sidebar scrollbar slider, .nemo-window .sidebar scrollbar slider, .caja-side-pane scrollbar slider { - background-color: rgba(141, 160, 167, 0.7); } - filechooser placessidebar.sidebar scrollbar slider:hover, - .nautilus-window placessidebar.sidebar scrollbar slider:hover, .nemo-window .sidebar scrollbar slider:hover, .caja-side-pane scrollbar slider:hover { - background-color: #9cacb2; } - filechooser placessidebar.sidebar scrollbar slider:hover:active, - .nautilus-window placessidebar.sidebar scrollbar slider:hover:active, .nemo-window .sidebar scrollbar slider:hover:active, .caja-side-pane scrollbar slider:hover:active { - background-color: #268bd2; } - filechooser placessidebar.sidebar scrollbar slider:disabled, - .nautilus-window placessidebar.sidebar scrollbar slider:disabled, .nemo-window .sidebar scrollbar slider:disabled, .caja-side-pane scrollbar slider:disabled { - background-color: transparent; } - filechooser placessidebar.sidebar scrollbar trough, - .nautilus-window placessidebar.sidebar scrollbar trough, .nemo-window .sidebar scrollbar trough, .caja-side-pane scrollbar trough { - background-color: #05232b; } - -@define-color theme_fg_color #5c616c; -@define-color theme_text_color #5c616c; -@define-color theme_bg_color #F5F6F7; -@define-color theme_base_color #fdf6e3; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #5c616c; -@define-color text_color #5c616c; -@define-color bg_color #F5F6F7; -@define-color base_color #fdf6e3; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #faf6eb; -@define-color insensitive_fg_color alpha(#5c616c, 0.5); -@define-color insensitive_base_color #fdf6e3; -@define-color theme_unfocused_fg_color #5c616c; -@define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #F5F6F7; -@define-color theme_unfocused_base_color #fdf6e3; -@define-color borders #dcdfe3; -@define-color unfocused_borders #dcdfe3; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #1e6ea7; -@define-color content_view_bg #fdf6e3; -@define-color wm_title alpha(#59808f, 0.8); -@define-color wm_unfocused_title alpha(#59808f, 0.5); -@define-color wm_bg #002b36; -@define-color wm_bg_unfocused #00313e; -@define-color wm_highlight #003745; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #dc322f; -@define-color wm_button_close_hover_bg #cb4b16; -@define-color wm_button_close_active_bg #dc322f; -@define-color wm_icon_close_bg #002b36; -@define-color wm_button_hover_bg #657b83; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #002b36; -@define-color wm_icon_bg #93a1a1; -@define-color wm_icon_unfocused_bg #657b83; -@define-color wm_icon_hover_bg #93a1a1; -@define-color wm_icon_active_bg #fdf6e3; diff --git a/common/gtk-3.0/3.20/gtk-solid.css b/common/gtk-3.0/3.20/gtk-solid.css deleted file mode 100644 index f6b0ee6..0000000 --- a/common/gtk-3.0/3.20/gtk-solid.css +++ /dev/null @@ -1,4312 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -GtkScrolledWindow-scrollbar-spacing: 0; - -GtkToolItemGroup-expander-size: 11; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -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; } - -.background { - color: #5c616c; - background-color: #F5F6F7; } - -*:disabled { - -gtk-icon-effect: dim; } - -.gtkstyle-fallback { - background-color: #F5F6F7; - color: #5c616c; } - .gtkstyle-fallback:hover { - background-color: white; - color: #5c616c; } - .gtkstyle-fallback:active { - background-color: #d9dde0; - color: #5c616c; } - .gtkstyle-fallback:disabled { - background-color: #faf6eb; - color: rgba(92, 97, 108, 0.55); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view, iconview, -.view text, -iconview text, -textview text { - color: #5c616c; - background-color: #fdf6e3; } - .view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, - .view text:selected, - iconview text:selected, - textview text:selected, - .view text:selected:focus, - iconview text:selected:focus, - textview text:selected:focus { - border-radius: 2px; } - -textview border { - background-color: #f9f6ed; } - -rubberband, flowbox rubberband, treeview.view rubberband, .content-view rubberband, -.rubberband { - border: 1px solid #1e6ea7; - background-color: rgba(30, 110, 167, 0.2); } - -flowbox flowboxchild { - padding: 3px; - border-radius: 2px; } - flowbox flowboxchild:selected { - outline-offset: -2px; } - -label.separator, popover label.separator, -popover.background label.separator { - color: #5c616c; } - -label selection { - color: #fdf6e3; - background-color: #268bd2; } - -label:disabled { - color: rgba(92, 97, 108, 0.55); } - -.dim-label, label.separator, popover label.separator, -popover.background label.separator, headerbar .subtitle, .titlebar:not(headerbar) .subtitle { - opacity: 0.55; } - -assistant .sidebar { - background-color: #fdf6e3; - border-top: 1px solid #dcdfe3; } - -assistant.csd .sidebar { - border-top-style: none; } - -assistant .sidebar label { - padding: 6px 12px; } - -assistant .sidebar label.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -textview { - background-color: #fdf6e3; } - -popover.osd, popover.magnifier, .csd popover.osd, .csd popover.magnifier, -popover.background.osd, -popover.background.magnifier, .csd popover.background.osd, .csd popover.background.magnifier, .osd .scale-popup, .osd { - color: #657b83; - border: none; - background-color: #073642; - background-clip: padding-box; - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -spinner { - background: none; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - spinner:checked { - opacity: 1; - animation: spin 1s linear infinite; } - spinner:checked:disabled { - opacity: 0.5; } - -entry { - min-height: 22px; - border: 1px solid; - padding: 2px 8px; - caret-color: currentColor; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; } - entry.search { - border-radius: 20px; } - entry image { - color: #7c7f84; } - entry image.left { - padding-left: 0; - padding-right: 5px; } - entry image.right { - padding-right: 0; - padding-left: 5px; } - entry.flat, entry.flat:focus { - min-height: 0; - padding: 2px; - background-image: none; - border-color: transparent; - border-radius: 0; } - entry:focus { - background-clip: border-box; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; } - entry:disabled { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(253, 246, 227, 0.55); } - entry.warning { - color: white; - border-color: #cb4b16; - background-color: #df8f68; } - entry.warning image { - color: white; } - entry.warning:focus { - color: white; - background-color: #cb4b16; - box-shadow: none; } - entry.warning selection, entry.warning selection:focus { - background-color: white; - color: #cb4b16; } - entry.error { - color: white; - border-color: #dc322f; - background-color: #e98077; } - entry.error image { - color: white; } - entry.error:focus { - color: white; - background-color: #dc322f; - box-shadow: none; } - entry.error selection, entry.error selection:focus { - background-color: white; - color: #dc322f; } - entry.search-missing { - color: white; - border-color: #dc322f; - background-color: #e98077; } - entry.search-missing image { - color: white; } - entry.search-missing:focus { - color: white; - background-color: #dc322f; - box-shadow: none; } - entry.search-missing selection, entry.search-missing selection:focus { - background-color: white; - color: #dc322f; } - entry:drop(active):focus, entry:drop(active) { - border-color: #b58900; - box-shadow: none; } - .osd entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .osd entry image, .osd entry image:hover { - color: inherit; } - .osd entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd entry:disabled { - color: rgba(101, 123, 131, 0.55); - background-color: rgba(18, 137, 167, 0.25); } - .osd entry selection:focus, .osd entry selection { - color: #268bd2; - background-color: #fdf6e3; } - entry progress { - margin: 0 -6px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - -treeview entry.flat, treeview entry { - border-radius: 0; - background-image: none; - background-color: #fdf6e3; } - treeview entry.flat:focus, treeview entry:focus { - border-color: #268bd2; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -button { - min-height: 22px; - min-width: 20px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 2px 6px; - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - button separator { - margin: 4px 1px; } - button.flat, button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - transition: none; } - button.flat:hover, button.sidebar-button:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - button.flat:hover:active, button.sidebar-button:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; - -gtk-icon-effect: highlight; } - button:active, button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; - background-clip: border-box; - transition-duration: 50ms; } - button:active:not(:disabled) label:disabled, button:checked:not(:disabled) label:disabled { - color: inherit; - opacity: 0.6; } - button:active { - color: #5c616c; } - button:active:hover, button:checked { - color: #fdf6e3; } - button.flat:disabled, button.sidebar-button:disabled { - border-color: transparent; - background-color: transparent; - background-image: none; } - button:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - button:disabled label, button:disabled { - color: rgba(92, 97, 108, 0.55); } - button:disabled:active, button:disabled:checked { - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - button:disabled:active label, button:disabled:active, button:disabled:checked label, button:disabled:checked { - color: rgba(253, 246, 227, 0.8); } - button.image-button { - min-width: 24px; - padding-left: 5px; - padding-right: 5px; } - button.text-button { - padding-left: 12px; - padding-right: 12px; } - button.text-button.image-button { - padding-left: 5px; - padding-right: 5px; } - button.text-button.image-button label:first-child { - padding-left: 8px; - padding-right: 2px; } - button.text-button.image-button label:last-child { - padding-right: 8px; - padding-left: 2px; } - button.text-button.image-button label:only-child { - padding-left: 8px; - padding-right: 8px; } - button.text-button.image-button.popup { - padding-right: 8px; - padding-left: 8px; } - button:drop(active), combobox:drop(active) button.combo { - color: #b58900; - border-color: #b58900; - box-shadow: none; } - button.osd { - color: #657b83; - background-color: #073642; - border-color: #03181d; } - button.osd.image-button { - padding: 0; - min-height: 36px; - min-width: 36px; } - button.osd:hover { - color: #268bd2; } - button.osd:active, button.osd:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - button.osd:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .osd button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd button:active, .osd button:checked { - background-clip: padding-box; - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - .osd button.flat, .osd button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd button.flat:hover, .osd button.sidebar-button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .osd button.flat:disabled, .osd button.sidebar-button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); - background-image: none; } - .osd button.flat:active, .osd button.sidebar-button:active, .osd button.flat:checked, .osd button.sidebar-button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - .osd .linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child), - .osd .linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active) + button:not(:checked):not(:active) { - box-shadow: none; } - button.suggested-action { - background-clip: border-box; - color: white; - background-color: #2aa198; - border-color: #2aa198; } - button.suggested-action.flat, button.suggested-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; } - button.suggested-action:hover { - background-clip: border-box; - color: white; - background-color: #35c9be; - border-color: #35c9be; } - button.suggested-action:active, button.suggested-action:checked { - background-clip: border-box; - color: white; - background-color: #1f7972; - border-color: #1f7972; } - button.suggested-action.flat:disabled, button.suggested-action.sidebar-button:disabled { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - button.suggested-action:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - button.suggested-action:disabled label, button.suggested-action:disabled { - color: rgba(92, 97, 108, 0.55); } - button.destructive-action { - background-clip: border-box; - color: white; - background-color: #dc322f; - border-color: #dc322f; } - button.destructive-action.flat, button.destructive-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; } - button.destructive-action:hover { - background-clip: border-box; - color: white; - background-color: #e35d5b; - border-color: #e35d5b; } - button.destructive-action:active, button.destructive-action:checked { - background-clip: border-box; - color: white; - background-color: #b9221f; - border-color: #b9221f; } - button.destructive-action.flat:disabled, button.destructive-action.sidebar-button:disabled { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - button.destructive-action:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - button.destructive-action:disabled label, button.destructive-action:disabled { - color: rgba(92, 97, 108, 0.55); } - .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; } - .stack-switcher > button.needs-attention > label, .stack-switcher > button.needs-attention > image, button stacksidebar row.needs-attention > label, stacksidebar button row.needs-attention > label { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 4px; } - .stack-switcher > button.needs-attention > label:dir(rtl), .stack-switcher > button.needs-attention > image:dir(rtl), button stacksidebar row.needs-attention > label:dir(rtl), stacksidebar button row.needs-attention > label:dir(rtl) { - background-position: left 3px, left 4px; } - button.font separator, button.file separator { - background-color: transparent; } - .inline-toolbar button, .inline-toolbar button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar toolbutton > button { - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - .inline-toolbar toolbutton > button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; } - .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - .inline-toolbar toolbutton > button:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .inline-toolbar toolbutton > button:disabled label, .inline-toolbar toolbutton > button:disabled { - color: rgba(92, 97, 108, 0.55); } - .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked { - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar toolbutton > button:disabled:active label, .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked label, .inline-toolbar toolbutton > button:disabled:checked { - color: rgba(253, 246, 227, 0.8); } - -.linked:not(.vertical):not(.path-bar) > entry + entry { - border-left-color: rgba(101, 123, 131, 0.3); } - -.linked:not(.vertical):not(.path-bar) > entry.error + entry, -.linked:not(.vertical):not(.path-bar) > entry + entry.error { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > entry.warning + entry, -.linked:not(.vertical):not(.path-bar) > entry + entry.warning { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, -.linked:not(.vertical):not(.path-bar) > entry.warning + entry.error { - border-left-color: #d43f23; } - -.linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child { - border-left-color: #b58900; } - -.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo { - border-left-color: #b58900; } - -.linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > button:active + entry, -.linked:not(.vertical):not(.path-bar) > button:checked + entry { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > button + button { - border-left-style: none; } - -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 1px 0 #657b83; } - -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.5); } - -.linked:not(.vertical):not(.path-bar) > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:disabled, -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked:not(.vertical):not(.path-bar) > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child) { - box-shadow: none; } - -.linked:not(.vertical).path-bar > button + button { - border-left-style: none; } - -.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4), inset -1px 0 rgba(101, 123, 131, 0.4); } - -.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.4); } - -.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4); } - -.linked.vertical > entry + entry { - border-top-color: rgba(101, 123, 131, 0.3); } - -.linked.vertical > entry.error + entry, -.linked.vertical > entry + entry.error { - border-top-color: #dc322f; } - -.linked.vertical > entry.warning + entry, -.linked.vertical > entry + entry.warning { - border-top-color: #cb4b16; } - -.linked.vertical > entry.error + entry.warning, -.linked.vertical > entry.warning + entry.error { - border-top-color: #d43f23; } - -.linked.vertical > entry + entry:focus:not(:last-child), -.linked.vertical > entry + entry:focus:last-child { - border-top-color: #268bd2; } - -.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: #268bd2; } - -.linked.vertical > entry + entry:drop(active):not(:last-child), -.linked.vertical > entry + entry:drop(active):last-child { - border-top-color: #b58900; } - -.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: #b58900; } - -.linked.vertical > entry + entry.warning:focus:not(:last-child), -.linked.vertical > entry + entry.warning:focus:last-child { - border-top-color: #cb4b16; } - -.linked.vertical > entry.warning:focus:not(:only-child) + entry, -.linked.vertical > entry.warning:focus:not(:only-child) + button, -.linked.vertical > entry.warning:focus:not(:only-child) + combobox > box > button.combo { - border-top-color: #cb4b16; } - -.linked.vertical > entry + entry.error:focus:not(:last-child), -.linked.vertical > entry + entry.error:focus:last-child { - border-top-color: #dc322f; } - -.linked.vertical > entry.error:focus:not(:only-child) + entry, -.linked.vertical > entry.error:focus:not(:only-child) + button, -.linked.vertical > entry.error:focus:not(:only-child) + combobox > box > button.combo { - border-top-color: #dc322f; } - -.linked.vertical > button:active + entry, -.linked.vertical > button:checked + entry { - border-top-color: #268bd2; } - -.linked.vertical > button + button { - border-top-style: none; } - -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 0 1px #657b83; } - -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { - box-shadow: inset 0 1px rgba(101, 123, 131, 0.5); } - -.linked.vertical > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:disabled, -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked.vertical > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child) { - box-shadow: none; } - -toolbar.inline-toolbar toolbutton > button.flat, .inline-toolbar toolbutton > button.flat, toolbar.inline-toolbar toolbutton > button.sidebar-button, .inline-toolbar toolbutton > button.sidebar-button, .linked:not(.vertical) > entry, -.linked:not(.vertical) > entry:focus, .inline-toolbar button, .inline-toolbar button:backdrop, .linked:not(.vertical) > button, -.linked:not(.vertical) > button:hover, -.linked:not(.vertical) > button:active, -.linked:not(.vertical) > button:checked, spinbutton:not(.vertical) button, spinbutton:not(.vertical) entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, .primary-toolbar .linked:not(.vertical).path-bar > button, headerbar .linked:not(.vertical).path-bar > button, .primary-toolbar .linked:not(.vertical).path-bar > button:hover, headerbar .linked:not(.vertical).path-bar > button:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:active, headerbar .linked:not(.vertical).path-bar > button:active, .primary-toolbar .linked:not(.vertical).path-bar > button:checked, headerbar .linked:not(.vertical).path-bar > button:checked, .primary-toolbar .linked:not(.vertical).path-bar > button:disabled, headerbar .linked:not(.vertical).path-bar > button:disabled, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:active, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:checked, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:disabled, .linked:not(.vertical) > combobox > box > button.combo:dir(ltr), .linked:not(.vertical) > combobox > box > button.combo:dir(rtl) { - border-radius: 0; - border-right-style: none; } - -.linked:not(.vertical) > entry:first-child, .inline-toolbar button:first-child, .linked:not(.vertical) > button:first-child, toolbar.inline-toolbar toolbutton:first-child > button.flat, .inline-toolbar toolbutton:first-child > button.flat, toolbar.inline-toolbar toolbutton:first-child > button.sidebar-button, .inline-toolbar toolbutton:first-child > button.sidebar-button, spinbutton:not(.vertical) button:first-child, spinbutton:not(.vertical) entry:first-child, .linked:not(.vertical) > combobox:first-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child, .primary-toolbar .linked:not(.vertical).path-bar > button:first-child, headerbar .linked:not(.vertical).path-bar > button:first-child, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -.linked:not(.vertical) > entry:last-child, .inline-toolbar button:last-child, .linked:not(.vertical) > button:last-child, toolbar.inline-toolbar toolbutton:last-child > button.flat, .inline-toolbar toolbutton:last-child > button.flat, toolbar.inline-toolbar toolbutton:last-child > button.sidebar-button, .inline-toolbar toolbutton:last-child > button.sidebar-button, spinbutton:not(.vertical) button:last-child, spinbutton:not(.vertical) entry:last-child, .linked:not(.vertical) > combobox:last-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child, .primary-toolbar .linked:not(.vertical).path-bar > button:last-child, headerbar .linked:not(.vertical).path-bar > button:last-child, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - border-right-style: solid; } - -.linked:not(.vertical) > entry:only-child, .inline-toolbar button:only-child, .linked:not(.vertical) > button:only-child, toolbar.inline-toolbar toolbutton:only-child > button.flat, .inline-toolbar toolbutton:only-child > button.flat, toolbar.inline-toolbar toolbutton:only-child > button.sidebar-button, .inline-toolbar toolbutton:only-child > button.sidebar-button, spinbutton:not(.vertical) button:only-child, spinbutton:not(.vertical) entry:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child, .primary-toolbar .linked:not(.vertical).path-bar > button:only-child, headerbar .linked:not(.vertical).path-bar > button:only-child, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:only-child { - border-radius: 3px; - border-style: solid; } - -.linked.vertical > entry, -.linked.vertical > entry:focus, .linked.vertical > button, -.linked.vertical > button:hover, -.linked.vertical > button:active, -.linked.vertical > button:checked, spinbutton.vertical button, spinbutton.vertical entry, .linked.vertical > combobox > box > button.combo { - border-radius: 0; - border-bottom-style: none; } - -.linked.vertical > entry:first-child, .linked.vertical > button:first-child, spinbutton.vertical button:first-child, spinbutton.vertical entry:first-child, .linked.vertical > combobox:first-child > box > button.combo { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -.linked.vertical > entry:last-child, .linked.vertical > button:last-child, spinbutton.vertical button:last-child, spinbutton.vertical entry:last-child, .linked.vertical > combobox:last-child > box > button.combo { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border-bottom-style: solid; } - -.linked.vertical > entry:only-child, .linked.vertical > button:only-child, spinbutton.vertical button:only-child, spinbutton.vertical entry:only-child, .linked.vertical > combobox:only-child > box > button.combo { - border-radius: 3px; - border-style: solid; } - -menuitem.button.flat, -modelbutton.flat, button:link, button:visited, button:link:hover, button:link:active, button:link:checked, button:visited:hover, button:visited:active, button:visited:checked, notebook > header > tabs > tab button.flat:hover, notebook > header > tabs > tab button.sidebar-button:hover, notebook > header > tabs > tab button.flat:active, notebook > header > tabs > tab button.sidebar-button:active, notebook > header > tabs > tab button.flat:active:hover, notebook > header > tabs > tab button.sidebar-button:active:hover, .app-notification button.flat, .app-notification button.sidebar-button, .app-notification button.flat:disabled, .app-notification button.sidebar-button:disabled, calendar.button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -menuitem.button.flat, -modelbutton.flat { - transition: none; - min-height: 24px; - padding-left: 8px; - padding-right: 8px; - outline-offset: -3px; - border-radius: 2px; } - menuitem.button.flat:hover, - modelbutton.flat:hover { - background-color: #edeff0; } - menuitem.button.flat:checked, - modelbutton.flat:checked { - color: #5c616c; } - menuitem.button.flat check:last-child, - menuitem.button.flat radio:last-child, - modelbutton.flat check:last-child, - modelbutton.flat radio:last-child { - margin-left: 8px; } - menuitem.button.flat check:first-child, - menuitem.button.flat radio:first-child, - modelbutton.flat check:first-child, - modelbutton.flat radio:first-child { - margin-right: 8px; } - -modelbutton.flat arrow.left { - -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); } - -modelbutton.flat arrow.right { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - -*:link, button:link, button:visited { - color: #1e6ea7; } - *:link:visited, button:visited { - color: #16527c; } - *:selected *:link:visited, *:selected button:visited:link, *:selected button:visited { - color: #a7cbdc; } - *:link:hover, button:hover:link, button:hover:visited { - color: #268bd2; } - *:selected *:link:hover, *:selected button:hover:link, *:selected button:hover:visited { - color: #e8ebe1; } - *:link:active, button:active:link, button:active:visited { - color: #1e6ea7; } - *:selected *:link:active, *:selected button:active:link, *:selected button:active:visited { - color: #d2e1e0; } - infobar.info *:link, infobar.info button:link, infobar.info button:visited, infobar.question *:link, infobar.question button:link, infobar.question button:visited, infobar.warning *:link, infobar.warning button:link, infobar.warning button:visited, infobar.error *:link, infobar.error button:link, infobar.error button:visited, *:link:selected, button:selected:link, button:selected:visited, headerbar.selection-mode .subtitle:link, .selection-mode.titlebar:not(headerbar) .subtitle:link, - *:selected *:link, - *:selected button:link, - *:selected button:visited { - color: #d2e1e0; } - -button:link > label, button:visited > label { - text-decoration-line: underline; } - -spinbutton:drop(active) { - box-shadow: none; } - -spinbutton button:active { - color: #fdf6e3; } - -spinbutton:disabled { - color: rgba(92, 97, 108, 0.55); } - -spinbutton:not(.vertical) entry { - min-width: 28px; } - -spinbutton:not(.vertical):dir(ltr) entry, -spinbutton:not(.vertical):dir(rtl) button.up { - border-radius: 3px 0 0 3px; } - -spinbutton:not(.vertical) > button + button { - border-left-style: none; } - -spinbutton:not(.vertical) > button:hover:not(:active), -spinbutton:not(.vertical) > button:hover + button { - box-shadow: inset 1px 0 #657b83; } - -spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), -spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.5); } - -spinbutton:not(.vertical) > button:first-child:hover:not(:active), -spinbutton:not(.vertical) > button.up:dir(rtl):hover:not(:active), -spinbutton:not(.vertical) > entry + button:not(:active):hover { - box-shadow: none; } - -spinbutton:not(.vertical) > entry:focus + button { - border-left-color: #268bd2; } - -spinbutton:not(.vertical) > entry:drop(active) + button { - border-left-color: #b58900; } - -.osd spinbutton:not(.vertical) > button:hover:not(:active), -.osd spinbutton:not(.vertical) > button:hover + button { - box-shadow: inset 1px 0 rgba(1, 9, 11, 0.4); } - -.osd spinbutton:not(.vertical) > button:first-child:hover:not(:active), -.osd spinbutton:not(.vertical) > button.up:dir(rtl):hover:not(:active), -.osd spinbutton:not(.vertical) > entry + button:not(:active):hover { - box-shadow: none; } - -.osd spinbutton:not(.vertical) > entry:focus + button { - border-left-color: rgba(1, 9, 11, 0.4); } - -spinbutton.vertical button, spinbutton.vertical entry { - padding-left: 4px; - padding-right: 4px; - min-width: 0; } - -spinbutton.vertical button.up { - border-radius: 3px 3px 0 0; } - -spinbutton.vertical > entry:focus + button { - border-top-color: #268bd2; } - -spinbutton.vertical > entry:drop(active) + button { - border-top-color: #b58900; } - -combobox button.combo { - min-width: 0; - padding-left: 8px; - padding-right: 8px; } - -combobox arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); - min-height: 16px; - min-width: 16px; } - -toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #F5F6F7; } - toolbar separator, .inline-toolbar separator { - background: none; } - toolbar.horizontal separator, .horizontal.inline-toolbar separator { - margin: 0 6px; } - toolbar.vertical separator, .vertical.inline-toolbar separator { - margin: 6px 0; } - .osd toolbar, .osd .inline-toolbar { - background-color: transparent; } - toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.9); } - toolbar.osd.left, .osd.left.inline-toolbar, toolbar.osd.right, .osd.right.inline-toolbar, toolbar.osd.top, .osd.top.inline-toolbar, toolbar.osd.bottom, .osd.bottom.inline-toolbar { - border-radius: 0; } - toolbar.osd.top, .osd.top.inline-toolbar { - border-width: 0 0 1px 0; } - toolbar.osd.bottom, .osd.bottom.inline-toolbar { - border-width: 1px 0 0 0; } - toolbar.osd.left, .osd.left.inline-toolbar { - border-width: 0 1px 0 0; } - toolbar.osd.right, .osd.right.inline-toolbar { - border-width: 0 0 0 1px; } - toolbar:not(.inline-toolbar) switch, .inline-toolbar:not(.inline-toolbar) switch, - toolbar:not(.inline-toolbar) scale, .inline-toolbar:not(.inline-toolbar) scale, - toolbar:not(.inline-toolbar) entry, .inline-toolbar:not(.inline-toolbar) entry, - toolbar:not(.inline-toolbar) spinbutton, .inline-toolbar:not(.inline-toolbar) spinbutton, - toolbar:not(.inline-toolbar) button, .inline-toolbar:not(.inline-toolbar) button { - margin-right: 1px; - margin-bottom: 1px; } - toolbar:not(.inline-toolbar) .linked > button, .inline-toolbar:not(.inline-toolbar) .linked > button, - toolbar:not(.inline-toolbar) .linked > entry, .inline-toolbar:not(.inline-toolbar) .linked > entry { - margin-right: 0; } - -.primary-toolbar:not(.libreoffice-toolbar) { - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #eee8d5, #e4dabc) 1 0 1 0; } - -.inline-toolbar { - background-color: #edeef0; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -searchbar { - background-color: #F5F6F7; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 0 1px; - padding: 3px; } - -actionbar { - padding: 6px; - border-top: 1px solid #dcdfe3; - background-color: #edeef0; } - -headerbar, -.titlebar:not(headerbar) { - min-height: 42px; - padding: 0 7px; - border-width: 0 0 1px; - border-style: solid; - border-color: #e4dabc; - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; - box-shadow: inset 0 1px #f2eee0; } - .csd headerbar, - .csd .titlebar:not(headerbar) { - background-color: #eee8d5; - border-color: #e4dabc; } - headerbar:backdrop, - .titlebar:backdrop:not(headerbar) { - transition: 200ms ease-out; - color: rgba(82, 93, 118, 0.5); - background-color: #f2eee0; } - .csd headerbar:backdrop, - .csd .titlebar:backdrop:not(headerbar) { - background-color: #f2eee0; } - headerbar .title, .titlebar:not(headerbar) .title { - padding-left: 12px; - padding-right: 12px; } - headerbar .subtitle, .titlebar:not(headerbar) .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - headerbar.selection-mode, - .selection-mode.titlebar:not(headerbar) { - color: #fdf6e3; - background-color: #268bd2; - border-color: #2380c1; - box-shadow: none; } - headerbar.selection-mode:backdrop, - .selection-mode.titlebar:backdrop:not(headerbar) { - background-color: #268bd2; - color: rgba(253, 246, 227, 0.6); } - headerbar.selection-mode .selection-menu, .selection-mode.titlebar:not(headerbar) .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - headerbar.selection-mode .selection-menu GtkArrow, .selection-mode.titlebar:not(headerbar) .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - headerbar.selection-mode .selection-menu .arrow, .selection-mode.titlebar:not(headerbar) .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized headerbar.selection-mode, - .maximized .selection-mode.titlebar:not(headerbar) { - background-color: #268bd2; } - .tiled headerbar, .tiled headerbar:backdrop, - .maximized headerbar, .maximized headerbar:backdrop, - .tiled .titlebar:not(headerbar), - .tiled .titlebar:backdrop:not(headerbar), - .maximized .titlebar:not(headerbar), - .maximized .titlebar:backdrop:not(headerbar) { - border-radius: 0; } - .maximized headerbar, - .maximized .titlebar:not(headerbar) { - background-color: #eee8d5; - border-color: #e4dabc; } - .maximized headerbar:backdrop, - .maximized .titlebar:backdrop:not(headerbar) { - background-color: #f2eee0; } - headerbar.default-decoration, - .csd headerbar.default-decoration, headerbar.default-decoration:backdrop, - .csd headerbar.default-decoration:backdrop, - .default-decoration.titlebar:not(headerbar), - .csd .default-decoration.titlebar:not(headerbar), - .default-decoration.titlebar:backdrop:not(headerbar), - .csd .default-decoration.titlebar:backdrop:not(headerbar) { - min-height: 28px; - padding: 0 3px; - background-color: #eee8d5; - border-bottom-width: 0; } - .maximized headerbar.default-decoration, .maximized - .csd headerbar.default-decoration, .maximized headerbar.default-decoration:backdrop, .maximized - .csd headerbar.default-decoration:backdrop, - .maximized .default-decoration.titlebar:not(headerbar), - .maximized - .csd .default-decoration.titlebar:not(headerbar), - .maximized .default-decoration.titlebar:backdrop:not(headerbar), - .maximized - .csd .default-decoration.titlebar:backdrop:not(headerbar) { - background-color: #eee8d5; } - -.titlebar { - border-radius: 4px 4px 0 0; } - -headerbar entry, headerbar button, headerbar separator { - margin-top: 6px; - margin-bottom: 6px; } - -separator:first-child + headerbar, separator:first-child + headerbar:backdrop, headerbar:first-child, headerbar:first-child:backdrop { - border-top-left-radius: 4px; } - .maximized separator:first-child + headerbar, - .tiled separator:first-child + headerbar, .maximized separator:first-child + headerbar:backdrop, - .tiled separator:first-child + headerbar:backdrop, .maximized headerbar:first-child, - .tiled headerbar:first-child, .maximized headerbar:first-child:backdrop, - .tiled headerbar:first-child:backdrop { - border-radius: 0; } - -headerbar:last-child, headerbar:last-child:backdrop { - border-top-right-radius: 4px; } - .maximized headerbar:last-child, - .tiled headerbar:last-child, .maximized headerbar:last-child:backdrop, - .tiled headerbar:last-child:backdrop { - border-radius: 0; } - -window > .titlebar:not(headerbar), window > .titlebar:not(headerbar):backdrop, -window.csd > .titlebar:not(headerbar), -window.csd > .titlebar:not(headerbar):backdrop { - padding: 0; - background: none; - border: none; - box-shadow: none; } - -.titlebar:not(headerbar) > separator { - background-image: linear-gradient(to bottom, #e4dabc, #e4dabc); } - -.primary-toolbar:not(.libreoffice-toolbar) separator, headerbar separator.titlebutton, .titlebar:not(headerbar) separator.titlebutton { - min-width: 1px; - min-height: 1px; - background: none; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(82, 93, 118, 0) 25%, rgba(82, 93, 118, 0.15) 25%, rgba(82, 93, 118, 0.15) 75%, rgba(82, 93, 118, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar:not(.libreoffice-toolbar) separator:backdrop, headerbar separator.titlebutton:backdrop, .titlebar:not(headerbar) separator.titlebutton:backdrop { - opacity: 0.6; } - -.primary-toolbar entry, headerbar entry { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(253, 246, 227, 0.9); } - .primary-toolbar entry image, headerbar entry image, .primary-toolbar entry image:hover, headerbar entry image:hover { - color: inherit; } - .primary-toolbar entry:backdrop, headerbar entry:backdrop { - opacity: 0.85; } - .primary-toolbar entry:focus, headerbar entry:focus { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; - background-clip: border-box; } - .primary-toolbar entry:focus image, headerbar entry:focus image { - color: #fdf6e3; } - .primary-toolbar entry:disabled, headerbar entry:disabled { - color: rgba(82, 93, 118, 0.35); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(253, 246, 227, 0.75); } - .primary-toolbar entry selection:focus, headerbar entry selection:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar entry progress, headerbar entry progress { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar entry.warning, headerbar entry.warning { - color: white; - border-color: #cb4b16; - background-color: #d98a62; } - .primary-toolbar entry.warning:focus, headerbar entry.warning:focus { - color: white; - background-color: #cb4b16; } - .primary-toolbar entry.warning selection, headerbar entry.warning selection, .primary-toolbar entry.warning selection:focus, headerbar entry.warning selection:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar entry.error, headerbar entry.error { - color: white; - border-color: #dc322f; - background-color: #e37b71; } - .primary-toolbar entry.error:focus, headerbar entry.error:focus { - color: white; - background-color: #dc322f; } - .primary-toolbar entry.error selection, headerbar entry.error selection, .primary-toolbar entry.error selection:focus, headerbar entry.error selection:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar button, headerbar button { - color: rgba(82, 93, 118, 0.8); - outline-offset: -3px; - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar button:backdrop, headerbar button:backdrop { - opacity: 0.7; } - .primary-toolbar button:hover, headerbar button:hover { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .primary-toolbar button:active, headerbar button:active, .primary-toolbar button:checked, headerbar button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; - background-clip: border-box; } - .primary-toolbar button:disabled, headerbar button:disabled { - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar button:disabled label, headerbar button:disabled label, .primary-toolbar button:disabled, headerbar button:disabled { - color: rgba(82, 93, 118, 0.35); } - .primary-toolbar button:disabled:active, headerbar button:disabled:active, .primary-toolbar button:disabled:checked, headerbar button:disabled:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.selection-mode.primary-toolbar button, headerbar.selection-mode button, .selection-mode.primary-toolbar button.flat, headerbar.selection-mode button.flat, .selection-mode.primary-toolbar button.sidebar-button, headerbar.selection-mode button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar):not(.stack-switcher) button:not(:last-child):not(:only-child), headerbar .linked:not(.vertical):not(.path-bar):not(.stack-switcher) button:not(:last-child):not(:only-child) { - margin-right: 1px; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > button, headerbar .linked:not(.vertical):not(.path-bar) > button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:hover, headerbar .linked:not(.vertical):not(.path-bar) > button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:active, headerbar .linked:not(.vertical):not(.path-bar) > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:checked, headerbar .linked:not(.vertical):not(.path-bar) > button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:disabled, headerbar .linked:not(.vertical):not(.path-bar) > button:disabled { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { - box-shadow: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, .primary-toolbar .linked:not(.vertical).path-bar > button, headerbar .linked:not(.vertical).path-bar > button { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover, headerbar .linked:not(.vertical).path-bar > button:hover { - background-color: rgba(255, 255, 255, 0.9); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, .primary-toolbar .linked:not(.vertical).path-bar > button:active, headerbar .linked:not(.vertical).path-bar > button:active, .primary-toolbar .linked:not(.vertical).path-bar > button:checked, headerbar .linked:not(.vertical).path-bar > button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, .primary-toolbar .linked:not(.vertical).path-bar > button:disabled, headerbar .linked:not(.vertical).path-bar > button:disabled { - color: rgba(82, 93, 118, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button + button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button + button, .primary-toolbar .linked:not(.vertical).path-bar > button + button, headerbar .linked:not(.vertical).path-bar > button + button { - border-left-style: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover, headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1), inset -1px 0 rgba(82, 93, 118, 0.1); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry { - border-left-color: rgba(82, 93, 118, 0); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.error + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error { - border-left-color: #dc322f; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning { - border-left-color: #cb4b16; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, headerbar .linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry.error, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry.error { - border-left-color: #d43f23; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child { - border-left-color: #268bd2; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #268bd2; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child { - border-left-color: #b58900; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo { - border-left-color: #b58900; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child { - border-left-color: #cb4b16; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #cb4b16; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child { - border-left-color: #dc322f; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #dc322f; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > button:active + entry, headerbar .linked:not(.vertical):not(.path-bar) > button:active + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:checked + entry, headerbar .linked:not(.vertical):not(.path-bar) > button:checked + entry { - border-left-color: #268bd2; } - -.primary-toolbar button.suggested-action, headerbar button.suggested-action { - background-clip: border-box; - color: white; - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar button.suggested-action.flat, headerbar button.suggested-action.flat, .primary-toolbar button.suggested-action.sidebar-button, headerbar button.suggested-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; } - .primary-toolbar button.suggested-action:hover, headerbar button.suggested-action:hover { - background-clip: border-box; - color: white; - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar button.suggested-action:active, headerbar button.suggested-action:active, .primary-toolbar button.suggested-action:checked, headerbar button.suggested-action:checked { - background-clip: border-box; - color: white; - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar button.suggested-action.flat:disabled, headerbar button.suggested-action.flat:disabled, .primary-toolbar button.suggested-action.sidebar-button:disabled, headerbar button.suggested-action.sidebar-button:disabled, .primary-toolbar button.suggested-action:disabled, headerbar button.suggested-action:disabled { - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar button.suggested-action.flat:disabled label, headerbar button.suggested-action.flat:disabled label, .primary-toolbar button.suggested-action.sidebar-button:disabled label, headerbar button.suggested-action.sidebar-button:disabled label, .primary-toolbar button.suggested-action.flat:disabled, headerbar button.suggested-action.flat:disabled, .primary-toolbar button.suggested-action.sidebar-button:disabled, headerbar button.suggested-action.sidebar-button:disabled, .primary-toolbar button.suggested-action:disabled label, headerbar button.suggested-action:disabled label, .primary-toolbar button.suggested-action:disabled, headerbar button.suggested-action:disabled { - color: rgba(82, 93, 118, 0.35); } - -.primary-toolbar button.suggested-action:backdrop, headerbar button.suggested-action:backdrop, .primary-toolbar button.suggested-action:backdrop, headerbar button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar button.destructive-action, headerbar button.destructive-action { - background-clip: border-box; - color: white; - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar button.destructive-action.flat, headerbar button.destructive-action.flat, .primary-toolbar button.destructive-action.sidebar-button, headerbar button.destructive-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; } - .primary-toolbar button.destructive-action:hover, headerbar button.destructive-action:hover { - background-clip: border-box; - color: white; - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar button.destructive-action:active, headerbar button.destructive-action:active, .primary-toolbar button.destructive-action:checked, headerbar button.destructive-action:checked { - background-clip: border-box; - color: white; - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar button.destructive-action.flat:disabled, headerbar button.destructive-action.flat:disabled, .primary-toolbar button.destructive-action.sidebar-button:disabled, headerbar button.destructive-action.sidebar-button:disabled, .primary-toolbar button.destructive-action:disabled, headerbar button.destructive-action:disabled { - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar button.destructive-action.flat:disabled label, headerbar button.destructive-action.flat:disabled label, .primary-toolbar button.destructive-action.sidebar-button:disabled label, headerbar button.destructive-action.sidebar-button:disabled label, .primary-toolbar button.destructive-action.flat:disabled, headerbar button.destructive-action.flat:disabled, .primary-toolbar button.destructive-action.sidebar-button:disabled, headerbar button.destructive-action.sidebar-button:disabled, .primary-toolbar button.destructive-action:disabled label, headerbar button.destructive-action:disabled label, .primary-toolbar button.destructive-action:disabled, headerbar button.destructive-action:disabled { - color: rgba(82, 93, 118, 0.35); } - -.primary-toolbar button.destructive-action:backdrop, headerbar button.destructive-action:backdrop, .primary-toolbar button.destructive-action:backdrop, headerbar button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar spinbutton:not(.vertical):focus, headerbar spinbutton:not(.vertical):focus { - color: #fdf6e3; - caret-color: #fdf6e3; } - -.primary-toolbar spinbutton:not(.vertical) button, headerbar spinbutton:not(.vertical) button, .primary-toolbar spinbutton:not(.vertical) button:disabled, headerbar spinbutton:not(.vertical) button:disabled { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - -.primary-toolbar spinbutton:not(.vertical) button:hover, headerbar spinbutton:not(.vertical) button:hover { - background-color: rgba(255, 255, 255, 0.9); } - -.primary-toolbar spinbutton:not(.vertical) button:active, headerbar spinbutton:not(.vertical) button:active, .primary-toolbar spinbutton:not(.vertical) button:checked, headerbar spinbutton:not(.vertical) button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - -.primary-toolbar spinbutton:not(.vertical) button:disabled, headerbar spinbutton:not(.vertical) button:disabled { - color: rgba(82, 93, 118, 0.4); } - -.primary-toolbar spinbutton:not(.vertical) > button + button, headerbar spinbutton:not(.vertical) > button + button { - border-left-style: none; } - -.primary-toolbar spinbutton:not(.vertical) > button:hover:not(:active), headerbar spinbutton:not(.vertical) > button:hover:not(:active), .primary-toolbar spinbutton:not(.vertical) > button:hover + button, headerbar spinbutton:not(.vertical) > button:hover + button { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - -.primary-toolbar spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), headerbar spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), .primary-toolbar spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled, headerbar spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - -.primary-toolbar spinbutton:not(.vertical) > button:first-child:hover:not(:active), headerbar spinbutton:not(.vertical) > button:first-child:hover:not(:active), .primary-toolbar spinbutton:not(.vertical) > entry + button:not(:active):hover, headerbar spinbutton:not(.vertical) > entry + button:not(:active):hover { - box-shadow: none; } - -.primary-toolbar spinbutton:not(.vertical) > entry:focus + button, headerbar spinbutton:not(.vertical) > entry:focus + button { - border-left-color: #268bd2; } - -.primary-toolbar combobox:disabled, headerbar combobox:disabled { - color: rgba(82, 93, 118, 0.2); } - -.primary-toolbar combobox > .linked > button.combo, headerbar combobox > .linked > button.combo { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(253, 246, 227, 0.9); } - .primary-toolbar combobox > .linked > button.combo image, headerbar combobox > .linked > button.combo image, .primary-toolbar combobox > .linked > button.combo image:hover, headerbar combobox > .linked > button.combo image:hover { - color: inherit; } - .primary-toolbar combobox > .linked > button.combo:hover, headerbar combobox > .linked > button.combo:hover { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; - box-shadow: none; } - .primary-toolbar combobox > .linked > button.combo:disabled, headerbar combobox > .linked > button.combo:disabled { - color: rgba(82, 93, 118, 0.35); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(253, 246, 227, 0.75); } - -.primary-toolbar combobox > .linked > entry.combo:dir(ltr), headerbar combobox > .linked > entry.combo:dir(ltr) { - border-right-style: none; } - .primary-toolbar combobox > .linked > entry.combo:dir(ltr):focus, headerbar combobox > .linked > entry.combo:dir(ltr):focus { - box-shadow: none; } - .primary-toolbar combobox > .linked > entry.combo:dir(ltr):focus, headerbar combobox > .linked > entry.combo:dir(ltr):focus { - box-shadow: 1px 0 #268bd2; } - -.primary-toolbar combobox > .linked > entry.combo:dir(rtl), headerbar combobox > .linked > entry.combo:dir(rtl) { - border-left-style: none; } - .primary-toolbar combobox > .linked > entry.combo:dir(rtl):focus, headerbar combobox > .linked > entry.combo:dir(rtl):focus { - box-shadow: none; } - .primary-toolbar combobox > .linked > entry.combo:dir(rtl):focus, headerbar combobox > .linked > entry.combo:dir(rtl):focus { - box-shadow: -1px 0 #268bd2; } - -.primary-toolbar combobox > .linked > button.combo:dir(ltr), headerbar combobox > .linked > button.combo:dir(ltr), .primary-toolbar combobox > .linked > button.combo:dir(ltr):hover, headerbar combobox > .linked > button.combo:dir(ltr):hover, .primary-toolbar combobox > .linked > button.combo:dir(ltr):active, headerbar combobox > .linked > button.combo:dir(ltr):active, .primary-toolbar combobox > .linked > button.combo:dir(ltr):checked, headerbar combobox > .linked > button.combo:dir(ltr):checked, .primary-toolbar combobox > .linked > button.combo:dir(ltr):disabled, headerbar combobox > .linked > button.combo:dir(ltr):disabled { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - -.primary-toolbar combobox > .linked > button.combo:dir(rtl), headerbar combobox > .linked > button.combo:dir(rtl), .primary-toolbar combobox > .linked > button.combo:dir(rtl):hover, headerbar combobox > .linked > button.combo:dir(rtl):hover, .primary-toolbar combobox > .linked > button.combo:dir(rtl):active, headerbar combobox > .linked > button.combo:dir(rtl):active, .primary-toolbar combobox > .linked > button.combo:dir(rtl):checked, headerbar combobox > .linked > button.combo:dir(rtl):checked, .primary-toolbar combobox > .linked > button.combo:dir(rtl):disabled, headerbar combobox > .linked > button.combo:dir(rtl):disabled { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.primary-toolbar switch:backdrop, headerbar switch:backdrop { - opacity: 0.75; } - -.primary-toolbar progressbar trough, headerbar progressbar trough { - background-color: rgba(82, 93, 118, 0.15); } - -.primary-toolbar progressbar:backdrop, headerbar progressbar:backdrop { - opacity: 0.75; } - -.primary-toolbar scale:backdrop, headerbar scale:backdrop { - opacity: 0.75; } - -.primary-toolbar scale slider, headerbar scale slider { - background-color: #fbfbfc; - border-color: rgba(82, 93, 118, 0.3); } - .primary-toolbar scale slider:hover, headerbar scale slider:hover { - background-color: white; - border-color: rgba(82, 93, 118, 0.3); } - .primary-toolbar scale slider:active, headerbar scale slider:active { - background-color: #268bd2; - border-color: #268bd2; } - .primary-toolbar scale slider:disabled, headerbar scale slider:disabled { - background-color: #f7f5f0; - border-color: rgba(82, 93, 118, 0.3); } - -.primary-toolbar scale trough, headerbar scale trough { - background-color: rgba(82, 93, 118, 0.15); } - .primary-toolbar scale trough:disabled, headerbar scale trough:disabled { - background-color: rgba(82, 93, 118, 0.1); } - -.path-bar button.text-button, .path-bar button.image-button, .path-bar button { - padding-left: 6px; - padding-right: 6px; } - -.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: 10px; } - -.path-bar button.text-button.image-button label:first-child, .path-bar button label:first-child { - padding-left: 10px; } - -.path-bar button.slider-button, .path-bar button:not(.image-button):not(.text-button) { - padding-left: 1px; - padding-right: 1px; } - -.path-bar button image { - padding-left: 4px; - padding-right: 4px; } - -treeview.view { - border-left-color: rgba(92, 97, 108, 0.15); - border-top-color: rgba(0, 0, 0, 0.1); } - * { - -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 acceleditor > label { - background-color: #268bd2; } - treeview.view:selected, treeview.view:selected:focus { - border-radius: 0; - border-left-color: #92c1db; - border-top-color: rgba(92, 97, 108, 0.1); } - treeview.view:disabled { - color: rgba(92, 97, 108, 0.55); } - treeview.view:disabled:selected { - color: #7cb6d9; } - treeview.view.separator { - min-height: 2px; - color: rgba(0, 0, 0, 0.1); } - treeview.view:drop(active) { - border-style: solid none; - border-width: 1px; - border-color: #41769f; } - 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: #adaca8; } - treeview.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - treeview.view.expander:hover { - color: #5c616c; } - treeview.view.expander:selected { - color: #bdd6de; } - treeview.view.expander:selected:hover { - color: #fdf6e3; } - treeview.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - treeview.view.progressbar, treeview.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-color: #268bd2; } - treeview.view.progressbar:selected, treeview.view.progressbar:selected:focus, treeview.view.progressbar:focus:selected, treeview.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-color: #fdf6e3; } - treeview.view.trough { - color: #5c616c; - background-color: #657b83; - border-radius: 3px; - border-width: 0; } - treeview.view.trough:selected, treeview.view.trough:selected:focus { - color: #fdf6e3; - background-color: rgba(0, 0, 0, 0.2); - border-radius: 3px; - border-width: 0; } - treeview.view header button { - min-height: 0; - min-width: 0; - padding: 3px 6px; - font-weight: bold; - color: #7c7f84; - background-color: #fdf6e3; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, #fdf6e3 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, #fdf6e3 80%) 0 1 0 0/0 1px 0 0 stretch; } - treeview.view header button:hover { - color: #268bd2; } - treeview.view header button:active { - color: #5c616c; } - treeview.view header button:active, treeview.view header button:hover { - background-color: #fdf6e3; } - treeview.view header button:active:hover { - color: #5c616c; } - treeview.view header button:disabled { - border-color: #F5F6F7; - background-image: none; } - treeview.view header button:last-child { - border-right-style: none; - border-image: none; } - treeview.view button.dnd, treeview.view button.dnd:selected, treeview.view button.dnd:hover, treeview.view button.dnd:active, - treeview.view header.button.dnd, - treeview.view header.button.dnd:selected, - treeview.view header.button.dnd:hover, - treeview.view header.button.dnd:active { - padding: 0 6px; - transition: none; - color: #fdf6e3; - background-color: #268bd2; - border-radius: 0; - border-style: none; } - -menubar, -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #eee8d5; - color: rgba(82, 93, 118, 0.8); } - menubar:backdrop, - .menubar:backdrop { - color: rgba(82, 93, 118, 0.5); } - menubar > menuitem, - .menubar > menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - menubar > menuitem:hover, - .menubar > menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - menubar > menuitem:disabled, - .menubar > menuitem:disabled { - color: rgba(82, 93, 118, 0.2); - border-color: transparent; } - -menu, -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; } - .csd menu, .csd - .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - menu separator, - .csd menu separator, - .menu separator, - .csd - .menu separator { - margin: 2px 0; - background-color: #fdf6e3; } - menu .separator:not(label), - .csd menu .separator:not(label), - .menu .separator:not(label), - .csd - .menu .separator:not(label) { - color: #fdf6e3; } - menu menuitem, - .menu menuitem { - min-height: 16px; - min-width: 40px; - padding: 5px; } - menu menuitem:hover, - .menu menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - menu menuitem:disabled, - .menu menuitem:disabled { - color: rgba(92, 97, 108, 0.55); } - menu menuitem arrow, - .menu menuitem arrow { - min-height: 16px; - min-width: 16px; } - menu menuitem arrow:dir(ltr), - .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) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); - margin-right: 10px; } - 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: 6px; - margin-left: 2px; } - menuitem check:dir(rtl), menuitem radio:dir(rtl) { - margin-left: 6px; - margin-right: 2px; } - menu > arrow, - .menu > arrow { - border-color: transparent; - background-color: transparent; - background-image: none; - min-width: 16px; - min-height: 16px; - padding: 4px; - background-color: #fdf6e3; - border-radius: 0; } - menu > arrow.top, - .menu > arrow.top { - margin-top: -6px; - border-bottom: 1px solid #ede7d7; - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } - menu > arrow.bottom, - .menu > arrow.bottom { - margin-bottom: -6px; - border-top: 1px solid #ede7d7; - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - menu > arrow:hover, - .menu > arrow:hover { - background-color: #ede7d7; } - menu > arrow:disabled, - .menu > arrow:disabled { - color: transparent; - background-color: transparent; - border-color: transparent; } - -popover, -popover.background { - padding: 2px; - border-radius: 3px; - background-clip: border-box; - background-color: #fdf6e3; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } - .csd popover, popover, .csd - popover.background, - popover.background { - border: 1px solid #cdd2d7; } - popover separator, - popover.background separator { - background-color: #fdf6e3; } - popover > list, - popover > .view, - popover > iconview, - popover > toolbar, - popover > .inline-toolbar, - popover.background > list, - popover.background > .view, - popover.background > iconview, - popover.background > toolbar, - popover.background > .inline-toolbar { - border-style: none; - background-color: transparent; } - -cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -notebook { - padding: 0; } - notebook.frame { - border: 1px solid #dcdfe3; } - notebook.frame > header { - margin: -1px; } - notebook.frame > header.top { - margin-bottom: 0; } - notebook.frame > header.bottom { - margin-top: 0; } - notebook.frame > header.left { - margin-right: 0; } - notebook.frame > header.right { - margin-left: 0; } - notebook.frame > header.top, notebook.frame > header.bottom { - padding-left: 0; - padding-right: 0; } - notebook.frame > header.left, notebook.frame > header.right { - padding-top: 0; - padding-bottom: 0; } - notebook > stack:not(:only-child) { - background-color: #fdf6e3; } - notebook > header { - padding: 2px; - background-color: #F5F6F7; } - notebook > header.top { - box-shadow: inset 0 -1px #dcdfe3; } - notebook > header.bottom { - box-shadow: inset 0 1px #dcdfe3; } - notebook > header.right { - box-shadow: inset 1px 0 #dcdfe3; } - notebook > header.left { - box-shadow: inset -1px 0 #dcdfe3; } - notebook > header.top { - padding-bottom: 0; } - notebook > header.top > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-bottom: none; - border-radius: 1px 1px 0 0; } - notebook > header.top > tabs > tab + tab { - margin-left: -1px; } - notebook > header.bottom { - padding-top: 0; } - notebook > header.bottom > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-top: none; - border-radius: 0 0 1px 1px; } - notebook > header.bottom > tabs > tab + tab { - margin-left: -1px; } - notebook > header.right { - padding-left: 0; } - notebook > header.right > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-left: none; - border-radius: 0 1px 1px 0; } - notebook > header.right > tabs > tab + tab { - margin-top: -1px; } - notebook > header.left { - padding-right: 0; } - notebook > header.left > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-right: none; - border-radius: 1px 0 0 1px; } - notebook > header.left > tabs > tab + tab { - margin-top: -1px; } - notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - notebook > header.top > tabs > arrow.up:last-child, notebook > header.bottom > tabs > arrow.up:last-child { - margin-left: 2px; } - 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.down:first-child, notebook > header.bottom > tabs > arrow.down:first-child { - margin-right: 2px; } - notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - notebook > header.left > tabs > arrow.up:last-child, notebook > header.right > tabs > arrow.up:last-child { - margin-top: 2px; } - 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.down:first-child, notebook > header.right > tabs > arrow.down:first-child { - margin-bottom: 2px; } - notebook > header > tabs > arrow { - color: rgba(92, 97, 108, 0.55); } - notebook > header > tabs > arrow:hover { - color: rgba(92, 97, 108, 0.775); } - notebook > header > tabs > arrow:active { - color: #5c616c; } - notebook > header > tabs > arrow:disabled { - color: rgba(92, 97, 108, 0.25); } - notebook > header.top > tabs > tab:hover:not(:checked) { - box-shadow: inset 0 -1px #dcdfe3; } - notebook > header.bottom > tabs > tab:hover:not(:checked) { - box-shadow: inset 0 1px #dcdfe3; } - notebook > header.left > tabs > tab:hover:not(:checked) { - box-shadow: inset -1px 0 #dcdfe3; } - notebook > header.right > tabs > tab:hover:not(:checked) { - box-shadow: inset 1px 0 #dcdfe3; } - notebook > header > tabs > tab { - color: rgba(92, 97, 108, 0.55); - background-color: rgba(253, 246, 227, 0); } - notebook > header > tabs > tab:hover:not(:checked) { - color: rgba(92, 97, 108, 0.775); - background-color: rgba(253, 246, 227, 0.5); - border-color: #dcdfe3; } - notebook > header > tabs > tab:checked { - color: #5c616c; - background-color: #fdf6e3; - border-color: #dcdfe3; } - notebook > header > tabs > tab button.flat, notebook > header > tabs > tab button.sidebar-button { - min-height: 22px; - min-width: 16px; - padding: 0; - color: #92959d; } - notebook > header > tabs > tab button.flat:hover, notebook > header > tabs > tab button.sidebar-button:hover { - color: #ff4d4d; } - notebook > header > tabs > tab button.flat:active, notebook > header > tabs > tab button.sidebar-button:active, notebook > header > tabs > tab button.flat:active:hover, notebook > header > tabs > tab button.sidebar-button:active:hover { - color: #268bd2; } - -scrollbar { - background-color: #fdf4de; - 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 #dcdfe3; } - scrollbar.bottom { - border-top: 1px solid #dcdfe3; } - scrollbar.left { - border-right: 1px solid #dcdfe3; } - scrollbar.right { - border-left: 1px solid #dcdfe3; } - scrollbar button { - border: none; } - 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-right-symbolic"); } - scrollbar.horizontal button.up { - -gtk-icon-source: -gtk-icontheme("pan-left-symbolic"); } - scrollbar slider { - min-width: 6px; - min-height: 6px; - margin: -1px; - border: 4px solid transparent; - border-radius: 8px; - background-clip: padding-box; - background-color: #b8babf; } - scrollbar slider:hover { - background-color: #c7c9cd; } - scrollbar slider:hover:active { - background-color: #268bd2; } - 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) { - opacity: 0.4; - border-color: transparent; - background-color: transparent; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { - margin: 0; - min-width: 4px; - min-height: 4px; - background-color: #8a8e96; - border: 1px solid rgba(255, 255, 255, 0.6); } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { - margin: 0 2px; - min-width: 40px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { - margin: 2px 0; - min-height: 40px; } - scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { - opacity: 0.99; } - scrollbar.horizontal slider { - min-width: 40px; } - scrollbar.vertical slider { - min-height: 40px; } - -switch { - font-size: 1px; - min-width: 52px; - min-height: 24px; - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: center center; } - switch slider { - min-width: 1px; - min-height: 1px; } - switch, switch slider { - outline-color: transparent; - color: transparent; - border: none; - box-shadow: none; } - -switch { - background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } - -menuitem:hover switch, -row:selected switch, -infobar switch { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -headerbar switch, -.primary-toolbar switch { - background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } - -switch:checked { - background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } - -menuitem:hover switch:checked, -row:selected switch:checked, -infobar switch:checked { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -headerbar switch:checked, -.primary-toolbar switch:checked { - background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } - -switch:disabled { - background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } - -menuitem:hover switch:disabled, -row:selected switch:disabled, -infobar switch:disabled { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -headerbar switch:disabled, -.primary-toolbar switch:disabled { - background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } - -switch:checked:disabled { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } - -menuitem:hover switch:checked:disabled, -row:selected switch:checked:disabled, -infobar switch:checked:disabled { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -headerbar switch:checked:disabled, -.primary-toolbar switch:checked:disabled { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } - -.check, -check, -treeview.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } - -.osd check, filechooser actionbar check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -menuitem check:hover, -.view check:selected, iconview check:selected, -treeview.check:selected, -row:selected check, -infobar check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:disabled, -check:disabled, -treeview.check:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } - -.osd check:disabled, filechooser actionbar check:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -menuitem check:disabled:hover, -.view check:disabled:selected, iconview check:disabled:selected, -treeview.check:disabled:selected, -row:selected check:disabled, -infobar check:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:indeterminate, -check:indeterminate, -treeview.check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } - -.osd check:indeterminate, filechooser actionbar check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -menuitem check:indeterminate:hover, -.view check:indeterminate:selected, iconview check:indeterminate:selected, -treeview.check:indeterminate:selected, -row:selected check:indeterminate, -infobar check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:indeterminate:disabled, -check:indeterminate:disabled, -treeview.check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } - -.osd check:indeterminate:disabled, filechooser actionbar check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -menuitem check:indeterminate:disabled:hover, -.view check:indeterminate:disabled:selected, iconview check:indeterminate:disabled:selected, -treeview.check:indeterminate:disabled:selected, -row:selected check:indeterminate:disabled, -infobar check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked, -check:checked, -treeview.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } - -.osd check:checked, filechooser actionbar check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -menuitem check:checked:hover, -.view check:checked:selected, iconview check:checked:selected, -treeview.check:checked:selected, -row:selected check:checked, -infobar check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:disabled, -check:checked:disabled, -treeview.check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } - -.osd check:checked:disabled, filechooser actionbar check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -menuitem check:checked:disabled:hover, -.view check:checked:disabled:selected, iconview check:checked:disabled:selected, -treeview.check:checked:disabled:selected, -row:selected check:checked:disabled, -infobar check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio, -radio, -treeview.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } - -.osd radio, filechooser actionbar radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -menuitem radio:hover, -.view radio:selected, iconview radio:selected, -treeview.radio:selected, -row:selected radio, -infobar radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:disabled, -radio:disabled, -treeview.radio:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } - -.osd radio:disabled, filechooser actionbar radio:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -menuitem radio:disabled:hover, -.view radio:disabled:selected, iconview radio:disabled:selected, -treeview.radio:disabled:selected, -row:selected radio:disabled, -infobar radio:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:indeterminate, -radio:indeterminate, -treeview.radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } - -.osd radio:indeterminate, filechooser actionbar radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -menuitem radio:indeterminate:hover, -.view radio:indeterminate:selected, iconview radio:indeterminate:selected, -treeview.radio:indeterminate:selected, -row:selected radio:indeterminate, -infobar radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:indeterminate:disabled, -radio:indeterminate:disabled, -treeview.radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } - -.osd radio:indeterminate:disabled, filechooser actionbar radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -menuitem radio:indeterminate:disabled:hover, -.view radio:indeterminate:disabled:selected, iconview radio:indeterminate:disabled:selected, -treeview.radio:indeterminate:disabled:selected, -row:selected radio:indeterminate:disabled, -infobar radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked, -radio:checked, -treeview.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } - -.osd radio:checked, filechooser actionbar radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -menuitem radio:checked:hover, -.view radio:checked:selected, iconview radio:checked:selected, -treeview.radio:checked:selected, -row:selected radio:checked, -infobar radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:disabled, -radio:checked:disabled, -treeview.radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } - -.osd radio:checked:disabled, filechooser actionbar radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -menuitem radio:checked:disabled:hover, -.view radio:checked:disabled:selected, iconview radio:checked:disabled:selected, -treeview.radio:checked:disabled:selected, -row:selected radio:checked:disabled, -infobar radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -.view.content-view.check:not(list), iconview.content-view.check:not(list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); - background-color: transparent; } - -.view.content-view.check:checked:not(list), iconview.content-view.check:checked:not(list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png")); - background-color: transparent; } - -checkbutton.text-button, radiobutton.text-button { - padding: 2px 0; - outline-offset: 0; } - -checkbutton label:not(:only-child):first-child, radiobutton label:not(:only-child):first-child { - margin-left: 4px; } - -checkbutton label:not(:only-child):last-child, radiobutton label:not(:only-child):last-child { - margin-right: 4px; } - -check, -radio { - min-width: 16px; - min-height: 16px; - margin: 0 2px; } - check:only-child, - menu menuitem check, - radio:only-child, - menu menuitem - radio { - margin: 0; } - -scale { - min-height: 15px; - min-width: 15px; - padding: 3px; } - scale.horizontal trough { - padding: 0 4px; } - scale.horizontal highlight, scale.horizontal fill { - margin: 0 -4px; } - scale.vertical trough { - padding: 4px 0; } - scale.vertical highlight, scale.vertical fill { - margin: -4px 0; } - scale slider { - min-height: 15px; - min-width: 15px; - margin: -6px; } - scale.fine-tune slider { - margin: -4px; } - 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: 4.5px; - border-radius: 2.5px; - background-color: #657b83; } - scale trough:disabled { - background-color: rgba(101, 123, 131, 0.55); } - .osd scale trough { - background-color: #0a5062; } - .osd scale trough highlight { - background-color: #268bd2; } - menuitem:hover scale trough, - row:selected scale trough, - infobar scale trough { - background-color: rgba(0, 0, 0, 0.2); } - menuitem:hover scale trough highlight, - row:selected scale trough highlight, - infobar scale trough highlight { - background-color: #fdf6e3; } - menuitem:hover scale trough highlight:disabled, - row:selected scale trough highlight:disabled, - infobar scale trough highlight:disabled { - background-color: #9cc6db; } - menuitem:hover scale trough:disabled, - row:selected scale trough:disabled, - infobar scale trough:disabled { - background-color: rgba(0, 0, 0, 0.1); } - scale highlight { - border-radius: 2.5px; - background-color: #268bd2; } - scale highlight:disabled { - background-color: rgba(38, 139, 210, 0.55); } - scale fill { - border-radius: 2.5px; - background-color: rgba(38, 139, 210, 0.5); } - scale fill:disabled { - background-color: transparent; } - scale slider { - background-color: #fbfbfc; - border: 1px solid rgba(45, 55, 59, 0.5); - border-radius: 100%; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-property: background, border; } - scale slider:hover { - background-color: white; } - scale slider:active { - background-clip: border-box; - background-color: #268bd2; - border-color: #268bd2; } - scale slider:disabled { - background-color: #f9f6ec; - border-color: rgba(45, 55, 59, 0.3); } - menuitem:hover scale slider, - row:selected scale slider, - infobar scale slider { - background-clip: border-box; - background-color: #fdf6e3; - border-color: #fdf6e3; } - menuitem:hover scale slider:hover, - row:selected scale slider:hover, - infobar scale slider:hover { - background-color: #dde6e0; - border-color: #dde6e0; } - menuitem:hover scale slider:active, - row:selected scale slider:active, - infobar scale slider:active { - background-color: #92c1db; - border-color: #92c1db; } - menuitem:hover scale slider:disabled, - row:selected scale slider:disabled, - infobar scale slider:disabled { - background-color: #9cc6db; - border-color: #9cc6db; } - .osd scale slider { - background-clip: border-box; - background-color: #268bd2; - border-color: #268bd2; } - .osd scale slider:hover { - background-color: #4ca2df; - border-color: #4ca2df; } - .osd scale slider:active { - background-color: #1e6ea7; - border-color: #1e6ea7; } - scale value { - color: alpha(currentColor,0.4); } - scale marks { - color: alpha(currentColor,0.4); } - scale marks.top { - margin-bottom: 1px; - margin-top: -4px; } - scale marks.bottom { - margin-top: 1px; - margin-bottom: -4px; } - scale marks.top { - margin-right: 1px; - margin-left: -4px; } - scale marks.bottom { - margin-left: 1px; - margin-right: -4px; } - scale.fine-tune marks.top { - margin-bottom: 0px; - margin-top: -2px; } - scale.fine-tune marks.bottom { - margin-top: 0px; - margin-bottom: -2px; } - scale.fine-tune marks.top { - margin-right: 0px; - margin-left: -2px; } - scale.fine-tune marks.bottom { - margin-left: 0px; - margin-right: -2px; } - scale.horizontal indicator { - min-height: 3px; - min-width: 1px; } - scale.horizontal.fine-tune indicator { - min-height: 2px; } - scale.vertical indicator { - min-height: 1px; - min-width: 3px; } - scale.vertical.fine-tune indicator { - min-width: 2px; } - -progressbar { - padding: 0; - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - progressbar.osd { - min-width: 3px; - min-height: 3px; - background-color: transparent; } - progressbar.osd trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - progressbar progress { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - row:selected progressbar progress, - infobar progressbar progress { - background-color: #fdf6e3; } - progressbar trough { - border: none; - border-radius: 3px; - background-color: #657b83; } - row:selected progressbar trough, - infobar progressbar trough { - background-color: rgba(0, 0, 0, 0.2); } - -levelbar block { - min-width: 32px; - min-height: 1px; } - -levelbar.vertical block { - min-width: 1px; - min-height: 32px; } - -levelbar trough { - border: none; - padding: 3px; - border-radius: 3px; - background-color: #657b83; } - -levelbar.horizontal.discrete block { - margin: 0 1px; } - -levelbar.vertical.discrete block { - margin: 1px 0; } - -levelbar block:not(.empty) { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - -levelbar block.low { - border-color: #cb4b16; - background-color: #cb4b16; } - -levelbar block.high { - border-color: #268bd2; - background-color: #268bd2; } - -levelbar block.full { - border-color: #859900; - background-color: #859900; } - -levelbar block.empty { - background-color: rgba(92, 97, 108, 0.2); - border-color: rgba(92, 97, 108, 0.2); } - -printdialog paper { - border: 1px solid #dcdfe3; - background: #fdf6e3; - padding: 0; } - -printdialog .dialog-action-box { - margin: 12px; } - -frame > border, -.frame { - margin: 0; - padding: 0; - border-radius: 0; - border: 1px solid #dcdfe3; } - -frame.flat > border, -frame > border.flat, -.frame.flat { - border-style: none; } - -scrolledwindow viewport.frame { - border-style: none; } - -scrolledwindow overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 100%; - background-repeat: no-repeat; - background-position: right center; - background-color: transparent; - border: none; - box-shadow: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow junction { - border-color: transparent; - border-image: linear-gradient(to bottom, #dcdfe3 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #fdf4de; } - scrolledwindow junction:dir(rtl) { - border-image-slice: 0 1 0 0; } - -separator { - background-color: rgba(0, 0, 0, 0.1); - min-width: 1px; - min-height: 1px; } - -list { - background-color: #fdf6e3; - border-color: #dcdfe3; } - list row { - padding: 2px; } - -row:not(:hover) { - transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - -row.activatable.has-open-popup, row.activatable:hover { - background-color: rgba(0, 0, 0, 0.05); } - -row.activatable:active { - color: #5c616c; } - -row.activatable:disabled { - color: rgba(92, 97, 108, 0.55); } - row.activatable:disabled image { - color: inherit; } - -row.activatable:selected:active { - color: #fdf6e3; } - -row.activatable:selected.has-open-popup, row.activatable:selected:hover { - background-color: #227dbd; } - -.app-notification { - padding: 10px; - color: #657b83; - background-color: #073642; - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: #021014; } - .app-notification border { - border: none; } - .app-notification button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .app-notification button.flat, .app-notification button.sidebar-button { - border-color: rgba(38, 139, 210, 0); } - .app-notification button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - .app-notification button:active, .app-notification button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -expander arrow { - min-width: 16px; - min-height: 16px; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - expander arrow:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - expander arrow:hover { - color: #aaaeb7; } - expander arrow:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -calendar { - color: #5c616c; - border: 1px solid #dcdfe3; - border-radius: 3px; - padding: 2px; } - calendar:selected { - border-radius: 1.5px; } - calendar.header { - color: #5c616c; - border: none; } - calendar.button { - color: rgba(92, 97, 108, 0.45); } - calendar.button:hover { - color: #5c616c; } - calendar.button:disabled { - color: rgba(92, 97, 108, 0.55); } - calendar:indeterminate { - color: alpha(currentColor,0.55); } - calendar.highlight { - color: #5c616c; } - -messagedialog .titlebar { - min-height: 20px; - background-color: #eee8d5; - border-bottom: 1px solid #e4dabc; } - -messagedialog .dialog-action-area button { - padding: 8px; - min-height: 0; } - -messagedialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - -messagedialog.csd .dialog-action-area button { - border-bottom-style: none; } - -messagedialog.csd .dialog-action-area button { - border-radius: 0; - border-right-style: none; } - -messagedialog.csd .dialog-action-area button:last-child { - border-radius: 0 0 3px 0; - border-right-style: none; } - -messagedialog.csd .dialog-action-area button:first-child { - border-radius: 0 0 0 3px; - border-left-style: none; } - -messagedialog.csd .dialog-action-area button:only-child { - border-radius: 0 0 3px 3px; - border-left-style: none; - border-right-style: none; } - -filechooser #pathbarbox { - border-bottom: 1px solid rgba(220, 223, 227, 0.5); } - -filechooserbutton:drop(active) { - box-shadow: none; - border-color: transparent; } - -.sidebar { - border-style: none; - background-color: #fbfbfc; } - stacksidebar.sidebar:dir(ltr) list, - stacksidebar.sidebar.left list, - stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) { - border-right: 1px solid #dcdfe3; - border-left-style: none; } - stacksidebar.sidebar:dir(rtl) list, - stacksidebar.sidebar.right list, .sidebar:dir(rtl), .sidebar.right { - border-left: 1px solid #dcdfe3; - border-right-style: none; } - .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; } - -placessidebar > viewport.frame { - border-style: none; } - -placessidebar row { - min-height: 30px; - padding: 0px; } - placessidebar row > revealer { - padding: 0 10px; } - 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-width: 22px; - min-height: 22px; - margin-top: 2px; - margin-bottom: 2px; - padding: 0; - border-radius: 100%; - -gtk-outline-radius: 100%; } - button.sidebar-button:not(:hover):not(:active) > image { - opacity: 0.5; } - placessidebar row.sidebar-placeholder-row { - padding: 0 8px; - min-height: 2px; - background-image: linear-gradient(to bottom, #b58900, #b58900); - background-clip: content-box; } - placessidebar row.sidebar-new-bookmark-row { - color: #268bd2; } - placessidebar row:drop(active):not(:disabled) { - box-shadow: inset 0 1px #b58900, inset 0 -1px #b58900; } - placessidebar row:drop(active):not(:disabled), placessidebar row:drop(active):not(:disabled) label, placessidebar row:drop(active):not(:disabled) image { - color: #b58900; } - placessidebar row:drop(active):not(:disabled):selected { - background-color: #b58900; } - placessidebar row:drop(active):not(:disabled):selected, placessidebar row:drop(active):not(:disabled):selected label, placessidebar row:drop(active):not(:disabled):selected image { - color: #fdf6e3; } - -placesview .server-list-button > image { - -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 > actionbar > revealer > box > label { - padding-left: 8px; - padding-right: 8px; } - -paned > separator { - min-width: 1px; - min-height: 1px; - -gtk-icon-source: none; - border-style: none; - background-color: transparent; - background-image: linear-gradient(to bottom, #dcdfe3, #dcdfe3); - background-size: 1px 1px; } - paned > separator:selected { - background-image: linear-gradient(to bottom, #268bd2, #268bd2); } - paned > separator.wide { - min-width: 5px; - min-height: 5px; - background-color: #F5F6F7; - background-image: linear-gradient(to bottom, #dcdfe3, #dcdfe3), linear-gradient(to bottom, #dcdfe3, #dcdfe3); - background-size: 1px 1px, 1px 1px; } - -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; } - -infobar { - border-style: none; } - infobar.info, infobar.question, infobar.warning, infobar.error { - background-color: #268bd2; - color: #fdf6e3; - caret-color: currentColor; } - infobar.info selection, infobar.question selection, infobar.warning selection, infobar.error selection { - color: #268bd2; - background-color: #fdf6e3; } - -.selection-mode.primary-toolbar button:hover, headerbar.selection-mode button:hover, row:selected button, infobar.info button, infobar.question button, infobar.warning button, infobar.error button, .nautilus-window .floating-bar button { - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - -row:selected button.flat, row:selected button.sidebar-button, infobar.info button.flat, infobar.info button.sidebar-button, infobar.question button.flat, infobar.question button.sidebar-button, infobar.warning button.flat, infobar.warning button.sidebar-button, infobar.error button.flat, infobar.error button.sidebar-button, .nautilus-window .floating-bar button.flat, .nautilus-window .floating-bar button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .selection-mode.primary-toolbar button:disabled, headerbar.selection-mode button:disabled, row:selected button.flat:disabled, row:selected button.sidebar-button:disabled, infobar.info button.flat:disabled, infobar.info button.sidebar-button:disabled, infobar.question button.flat:disabled, infobar.question button.sidebar-button:disabled, infobar.warning button.flat:disabled, infobar.warning button.sidebar-button:disabled, infobar.error button.flat:disabled, infobar.error button.sidebar-button:disabled, .nautilus-window .floating-bar button.flat:disabled, .nautilus-window .floating-bar button.sidebar-button:disabled, .selection-mode.primary-toolbar button:disabled label, headerbar.selection-mode button:disabled label, row:selected button.flat:disabled label, row:selected button.sidebar-button:disabled label, infobar.info button.flat:disabled label, infobar.info button.sidebar-button:disabled label, infobar.question button.flat:disabled label, infobar.question button.sidebar-button:disabled label, infobar.warning button.flat:disabled label, infobar.warning button.sidebar-button:disabled label, infobar.error button.flat:disabled label, infobar.error button.sidebar-button:disabled label, .nautilus-window .floating-bar button.flat:disabled label, .nautilus-window .floating-bar button.sidebar-button:disabled label { - color: rgba(253, 246, 227, 0.4); } - -row:selected button:hover, infobar.info button:hover, infobar.question button:hover, infobar.warning button:hover, infobar.error button:hover, .nautilus-window .floating-bar button:hover { - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - -.selection-mode.primary-toolbar button:active, headerbar.selection-mode button:active, .selection-mode.primary-toolbar button:checked, headerbar.selection-mode button:checked, row:selected button:active, infobar.info button:active, infobar.question button:active, infobar.warning button:active, infobar.error button:active, .nautilus-window .floating-bar button:active, .selection-mode.primary-toolbar button:hover:active, headerbar.selection-mode button:hover:active, .selection-mode.primary-toolbar button:hover:checked, headerbar.selection-mode button:hover:checked, row:selected button:active:hover, infobar.info button:active:hover, infobar.question button:active:hover, infobar.warning button:active:hover, infobar.error button:active:hover, .nautilus-window .floating-bar button:active:hover, row:selected button:checked, infobar.info button:checked, infobar.question button:checked, infobar.warning button:checked, infobar.error button:checked, .nautilus-window .floating-bar button:checked { - color: #268bd2; - background-color: #fdf6e3; - border-color: #fdf6e3; } - -row:selected button:disabled, infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, .nautilus-window .floating-bar button:disabled { - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.4); } - row:selected button:disabled, infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, .nautilus-window .floating-bar button:disabled, row:selected button:disabled label, infobar.info button:disabled label, infobar.question button:disabled label, infobar.warning button:disabled label, infobar.error button:disabled label, .nautilus-window .floating-bar button:disabled label { - color: rgba(253, 246, 227, 0.5); } - .selection-mode.primary-toolbar button:disabled:active, headerbar.selection-mode button:disabled:active, .selection-mode.primary-toolbar button:disabled:checked, headerbar.selection-mode button:disabled:checked, row:selected button:disabled:active, infobar.info button:disabled:active, infobar.question button:disabled:active, infobar.warning button:disabled:active, infobar.error button:disabled:active, .nautilus-window .floating-bar button:disabled:active, .selection-mode.primary-toolbar button:disabled:checked, headerbar.selection-mode button:disabled:checked, .selection-mode.primary-toolbar button:disabled:active, headerbar.selection-mode button:disabled:active, row:selected button:disabled:checked, infobar.info button:disabled:checked, infobar.question button:disabled:checked, infobar.warning button:disabled:checked, infobar.error button:disabled:checked, .nautilus-window .floating-bar button:disabled:checked { - color: #268bd2; - background-color: rgba(253, 246, 227, 0.5); - border-color: rgba(253, 246, 227, 0.4); } - -tooltip { - border-radius: 2px; - box-shadow: none; } - tooltip.background { - background-color: #0c5c70; - background-clip: padding-box; } - tooltip.background label { - padding: 4px; } - tooltip decoration { - background-color: transparent; } - tooltip * { - background-color: transparent; - color: #657b83; } - -colorswatch, colorswatch:drop(active) { - border-style: none; } - -colorswatch.top { - border-top-left-radius: 2.5px; - border-top-right-radius: 2.5px; } - colorswatch.top overlay { - border-top-left-radius: 2px; - border-top-right-radius: 2px; } - -colorswatch.bottom { - border-bottom-left-radius: 2.5px; - border-bottom-right-radius: 2.5px; } - colorswatch.bottom overlay { - border-bottom-left-radius: 2px; - border-bottom-right-radius: 2px; } - -colorswatch.left, colorswatch:first-child:not(.top) { - border-top-left-radius: 2.5px; - border-bottom-left-radius: 2.5px; } - colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { - border-top-left-radius: 2px; - border-bottom-left-radius: 2px; } - -colorswatch.right, colorswatch:last-child:not(.bottom) { - border-top-right-radius: 2.5px; - border-bottom-right-radius: 2.5px; } - colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { - border-top-right-radius: 2px; - border-bottom-right-radius: 2px; } - -colorswatch.dark overlay { - color: rgba(255, 255, 255, 0.7); } - colorswatch.dark overlay:hover { - border-color: rgba(0, 0, 0, 0.5); } - -colorswatch.light overlay { - color: rgba(0, 0, 0, 0.7); } - colorswatch.light overlay:hover { - border-color: rgba(0, 0, 0, 0.3); } - -colorswatch overlay { - border: 1px solid rgba(0, 0, 0, 0.15); } - colorswatch overlay:hover { - background-color: rgba(255, 255, 255, 0.2); } - -colorswatch:disabled { - opacity: 0.5; } - colorswatch:disabled overlay { - border-color: rgba(0, 0, 0, 0.6); - box-shadow: none; } - -colorswatch#add-color-button { - border-style: solid; - border-width: 1px; - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - colorswatch#add-color-button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; } - colorswatch#add-color-button overlay { - border-color: transparent; - background-color: transparent; - background-image: none; } - -button.color { - padding: 0; } - button.color colorswatch:first-child:last-child, button.color colorswatch:first-child:last-child overlay { - margin: 4px; - border-radius: 0; } - -colorchooser .popover.osd { - border-radius: 3px; } - -.content-view { - background-color: #fdf6e3; } - .content-view:hover { - -gtk-icon-effect: highlight; } - -.scale-popup button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; } - -.context-menu, popover.touch-selection, .csd popover.touch-selection, -popover.background.touch-selection, .csd popover.background.touch-selection { - font: initial; } - -.monospace { - font-family: Monospace; } - -button.circular, button.nautilus-circular-button.image-button, -button.circular-button { - padding: 0; - min-width: 16px; - min-height: 24px; - padding: 2px 6px; - border-radius: 50%; - -gtk-outline-radius: 50%; } - button.circular label, button.nautilus-circular-button.image-button label, - button.circular-button label { - padding: 0; } - -.keycap { - min-width: 16px; - min-height: 20px; - padding: 3px 6px 4px 6px; - color: #5c616c; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; - border-radius: 2.5px; - box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.05); } - -stackswitcher button.text-button { - min-width: 80px; } - -stackswitcher button.circular, stackswitcher button.nautilus-circular-button.image-button { - min-width: 0; } - -*:drop(active):focus, -*:drop(active) { - box-shadow: inset 0 0 0 1px #b58900; } - -decoration { - border-radius: 4px 4px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 8px 8px 0 rgba(0, 0, 0, 0.2); - margin: 10px; } - decoration:backdrop { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 8px 8px 0 transparent, 0 5px 5px 0 rgba(0, 0, 0, 0.2); - transition: 200ms ease-out; } - .fullscreen decoration, - .tiled decoration { - border-radius: 0; } - .popup decoration { - box-shadow: none; - border-radius: 0; } - .ssd decoration { - border-radius: 4px 4px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); } - .ssd decoration.maximized { - border-radius: 0; } - .csd.popup decoration { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } - tooltip.csd decoration { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } - messagedialog.csd decoration { - border-radius: 3px; } - .solid-csd decoration { - border-radius: 0; - margin: 1px; - background-color: #eee8d5; - box-shadow: none; } - -headerbar.default-decoration button.titlebutton, -.titlebar.default-decoration button.titlebutton { - padding: 0 4px; - min-width: 0; - min-height: 0; - margin: 0; } - -headerbar button.titlebutton, -.titlebar button.titlebutton { - padding: 0; - min-width: 24px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(238, 232, 213, 0); } - headerbar button.titlebutton:hover, - .titlebar button.titlebutton:hover { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - headerbar button.titlebutton:active, headerbar button.titlebutton:checked, - .titlebar button.titlebutton:active, - .titlebar button.titlebutton:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - headerbar button.titlebutton.close, headerbar button.titlebutton.maximize, headerbar button.titlebutton.minimize, - .titlebar button.titlebutton.close, - .titlebar button.titlebutton.maximize, - .titlebar button.titlebutton.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; } - headerbar button.titlebutton.close:backdrop, headerbar button.titlebutton.maximize:backdrop, headerbar button.titlebutton.minimize:backdrop, - .titlebar button.titlebutton.close:backdrop, - .titlebar button.titlebutton.maximize:backdrop, - .titlebar button.titlebutton.minimize:backdrop { - opacity: 1; } - headerbar button.titlebutton.close, - .titlebar button.titlebutton.close { - background-image: -gtk-scaled(url("assets/titlebutton-close.png"), url("assets/titlebutton-close@2.png")); } - headerbar button.titlebutton.close:backdrop, - .titlebar button.titlebutton.close:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop.png"), url("assets/titlebutton-close-backdrop@2.png")); } - headerbar button.titlebutton.close:hover, - .titlebar button.titlebutton.close:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover.png"), url("assets/titlebutton-close-hover@2.png")); } - headerbar button.titlebutton.close:active, - .titlebar button.titlebutton.close:active { - background-image: -gtk-scaled(url("assets/titlebutton-close-active.png"), url("assets/titlebutton-close-active@2.png")); } - headerbar button.titlebutton.maximize, - .titlebar button.titlebutton.maximize { - background-image: -gtk-scaled(url("assets/titlebutton-maximize.png"), url("assets/titlebutton-maximize@2.png")); } - headerbar button.titlebutton.maximize:backdrop, - .titlebar button.titlebutton.maximize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop.png"), url("assets/titlebutton-maximize-backdrop@2.png")); } - headerbar button.titlebutton.maximize:hover, - .titlebar button.titlebutton.maximize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover.png"), url("assets/titlebutton-maximize-hover@2.png")); } - headerbar button.titlebutton.maximize:active, - .titlebar button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active.png"), url("assets/titlebutton-maximize-active@2.png")); } - headerbar button.titlebutton.minimize, - .titlebar button.titlebutton.minimize { - background-image: -gtk-scaled(url("assets/titlebutton-minimize.png"), url("assets/titlebutton-minimize@2.png")); } - headerbar button.titlebutton.minimize:backdrop, - .titlebar button.titlebutton.minimize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop.png"), url("assets/titlebutton-minimize-backdrop@2.png")); } - headerbar button.titlebutton.minimize:hover, - .titlebar button.titlebutton.minimize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover.png"), url("assets/titlebutton-minimize-hover@2.png")); } - headerbar button.titlebutton.minimize:active, - .titlebar button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active.png"), url("assets/titlebutton-minimize-active@2.png")); } - -.view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, .view text:selected, iconview text:selected, -textview text:selected, iconview text:selected:focus, -textview text:selected:focus, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, -textview text selection:focus, -textview text selection, flowbox flowboxchild:selected, entry selection:focus, entry selection, menuitem.button.flat:active, menuitem.button.flat:active arrow, menuitem.button.flat:selected, menuitem.button.flat:selected arrow, -modelbutton.flat:active, -modelbutton.flat:active arrow, -modelbutton.flat:selected, -modelbutton.flat:selected arrow, treeview.view:selected, treeview.view:selected:focus, row:selected, calendar:selected, .nemo-window .nemo-window-pane widget.entry:selected:focus, .nemo-window .nemo-window-pane widget.entry:selected, filechooser placessidebar.sidebar row.sidebar-row.has-open-popup:selected, filechooser placessidebar.sidebar row.sidebar-row:selected, filechooser placessidebar.sidebar row.sidebar-row:selected:hover, filechooser placessidebar.sidebar row.sidebar-row:active:hover, -.nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup:selected, -.nautilus-window placessidebar.sidebar row.sidebar-row:selected, -.nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover, -.nautilus-window placessidebar.sidebar row.sidebar-row:active:hover { - background-color: #268bd2; } - row:selected label, label:selected, .view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, .view text:selected, iconview text:selected, - textview text:selected, iconview text:selected:focus, - textview text:selected:focus, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, - textview text selection:focus, - textview text selection, flowbox flowboxchild:selected, entry selection:focus, entry selection, menuitem.button.flat:active, menuitem.button.flat:active arrow, menuitem.button.flat:selected, menuitem.button.flat:selected arrow, - modelbutton.flat:active, - modelbutton.flat:active arrow, - modelbutton.flat:selected, - modelbutton.flat:selected arrow, treeview.view:selected, treeview.view:selected:focus, row:selected, calendar:selected, .nemo-window .nemo-window-pane widget.entry:selected:focus, .nemo-window .nemo-window-pane widget.entry:selected, filechooser placessidebar.sidebar row.sidebar-row.has-open-popup:selected, filechooser placessidebar.sidebar row.sidebar-row:selected, filechooser placessidebar.sidebar row.sidebar-row:selected:hover, filechooser placessidebar.sidebar row.sidebar-row:active:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup:selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row:active:hover { - color: #fdf6e3; } - row:selected label:disabled, label:disabled:selected, .view:disabled:selected, iconview:disabled:selected, iconview:disabled:selected:focus, .view text:disabled:selected, iconview text:disabled:selected, - textview text:disabled:selected, iconview text selection:disabled:focus, .view text selection:disabled, iconview text selection:disabled, - textview text selection:disabled, flowbox flowboxchild:disabled:selected, label:disabled selection, entry selection:disabled, menuitem.button.flat:disabled:active, menuitem.button.flat:active arrow:disabled, menuitem.button.flat:disabled:selected, menuitem.button.flat:selected arrow:disabled, - modelbutton.flat:disabled:active, - modelbutton.flat:active arrow:disabled, - modelbutton.flat:disabled:selected, - modelbutton.flat:selected arrow:disabled, treeview.view:disabled:selected:focus, row:disabled:selected, calendar:disabled:selected, .nemo-window .nemo-window-pane widget.entry:disabled:selected, filechooser placessidebar.sidebar row.sidebar-row:disabled:selected, filechooser placessidebar.sidebar row.sidebar-row:disabled:active:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled:selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled:active:hover { - color: #92c1db; } - -.gedit-bottom-panel-paned notebook > header.top > tabs > tab:checked, -terminal-window notebook > header.top > tabs > tab:checked { - box-shadow: inset 0 -1px #dcdfe3; } - -terminal-window notebook > header.top, -.mate-terminal notebook > header.top { - padding-top: 3px; - box-shadow: inset 0 1px #e4dabc, inset 0 -1px #dcdfe3; } - terminal-window notebook > header.top button, - .mate-terminal notebook > header.top button { - padding: 0; - min-width: 24px; - min-height: 24px; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item, .caja-desktop { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active, .caja-desktop:active { - color: #5c616c; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected, .caja-desktop:selected { - color: #fdf6e3; - text-shadow: none; } - -.nautilus-canvas-item.dim-label, label.nautilus-canvas-item.separator, -popover.background label.nautilus-canvas-item.separator, headerbar .nautilus-canvas-item.subtitle, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle, -.nautilus-list-dim-label { - color: #a9acb2; } - .nautilus-canvas-item.dim-label:selected, label.nautilus-canvas-item.separator:selected, headerbar .nautilus-canvas-item.subtitle:selected, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, label.nautilus-canvas-item.separator:selected:focus, headerbar .nautilus-canvas-item.subtitle:selected:focus, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle:selected:focus, - .nautilus-list-dim-label:selected, - .nautilus-list-dim-label:selected:focus { - color: #d2e1e0; } - -.nautilus-window searchbar { - border-top: 1px solid #dcdfe3; } - -.nautilus-window .searchbar-container { - margin-top: -1px; } - -.nautilus-window notebook, -.nautilus-window notebook > stack:not(:only-child) searchbar { - background-color: #fdf6e3; } - -.disk-space-display { - border-style: solid; - border-width: 1px; } - .disk-space-display.unknown { - background-color: rgba(92, 97, 108, 0.5); - border-color: rgba(69, 72, 80, 0.5); } - .disk-space-display.used { - background-color: rgba(38, 139, 210, 0.8); - border-color: rgba(30, 110, 167, 0.8); } - .disk-space-display.free { - background-color: #edeef0; - border-color: #d0d5da; } - -@keyframes needs_attention_keyframes { - 0% { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - 100% { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } } - -.nautilus-operations-button-needs-attention { - animation: needs_attention_keyframes 2s ease-in-out; } - -.nautilus-operations-button-needs-attention-multiple { - animation: needs_attention_keyframes 3s ease-in-out; - animation-iteration-count: 3; } - -.conflict-row.activatable, .conflict-row.activatable:active { - color: white; - background-color: #dc322f; } - -.conflict-row.activatable:hover { - background-color: #e35d5b; } - -.conflict-row.activatable:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.nemo-window .nemo-places-sidebar.frame { - border-width: 0; } - -.nemo-window notebook { - background-color: #fdf6e3; } - -.nemo-window .nemo-window-pane widget.entry { - border: 1px solid; - border-radius: 3px; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:not(:last-child):not(:only-child) { - margin: 0 0 1px 0; } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover { - background-color: rgba(255, 255, 255, 0.9); } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:active, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:disabled { - color: rgba(82, 93, 118, 0.4); } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button + button { - border-left-style: none; } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1), inset -1px 0 rgba(82, 93, 118, 0.1); } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - -.caja-notebook { - border-top: 1px solid #dcdfe3; } - -.caja-side-pane .frame { - border-width: 1px 0 0; } - -.caja-notebook .frame { - border-width: 0 0 1px; } - -.open-document-selector-treeview.view, iconview.open-document-selector-treeview { - padding: 3px 6px 3px 6px; - border-color: #fdf6e3; } - .open-document-selector-treeview.view:hover, iconview.open-document-selector-treeview:hover { - background-color: #f2ecdb; } - .open-document-selector-treeview.view:hover:selected, iconview.open-document-selector-treeview:hover:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.open-document-selector-name-label { - color: #5c616c; } - -.open-document-selector-path-label { - color: #adaca8; - font-size: smaller; } - .open-document-selector-path-label:selected { - color: rgba(253, 246, 227, 0.9); } - -.gedit-document-panel row button { - min-width: 22px; - min-height: 22px; - padding: 0; - color: transparent; - background: none; - border: none; - box-shadow: none; } - .gedit-document-panel row button image { - color: inherit; } - -.gedit-document-panel row:hover:not(:selected) button { - color: #92959d; } - .gedit-document-panel row:hover:not(:selected) button:hover { - color: #ff4d4d; } - .gedit-document-panel row:hover:not(:selected) button:active { - color: #5c616c; } - -.gedit-document-panel row:hover:selected button:hover { - color: #ff6666; - background: none; - border: none; - box-shadow: none; } - .gedit-document-panel row:hover:selected button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel-dragged-row { - border: 1px solid #dcdfe3; - background-color: #d9dde0; - color: #5c616c; } - -.gedit-side-panel-paned statusbar { - border-top: 1px solid #dcdfe3; - background-color: #F5F6F7; } - -.gedit-search-slider { - background-color: #fbfbfc; - padding: 6px; - border-color: #dcdfe3; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -.gedit-search-entry-occurrences-tag { - color: rgba(92, 97, 108, 0.6); - border: none; - margin: 2px; - padding: 2px; } - -.gedit-map-frame border { - border-color: rgba(0, 0, 0, 0.3); - border-width: 0; } - .gedit-map-frame border:dir(ltr) { - border-left-width: 1px; } - .gedit-map-frame border:dir(rtl) { - border-right-width: 1px; } - -.pluma-window statusbar frame > border { - border: none; } - -.pluma-window notebook > stack scrolledwindow { - border-width: 0 0 1px 0; } - -#pluma-status-combo-button { - min-height: 0; - padding: 0; - border-top: none; - border-bottom: none; - border-radius: 0; } - -.gb-search-entry-occurrences-tag { - background: none; } - -workbench.csd > stack.titlebar:not(headerbar) { - padding: 0; - background: none; - border: none; - box-shadow: none; } - workbench.csd > stack.titlebar:not(headerbar) headerbar, workbench.csd > stack.titlebar:not(headerbar) headerbar:first-child, workbench.csd > stack.titlebar:not(headerbar) headerbar:last-child { - border-radius: 4px 4px 0 0; } - -editortweak .linked > entry.search:focus + .gb-linked-scroller { - border-top-color: #268bd2; } - -layouttab { - background-color: #fdf6e3; } - -layout { - border: 1px solid #dcdfe3; - -PnlDockBin-handle-size: 1; } - -eggsearchbar box.search-bar { - border-bottom: 1px solid #dcdfe3; } - -pillbox { - color: #fdf6e3; - background-color: #268bd2; - border-radius: 3px; } - pillbox:disabled label { - color: rgba(253, 246, 227, 0.5); } - -docktabstrip { - padding: 0 6px; - background-color: #F5F6F7; - border-bottom: 1px solid #dcdfe3; } - docktabstrip docktab { - min-height: 28px; - border: solid transparent; - border-width: 0 1px; } - docktabstrip docktab label { - opacity: 0.5; } - docktabstrip docktab:checked label, docktabstrip docktab:hover label { - opacity: 1; } - docktabstrip docktab:checked { - border-color: #dcdfe3; - background-color: #fdf6e3; } - -dockbin { - border: 1px solid #dcdfe3; - -PnlDockBin-handle-size: 1; } - -dockpaned { - border: 1px solid #dcdfe3; } - -dockoverlayedge { - background-color: #F5F6F7; } - dockoverlayedge docktabstrip { - padding: 0; - border: none; } - dockoverlayedge.left-edge tab:checked, - dockoverlayedge.right-edge tab:checked { - border-width: 1px 0; } - -popover.messagepopover.background { - padding: 0; } - -popover.messagepopover .popover-content-area { - margin: 16px; } - -popover.messagepopover .popover-action-area { - margin: 8px; } - popover.messagepopover .popover-action-area button:not(:first-child):not(:last-child) { - margin: 0 4px; } - -popover.popover-selector { - padding: 0; } - popover.popover-selector list row { - padding: 5px 0; } - popover.popover-selector list row image { - margin-left: 3px; - margin-right: 10px; } - -entry.search.preferences-search { - border: none; - border-right: 1px solid #dcdfe3; - border-bottom: 1px solid #dcdfe3; - border-radius: 0; } - -preferences stacksidebar.sidebar list { - background-image: linear-gradient(to bottom, #fdf6e3, #fdf6e3); } - -preferences stacksidebar.sidebar list separator { - background-color: transparent; } - -devhelppanel entry:focus, -symboltreepanel entry:focus { - border-color: #dcdfe3; } - -button.run-arrow-button { - min-width: 12px; } - -omnibar.linked > entry:not(:only-child) { - border-style: solid; - border-radius: 3px; - margin-left: 1px; - margin-right: 1px; } - -gstyleslidein #scale_box button.toggle:checked, -gstyleslidein #strings_controls button.toggle:checked, -gstyleslidein #palette_controls button.toggle:checked, -gstyleslidein #components_controls button.toggle:checked { - color: #5c616c; } - -configurationview entry.flat { - background: none; } - -configurationview list { - border-width: 0; } - -.documents-scrolledwin.frame { - border-width: 0; } - -button.documents-load-more { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon, .photos-collection-icon { - background-color: rgba(92, 97, 108, 0.3); - border-radius: 2px; } - -button.documents-favorite:active, -button.documents-favorite:active:hover { - color: #78b9e6; } - -.documents-entry-tag, .photos-entry-tag { - color: #fdf6e3; - background: #268bd2; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover, .photos-entry-tag:hover { - color: #fdf6e3; - background: #3295da; } - .documents-entry-tag:active, .photos-entry-tag:active { - color: #fdf6e3; - background: #2380c1; } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -.photos-fade-in { - opacity: 1.0; - transition: opacity 0.2s ease-out; } - -.photos-fade-out { - opacity: 0.0; - transition: opacity 0.2s ease-out; } - -.tweak-categories, -.tweak-category:not(:selected):not(:hover) { - background-image: linear-gradient(to bottom, #fdf6e3, #fdf6e3); } - -.tr-workarea undershoot, -.tr-workarea overshoot { - border-color: transparent; } - -.atril-window .primary-toolbar toolbar, .atril-window .primary-toolbar .inline-toolbar { - background: none; } - -#gf-bubble, #gf-bubble.solid, -#gf-osd-window, -#gf-osd-window.solid, -#gf-input-source-popup, -#gf-input-source-popup.solid, -#gf-candidate-popup, -#gf-candidate-popup.solid { - color: #768d96; - background-color: #073642; - border: 1px solid #03181d; - border-radius: 2px; } - -#gf-bubble levelbar block.low, #gf-bubble levelbar block.high, #gf-bubble levelbar block.full, -#gf-osd-window levelbar block.low, -#gf-osd-window levelbar block.high, -#gf-osd-window levelbar block.full, -#gf-input-source-popup levelbar block.low, -#gf-input-source-popup levelbar block.high, -#gf-input-source-popup levelbar block.full, -#gf-candidate-popup levelbar block.low, -#gf-candidate-popup levelbar block.high, -#gf-candidate-popup levelbar block.full { - background-color: #268bd2; - border-color: #268bd2; } - -#gf-bubble levelbar block.empty, -#gf-osd-window levelbar block.empty, -#gf-input-source-popup levelbar block.empty, -#gf-candidate-popup levelbar block.empty { - background-color: #05232b; } - -#gf-bubble levelbar trough, -#gf-osd-window levelbar trough, -#gf-input-source-popup levelbar trough, -#gf-candidate-popup levelbar trough { - background: none; } - -#gf-input-source { - min-height: 32px; - min-width: 40px; } - #gf-input-source:selected { - color: #fdf6e3; - background-color: #268bd2; - border-radius: 2px; } - -gf-candidate-box label { - padding: 3px; } - -gf-candidate-box:hover, gf-candidate-box:selected { - color: #fdf6e3; - background-color: #268bd2; - border-radius: 2px; } - -MsdOsdWindow.background.osd { - border-radius: 2px; - border: 1px solid #03181d; } - MsdOsdWindow.background.osd .progressbar { - background-color: #268bd2; - border: none; - border-color: red; - border-radius: 5px; } - MsdOsdWindow.background.osd .trough { - background-color: #05232b; - border: none; - border-radius: 5px; } - -.mate-panel-menu-bar, .mate-panel-menu-bar menubar, -panel-toplevel.background, -panel-toplevel.background menubar { - background-color: #05242c; } - -.mate-panel-menu-bar menubar, -.mate-panel-menu-bar #PanelApplet label, -.mate-panel-menu-bar #PanelApplet image, -panel-toplevel.background menubar, -panel-toplevel.background #PanelApplet label, -panel-toplevel.background #PanelApplet image { - color: #657b83; } - -.mate-panel-menu-bar button label, .mate-panel-menu-bar button image, -.mate-panel-menu-bar #tasklist-button label, -.mate-panel-menu-bar #tasklist-button image, -panel-toplevel.background button label, -panel-toplevel.background button image, -panel-toplevel.background #tasklist-button label, -panel-toplevel.background #tasklist-button image { - color: inherit; } - -.mate-panel-menu-bar .wnck-pager, -panel-toplevel.background .wnck-pager { - color: #333e42; - background-color: black; } - .mate-panel-menu-bar .wnck-pager:hover, - panel-toplevel.background .wnck-pager:hover { - background-color: #073743; } - .mate-panel-menu-bar .wnck-pager:selected, - panel-toplevel.background .wnck-pager:selected { - color: #78b9e6; - background-color: #268bd2; } - -.mate-panel-menu-bar na-tray-applet, -panel-toplevel.background na-tray-applet { - -NaTrayApplet-icon-padding: 0; - -NaTrayApplet-icon-size: 16px; } - -.xfce4-panel.panel { - background-color: #05242c; - text-shadow: none; - -gtk-icon-shadow: none; } - -#tasklist-button { - color: rgba(101, 123, 131, 0.8); - border-radius: 0; - border: none; - background-color: rgba(5, 36, 44, 0); } - #tasklist-button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); } - #tasklist-button:checked { - color: white; - background-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -.mate-panel-menu-bar button:not(#tasklist-button), -panel-toplevel.background button:not(#tasklist-button), .xfce4-panel.panel button.flat, .xfce4-panel.panel button.sidebar-button { - color: #657b83; - border-radius: 0; - border: none; - background-color: rgba(5, 36, 44, 0); } - .mate-panel-menu-bar button:hover:not(#tasklist-button), - panel-toplevel.background button:hover:not(#tasklist-button), .xfce4-panel.panel button.flat:hover, .xfce4-panel.panel button.sidebar-button:hover { - border: none; - background-color: #0a4a5a; } - .mate-panel-menu-bar button:active:not(#tasklist-button), - panel-toplevel.background button:active:not(#tasklist-button), .xfce4-panel.panel button.flat:active, .xfce4-panel.panel button.sidebar-button:active, .mate-panel-menu-bar button:checked:not(#tasklist-button), - panel-toplevel.background button:checked:not(#tasklist-button), .xfce4-panel.panel button.flat:checked, .xfce4-panel.panel button.sidebar-button:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - .mate-panel-menu-bar button:active:not(#tasklist-button) label, - panel-toplevel.background button:active:not(#tasklist-button) label, .xfce4-panel.panel button.flat:active label, .xfce4-panel.panel button.sidebar-button:active label, .mate-panel-menu-bar button:active:not(#tasklist-button) image, - panel-toplevel.background button:active:not(#tasklist-button) image, .xfce4-panel.panel button.flat:active image, .xfce4-panel.panel button.sidebar-button:active image, .mate-panel-menu-bar button:checked:not(#tasklist-button) label, - panel-toplevel.background button:checked:not(#tasklist-button) label, .xfce4-panel.panel button.flat:checked label, .xfce4-panel.panel button.sidebar-button:checked label, .mate-panel-menu-bar button:checked:not(#tasklist-button) image, - panel-toplevel.background button:checked:not(#tasklist-button) image, .xfce4-panel.panel button.flat:checked image, .xfce4-panel.panel button.sidebar-button:checked image { - color: inherit; } - -.nautilus-window .floating-bar { - padding: 1px; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px 2px 0 0; } - .nautilus-window .floating-bar.bottom.left { - border-top-left-radius: 0; } - .nautilus-window .floating-bar.bottom.right { - border-top-right-radius: 0; } - .nautilus-window .floating-bar button { - border: none; - border-radius: 0; - min-height: 0; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(253, 246, 227, 0.9); } - .marlin-pathbar.pathbar image, .marlin-pathbar.pathbar image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - .marlin-pathbar.pathbar:disabled { - color: rgba(82, 93, 118, 0.35); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(253, 246, 227, 0.75); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - -gtk-icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:hover { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration .top { - border: 1px solid rgba(0, 0, 0, 0.1); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #eee8d5, #eee8d5); - color: rgba(82, 93, 118, 0.8); - box-shadow: inset 0 1px #f2eee0; } - UnityDecoration .top:backdrop { - border-bottom-width: 0; - color: rgba(82, 93, 118, 0.5); } - UnityDecoration .left, UnityDecoration .right, UnityDecoration .bottom, - UnityDecoration .left:backdrop, UnityDecoration .right:backdrop, UnityDecoration .bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: #faf8f2; - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focus, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focus { - background-image: none; - border-image: none; } - -.lightdm.button:focus, -.lightdm.entry:focus { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar label { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #dcdfe3; - border-right: 1px solid #dcdfe3; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -toolbar.secondary-toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #dcdfe3; } - toolbar.secondary-toolbar button, .secondary-toolbar.inline-toolbar button { - padding: 0 3px 0 3px; } - -toolbar.bottom-toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #dcdfe3; - background-color: #F5F6F7; } - toolbar.bottom-toolbar button, .bottom-toolbar.inline-toolbar button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view, -iconview.source-list { - background-color: #F5F6F7; - color: #5c616c; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:hover, iconview.source-list:hover { - background-color: white; } - -.source-list.view:selected, iconview.source-list:selected, -.source-list.view:hover:selected, -iconview.source-list:hover:selected, -.source-list.view:selected:focus, -iconview.source-list:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list scrollbar, -.source-list junction { - border-image: none; - border-color: transparent; - background-color: #F5F6F7; - background-image: none; } - -.source-list.badge, -.source-list.badge:hover, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:hover:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:hover:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #5c616c; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GraniteWidgetsWelcome { - background-color: #fdf6e3; } - -GraniteWidgetsWelcome label { - color: #a9acb2; - font-size: 11px; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(92, 97, 108, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #fdf6e3, #fdf6e3); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, GraniteWidgetsPopOver iconview.sidebar, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry entry { - padding: 4px; } - -.h1 { - font-size: 24px; } - -.h2 { - font-size: 18px; } - -.h3 { - font-size: 11px; } - -.h4, -.category-label { - color: #8a8e96; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: #05242c; - color: #657b83; - font-weight: bold; - box-shadow: inset 0 -1px #010a0c; } - #panel_window menubar { - padding-left: 5px; } - #panel_window menubar, #panel_window menubar > menuitem { - background-color: transparent; - color: #657b83; - font-weight: bold; } - #panel_window menubar menuitem:disabled { - color: rgba(101, 123, 131, 0.5); } - #panel_window menubar menuitem:disabled label { - color: inherit; } - #panel_window menubar menu > menuitem { - font-weight: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font-weight: normal; - border-style: none; - background-color: transparent; - color: #5c616c; } - -#content_frame { - padding-bottom: 14px; - background-color: #F5F6F7; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame button { - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - #content_frame button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; } - #content_frame button:active, #content_frame button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - #content_frame button:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - #content_frame button:disabled label, #content_frame button:disabled { - color: rgba(92, 97, 108, 0.55); } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: #073642; - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px #073642; } - -#buttonbox_frame button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - #buttonbox_frame button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - #buttonbox_frame button:active, #buttonbox_frame button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - #buttonbox_frame button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -#login_window #user_combobox { - color: #5c616c; - font-size: 13px; } - #login_window #user_combobox menu { - font-weight: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font-weight: bold; } - -.nautilus-window paned > separator { - background-image: linear-gradient(to bottom, #073642, #073642); } - .nautilus-window paned > separator:dir(ltr) { - margin-left: -1px; } - .nautilus-window paned > separator:dir(rtl) { - margin-right: -1px; } - -filechooser paned > separator { - background-image: linear-gradient(to bottom, #073642, #073642); } - -filechooser.csd.background, filechooser placessidebar list, -.nautilus-window.csd.background, -.nautilus-window placessidebar list { - background-color: transparent; } - -filechooser placessidebar.sidebar, -.nautilus-window placessidebar.sidebar { - background-color: #073642; } - filechooser placessidebar.sidebar row.sidebar-row, - .nautilus-window placessidebar.sidebar row.sidebar-row { - border: none; - color: #657b83; } - filechooser placessidebar.sidebar row.sidebar-row .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row .sidebar-icon { - color: rgba(101, 123, 131, 0.6); } - filechooser placessidebar.sidebar row.sidebar-row.has-open-popup, filechooser placessidebar.sidebar row.sidebar-row:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup, - .nautilus-window placessidebar.sidebar row.sidebar-row:hover { - background-color: rgba(101, 123, 131, 0.15); } - filechooser placessidebar.sidebar row.sidebar-row:disabled, filechooser placessidebar.sidebar row.sidebar-row:disabled label, filechooser placessidebar.sidebar row.sidebar-row:disabled image, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled label, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled image { - color: rgba(101, 123, 131, 0.4); } - filechooser placessidebar.sidebar row.sidebar-row:selected.has-open-popup .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:selected .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:active:hover .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected.has-open-popup .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:active:hover .sidebar-icon { - color: inherit; } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button { - color: #657b83; } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:active, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:active { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:not(:hover):not(:active) > image, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:not(:hover):not(:active) > image { - opacity: 0.5; } - filechooser placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row, - .nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row { - color: #268bd2; } - filechooser placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon { - color: inherit; } - filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) .sidebar-icon { - color: #b58900; } - filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected { - background-color: #b58900; } - filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected .sidebar-icon { - color: #fdf6e3; } - filechooser placessidebar.sidebar separator, - .nautilus-window placessidebar.sidebar separator { - background-color: transparent; } - -filechooser.maximized placessidebar.sidebar, -.nautilus-window.maximized placessidebar.sidebar { - background-color: #073642; } - -.nemo-window .sidebar { - color: #657b83; - background-color: #073642; } - .nemo-window .sidebar .view, .nemo-window .sidebar iconview, .nemo-window .sidebar row { - background-color: transparent; - color: #657b83; } - .nemo-window .sidebar .view.cell:selected, .nemo-window .sidebar iconview.cell:selected, .nemo-window .sidebar row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - .nemo-window .sidebar .view.expander, .nemo-window .sidebar iconview.expander, .nemo-window .sidebar row.expander { - color: #365963; } - .nemo-window .sidebar .view.expander:hover, .nemo-window .sidebar iconview.expander:hover, .nemo-window .sidebar row.expander:hover { - color: #657b83; } - .nemo-window .sidebar separator { - background-color: transparent; } - -.caja-side-pane, -.caja-side-pane > notebook > stack > widget > box, -.caja-side-pane text, -.caja-side-pane treeview { - color: #657b83; - caret-color: #657b83; - background-color: #073642; } - -.caja-side-pane > box button:not(:active):not(:checked) { - color: #657b83; } - -.caja-side-pane .frame { - border-color: #05232b; } - -.caja-side-pane junction { - background-color: #05232b; } - -filechooser actionbar { - color: #657b83; - background-color: #073642; - border-color: #041c22; } - filechooser actionbar label, filechooser actionbar combobox { - color: #657b83; } - -.gedit-bottom-panel-paned { - background-color: #fdf6e3; } - -.gedit-side-panel-paned > separator { - background-image: linear-gradient(to bottom, #073642, #073642); } - -.gedit-bottom-panel-paned > separator { - background-image: linear-gradient(to bottom, #dcdfe3, #dcdfe3); } - -.gedit-document-panel { - background-color: #073642; } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel row { - color: #657b83; - background-color: rgba(101, 123, 131, 0); } - .gedit-document-panel row:hover { - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel row:active { - color: #fdf6e3; - background-color: #268bd2; } - .gedit-document-panel row:active button { - color: #fdf6e3; } - .gedit-document-panel row:selected, .gedit-document-panel row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; } - .gedit-document-panel row:hover:not(:selected) button:active { - color: #657b83; } - -filechooser actionbar button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - .caja-side-pane > box button:hover:not(:active), filechooser actionbar button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(21, 163, 200, 0.5); } - filechooser actionbar button:active, filechooser actionbar button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - filechooser actionbar button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.25); } - -filechooser actionbar entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.4); - background-color: rgba(18, 137, 167, 0.4); } - filechooser actionbar entry image, filechooser actionbar entry image:hover { - color: inherit; } - filechooser actionbar entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.4); - background-color: #268bd2; } - filechooser actionbar entry:disabled { - color: rgba(101, 123, 131, 0.55); - background-color: rgba(18, 137, 167, 0.25); } - -filechooser placessidebar.sidebar scrollbar, -.nautilus-window placessidebar.sidebar scrollbar, .nemo-window .sidebar scrollbar, .caja-side-pane scrollbar { - border-color: #05232b; } - filechooser placessidebar.sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, - .nautilus-window placessidebar.sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, .nemo-window .sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, .caja-side-pane scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { - background-color: #8da0a7; - border: 1px solid rgba(0, 0, 0, 0.3); } - filechooser placessidebar.sidebar scrollbar slider, - .nautilus-window placessidebar.sidebar scrollbar slider, .nemo-window .sidebar scrollbar slider, .caja-side-pane scrollbar slider { - background-color: rgba(141, 160, 167, 0.7); } - filechooser placessidebar.sidebar scrollbar slider:hover, - .nautilus-window placessidebar.sidebar scrollbar slider:hover, .nemo-window .sidebar scrollbar slider:hover, .caja-side-pane scrollbar slider:hover { - background-color: #9cacb2; } - filechooser placessidebar.sidebar scrollbar slider:hover:active, - .nautilus-window placessidebar.sidebar scrollbar slider:hover:active, .nemo-window .sidebar scrollbar slider:hover:active, .caja-side-pane scrollbar slider:hover:active { - background-color: #268bd2; } - filechooser placessidebar.sidebar scrollbar slider:disabled, - .nautilus-window placessidebar.sidebar scrollbar slider:disabled, .nemo-window .sidebar scrollbar slider:disabled, .caja-side-pane scrollbar slider:disabled { - background-color: transparent; } - filechooser placessidebar.sidebar scrollbar trough, - .nautilus-window placessidebar.sidebar scrollbar trough, .nemo-window .sidebar scrollbar trough, .caja-side-pane scrollbar trough { - background-color: #05232b; } - -@define-color theme_fg_color #5c616c; -@define-color theme_text_color #5c616c; -@define-color theme_bg_color #F5F6F7; -@define-color theme_base_color #fdf6e3; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #5c616c; -@define-color text_color #5c616c; -@define-color bg_color #F5F6F7; -@define-color base_color #fdf6e3; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #faf6eb; -@define-color insensitive_fg_color alpha(#5c616c, 0.5); -@define-color insensitive_base_color #fdf6e3; -@define-color theme_unfocused_fg_color #5c616c; -@define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #F5F6F7; -@define-color theme_unfocused_base_color #fdf6e3; -@define-color borders #dcdfe3; -@define-color unfocused_borders #dcdfe3; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #1e6ea7; -@define-color content_view_bg #fdf6e3; -@define-color wm_title alpha(#525d76, 0.8); -@define-color wm_unfocused_title alpha(#525d76, 0.5); -@define-color wm_bg #eee8d5; -@define-color wm_bg_unfocused #f2eee0; -@define-color wm_highlight #f2eee0; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #f46067; -@define-color wm_button_close_hover_bg #f68086; -@define-color wm_button_close_active_bg #f13039; -@define-color wm_icon_close_bg #657b83; -@define-color wm_button_hover_bg #fdfdfd; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #D1D3DA; -@define-color wm_icon_bg #90949E; -@define-color wm_icon_unfocused_bg #B6B8C0; -@define-color wm_icon_hover_bg #7A7F8B; -@define-color wm_icon_active_bg #fdf6e3; diff --git a/common/gtk-3.0/3.20/gtk.css b/common/gtk-3.0/3.20/gtk.css deleted file mode 100644 index bb20451..0000000 --- a/common/gtk-3.0/3.20/gtk.css +++ /dev/null @@ -1,4312 +0,0 @@ -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: #dc322f; - -GtkScrolledWindow-scrollbar-spacing: 0; - -GtkToolItemGroup-expander-size: 11; - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - -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; } - -.background { - color: #5c616c; - background-color: rgba(245, 246, 247, 0.999); } - -*:disabled { - -gtk-icon-effect: dim; } - -.gtkstyle-fallback { - background-color: #F5F6F7; - color: #5c616c; } - .gtkstyle-fallback:hover { - background-color: white; - color: #5c616c; } - .gtkstyle-fallback:active { - background-color: #d9dde0; - color: #5c616c; } - .gtkstyle-fallback:disabled { - background-color: #faf6eb; - color: rgba(92, 97, 108, 0.55); } - .gtkstyle-fallback:selected { - background-color: #268bd2; - color: #fdf6e3; } - -.view, iconview, -.view text, -iconview text, -textview text { - color: #5c616c; - background-color: #fdf6e3; } - .view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, - .view text:selected, - iconview text:selected, - textview text:selected, - .view text:selected:focus, - iconview text:selected:focus, - textview text:selected:focus { - border-radius: 2px; } - -textview border { - background-color: #f9f6ed; } - -rubberband, flowbox rubberband, treeview.view rubberband, .content-view rubberband, -.rubberband { - border: 1px solid #1e6ea7; - background-color: rgba(30, 110, 167, 0.2); } - -flowbox flowboxchild { - padding: 3px; - border-radius: 2px; } - flowbox flowboxchild:selected { - outline-offset: -2px; } - -label.separator, popover label.separator, -popover.background label.separator { - color: #5c616c; } - -label selection { - color: #fdf6e3; - background-color: #268bd2; } - -label:disabled { - color: rgba(92, 97, 108, 0.55); } - -.dim-label, label.separator, popover label.separator, -popover.background label.separator, headerbar .subtitle, .titlebar:not(headerbar) .subtitle { - opacity: 0.55; } - -assistant .sidebar { - background-color: #fdf6e3; - border-top: 1px solid #dcdfe3; } - -assistant.csd .sidebar { - border-top-style: none; } - -assistant .sidebar label { - padding: 6px 12px; } - -assistant .sidebar label.highlight { - background-color: #268bd2; - color: #fdf6e3; } - -textview { - background-color: #fdf6e3; } - -popover.osd, popover.magnifier, .csd popover.osd, .csd popover.magnifier, -popover.background.osd, -popover.background.magnifier, .csd popover.background.osd, .csd popover.background.magnifier, .osd .scale-popup, .osd { - color: #657b83; - border: none; - background-color: rgba(7, 54, 66, 0.95); - background-clip: padding-box; - box-shadow: none; } - -@keyframes spin { - to { - -gtk-icon-transform: rotate(1turn); } } - -spinner { - background: none; - opacity: 0; - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); } - spinner:checked { - opacity: 1; - animation: spin 1s linear infinite; } - spinner:checked:disabled { - opacity: 0.5; } - -entry { - min-height: 22px; - border: 1px solid; - padding: 2px 8px; - caret-color: currentColor; - border-radius: 3px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - color: #5c616c; - border-color: #657b83; - background-color: #fdf6e3; } - entry.search { - border-radius: 20px; } - entry image { - color: #7c7f84; } - entry image.left { - padding-left: 0; - padding-right: 5px; } - entry image.right { - padding-right: 0; - padding-left: 5px; } - entry.flat, entry.flat:focus { - min-height: 0; - padding: 2px; - background-image: none; - border-color: transparent; - border-radius: 0; } - entry:focus { - background-clip: border-box; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; } - entry:disabled { - color: rgba(92, 97, 108, 0.55); - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(253, 246, 227, 0.55); } - entry.warning { - color: white; - border-color: #cb4b16; - background-color: #df8f68; } - entry.warning image { - color: white; } - entry.warning:focus { - color: white; - background-color: #cb4b16; - box-shadow: none; } - entry.warning selection, entry.warning selection:focus { - background-color: white; - color: #cb4b16; } - entry.error { - color: white; - border-color: #dc322f; - background-color: #e98077; } - entry.error image { - color: white; } - entry.error:focus { - color: white; - background-color: #dc322f; - box-shadow: none; } - entry.error selection, entry.error selection:focus { - background-color: white; - color: #dc322f; } - entry.search-missing { - color: white; - border-color: #dc322f; - background-color: #e98077; } - entry.search-missing image { - color: white; } - entry.search-missing:focus { - color: white; - background-color: #dc322f; - box-shadow: none; } - entry.search-missing selection, entry.search-missing selection:focus { - background-color: white; - color: #dc322f; } - entry:drop(active):focus, entry:drop(active) { - border-color: #b58900; - box-shadow: none; } - .osd entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .osd entry image, .osd entry image:hover { - color: inherit; } - .osd entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd entry:disabled { - color: rgba(101, 123, 131, 0.55); - background-color: rgba(18, 137, 167, 0.2); } - .osd entry selection:focus, .osd entry selection { - color: #268bd2; - background-color: #fdf6e3; } - entry progress { - margin: 0 -6px; - border-radius: 0; - border-width: 0 0 2px; - border-color: #268bd2; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; } - -treeview entry.flat, treeview entry { - border-radius: 0; - background-image: none; - background-color: #fdf6e3; } - treeview entry.flat:focus, treeview entry:focus { - border-color: #268bd2; } - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.01, to(#268bd2), to(transparent)); } - to { - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); } } - -button { - min-height: 22px; - min-width: 20px; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - border: 1px solid; - border-radius: 3px; - padding: 2px 6px; - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - button separator { - margin: 4px 1px; } - button.flat, button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - transition: none; } - button.flat:hover, button.sidebar-button:hover { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-duration: 350ms; } - button.flat:hover:active, button.sidebar-button:hover:active { - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; - -gtk-icon-effect: highlight; } - button:active, button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; - background-clip: border-box; - transition-duration: 50ms; } - button:active:not(:disabled) label:disabled, button:checked:not(:disabled) label:disabled { - color: inherit; - opacity: 0.6; } - button:active { - color: #5c616c; } - button:active:hover, button:checked { - color: #fdf6e3; } - button.flat:disabled, button.sidebar-button:disabled { - border-color: transparent; - background-color: transparent; - background-image: none; } - button:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - button:disabled label, button:disabled { - color: rgba(92, 97, 108, 0.55); } - button:disabled:active, button:disabled:checked { - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - button:disabled:active label, button:disabled:active, button:disabled:checked label, button:disabled:checked { - color: rgba(253, 246, 227, 0.8); } - button.image-button { - min-width: 24px; - padding-left: 5px; - padding-right: 5px; } - button.text-button { - padding-left: 12px; - padding-right: 12px; } - button.text-button.image-button { - padding-left: 5px; - padding-right: 5px; } - button.text-button.image-button label:first-child { - padding-left: 8px; - padding-right: 2px; } - button.text-button.image-button label:last-child { - padding-right: 8px; - padding-left: 2px; } - button.text-button.image-button label:only-child { - padding-left: 8px; - padding-right: 8px; } - button.text-button.image-button.popup { - padding-right: 8px; - padding-left: 8px; } - button:drop(active), combobox:drop(active) button.combo { - color: #b58900; - border-color: #b58900; - box-shadow: none; } - button.osd { - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(3, 24, 29, 0.95); } - button.osd.image-button { - padding: 0; - min-height: 36px; - min-width: 36px; } - button.osd:hover { - color: #268bd2; } - button.osd:active, button.osd:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - button.osd:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .osd button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd button:active, .osd button:checked { - background-clip: padding-box; - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - .osd button.flat, .osd button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - .osd button.flat:hover, .osd button.sidebar-button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .osd button.flat:disabled, .osd button.sidebar-button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); - background-image: none; } - .osd button.flat:active, .osd button.sidebar-button:active, .osd button.flat:checked, .osd button.sidebar-button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - .osd .linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child), - .osd .linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active) + button:not(:checked):not(:active) { - box-shadow: none; } - button.suggested-action { - background-clip: border-box; - color: white; - background-color: #2aa198; - border-color: #2aa198; } - button.suggested-action.flat, button.suggested-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; } - button.suggested-action:hover { - background-clip: border-box; - color: white; - background-color: #35c9be; - border-color: #35c9be; } - button.suggested-action:active, button.suggested-action:checked { - background-clip: border-box; - color: white; - background-color: #1f7972; - border-color: #1f7972; } - button.suggested-action.flat:disabled, button.suggested-action.sidebar-button:disabled { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - button.suggested-action:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - button.suggested-action:disabled label, button.suggested-action:disabled { - color: rgba(92, 97, 108, 0.55); } - button.destructive-action { - background-clip: border-box; - color: white; - background-color: #dc322f; - border-color: #dc322f; } - button.destructive-action.flat, button.destructive-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; } - button.destructive-action:hover { - background-clip: border-box; - color: white; - background-color: #e35d5b; - border-color: #e35d5b; } - button.destructive-action:active, button.destructive-action:checked { - background-clip: border-box; - color: white; - background-color: #b9221f; - border-color: #b9221f; } - button.destructive-action.flat:disabled, button.destructive-action.sidebar-button:disabled { - border-color: transparent; - background-color: transparent; - background-image: none; - color: rgba(92, 97, 108, 0.55); } - button.destructive-action:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - button.destructive-action:disabled label, button.destructive-action:disabled { - color: rgba(92, 97, 108, 0.55); } - .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; } - .stack-switcher > button.needs-attention > label, .stack-switcher > button.needs-attention > image, button stacksidebar row.needs-attention > label, stacksidebar button row.needs-attention > label { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, center center, 0, center center, 0.5, to(#268bd2), to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - background-position: right 3px, right 4px; } - .stack-switcher > button.needs-attention > label:dir(rtl), .stack-switcher > button.needs-attention > image:dir(rtl), button stacksidebar row.needs-attention > label:dir(rtl), stacksidebar button row.needs-attention > label:dir(rtl) { - background-position: left 3px, left 4px; } - button.font separator, button.file separator { - background-color: transparent; } - .inline-toolbar button, .inline-toolbar button:backdrop { - border-radius: 2px; - border-width: 1px; } - -.inline-toolbar toolbutton > button { - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - .inline-toolbar toolbutton > button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; } - .inline-toolbar toolbutton > button:active, .inline-toolbar toolbutton > button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - .inline-toolbar toolbutton > button:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - .inline-toolbar toolbutton > button:disabled label, .inline-toolbar toolbutton > button:disabled { - color: rgba(92, 97, 108, 0.55); } - .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked { - border-color: rgba(38, 139, 210, 0.75); - background-color: rgba(38, 139, 210, 0.75); - opacity: 0.6; } - .inline-toolbar toolbutton > button:disabled:active label, .inline-toolbar toolbutton > button:disabled:active, .inline-toolbar toolbutton > button:disabled:checked label, .inline-toolbar toolbutton > button:disabled:checked { - color: rgba(253, 246, 227, 0.8); } - -.linked:not(.vertical):not(.path-bar) > entry + entry { - border-left-color: rgba(101, 123, 131, 0.3); } - -.linked:not(.vertical):not(.path-bar) > entry.error + entry, -.linked:not(.vertical):not(.path-bar) > entry + entry.error { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > entry.warning + entry, -.linked:not(.vertical):not(.path-bar) > entry + entry.warning { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, -.linked:not(.vertical):not(.path-bar) > entry.warning + entry.error { - border-left-color: #d43f23; } - -.linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child { - border-left-color: #b58900; } - -.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo { - border-left-color: #b58900; } - -.linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #cb4b16; } - -.linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), -.linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, -.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, -.linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #dc322f; } - -.linked:not(.vertical):not(.path-bar) > button:active + entry, -.linked:not(.vertical):not(.path-bar) > button:checked + entry { - border-left-color: #268bd2; } - -.linked:not(.vertical):not(.path-bar) > button + button { - border-left-style: none; } - -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 1px 0 #657b83; } - -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.5); } - -.linked:not(.vertical):not(.path-bar) > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked:not(.vertical):not(.path-bar) > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:disabled, -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked:not(.vertical):not(.path-bar) > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked:not(.vertical):not(.path-bar) > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child) { - box-shadow: none; } - -.linked:not(.vertical).path-bar > button + button { - border-left-style: none; } - -.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4), inset -1px 0 rgba(101, 123, 131, 0.4); } - -.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(101, 123, 131, 0.4); } - -.linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.4); } - -.linked.vertical > entry + entry { - border-top-color: rgba(101, 123, 131, 0.3); } - -.linked.vertical > entry.error + entry, -.linked.vertical > entry + entry.error { - border-top-color: #dc322f; } - -.linked.vertical > entry.warning + entry, -.linked.vertical > entry + entry.warning { - border-top-color: #cb4b16; } - -.linked.vertical > entry.error + entry.warning, -.linked.vertical > entry.warning + entry.error { - border-top-color: #d43f23; } - -.linked.vertical > entry + entry:focus:not(:last-child), -.linked.vertical > entry + entry:focus:last-child { - border-top-color: #268bd2; } - -.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: #268bd2; } - -.linked.vertical > entry + entry:drop(active):not(:last-child), -.linked.vertical > entry + entry:drop(active):last-child { - border-top-color: #b58900; } - -.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: #b58900; } - -.linked.vertical > entry + entry.warning:focus:not(:last-child), -.linked.vertical > entry + entry.warning:focus:last-child { - border-top-color: #cb4b16; } - -.linked.vertical > entry.warning:focus:not(:only-child) + entry, -.linked.vertical > entry.warning:focus:not(:only-child) + button, -.linked.vertical > entry.warning:focus:not(:only-child) + combobox > box > button.combo { - border-top-color: #cb4b16; } - -.linked.vertical > entry + entry.error:focus:not(:last-child), -.linked.vertical > entry + entry.error:focus:last-child { - border-top-color: #dc322f; } - -.linked.vertical > entry.error:focus:not(:only-child) + entry, -.linked.vertical > entry.error:focus:not(:only-child) + button, -.linked.vertical > entry.error:focus:not(:only-child) + combobox > box > button.combo { - border-top-color: #dc322f; } - -.linked.vertical > button:active + entry, -.linked.vertical > button:checked + entry { - border-top-color: #268bd2; } - -.linked.vertical > button + button { - border-top-style: none; } - -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action) { - box-shadow: inset 0 1px #657b83; } - -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { - box-shadow: inset 0 1px rgba(101, 123, 131, 0.5); } - -.linked.vertical > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover, -.linked.vertical > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:disabled, -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):first-child:hover, -.linked.vertical > button:active + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button:checked + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button.suggested-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > button.destructive-action + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled, -.linked.vertical > entry + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child) { - box-shadow: none; } - -toolbar.inline-toolbar toolbutton > button.flat, .inline-toolbar toolbutton > button.flat, toolbar.inline-toolbar toolbutton > button.sidebar-button, .inline-toolbar toolbutton > button.sidebar-button, .linked:not(.vertical) > entry, -.linked:not(.vertical) > entry:focus, .inline-toolbar button, .inline-toolbar button:backdrop, .linked:not(.vertical) > button, -.linked:not(.vertical) > button:hover, -.linked:not(.vertical) > button:active, -.linked:not(.vertical) > button:checked, spinbutton:not(.vertical) button, spinbutton:not(.vertical) entry, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, .primary-toolbar .linked:not(.vertical).path-bar > button, headerbar .linked:not(.vertical).path-bar > button, .primary-toolbar .linked:not(.vertical).path-bar > button:hover, headerbar .linked:not(.vertical).path-bar > button:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:active, headerbar .linked:not(.vertical).path-bar > button:active, .primary-toolbar .linked:not(.vertical).path-bar > button:checked, headerbar .linked:not(.vertical).path-bar > button:checked, .primary-toolbar .linked:not(.vertical).path-bar > button:disabled, headerbar .linked:not(.vertical).path-bar > button:disabled, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:active, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:checked, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:disabled, .linked:not(.vertical) > combobox > box > button.combo:dir(ltr), .linked:not(.vertical) > combobox > box > button.combo:dir(rtl) { - border-radius: 0; - border-right-style: none; } - -.linked:not(.vertical) > entry:first-child, .inline-toolbar button:first-child, .linked:not(.vertical) > button:first-child, toolbar.inline-toolbar toolbutton:first-child > button.flat, .inline-toolbar toolbutton:first-child > button.flat, toolbar.inline-toolbar toolbutton:first-child > button.sidebar-button, .inline-toolbar toolbutton:first-child > button.sidebar-button, spinbutton:not(.vertical) button:first-child, spinbutton:not(.vertical) entry:first-child, .linked:not(.vertical) > combobox:first-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:first-child, .primary-toolbar .linked:not(.vertical).path-bar > button:first-child, headerbar .linked:not(.vertical).path-bar > button:first-child, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; } - -.linked:not(.vertical) > entry:last-child, .inline-toolbar button:last-child, .linked:not(.vertical) > button:last-child, toolbar.inline-toolbar toolbutton:last-child > button.flat, .inline-toolbar toolbutton:last-child > button.flat, toolbar.inline-toolbar toolbutton:last-child > button.sidebar-button, .inline-toolbar toolbutton:last-child > button.sidebar-button, spinbutton:not(.vertical) button:last-child, spinbutton:not(.vertical) entry:last-child, .linked:not(.vertical) > combobox:last-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:last-child, .primary-toolbar .linked:not(.vertical).path-bar > button:last-child, headerbar .linked:not(.vertical).path-bar > button:last-child, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - border-right-style: solid; } - -.linked:not(.vertical) > entry:only-child, .inline-toolbar button:only-child, .linked:not(.vertical) > button:only-child, toolbar.inline-toolbar toolbutton:only-child > button.flat, .inline-toolbar toolbutton:only-child > button.flat, toolbar.inline-toolbar toolbutton:only-child > button.sidebar-button, .inline-toolbar toolbutton:only-child > button.sidebar-button, spinbutton:not(.vertical) button:only-child, spinbutton:not(.vertical) entry:only-child, .linked:not(.vertical) > combobox:only-child > box > button.combo, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:only-child, .primary-toolbar .linked:not(.vertical).path-bar > button:only-child, headerbar .linked:not(.vertical).path-bar > button:only-child, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:only-child { - border-radius: 3px; - border-style: solid; } - -.linked.vertical > entry, -.linked.vertical > entry:focus, .linked.vertical > button, -.linked.vertical > button:hover, -.linked.vertical > button:active, -.linked.vertical > button:checked, spinbutton.vertical button, spinbutton.vertical entry, .linked.vertical > combobox > box > button.combo { - border-radius: 0; - border-bottom-style: none; } - -.linked.vertical > entry:first-child, .linked.vertical > button:first-child, spinbutton.vertical button:first-child, spinbutton.vertical entry:first-child, .linked.vertical > combobox:first-child > box > button.combo { - border-top-left-radius: 3px; - border-top-right-radius: 3px; } - -.linked.vertical > entry:last-child, .linked.vertical > button:last-child, spinbutton.vertical button:last-child, spinbutton.vertical entry:last-child, .linked.vertical > combobox:last-child > box > button.combo { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border-bottom-style: solid; } - -.linked.vertical > entry:only-child, .linked.vertical > button:only-child, spinbutton.vertical button:only-child, spinbutton.vertical entry:only-child, .linked.vertical > combobox:only-child > box > button.combo { - border-radius: 3px; - border-style: solid; } - -menuitem.button.flat, -modelbutton.flat, button:link, button:visited, button:link:hover, button:link:active, button:link:checked, button:visited:hover, button:visited:active, button:visited:checked, notebook > header > tabs > tab button.flat:hover, notebook > header > tabs > tab button.sidebar-button:hover, notebook > header > tabs > tab button.flat:active, notebook > header > tabs > tab button.sidebar-button:active, notebook > header > tabs > tab button.flat:active:hover, notebook > header > tabs > tab button.sidebar-button:active:hover, .app-notification button.flat, .app-notification button.sidebar-button, .app-notification button.flat:disabled, .app-notification button.sidebar-button:disabled, calendar.button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; } - -menuitem.button.flat, -modelbutton.flat { - transition: none; - min-height: 24px; - padding-left: 8px; - padding-right: 8px; - outline-offset: -3px; - border-radius: 2px; } - menuitem.button.flat:hover, - modelbutton.flat:hover { - background-color: #edeff0; } - menuitem.button.flat:checked, - modelbutton.flat:checked { - color: #5c616c; } - menuitem.button.flat check:last-child, - menuitem.button.flat radio:last-child, - modelbutton.flat check:last-child, - modelbutton.flat radio:last-child { - margin-left: 8px; } - menuitem.button.flat check:first-child, - menuitem.button.flat radio:first-child, - modelbutton.flat check:first-child, - modelbutton.flat radio:first-child { - margin-right: 8px; } - -modelbutton.flat arrow.left { - -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); } - -modelbutton.flat arrow.right { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - -*:link, button:link, button:visited { - color: #1e6ea7; } - *:link:visited, button:visited { - color: #16527c; } - *:selected *:link:visited, *:selected button:visited:link, *:selected button:visited { - color: #a7cbdc; } - *:link:hover, button:hover:link, button:hover:visited { - color: #268bd2; } - *:selected *:link:hover, *:selected button:hover:link, *:selected button:hover:visited { - color: #e8ebe1; } - *:link:active, button:active:link, button:active:visited { - color: #1e6ea7; } - *:selected *:link:active, *:selected button:active:link, *:selected button:active:visited { - color: #d2e1e0; } - infobar.info *:link, infobar.info button:link, infobar.info button:visited, infobar.question *:link, infobar.question button:link, infobar.question button:visited, infobar.warning *:link, infobar.warning button:link, infobar.warning button:visited, infobar.error *:link, infobar.error button:link, infobar.error button:visited, *:link:selected, button:selected:link, button:selected:visited, headerbar.selection-mode .subtitle:link, .selection-mode.titlebar:not(headerbar) .subtitle:link, - *:selected *:link, - *:selected button:link, - *:selected button:visited { - color: #d2e1e0; } - -button:link > label, button:visited > label { - text-decoration-line: underline; } - -spinbutton:drop(active) { - box-shadow: none; } - -spinbutton button:active { - color: #fdf6e3; } - -spinbutton:disabled { - color: rgba(92, 97, 108, 0.55); } - -spinbutton:not(.vertical) entry { - min-width: 28px; } - -spinbutton:not(.vertical):dir(ltr) entry, -spinbutton:not(.vertical):dir(rtl) button.up { - border-radius: 3px 0 0 3px; } - -spinbutton:not(.vertical) > button + button { - border-left-style: none; } - -spinbutton:not(.vertical) > button:hover:not(:active), -spinbutton:not(.vertical) > button:hover + button { - box-shadow: inset 1px 0 #657b83; } - -spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), -spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled { - box-shadow: inset 1px 0 rgba(101, 123, 131, 0.5); } - -spinbutton:not(.vertical) > button:first-child:hover:not(:active), -spinbutton:not(.vertical) > button.up:dir(rtl):hover:not(:active), -spinbutton:not(.vertical) > entry + button:not(:active):hover { - box-shadow: none; } - -spinbutton:not(.vertical) > entry:focus + button { - border-left-color: #268bd2; } - -spinbutton:not(.vertical) > entry:drop(active) + button { - border-left-color: #b58900; } - -.osd spinbutton:not(.vertical) > button:hover:not(:active), -.osd spinbutton:not(.vertical) > button:hover + button { - box-shadow: inset 1px 0 rgba(1, 9, 11, 0.35); } - -.osd spinbutton:not(.vertical) > button:first-child:hover:not(:active), -.osd spinbutton:not(.vertical) > button.up:dir(rtl):hover:not(:active), -.osd spinbutton:not(.vertical) > entry + button:not(:active):hover { - box-shadow: none; } - -.osd spinbutton:not(.vertical) > entry:focus + button { - border-left-color: rgba(1, 9, 11, 0.35); } - -spinbutton.vertical button, spinbutton.vertical entry { - padding-left: 4px; - padding-right: 4px; - min-width: 0; } - -spinbutton.vertical button.up { - border-radius: 3px 3px 0 0; } - -spinbutton.vertical > entry:focus + button { - border-top-color: #268bd2; } - -spinbutton.vertical > entry:drop(active) + button { - border-top-color: #b58900; } - -combobox button.combo { - min-width: 0; - padding-left: 8px; - padding-right: 8px; } - -combobox arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); - min-height: 16px; - min-width: 16px; } - -toolbar, .inline-toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: #F5F6F7; } - toolbar separator, .inline-toolbar separator { - background: none; } - toolbar.horizontal separator, .horizontal.inline-toolbar separator { - margin: 0 6px; } - toolbar.vertical separator, .vertical.inline-toolbar separator { - margin: 6px 0; } - .osd toolbar, .osd .inline-toolbar { - background-color: transparent; } - toolbar.osd, .osd.inline-toolbar { - padding: 7px; - border: 1px solid rgba(0, 0, 0, 0.5); - border-radius: 3px; - background-color: rgba(7, 54, 66, 0.85); } - toolbar.osd.left, .osd.left.inline-toolbar, toolbar.osd.right, .osd.right.inline-toolbar, toolbar.osd.top, .osd.top.inline-toolbar, toolbar.osd.bottom, .osd.bottom.inline-toolbar { - border-radius: 0; } - toolbar.osd.top, .osd.top.inline-toolbar { - border-width: 0 0 1px 0; } - toolbar.osd.bottom, .osd.bottom.inline-toolbar { - border-width: 1px 0 0 0; } - toolbar.osd.left, .osd.left.inline-toolbar { - border-width: 0 1px 0 0; } - toolbar.osd.right, .osd.right.inline-toolbar { - border-width: 0 0 0 1px; } - toolbar:not(.inline-toolbar) switch, .inline-toolbar:not(.inline-toolbar) switch, - toolbar:not(.inline-toolbar) scale, .inline-toolbar:not(.inline-toolbar) scale, - toolbar:not(.inline-toolbar) entry, .inline-toolbar:not(.inline-toolbar) entry, - toolbar:not(.inline-toolbar) spinbutton, .inline-toolbar:not(.inline-toolbar) spinbutton, - toolbar:not(.inline-toolbar) button, .inline-toolbar:not(.inline-toolbar) button { - margin-right: 1px; - margin-bottom: 1px; } - toolbar:not(.inline-toolbar) .linked > button, .inline-toolbar:not(.inline-toolbar) .linked > button, - toolbar:not(.inline-toolbar) .linked > entry, .inline-toolbar:not(.inline-toolbar) .linked > entry { - margin-right: 0; } - -.primary-toolbar:not(.libreoffice-toolbar) { - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, #eee8d5, rgba(228, 218, 188, 0.95)) 1 0 1 0; } - -.inline-toolbar { - background-color: #edeef0; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; } - -searchbar { - background-color: #F5F6F7; - border-style: solid; - border-color: #dcdfe3; - border-width: 0 0 1px; - padding: 3px; } - -actionbar { - padding: 6px; - border-top: 1px solid #dcdfe3; - background-color: #edeef0; } - -headerbar, -.titlebar:not(headerbar) { - min-height: 42px; - padding: 0 7px; - border-width: 0 0 1px; - border-style: solid; - border-color: #e4dabc; - color: rgba(82, 93, 118, 0.8); - background-color: #eee8d5; - box-shadow: inset 0 1px rgba(242, 238, 224, 0.95); } - .csd headerbar, - .csd .titlebar:not(headerbar) { - background-color: rgba(238, 232, 213, 0.95); - border-color: rgba(228, 218, 188, 0.95); } - headerbar:backdrop, - .titlebar:backdrop:not(headerbar) { - transition: 200ms ease-out; - color: rgba(82, 93, 118, 0.5); - background-color: #f2eee0; } - .csd headerbar:backdrop, - .csd .titlebar:backdrop:not(headerbar) { - background-color: rgba(242, 238, 224, 0.95); } - headerbar .title, .titlebar:not(headerbar) .title { - padding-left: 12px; - padding-right: 12px; } - headerbar .subtitle, .titlebar:not(headerbar) .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; } - headerbar.selection-mode, - .selection-mode.titlebar:not(headerbar) { - color: #fdf6e3; - background-color: rgba(38, 139, 210, 0.95); - border-color: rgba(35, 128, 193, 0.95); - box-shadow: none; } - headerbar.selection-mode:backdrop, - .selection-mode.titlebar:backdrop:not(headerbar) { - background-color: rgba(38, 139, 210, 0.95); - color: rgba(253, 246, 227, 0.6); } - headerbar.selection-mode .selection-menu, .selection-mode.titlebar:not(headerbar) .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; } - headerbar.selection-mode .selection-menu GtkArrow, .selection-mode.titlebar:not(headerbar) .selection-menu GtkArrow { - -GtkArrow-arrow-scaling: 1; } - headerbar.selection-mode .selection-menu .arrow, .selection-mode.titlebar:not(headerbar) .selection-menu .arrow { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - .maximized headerbar.selection-mode, - .maximized .selection-mode.titlebar:not(headerbar) { - background-color: #268bd2; } - .tiled headerbar, .tiled headerbar:backdrop, - .maximized headerbar, .maximized headerbar:backdrop, - .tiled .titlebar:not(headerbar), - .tiled .titlebar:backdrop:not(headerbar), - .maximized .titlebar:not(headerbar), - .maximized .titlebar:backdrop:not(headerbar) { - border-radius: 0; } - .maximized headerbar, - .maximized .titlebar:not(headerbar) { - background-color: #eee8d5; - border-color: #e4dabc; } - .maximized headerbar:backdrop, - .maximized .titlebar:backdrop:not(headerbar) { - background-color: #f2eee0; } - headerbar.default-decoration, - .csd headerbar.default-decoration, headerbar.default-decoration:backdrop, - .csd headerbar.default-decoration:backdrop, - .default-decoration.titlebar:not(headerbar), - .csd .default-decoration.titlebar:not(headerbar), - .default-decoration.titlebar:backdrop:not(headerbar), - .csd .default-decoration.titlebar:backdrop:not(headerbar) { - min-height: 28px; - padding: 0 3px; - background-color: #eee8d5; - border-bottom-width: 0; } - .maximized headerbar.default-decoration, .maximized - .csd headerbar.default-decoration, .maximized headerbar.default-decoration:backdrop, .maximized - .csd headerbar.default-decoration:backdrop, - .maximized .default-decoration.titlebar:not(headerbar), - .maximized - .csd .default-decoration.titlebar:not(headerbar), - .maximized .default-decoration.titlebar:backdrop:not(headerbar), - .maximized - .csd .default-decoration.titlebar:backdrop:not(headerbar) { - background-color: #eee8d5; } - -.titlebar { - border-radius: 4px 4px 0 0; } - -headerbar entry, headerbar button, headerbar separator { - margin-top: 6px; - margin-bottom: 6px; } - -separator:first-child + headerbar, separator:first-child + headerbar:backdrop, headerbar:first-child, headerbar:first-child:backdrop { - border-top-left-radius: 4px; } - .maximized separator:first-child + headerbar, - .tiled separator:first-child + headerbar, .maximized separator:first-child + headerbar:backdrop, - .tiled separator:first-child + headerbar:backdrop, .maximized headerbar:first-child, - .tiled headerbar:first-child, .maximized headerbar:first-child:backdrop, - .tiled headerbar:first-child:backdrop { - border-radius: 0; } - -headerbar:last-child, headerbar:last-child:backdrop { - border-top-right-radius: 4px; } - .maximized headerbar:last-child, - .tiled headerbar:last-child, .maximized headerbar:last-child:backdrop, - .tiled headerbar:last-child:backdrop { - border-radius: 0; } - -window > .titlebar:not(headerbar), window > .titlebar:not(headerbar):backdrop, -window.csd > .titlebar:not(headerbar), -window.csd > .titlebar:not(headerbar):backdrop { - padding: 0; - background: none; - border: none; - box-shadow: none; } - -.titlebar:not(headerbar) > separator { - background-image: linear-gradient(to bottom, rgba(228, 218, 188, 0.95), rgba(228, 218, 188, 0.95)); } - -.primary-toolbar:not(.libreoffice-toolbar) separator, headerbar separator.titlebutton, .titlebar:not(headerbar) separator.titlebutton { - min-width: 1px; - min-height: 1px; - background: none; - border-width: 0 1px; - border-image: linear-gradient(to bottom, rgba(82, 93, 118, 0) 25%, rgba(82, 93, 118, 0.15) 25%, rgba(82, 93, 118, 0.15) 75%, rgba(82, 93, 118, 0) 75%) 0 1/0 1px stretch; } - .primary-toolbar:not(.libreoffice-toolbar) separator:backdrop, headerbar separator.titlebutton:backdrop, .titlebar:not(headerbar) separator.titlebutton:backdrop { - opacity: 0.6; } - -.primary-toolbar entry, headerbar entry { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(253, 246, 227, 0.9); } - .primary-toolbar entry image, headerbar entry image, .primary-toolbar entry image:hover, headerbar entry image:hover { - color: inherit; } - .primary-toolbar entry:backdrop, headerbar entry:backdrop { - opacity: 0.85; } - .primary-toolbar entry:focus, headerbar entry:focus { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; - background-clip: border-box; } - .primary-toolbar entry:focus image, headerbar entry:focus image { - color: #fdf6e3; } - .primary-toolbar entry:disabled, headerbar entry:disabled { - color: rgba(82, 93, 118, 0.35); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(253, 246, 227, 0.75); } - .primary-toolbar entry selection:focus, headerbar entry selection:focus { - background-color: #fdf6e3; - color: #268bd2; } - .primary-toolbar entry progress, headerbar entry progress { - border-color: #268bd2; - background-image: none; - background-color: transparent; } - .primary-toolbar entry.warning, headerbar entry.warning { - color: white; - border-color: #cb4b16; - background-color: rgba(216, 134, 94, 0.98); } - .primary-toolbar entry.warning:focus, headerbar entry.warning:focus { - color: white; - background-color: #cb4b16; } - .primary-toolbar entry.warning selection, headerbar entry.warning selection, .primary-toolbar entry.warning selection:focus, headerbar entry.warning selection:focus { - background-color: white; - color: #cb4b16; } - .primary-toolbar entry.error, headerbar entry.error { - color: white; - border-color: #dc322f; - background-color: rgba(227, 118, 109, 0.98); } - .primary-toolbar entry.error:focus, headerbar entry.error:focus { - color: white; - background-color: #dc322f; } - .primary-toolbar entry.error selection, headerbar entry.error selection, .primary-toolbar entry.error selection:focus, headerbar entry.error selection:focus { - background-color: white; - color: #dc322f; } - -.primary-toolbar button, headerbar button { - color: rgba(82, 93, 118, 0.8); - outline-offset: -3px; - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar button:backdrop, headerbar button:backdrop { - opacity: 0.7; } - .primary-toolbar button:hover, headerbar button:hover { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .primary-toolbar button:active, headerbar button:active, .primary-toolbar button:checked, headerbar button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; - background-clip: border-box; } - .primary-toolbar button:disabled, headerbar button:disabled { - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar button:disabled label, headerbar button:disabled label, .primary-toolbar button:disabled, headerbar button:disabled { - color: rgba(82, 93, 118, 0.35); } - .primary-toolbar button:disabled:active, headerbar button:disabled:active, .primary-toolbar button:disabled:checked, headerbar button:disabled:checked { - color: rgba(253, 246, 227, 0.75); - border-color: rgba(38, 139, 210, 0.65); - background-color: rgba(38, 139, 210, 0.65); } - -.selection-mode.primary-toolbar button, headerbar.selection-mode button, .selection-mode.primary-toolbar button.flat, headerbar.selection-mode button.flat, .selection-mode.primary-toolbar button.sidebar-button, headerbar.selection-mode button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar):not(.stack-switcher) button:not(:last-child):not(:only-child), headerbar .linked:not(.vertical):not(.path-bar):not(.stack-switcher) button:not(:last-child):not(:only-child) { - margin-right: 1px; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > button, headerbar .linked:not(.vertical):not(.path-bar) > button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:hover, headerbar .linked:not(.vertical):not(.path-bar) > button:hover, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:active, headerbar .linked:not(.vertical):not(.path-bar) > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:checked, headerbar .linked:not(.vertical):not(.path-bar) > button:checked, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:disabled, headerbar .linked:not(.vertical):not(.path-bar) > button:disabled { - border-radius: 3px; - border-style: solid; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover:not(:only-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):hover + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action), .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled:not(:only-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover), headerbar .linked:not(.vertical):not(.path-bar) > button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):disabled + button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action):not(:hover) { - box-shadow: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button, .primary-toolbar .linked:not(.vertical).path-bar > button, headerbar .linked:not(.vertical).path-bar > button { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover, headerbar .linked:not(.vertical).path-bar > button:hover { - background-color: rgba(255, 255, 255, 0.9); } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:active, .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:checked, .primary-toolbar .linked:not(.vertical).path-bar > button:active, headerbar .linked:not(.vertical).path-bar > button:active, .primary-toolbar .linked:not(.vertical).path-bar > button:checked, headerbar .linked:not(.vertical).path-bar > button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - .primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:disabled, .primary-toolbar .linked:not(.vertical).path-bar > button:disabled, headerbar .linked:not(.vertical).path-bar > button:disabled { - color: rgba(82, 93, 118, 0.4); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button + button, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button + button, .primary-toolbar .linked:not(.vertical).path-bar > button + button, headerbar .linked:not(.vertical).path-bar > button + button { - border-left-style: none; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover, headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1), inset -1px 0 rgba(82, 93, 118, 0.1); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover, headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, headerbar .linked:not(.vertical):not(.path-bar).stack-switcher > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, .primary-toolbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover, headerbar .linked:not(.vertical).path-bar > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry { - border-left-color: rgba(82, 93, 118, 0); } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.error + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error { - border-left-color: #dc322f; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning { - border-left-color: #cb4b16; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, headerbar .linked:not(.vertical):not(.path-bar) > entry.error + entry.warning, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry.error, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning + entry.error { - border-left-color: #d43f23; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:focus:last-child { - border-left-color: #268bd2; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #268bd2; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry:drop(active):last-child { - border-left-color: #b58900; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry:drop(active):not(:only-child) + combobox > box > button.combo { - border-left-color: #b58900; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.warning:focus:last-child { - border-left-color: #cb4b16; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry.warning:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #cb4b16; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:not(:last-child), .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child, headerbar .linked:not(.vertical):not(.path-bar) > entry + entry.error:focus:last-child { - border-left-color: #dc322f; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + button, .primary-toolbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo, headerbar .linked:not(.vertical):not(.path-bar) > entry.error:focus:not(:only-child) + combobox > box > button.combo { - border-left-color: #dc322f; } - -.primary-toolbar .linked:not(.vertical):not(.path-bar) > button:active + entry, headerbar .linked:not(.vertical):not(.path-bar) > button:active + entry, .primary-toolbar .linked:not(.vertical):not(.path-bar) > button:checked + entry, headerbar .linked:not(.vertical):not(.path-bar) > button:checked + entry { - border-left-color: #268bd2; } - -.primary-toolbar button.suggested-action, headerbar button.suggested-action { - background-clip: border-box; - color: white; - background-color: #2aa198; - border-color: #2aa198; } - .primary-toolbar button.suggested-action.flat, headerbar button.suggested-action.flat, .primary-toolbar button.suggested-action.sidebar-button, headerbar button.suggested-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #2aa198; } - .primary-toolbar button.suggested-action:hover, headerbar button.suggested-action:hover { - background-clip: border-box; - color: white; - background-color: #35c9be; - border-color: #35c9be; } - .primary-toolbar button.suggested-action:active, headerbar button.suggested-action:active, .primary-toolbar button.suggested-action:checked, headerbar button.suggested-action:checked { - background-clip: border-box; - color: white; - background-color: #1f7972; - border-color: #1f7972; } - .primary-toolbar button.suggested-action.flat:disabled, headerbar button.suggested-action.flat:disabled, .primary-toolbar button.suggested-action.sidebar-button:disabled, headerbar button.suggested-action.sidebar-button:disabled, .primary-toolbar button.suggested-action:disabled, headerbar button.suggested-action:disabled { - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar button.suggested-action.flat:disabled label, headerbar button.suggested-action.flat:disabled label, .primary-toolbar button.suggested-action.sidebar-button:disabled label, headerbar button.suggested-action.sidebar-button:disabled label, .primary-toolbar button.suggested-action.flat:disabled, headerbar button.suggested-action.flat:disabled, .primary-toolbar button.suggested-action.sidebar-button:disabled, headerbar button.suggested-action.sidebar-button:disabled, .primary-toolbar button.suggested-action:disabled label, headerbar button.suggested-action:disabled label, .primary-toolbar button.suggested-action:disabled, headerbar button.suggested-action:disabled { - color: rgba(82, 93, 118, 0.35); } - -.primary-toolbar button.suggested-action:backdrop, headerbar button.suggested-action:backdrop, .primary-toolbar button.suggested-action:backdrop, headerbar button.suggested-action:backdrop { - opacity: 0.8; } - -.primary-toolbar button.destructive-action, headerbar button.destructive-action { - background-clip: border-box; - color: white; - background-color: #dc322f; - border-color: #dc322f; } - .primary-toolbar button.destructive-action.flat, headerbar button.destructive-action.flat, .primary-toolbar button.destructive-action.sidebar-button, headerbar button.destructive-action.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #dc322f; } - .primary-toolbar button.destructive-action:hover, headerbar button.destructive-action:hover { - background-clip: border-box; - color: white; - background-color: #e35d5b; - border-color: #e35d5b; } - .primary-toolbar button.destructive-action:active, headerbar button.destructive-action:active, .primary-toolbar button.destructive-action:checked, headerbar button.destructive-action:checked { - background-clip: border-box; - color: white; - background-color: #b9221f; - border-color: #b9221f; } - .primary-toolbar button.destructive-action.flat:disabled, headerbar button.destructive-action.flat:disabled, .primary-toolbar button.destructive-action.sidebar-button:disabled, headerbar button.destructive-action.sidebar-button:disabled, .primary-toolbar button.destructive-action:disabled, headerbar button.destructive-action:disabled { - background-color: rgba(238, 232, 213, 0); - border-color: rgba(238, 232, 213, 0); } - .primary-toolbar button.destructive-action.flat:disabled label, headerbar button.destructive-action.flat:disabled label, .primary-toolbar button.destructive-action.sidebar-button:disabled label, headerbar button.destructive-action.sidebar-button:disabled label, .primary-toolbar button.destructive-action.flat:disabled, headerbar button.destructive-action.flat:disabled, .primary-toolbar button.destructive-action.sidebar-button:disabled, headerbar button.destructive-action.sidebar-button:disabled, .primary-toolbar button.destructive-action:disabled label, headerbar button.destructive-action:disabled label, .primary-toolbar button.destructive-action:disabled, headerbar button.destructive-action:disabled { - color: rgba(82, 93, 118, 0.35); } - -.primary-toolbar button.destructive-action:backdrop, headerbar button.destructive-action:backdrop, .primary-toolbar button.destructive-action:backdrop, headerbar button.destructive-action:backdrop { - opacity: 0.8; } - -.primary-toolbar spinbutton:not(.vertical):focus, headerbar spinbutton:not(.vertical):focus { - color: #fdf6e3; - caret-color: #fdf6e3; } - -.primary-toolbar spinbutton:not(.vertical) button, headerbar spinbutton:not(.vertical) button, .primary-toolbar spinbutton:not(.vertical) button:disabled, headerbar spinbutton:not(.vertical) button:disabled { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - -.primary-toolbar spinbutton:not(.vertical) button:hover, headerbar spinbutton:not(.vertical) button:hover { - background-color: rgba(255, 255, 255, 0.9); } - -.primary-toolbar spinbutton:not(.vertical) button:active, headerbar spinbutton:not(.vertical) button:active, .primary-toolbar spinbutton:not(.vertical) button:checked, headerbar spinbutton:not(.vertical) button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - -.primary-toolbar spinbutton:not(.vertical) button:disabled, headerbar spinbutton:not(.vertical) button:disabled { - color: rgba(82, 93, 118, 0.4); } - -.primary-toolbar spinbutton:not(.vertical) > button + button, headerbar spinbutton:not(.vertical) > button + button { - border-left-style: none; } - -.primary-toolbar spinbutton:not(.vertical) > button:hover:not(:active), headerbar spinbutton:not(.vertical) > button:hover:not(:active), .primary-toolbar spinbutton:not(.vertical) > button:hover + button, headerbar spinbutton:not(.vertical) > button:hover + button { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - -.primary-toolbar spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), headerbar spinbutton:not(.vertical) > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), .primary-toolbar spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled, headerbar spinbutton:not(.vertical) > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - -.primary-toolbar spinbutton:not(.vertical) > button:first-child:hover:not(:active), headerbar spinbutton:not(.vertical) > button:first-child:hover:not(:active), .primary-toolbar spinbutton:not(.vertical) > entry + button:not(:active):hover, headerbar spinbutton:not(.vertical) > entry + button:not(:active):hover { - box-shadow: none; } - -.primary-toolbar spinbutton:not(.vertical) > entry:focus + button, headerbar spinbutton:not(.vertical) > entry:focus + button { - border-left-color: #268bd2; } - -.primary-toolbar combobox:disabled, headerbar combobox:disabled { - color: rgba(82, 93, 118, 0.2); } - -.primary-toolbar combobox > .linked > button.combo, headerbar combobox > .linked > button.combo { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(253, 246, 227, 0.9); } - .primary-toolbar combobox > .linked > button.combo image, headerbar combobox > .linked > button.combo image, .primary-toolbar combobox > .linked > button.combo image:hover, headerbar combobox > .linked > button.combo image:hover { - color: inherit; } - .primary-toolbar combobox > .linked > button.combo:hover, headerbar combobox > .linked > button.combo:hover { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; - box-shadow: none; } - .primary-toolbar combobox > .linked > button.combo:disabled, headerbar combobox > .linked > button.combo:disabled { - color: rgba(82, 93, 118, 0.35); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(253, 246, 227, 0.75); } - -.primary-toolbar combobox > .linked > entry.combo:dir(ltr), headerbar combobox > .linked > entry.combo:dir(ltr) { - border-right-style: none; } - .primary-toolbar combobox > .linked > entry.combo:dir(ltr):focus, headerbar combobox > .linked > entry.combo:dir(ltr):focus { - box-shadow: none; } - .primary-toolbar combobox > .linked > entry.combo:dir(ltr):focus, headerbar combobox > .linked > entry.combo:dir(ltr):focus { - box-shadow: 1px 0 #268bd2; } - -.primary-toolbar combobox > .linked > entry.combo:dir(rtl), headerbar combobox > .linked > entry.combo:dir(rtl) { - border-left-style: none; } - .primary-toolbar combobox > .linked > entry.combo:dir(rtl):focus, headerbar combobox > .linked > entry.combo:dir(rtl):focus { - box-shadow: none; } - .primary-toolbar combobox > .linked > entry.combo:dir(rtl):focus, headerbar combobox > .linked > entry.combo:dir(rtl):focus { - box-shadow: -1px 0 #268bd2; } - -.primary-toolbar combobox > .linked > button.combo:dir(ltr), headerbar combobox > .linked > button.combo:dir(ltr), .primary-toolbar combobox > .linked > button.combo:dir(ltr):hover, headerbar combobox > .linked > button.combo:dir(ltr):hover, .primary-toolbar combobox > .linked > button.combo:dir(ltr):active, headerbar combobox > .linked > button.combo:dir(ltr):active, .primary-toolbar combobox > .linked > button.combo:dir(ltr):checked, headerbar combobox > .linked > button.combo:dir(ltr):checked, .primary-toolbar combobox > .linked > button.combo:dir(ltr):disabled, headerbar combobox > .linked > button.combo:dir(ltr):disabled { - border-top-left-radius: 0; - border-bottom-left-radius: 0; } - -.primary-toolbar combobox > .linked > button.combo:dir(rtl), headerbar combobox > .linked > button.combo:dir(rtl), .primary-toolbar combobox > .linked > button.combo:dir(rtl):hover, headerbar combobox > .linked > button.combo:dir(rtl):hover, .primary-toolbar combobox > .linked > button.combo:dir(rtl):active, headerbar combobox > .linked > button.combo:dir(rtl):active, .primary-toolbar combobox > .linked > button.combo:dir(rtl):checked, headerbar combobox > .linked > button.combo:dir(rtl):checked, .primary-toolbar combobox > .linked > button.combo:dir(rtl):disabled, headerbar combobox > .linked > button.combo:dir(rtl):disabled { - border-top-right-radius: 0; - border-bottom-right-radius: 0; } - -.primary-toolbar switch:backdrop, headerbar switch:backdrop { - opacity: 0.75; } - -.primary-toolbar progressbar trough, headerbar progressbar trough { - background-color: rgba(82, 93, 118, 0.15); } - -.primary-toolbar progressbar:backdrop, headerbar progressbar:backdrop { - opacity: 0.75; } - -.primary-toolbar scale:backdrop, headerbar scale:backdrop { - opacity: 0.75; } - -.primary-toolbar scale slider, headerbar scale slider { - background-color: #fbfbfc; - border-color: rgba(82, 93, 118, 0.3); } - .primary-toolbar scale slider:hover, headerbar scale slider:hover { - background-color: white; - border-color: rgba(82, 93, 118, 0.3); } - .primary-toolbar scale slider:active, headerbar scale slider:active { - background-color: #268bd2; - border-color: #268bd2; } - .primary-toolbar scale slider:disabled, headerbar scale slider:disabled { - background-color: rgba(247, 246, 241, 0.985); - border-color: rgba(82, 93, 118, 0.3); } - -.primary-toolbar scale trough, headerbar scale trough { - background-color: rgba(82, 93, 118, 0.15); } - .primary-toolbar scale trough:disabled, headerbar scale trough:disabled { - background-color: rgba(82, 93, 118, 0.1); } - -.path-bar button.text-button, .path-bar button.image-button, .path-bar button { - padding-left: 6px; - padding-right: 6px; } - -.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: 10px; } - -.path-bar button.text-button.image-button label:first-child, .path-bar button label:first-child { - padding-left: 10px; } - -.path-bar button.slider-button, .path-bar button:not(.image-button):not(.text-button) { - padding-left: 1px; - padding-right: 1px; } - -.path-bar button image { - padding-left: 4px; - padding-right: 4px; } - -treeview.view { - border-left-color: rgba(92, 97, 108, 0.15); - border-top-color: rgba(0, 0, 0, 0.1); } - * { - -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 acceleditor > label { - background-color: #268bd2; } - treeview.view:selected, treeview.view:selected:focus { - border-radius: 0; - border-left-color: #92c1db; - border-top-color: rgba(92, 97, 108, 0.1); } - treeview.view:disabled { - color: rgba(92, 97, 108, 0.55); } - treeview.view:disabled:selected { - color: #7cb6d9; } - treeview.view.separator { - min-height: 2px; - color: rgba(0, 0, 0, 0.1); } - treeview.view:drop(active) { - border-style: solid none; - border-width: 1px; - border-color: #41769f; } - 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: #adaca8; } - treeview.view.expander:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - treeview.view.expander:hover { - color: #5c616c; } - treeview.view.expander:selected { - color: #bdd6de; } - treeview.view.expander:selected:hover { - color: #fdf6e3; } - treeview.view.expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - treeview.view.progressbar, treeview.view.progressbar:focus { - color: #fdf6e3; - border-radius: 3px; - background-color: #268bd2; } - treeview.view.progressbar:selected, treeview.view.progressbar:selected:focus, treeview.view.progressbar:focus:selected, treeview.view.progressbar:focus:selected:focus { - color: #268bd2; - box-shadow: none; - background-color: #fdf6e3; } - treeview.view.trough { - color: #5c616c; - background-color: #657b83; - border-radius: 3px; - border-width: 0; } - treeview.view.trough:selected, treeview.view.trough:selected:focus { - color: #fdf6e3; - background-color: rgba(0, 0, 0, 0.2); - border-radius: 3px; - border-width: 0; } - treeview.view header button { - min-height: 0; - min-width: 0; - padding: 3px 6px; - font-weight: bold; - color: #7c7f84; - background-color: #fdf6e3; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, #fdf6e3 20%, rgba(0, 0, 0, 0.11) 20%, rgba(0, 0, 0, 0.11) 80%, #fdf6e3 80%) 0 1 0 0/0 1px 0 0 stretch; } - treeview.view header button:hover { - color: #268bd2; } - treeview.view header button:active { - color: #5c616c; } - treeview.view header button:active, treeview.view header button:hover { - background-color: #fdf6e3; } - treeview.view header button:active:hover { - color: #5c616c; } - treeview.view header button:disabled { - border-color: #F5F6F7; - background-image: none; } - treeview.view header button:last-child { - border-right-style: none; - border-image: none; } - treeview.view button.dnd, treeview.view button.dnd:selected, treeview.view button.dnd:hover, treeview.view button.dnd:active, - treeview.view header.button.dnd, - treeview.view header.button.dnd:selected, - treeview.view header.button.dnd:hover, - treeview.view header.button.dnd:active { - padding: 0 6px; - transition: none; - color: #fdf6e3; - background-color: #268bd2; - border-radius: 0; - border-style: none; } - -menubar, -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: #eee8d5; - color: rgba(82, 93, 118, 0.8); } - menubar:backdrop, - .menubar:backdrop { - color: rgba(82, 93, 118, 0.5); } - menubar > menuitem, - .menubar > menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; } - menubar > menuitem:hover, - .menubar > menuitem:hover { - background-color: #268bd2; - color: #fdf6e3; } - menubar > menuitem:disabled, - .menubar > menuitem:disabled { - color: rgba(82, 93, 118, 0.2); - border-color: transparent; } - -menu, -.menu { - margin: 4px; - padding: 0; - border-radius: 0; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; } - .csd menu, .csd - .menu { - padding: 4px 0px; - border-radius: 2px; - border: none; } - menu separator, - .csd menu separator, - .menu separator, - .csd - .menu separator { - margin: 2px 0; - background-color: #fdf6e3; } - menu .separator:not(label), - .csd menu .separator:not(label), - .menu .separator:not(label), - .csd - .menu .separator:not(label) { - color: #fdf6e3; } - menu menuitem, - .menu menuitem { - min-height: 16px; - min-width: 40px; - padding: 5px; } - menu menuitem:hover, - .menu menuitem:hover { - color: #fdf6e3; - background-color: #268bd2; } - menu menuitem:disabled, - .menu menuitem:disabled { - color: rgba(92, 97, 108, 0.55); } - menu menuitem arrow, - .menu menuitem arrow { - min-height: 16px; - min-width: 16px; } - menu menuitem arrow:dir(ltr), - .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) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); - margin-right: 10px; } - 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: 6px; - margin-left: 2px; } - menuitem check:dir(rtl), menuitem radio:dir(rtl) { - margin-left: 6px; - margin-right: 2px; } - menu > arrow, - .menu > arrow { - border-color: transparent; - background-color: transparent; - background-image: none; - min-width: 16px; - min-height: 16px; - padding: 4px; - background-color: #fdf6e3; - border-radius: 0; } - menu > arrow.top, - .menu > arrow.top { - margin-top: -6px; - border-bottom: 1px solid #ede7d7; - -gtk-icon-source: -gtk-icontheme("pan-up-symbolic"); } - menu > arrow.bottom, - .menu > arrow.bottom { - margin-bottom: -6px; - border-top: 1px solid #ede7d7; - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - menu > arrow:hover, - .menu > arrow:hover { - background-color: #ede7d7; } - menu > arrow:disabled, - .menu > arrow:disabled { - color: transparent; - background-color: transparent; - border-color: transparent; } - -popover, -popover.background { - padding: 2px; - border-radius: 3px; - background-clip: border-box; - background-color: #fdf6e3; - box-shadow: 0 2px 6px 1px rgba(0, 0, 0, 0.07); } - .csd popover, popover, .csd - popover.background, - popover.background { - border: 1px solid #cdd2d7; } - popover separator, - popover.background separator { - background-color: #fdf6e3; } - popover > list, - popover > .view, - popover > iconview, - popover > toolbar, - popover > .inline-toolbar, - popover.background > list, - popover.background > .view, - popover.background > iconview, - popover.background > toolbar, - popover.background > .inline-toolbar { - border-style: none; - background-color: transparent; } - -cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; } - cursor-handle.top { - -gtk-icon-source: -gtk-icontheme("selection-start-symbolic"); } - cursor-handle.bottom { - -gtk-icon-source: -gtk-icontheme("selection-end-symbolic"); } - -notebook { - padding: 0; } - notebook.frame { - border: 1px solid #dcdfe3; } - notebook.frame > header { - margin: -1px; } - notebook.frame > header.top { - margin-bottom: 0; } - notebook.frame > header.bottom { - margin-top: 0; } - notebook.frame > header.left { - margin-right: 0; } - notebook.frame > header.right { - margin-left: 0; } - notebook.frame > header.top, notebook.frame > header.bottom { - padding-left: 0; - padding-right: 0; } - notebook.frame > header.left, notebook.frame > header.right { - padding-top: 0; - padding-bottom: 0; } - notebook > stack:not(:only-child) { - background-color: #fdf6e3; } - notebook > header { - padding: 2px; - background-color: #F5F6F7; } - notebook > header.top { - box-shadow: inset 0 -1px #dcdfe3; } - notebook > header.bottom { - box-shadow: inset 0 1px #dcdfe3; } - notebook > header.right { - box-shadow: inset 1px 0 #dcdfe3; } - notebook > header.left { - box-shadow: inset -1px 0 #dcdfe3; } - notebook > header.top { - padding-bottom: 0; } - notebook > header.top > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-bottom: none; - border-radius: 1px 1px 0 0; } - notebook > header.top > tabs > tab + tab { - margin-left: -1px; } - notebook > header.bottom { - padding-top: 0; } - notebook > header.bottom > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-top: none; - border-radius: 0 0 1px 1px; } - notebook > header.bottom > tabs > tab + tab { - margin-left: -1px; } - notebook > header.right { - padding-left: 0; } - notebook > header.right > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-left: none; - border-radius: 0 1px 1px 0; } - notebook > header.right > tabs > tab + tab { - margin-top: -1px; } - notebook > header.left { - padding-right: 0; } - notebook > header.left > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - outline-offset: -4px; - border: 1px solid transparent; - border-right: none; - border-radius: 1px 0 0 1px; } - notebook > header.left > tabs > tab + tab { - margin-top: -1px; } - notebook > header.top > tabs > arrow.up, notebook > header.bottom > tabs > arrow.up { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - notebook > header.top > tabs > arrow.up:last-child, notebook > header.bottom > tabs > arrow.up:last-child { - margin-left: 2px; } - 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.down:first-child, notebook > header.bottom > tabs > arrow.down:first-child { - margin-right: 2px; } - notebook > header.left > tabs > arrow.up, notebook > header.right > tabs > arrow.up { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - notebook > header.left > tabs > arrow.up:last-child, notebook > header.right > tabs > arrow.up:last-child { - margin-top: 2px; } - 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.down:first-child, notebook > header.right > tabs > arrow.down:first-child { - margin-bottom: 2px; } - notebook > header > tabs > arrow { - color: rgba(92, 97, 108, 0.55); } - notebook > header > tabs > arrow:hover { - color: rgba(92, 97, 108, 0.775); } - notebook > header > tabs > arrow:active { - color: #5c616c; } - notebook > header > tabs > arrow:disabled { - color: rgba(92, 97, 108, 0.25); } - notebook > header.top > tabs > tab:hover:not(:checked) { - box-shadow: inset 0 -1px #dcdfe3; } - notebook > header.bottom > tabs > tab:hover:not(:checked) { - box-shadow: inset 0 1px #dcdfe3; } - notebook > header.left > tabs > tab:hover:not(:checked) { - box-shadow: inset -1px 0 #dcdfe3; } - notebook > header.right > tabs > tab:hover:not(:checked) { - box-shadow: inset 1px 0 #dcdfe3; } - notebook > header > tabs > tab { - color: rgba(92, 97, 108, 0.55); - background-color: rgba(253, 246, 227, 0); } - notebook > header > tabs > tab:hover:not(:checked) { - color: rgba(92, 97, 108, 0.775); - background-color: rgba(253, 246, 227, 0.5); - border-color: #dcdfe3; } - notebook > header > tabs > tab:checked { - color: #5c616c; - background-color: #fdf6e3; - border-color: #dcdfe3; } - notebook > header > tabs > tab button.flat, notebook > header > tabs > tab button.sidebar-button { - min-height: 22px; - min-width: 16px; - padding: 0; - color: #92959d; } - notebook > header > tabs > tab button.flat:hover, notebook > header > tabs > tab button.sidebar-button:hover { - color: #ff4d4d; } - notebook > header > tabs > tab button.flat:active, notebook > header > tabs > tab button.sidebar-button:active, notebook > header > tabs > tab button.flat:active:hover, notebook > header > tabs > tab button.sidebar-button:active:hover { - color: #268bd2; } - -scrollbar { - background-color: #fdf4de; - 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 #dcdfe3; } - scrollbar.bottom { - border-top: 1px solid #dcdfe3; } - scrollbar.left { - border-right: 1px solid #dcdfe3; } - scrollbar.right { - border-left: 1px solid #dcdfe3; } - scrollbar button { - border: none; } - 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-right-symbolic"); } - scrollbar.horizontal button.up { - -gtk-icon-source: -gtk-icontheme("pan-left-symbolic"); } - scrollbar slider { - min-width: 6px; - min-height: 6px; - margin: -1px; - border: 4px solid transparent; - border-radius: 8px; - background-clip: padding-box; - background-color: #b8babf; } - scrollbar slider:hover { - background-color: #c7c9cd; } - scrollbar slider:hover:active { - background-color: #268bd2; } - 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) { - opacity: 0.4; - border-color: transparent; - background-color: transparent; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { - margin: 0; - min-width: 4px; - min-height: 4px; - background-color: #8a8e96; - border: 1px solid rgba(255, 255, 255, 0.6); } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).horizontal slider { - margin: 0 2px; - min-width: 40px; } - scrollbar.overlay-indicator:not(.dragging):not(.hovering).vertical slider { - margin: 2px 0; - min-height: 40px; } - scrollbar.overlay-indicator.dragging, scrollbar.overlay-indicator.hovering { - opacity: 0.99; } - scrollbar.horizontal slider { - min-width: 40px; } - scrollbar.vertical slider { - min-height: 40px; } - -switch { - font-size: 1px; - min-width: 52px; - min-height: 24px; - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: center center; } - switch slider { - min-width: 1px; - min-height: 1px; } - switch, switch slider { - outline-color: transparent; - color: transparent; - border: none; - box-shadow: none; } - -switch { - background-image: -gtk-scaled(url("assets/switch.png"), url("assets/switch@2.png")); } - -menuitem:hover switch, -row:selected switch, -infobar switch { - background-image: -gtk-scaled(url("assets/switch-selected.png"), url("assets/switch-selected@2.png")); } - -headerbar switch, -.primary-toolbar switch { - background-image: -gtk-scaled(url("assets/switch-header.png"), url("assets/switch-header@2.png")); } - -switch:checked { - background-image: -gtk-scaled(url("assets/switch-active.png"), url("assets/switch-active@2.png")); } - -menuitem:hover switch:checked, -row:selected switch:checked, -infobar switch:checked { - background-image: -gtk-scaled(url("assets/switch-active-selected.png"), url("assets/switch-active-selected@2.png")); } - -headerbar switch:checked, -.primary-toolbar switch:checked { - background-image: -gtk-scaled(url("assets/switch-active-header.png"), url("assets/switch-active-header@2.png")); } - -switch:disabled { - background-image: -gtk-scaled(url("assets/switch-insensitive.png"), url("assets/switch-insensitive@2.png")); } - -menuitem:hover switch:disabled, -row:selected switch:disabled, -infobar switch:disabled { - background-image: -gtk-scaled(url("assets/switch-insensitive-selected.png"), url("assets/switch-insensitive-selected@2.png")); } - -headerbar switch:disabled, -.primary-toolbar switch:disabled { - background-image: -gtk-scaled(url("assets/switch-insensitive-header.png"), url("assets/switch-insensitive-header@2.png")); } - -switch:checked:disabled { - background-image: -gtk-scaled(url("assets/switch-active-insensitive.png"), url("assets/switch-active-insensitive@2.png")); } - -menuitem:hover switch:checked:disabled, -row:selected switch:checked:disabled, -infobar switch:checked:disabled { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-selected.png"), url("assets/switch-active-insensitive-selected@2.png")); } - -headerbar switch:checked:disabled, -.primary-toolbar switch:checked:disabled { - background-image: -gtk-scaled(url("assets/switch-active-insensitive-header.png"), url("assets/switch-active-insensitive-header@2.png")); } - -.check, -check, -treeview.check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked.png"), url("assets/checkbox-unchecked@2.png")); } - -.osd check, filechooser actionbar check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-dark.png"), url("assets/checkbox-unchecked-dark@2.png")); } - -menuitem check:hover, -.view check:selected, iconview check:selected, -treeview.check:selected, -row:selected check, -infobar check { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-selected.png"), url("assets/checkbox-unchecked-selected@2.png")); } - -.check:disabled, -check:disabled, -treeview.check:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive.png"), url("assets/checkbox-unchecked-insensitive@2.png")); } - -.osd check:disabled, filechooser actionbar check:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-dark.png"), url("assets/checkbox-unchecked-insensitive-dark@2.png")); } - -menuitem check:disabled:hover, -.view check:disabled:selected, iconview check:disabled:selected, -treeview.check:disabled:selected, -row:selected check:disabled, -infobar check:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-unchecked-insensitive-selected.png"), url("assets/checkbox-unchecked-insensitive-selected@2.png")); } - -.check:indeterminate, -check:indeterminate, -treeview.check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed.png"), url("assets/checkbox-mixed@2.png")); } - -.osd check:indeterminate, filechooser actionbar check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-dark.png"), url("assets/checkbox-mixed-dark@2.png")); } - -menuitem check:indeterminate:hover, -.view check:indeterminate:selected, iconview check:indeterminate:selected, -treeview.check:indeterminate:selected, -row:selected check:indeterminate, -infobar check:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-selected.png"), url("assets/checkbox-mixed-selected@2.png")); } - -.check:indeterminate:disabled, -check:indeterminate:disabled, -treeview.check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive.png"), url("assets/checkbox-mixed-insensitive@2.png")); } - -.osd check:indeterminate:disabled, filechooser actionbar check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-dark.png"), url("assets/checkbox-mixed-insensitive-dark@2.png")); } - -menuitem check:indeterminate:disabled:hover, -.view check:indeterminate:disabled:selected, iconview check:indeterminate:disabled:selected, -treeview.check:indeterminate:disabled:selected, -row:selected check:indeterminate:disabled, -infobar check:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-mixed-insensitive-selected.png"), url("assets/checkbox-mixed-insensitive-selected@2.png")); } - -.check:checked, -check:checked, -treeview.check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked.png"), url("assets/checkbox-checked@2.png")); } - -.osd check:checked, filechooser actionbar check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-dark.png"), url("assets/checkbox-checked-dark@2.png")); } - -menuitem check:checked:hover, -.view check:checked:selected, iconview check:checked:selected, -treeview.check:checked:selected, -row:selected check:checked, -infobar check:checked { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selected.png"), url("assets/checkbox-checked-selected@2.png")); } - -.check:checked:disabled, -check:checked:disabled, -treeview.check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive.png"), url("assets/checkbox-checked-insensitive@2.png")); } - -.osd check:checked:disabled, filechooser actionbar check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-dark.png"), url("assets/checkbox-checked-insensitive-dark@2.png")); } - -menuitem check:checked:disabled:hover, -.view check:checked:disabled:selected, iconview check:checked:disabled:selected, -treeview.check:checked:disabled:selected, -row:selected check:checked:disabled, -infobar check:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-insensitive-selected.png"), url("assets/checkbox-checked-insensitive-selected@2.png")); } - -.radio, -radio, -treeview.radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked.png"), url("assets/radio-unchecked@2.png")); } - -.osd radio, filechooser actionbar radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-dark.png"), url("assets/radio-unchecked-dark@2.png")); } - -menuitem radio:hover, -.view radio:selected, iconview radio:selected, -treeview.radio:selected, -row:selected radio, -infobar radio { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-selected.png"), url("assets/radio-unchecked-selected@2.png")); } - -.radio:disabled, -radio:disabled, -treeview.radio:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive.png"), url("assets/radio-unchecked-insensitive@2.png")); } - -.osd radio:disabled, filechooser actionbar radio:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-dark.png"), url("assets/radio-unchecked-insensitive-dark@2.png")); } - -menuitem radio:disabled:hover, -.view radio:disabled:selected, iconview radio:disabled:selected, -treeview.radio:disabled:selected, -row:selected radio:disabled, -infobar radio:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-unchecked-insensitive-selected.png"), url("assets/radio-unchecked-insensitive-selected@2.png")); } - -.radio:indeterminate, -radio:indeterminate, -treeview.radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed.png"), url("assets/radio-mixed@2.png")); } - -.osd radio:indeterminate, filechooser actionbar radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-dark.png"), url("assets/radio-mixed-dark@2.png")); } - -menuitem radio:indeterminate:hover, -.view radio:indeterminate:selected, iconview radio:indeterminate:selected, -treeview.radio:indeterminate:selected, -row:selected radio:indeterminate, -infobar radio:indeterminate { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-selected.png"), url("assets/radio-mixed-selected@2.png")); } - -.radio:indeterminate:disabled, -radio:indeterminate:disabled, -treeview.radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive.png"), url("assets/radio-mixed-insensitive@2.png")); } - -.osd radio:indeterminate:disabled, filechooser actionbar radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-dark.png"), url("assets/radio-mixed-insensitive-dark@2.png")); } - -menuitem radio:indeterminate:disabled:hover, -.view radio:indeterminate:disabled:selected, iconview radio:indeterminate:disabled:selected, -treeview.radio:indeterminate:disabled:selected, -row:selected radio:indeterminate:disabled, -infobar radio:indeterminate:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-mixed-insensitive-selected.png"), url("assets/radio-mixed-insensitive-selected@2.png")); } - -.radio:checked, -radio:checked, -treeview.radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked.png"), url("assets/radio-checked@2.png")); } - -.osd radio:checked, filechooser actionbar radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-dark.png"), url("assets/radio-checked-dark@2.png")); } - -menuitem radio:checked:hover, -.view radio:checked:selected, iconview radio:checked:selected, -treeview.radio:checked:selected, -row:selected radio:checked, -infobar radio:checked { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-selected.png"), url("assets/radio-checked-selected@2.png")); } - -.radio:checked:disabled, -radio:checked:disabled, -treeview.radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive.png"), url("assets/radio-checked-insensitive@2.png")); } - -.osd radio:checked:disabled, filechooser actionbar radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-dark.png"), url("assets/radio-checked-insensitive-dark@2.png")); } - -menuitem radio:checked:disabled:hover, -.view radio:checked:disabled:selected, iconview radio:checked:disabled:selected, -treeview.radio:checked:disabled:selected, -row:selected radio:checked:disabled, -infobar radio:checked:disabled { - -gtk-icon-source: -gtk-scaled(url("assets/radio-checked-insensitive-selected.png"), url("assets/radio-checked-insensitive-selected@2.png")); } - -.view.content-view.check:not(list), iconview.content-view.check:not(list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-selectionmode.png"), url("assets/checkbox-selectionmode@2.png")); - background-color: transparent; } - -.view.content-view.check:checked:not(list), iconview.content-view.check:checked:not(list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox-checked-selectionmode.png"), url("assets/checkbox-checked-selectionmode@2.png")); - background-color: transparent; } - -checkbutton.text-button, radiobutton.text-button { - padding: 2px 0; - outline-offset: 0; } - -checkbutton label:not(:only-child):first-child, radiobutton label:not(:only-child):first-child { - margin-left: 4px; } - -checkbutton label:not(:only-child):last-child, radiobutton label:not(:only-child):last-child { - margin-right: 4px; } - -check, -radio { - min-width: 16px; - min-height: 16px; - margin: 0 2px; } - check:only-child, - menu menuitem check, - radio:only-child, - menu menuitem - radio { - margin: 0; } - -scale { - min-height: 15px; - min-width: 15px; - padding: 3px; } - scale.horizontal trough { - padding: 0 4px; } - scale.horizontal highlight, scale.horizontal fill { - margin: 0 -4px; } - scale.vertical trough { - padding: 4px 0; } - scale.vertical highlight, scale.vertical fill { - margin: -4px 0; } - scale slider { - min-height: 15px; - min-width: 15px; - margin: -6px; } - scale.fine-tune slider { - margin: -4px; } - 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: 4.5px; - border-radius: 2.5px; - background-color: #657b83; } - scale trough:disabled { - background-color: rgba(101, 123, 131, 0.55); } - .osd scale trough { - background-color: rgba(10, 80, 98, 0.95); } - .osd scale trough highlight { - background-color: #268bd2; } - menuitem:hover scale trough, - row:selected scale trough, - infobar scale trough { - background-color: rgba(0, 0, 0, 0.2); } - menuitem:hover scale trough highlight, - row:selected scale trough highlight, - infobar scale trough highlight { - background-color: #fdf6e3; } - menuitem:hover scale trough highlight:disabled, - row:selected scale trough highlight:disabled, - infobar scale trough highlight:disabled { - background-color: #9cc6db; } - menuitem:hover scale trough:disabled, - row:selected scale trough:disabled, - infobar scale trough:disabled { - background-color: rgba(0, 0, 0, 0.1); } - scale highlight { - border-radius: 2.5px; - background-color: #268bd2; } - scale highlight:disabled { - background-color: rgba(38, 139, 210, 0.55); } - scale fill { - border-radius: 2.5px; - background-color: rgba(38, 139, 210, 0.5); } - scale fill:disabled { - background-color: transparent; } - scale slider { - background-color: #fbfbfc; - border: 1px solid rgba(45, 55, 59, 0.5); - border-radius: 100%; - transition: all 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94); - transition-property: background, border; } - scale slider:hover { - background-color: white; } - scale slider:active { - background-clip: border-box; - background-color: #268bd2; - border-color: #268bd2; } - scale slider:disabled { - background-color: #f9f6ec; - border-color: rgba(45, 55, 59, 0.3); } - menuitem:hover scale slider, - row:selected scale slider, - infobar scale slider { - background-clip: border-box; - background-color: #fdf6e3; - border-color: #fdf6e3; } - menuitem:hover scale slider:hover, - row:selected scale slider:hover, - infobar scale slider:hover { - background-color: #dde6e0; - border-color: #dde6e0; } - menuitem:hover scale slider:active, - row:selected scale slider:active, - infobar scale slider:active { - background-color: #92c1db; - border-color: #92c1db; } - menuitem:hover scale slider:disabled, - row:selected scale slider:disabled, - infobar scale slider:disabled { - background-color: #9cc6db; - border-color: #9cc6db; } - .osd scale slider { - background-clip: border-box; - background-color: #268bd2; - border-color: #268bd2; } - .osd scale slider:hover { - background-color: #4ca2df; - border-color: #4ca2df; } - .osd scale slider:active { - background-color: #1e6ea7; - border-color: #1e6ea7; } - scale value { - color: alpha(currentColor,0.4); } - scale marks { - color: alpha(currentColor,0.4); } - scale marks.top { - margin-bottom: 1px; - margin-top: -4px; } - scale marks.bottom { - margin-top: 1px; - margin-bottom: -4px; } - scale marks.top { - margin-right: 1px; - margin-left: -4px; } - scale marks.bottom { - margin-left: 1px; - margin-right: -4px; } - scale.fine-tune marks.top { - margin-bottom: 0px; - margin-top: -2px; } - scale.fine-tune marks.bottom { - margin-top: 0px; - margin-bottom: -2px; } - scale.fine-tune marks.top { - margin-right: 0px; - margin-left: -2px; } - scale.fine-tune marks.bottom { - margin-left: 0px; - margin-right: -2px; } - scale.horizontal indicator { - min-height: 3px; - min-width: 1px; } - scale.horizontal.fine-tune indicator { - min-height: 2px; } - scale.vertical indicator { - min-height: 1px; - min-width: 3px; } - scale.vertical.fine-tune indicator { - min-width: 2px; } - -progressbar { - padding: 0; - font-size: smaller; - color: rgba(92, 97, 108, 0.7); } - progressbar.osd { - min-width: 3px; - min-height: 3px; - background-color: transparent; } - progressbar.osd trough { - border-style: none; - background-color: transparent; - box-shadow: none; } - progressbar progress { - background-color: #268bd2; - border: none; - border-radius: 3px; - box-shadow: none; } - row:selected progressbar progress, - infobar progressbar progress { - background-color: #fdf6e3; } - progressbar trough { - border: none; - border-radius: 3px; - background-color: #657b83; } - row:selected progressbar trough, - infobar progressbar trough { - background-color: rgba(0, 0, 0, 0.2); } - -levelbar block { - min-width: 32px; - min-height: 1px; } - -levelbar.vertical block { - min-width: 1px; - min-height: 32px; } - -levelbar trough { - border: none; - padding: 3px; - border-radius: 3px; - background-color: #657b83; } - -levelbar.horizontal.discrete block { - margin: 0 1px; } - -levelbar.vertical.discrete block { - margin: 1px 0; } - -levelbar block:not(.empty) { - border: 1px solid #268bd2; - background-color: #268bd2; - border-radius: 2px; } - -levelbar block.low { - border-color: #cb4b16; - background-color: #cb4b16; } - -levelbar block.high { - border-color: #268bd2; - background-color: #268bd2; } - -levelbar block.full { - border-color: #859900; - background-color: #859900; } - -levelbar block.empty { - background-color: rgba(92, 97, 108, 0.2); - border-color: rgba(92, 97, 108, 0.2); } - -printdialog paper { - border: 1px solid #dcdfe3; - background: #fdf6e3; - padding: 0; } - -printdialog .dialog-action-box { - margin: 12px; } - -frame > border, -.frame { - margin: 0; - padding: 0; - border-radius: 0; - border: 1px solid #dcdfe3; } - -frame.flat > border, -frame > border.flat, -.frame.flat { - border-style: none; } - -scrolledwindow viewport.frame { - border-style: none; } - -scrolledwindow overshoot.top { - background-image: -gtk-gradient(radial, center top, 0, center top, 0.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 100% 60%; - 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 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.6, from(rgba(38, 139, 210, 0.2)), to(rgba(38, 139, 210, 0))); - background-size: 60% 100%; - background-repeat: no-repeat; - background-position: right center; - background-color: transparent; - border: none; - box-shadow: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow 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; - border: none; } - -scrolledwindow junction { - border-color: transparent; - border-image: linear-gradient(to bottom, #dcdfe3 1px, transparent 1px) 0 0 0 1/0 1px stretch; - background-color: #fdf4de; } - scrolledwindow junction:dir(rtl) { - border-image-slice: 0 1 0 0; } - -separator { - background-color: rgba(0, 0, 0, 0.1); - min-width: 1px; - min-height: 1px; } - -list { - background-color: #fdf6e3; - border-color: #dcdfe3; } - list row { - padding: 2px; } - -row:not(:hover) { - transition: all 150ms cubic-bezier(0.25, 0.46, 0.45, 0.94); } - -row.activatable.has-open-popup, row.activatable:hover { - background-color: rgba(0, 0, 0, 0.05); } - -row.activatable:active { - color: #5c616c; } - -row.activatable:disabled { - color: rgba(92, 97, 108, 0.55); } - row.activatable:disabled image { - color: inherit; } - -row.activatable:selected:active { - color: #fdf6e3; } - -row.activatable:selected.has-open-popup, row.activatable:selected:hover { - background-color: #227dbd; } - -.app-notification { - padding: 10px; - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: rgba(2, 16, 20, 0.95); } - .app-notification border { - border: none; } - .app-notification button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .app-notification button.flat, .app-notification button.sidebar-button { - border-color: rgba(38, 139, 210, 0); } - .app-notification button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - .app-notification button:active, .app-notification button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; - background-clip: padding-box; } - .app-notification button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -expander arrow { - min-width: 16px; - min-height: 16px; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } - expander arrow:dir(rtl) { - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic-rtl"); } - expander arrow:hover { - color: #aaaeb7; } - expander arrow:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -calendar { - color: #5c616c; - border: 1px solid #dcdfe3; - border-radius: 3px; - padding: 2px; } - calendar:selected { - border-radius: 1.5px; } - calendar.header { - color: #5c616c; - border: none; } - calendar.button { - color: rgba(92, 97, 108, 0.45); } - calendar.button:hover { - color: #5c616c; } - calendar.button:disabled { - color: rgba(92, 97, 108, 0.55); } - calendar:indeterminate { - color: alpha(currentColor,0.55); } - calendar.highlight { - color: #5c616c; } - -messagedialog .titlebar { - min-height: 20px; - background-color: rgba(238, 232, 213, 0.95); - border-bottom: 1px solid rgba(228, 218, 188, 0.95); } - -messagedialog .dialog-action-area button { - padding: 8px; - min-height: 0; } - -messagedialog.csd.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; } - -messagedialog.csd .dialog-action-area button { - border-bottom-style: none; } - -messagedialog.csd .dialog-action-area button { - border-radius: 0; - border-right-style: none; } - -messagedialog.csd .dialog-action-area button:last-child { - border-radius: 0 0 3px 0; - border-right-style: none; } - -messagedialog.csd .dialog-action-area button:first-child { - border-radius: 0 0 0 3px; - border-left-style: none; } - -messagedialog.csd .dialog-action-area button:only-child { - border-radius: 0 0 3px 3px; - border-left-style: none; - border-right-style: none; } - -filechooser #pathbarbox { - border-bottom: 1px solid rgba(220, 223, 227, 0.5); } - -filechooserbutton:drop(active) { - box-shadow: none; - border-color: transparent; } - -.sidebar { - border-style: none; - background-color: #fbfbfc; } - stacksidebar.sidebar:dir(ltr) list, - stacksidebar.sidebar.left list, - stacksidebar.sidebar.left:dir(rtl) list, .sidebar:dir(ltr), .sidebar.left, .sidebar.left:dir(rtl) { - border-right: 1px solid #dcdfe3; - border-left-style: none; } - stacksidebar.sidebar:dir(rtl) list, - stacksidebar.sidebar.right list, .sidebar:dir(rtl), .sidebar.right { - border-left: 1px solid #dcdfe3; - border-right-style: none; } - .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; } - -placessidebar > viewport.frame { - border-style: none; } - -placessidebar row { - min-height: 30px; - padding: 0px; } - placessidebar row > revealer { - padding: 0 10px; } - 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-width: 22px; - min-height: 22px; - margin-top: 2px; - margin-bottom: 2px; - padding: 0; - border-radius: 100%; - -gtk-outline-radius: 100%; } - button.sidebar-button:not(:hover):not(:active) > image { - opacity: 0.5; } - placessidebar row.sidebar-placeholder-row { - padding: 0 8px; - min-height: 2px; - background-image: linear-gradient(to bottom, #b58900, #b58900); - background-clip: content-box; } - placessidebar row.sidebar-new-bookmark-row { - color: #268bd2; } - placessidebar row:drop(active):not(:disabled) { - box-shadow: inset 0 1px #b58900, inset 0 -1px #b58900; } - placessidebar row:drop(active):not(:disabled), placessidebar row:drop(active):not(:disabled) label, placessidebar row:drop(active):not(:disabled) image { - color: #b58900; } - placessidebar row:drop(active):not(:disabled):selected { - background-color: #b58900; } - placessidebar row:drop(active):not(:disabled):selected, placessidebar row:drop(active):not(:disabled):selected label, placessidebar row:drop(active):not(:disabled):selected image { - color: #fdf6e3; } - -placesview .server-list-button > image { - -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 > actionbar > revealer > box > label { - padding-left: 8px; - padding-right: 8px; } - -paned > separator { - min-width: 1px; - min-height: 1px; - -gtk-icon-source: none; - border-style: none; - background-color: transparent; - background-image: linear-gradient(to bottom, #dcdfe3, #dcdfe3); - background-size: 1px 1px; } - paned > separator:selected { - background-image: linear-gradient(to bottom, #268bd2, #268bd2); } - paned > separator.wide { - min-width: 5px; - min-height: 5px; - background-color: #F5F6F7; - background-image: linear-gradient(to bottom, #dcdfe3, #dcdfe3), linear-gradient(to bottom, #dcdfe3, #dcdfe3); - background-size: 1px 1px, 1px 1px; } - -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; } - -infobar { - border-style: none; } - infobar.info, infobar.question, infobar.warning, infobar.error { - background-color: #268bd2; - color: #fdf6e3; - caret-color: currentColor; } - infobar.info selection, infobar.question selection, infobar.warning selection, infobar.error selection { - color: #268bd2; - background-color: #fdf6e3; } - -.selection-mode.primary-toolbar button:hover, headerbar.selection-mode button:hover, row:selected button, infobar.info button, infobar.question button, infobar.warning button, infobar.error button, .nautilus-window .floating-bar button { - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.5); } - -row:selected button.flat, row:selected button.sidebar-button, infobar.info button.flat, infobar.info button.sidebar-button, infobar.question button.flat, infobar.question button.sidebar-button, infobar.warning button.flat, infobar.warning button.sidebar-button, infobar.error button.flat, infobar.error button.sidebar-button, .nautilus-window .floating-bar button.flat, .nautilus-window .floating-bar button.sidebar-button { - border-color: transparent; - background-color: transparent; - background-image: none; - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0); } - .selection-mode.primary-toolbar button:disabled, headerbar.selection-mode button:disabled, row:selected button.flat:disabled, row:selected button.sidebar-button:disabled, infobar.info button.flat:disabled, infobar.info button.sidebar-button:disabled, infobar.question button.flat:disabled, infobar.question button.sidebar-button:disabled, infobar.warning button.flat:disabled, infobar.warning button.sidebar-button:disabled, infobar.error button.flat:disabled, infobar.error button.sidebar-button:disabled, .nautilus-window .floating-bar button.flat:disabled, .nautilus-window .floating-bar button.sidebar-button:disabled, .selection-mode.primary-toolbar button:disabled label, headerbar.selection-mode button:disabled label, row:selected button.flat:disabled label, row:selected button.sidebar-button:disabled label, infobar.info button.flat:disabled label, infobar.info button.sidebar-button:disabled label, infobar.question button.flat:disabled label, infobar.question button.sidebar-button:disabled label, infobar.warning button.flat:disabled label, infobar.warning button.sidebar-button:disabled label, infobar.error button.flat:disabled label, infobar.error button.sidebar-button:disabled label, .nautilus-window .floating-bar button.flat:disabled label, .nautilus-window .floating-bar button.sidebar-button:disabled label { - color: rgba(253, 246, 227, 0.4); } - -row:selected button:hover, infobar.info button:hover, infobar.question button:hover, infobar.warning button:hover, infobar.error button:hover, .nautilus-window .floating-bar button:hover { - color: #fdf6e3; - background-color: rgba(253, 246, 227, 0.2); - border-color: rgba(253, 246, 227, 0.8); } - -.selection-mode.primary-toolbar button:active, headerbar.selection-mode button:active, .selection-mode.primary-toolbar button:checked, headerbar.selection-mode button:checked, row:selected button:active, infobar.info button:active, infobar.question button:active, infobar.warning button:active, infobar.error button:active, .nautilus-window .floating-bar button:active, .selection-mode.primary-toolbar button:hover:active, headerbar.selection-mode button:hover:active, .selection-mode.primary-toolbar button:hover:checked, headerbar.selection-mode button:hover:checked, row:selected button:active:hover, infobar.info button:active:hover, infobar.question button:active:hover, infobar.warning button:active:hover, infobar.error button:active:hover, .nautilus-window .floating-bar button:active:hover, row:selected button:checked, infobar.info button:checked, infobar.question button:checked, infobar.warning button:checked, infobar.error button:checked, .nautilus-window .floating-bar button:checked { - color: #268bd2; - background-color: #fdf6e3; - border-color: #fdf6e3; } - -row:selected button:disabled, infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, .nautilus-window .floating-bar button:disabled { - background-color: rgba(253, 246, 227, 0); - border-color: rgba(253, 246, 227, 0.4); } - row:selected button:disabled, infobar.info button:disabled, infobar.question button:disabled, infobar.warning button:disabled, infobar.error button:disabled, .nautilus-window .floating-bar button:disabled, row:selected button:disabled label, infobar.info button:disabled label, infobar.question button:disabled label, infobar.warning button:disabled label, infobar.error button:disabled label, .nautilus-window .floating-bar button:disabled label { - color: rgba(253, 246, 227, 0.5); } - .selection-mode.primary-toolbar button:disabled:active, headerbar.selection-mode button:disabled:active, .selection-mode.primary-toolbar button:disabled:checked, headerbar.selection-mode button:disabled:checked, row:selected button:disabled:active, infobar.info button:disabled:active, infobar.question button:disabled:active, infobar.warning button:disabled:active, infobar.error button:disabled:active, .nautilus-window .floating-bar button:disabled:active, .selection-mode.primary-toolbar button:disabled:checked, headerbar.selection-mode button:disabled:checked, .selection-mode.primary-toolbar button:disabled:active, headerbar.selection-mode button:disabled:active, row:selected button:disabled:checked, infobar.info button:disabled:checked, infobar.question button:disabled:checked, infobar.warning button:disabled:checked, infobar.error button:disabled:checked, .nautilus-window .floating-bar button:disabled:checked { - color: #268bd2; - background-color: rgba(253, 246, 227, 0.5); - border-color: rgba(253, 246, 227, 0.4); } - -tooltip { - border-radius: 2px; - box-shadow: none; } - tooltip.background { - background-color: rgba(12, 92, 112, 0.95); - background-clip: padding-box; } - tooltip.background label { - padding: 4px; } - tooltip decoration { - background-color: transparent; } - tooltip * { - background-color: transparent; - color: #657b83; } - -colorswatch, colorswatch:drop(active) { - border-style: none; } - -colorswatch.top { - border-top-left-radius: 2.5px; - border-top-right-radius: 2.5px; } - colorswatch.top overlay { - border-top-left-radius: 2px; - border-top-right-radius: 2px; } - -colorswatch.bottom { - border-bottom-left-radius: 2.5px; - border-bottom-right-radius: 2.5px; } - colorswatch.bottom overlay { - border-bottom-left-radius: 2px; - border-bottom-right-radius: 2px; } - -colorswatch.left, colorswatch:first-child:not(.top) { - border-top-left-radius: 2.5px; - border-bottom-left-radius: 2.5px; } - colorswatch.left overlay, colorswatch:first-child:not(.top) overlay { - border-top-left-radius: 2px; - border-bottom-left-radius: 2px; } - -colorswatch.right, colorswatch:last-child:not(.bottom) { - border-top-right-radius: 2.5px; - border-bottom-right-radius: 2.5px; } - colorswatch.right overlay, colorswatch:last-child:not(.bottom) overlay { - border-top-right-radius: 2px; - border-bottom-right-radius: 2px; } - -colorswatch.dark overlay { - color: rgba(255, 255, 255, 0.7); } - colorswatch.dark overlay:hover { - border-color: rgba(0, 0, 0, 0.5); } - -colorswatch.light overlay { - color: rgba(0, 0, 0, 0.7); } - colorswatch.light overlay:hover { - border-color: rgba(0, 0, 0, 0.3); } - -colorswatch overlay { - border: 1px solid rgba(0, 0, 0, 0.15); } - colorswatch overlay:hover { - background-color: rgba(255, 255, 255, 0.2); } - -colorswatch:disabled { - opacity: 0.5; } - colorswatch:disabled overlay { - border-color: rgba(0, 0, 0, 0.6); - box-shadow: none; } - -colorswatch#add-color-button { - border-style: solid; - border-width: 1px; - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - colorswatch#add-color-button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; } - colorswatch#add-color-button overlay { - border-color: transparent; - background-color: transparent; - background-image: none; } - -button.color { - padding: 0; } - button.color colorswatch:first-child:last-child, button.color colorswatch:first-child:last-child overlay { - margin: 4px; - border-radius: 0; } - -colorchooser .popover.osd { - border-radius: 3px; } - -.content-view { - background-color: #fdf6e3; } - .content-view:hover { - -gtk-icon-effect: highlight; } - -.scale-popup button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; } - -.context-menu, popover.touch-selection, .csd popover.touch-selection, -popover.background.touch-selection, .csd popover.background.touch-selection { - font: initial; } - -.monospace { - font-family: Monospace; } - -button.circular, button.nautilus-circular-button.image-button, -button.circular-button { - padding: 0; - min-width: 16px; - min-height: 24px; - padding: 2px 6px; - border-radius: 50%; - -gtk-outline-radius: 50%; } - button.circular label, button.nautilus-circular-button.image-button label, - button.circular-button label { - padding: 0; } - -.keycap { - min-width: 16px; - min-height: 20px; - padding: 3px 6px 4px 6px; - color: #5c616c; - background-color: #fdf6e3; - border: 1px solid #dcdfe3; - border-radius: 2.5px; - box-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0.05); } - -stackswitcher button.text-button { - min-width: 80px; } - -stackswitcher button.circular, stackswitcher button.nautilus-circular-button.image-button { - min-width: 0; } - -*:drop(active):focus, -*:drop(active) { - box-shadow: inset 0 0 0 1px #b58900; } - -decoration { - border-radius: 4px 4px 0 0; - border-width: 0px; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 8px 8px 0 rgba(0, 0, 0, 0.2); - margin: 10px; } - decoration:backdrop { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1), 0 8px 8px 0 transparent, 0 5px 5px 0 rgba(0, 0, 0, 0.2); - transition: 200ms ease-out; } - .fullscreen decoration, - .tiled decoration { - border-radius: 0; } - .popup decoration { - box-shadow: none; - border-radius: 0; } - .ssd decoration { - border-radius: 4px 4px 0 0; - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1); } - .ssd decoration.maximized { - border-radius: 0; } - .csd.popup decoration { - border-radius: 2px; - box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.1); } - tooltip.csd decoration { - border-radius: 2px; - box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.1); } - messagedialog.csd decoration { - border-radius: 3px; } - .solid-csd decoration { - border-radius: 0; - margin: 1px; - background-color: rgba(238, 232, 213, 0.95); - box-shadow: none; } - -headerbar.default-decoration button.titlebutton, -.titlebar.default-decoration button.titlebutton { - padding: 0 4px; - min-width: 0; - min-height: 0; - margin: 0; } - -headerbar button.titlebutton, -.titlebar button.titlebutton { - padding: 0; - min-width: 24px; - border-color: transparent; - background-color: transparent; - background-image: none; - background-color: rgba(238, 232, 213, 0); } - headerbar button.titlebutton:hover, - .titlebar button.titlebutton:hover { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - headerbar button.titlebutton:active, headerbar button.titlebutton:checked, - .titlebar button.titlebutton:active, - .titlebar button.titlebutton:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - headerbar button.titlebutton.close, headerbar button.titlebutton.maximize, headerbar button.titlebutton.minimize, - .titlebar button.titlebutton.close, - .titlebar button.titlebutton.maximize, - .titlebar button.titlebutton.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; } - headerbar button.titlebutton.close:backdrop, headerbar button.titlebutton.maximize:backdrop, headerbar button.titlebutton.minimize:backdrop, - .titlebar button.titlebutton.close:backdrop, - .titlebar button.titlebutton.maximize:backdrop, - .titlebar button.titlebutton.minimize:backdrop { - opacity: 1; } - headerbar button.titlebutton.close, - .titlebar button.titlebutton.close { - background-image: -gtk-scaled(url("assets/titlebutton-close.png"), url("assets/titlebutton-close@2.png")); } - headerbar button.titlebutton.close:backdrop, - .titlebar button.titlebutton.close:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-close-backdrop.png"), url("assets/titlebutton-close-backdrop@2.png")); } - headerbar button.titlebutton.close:hover, - .titlebar button.titlebutton.close:hover { - background-image: -gtk-scaled(url("assets/titlebutton-close-hover.png"), url("assets/titlebutton-close-hover@2.png")); } - headerbar button.titlebutton.close:active, - .titlebar button.titlebutton.close:active { - background-image: -gtk-scaled(url("assets/titlebutton-close-active.png"), url("assets/titlebutton-close-active@2.png")); } - headerbar button.titlebutton.maximize, - .titlebar button.titlebutton.maximize { - background-image: -gtk-scaled(url("assets/titlebutton-maximize.png"), url("assets/titlebutton-maximize@2.png")); } - headerbar button.titlebutton.maximize:backdrop, - .titlebar button.titlebutton.maximize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-backdrop.png"), url("assets/titlebutton-maximize-backdrop@2.png")); } - headerbar button.titlebutton.maximize:hover, - .titlebar button.titlebutton.maximize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-hover.png"), url("assets/titlebutton-maximize-hover@2.png")); } - headerbar button.titlebutton.maximize:active, - .titlebar button.titlebutton.maximize:active { - background-image: -gtk-scaled(url("assets/titlebutton-maximize-active.png"), url("assets/titlebutton-maximize-active@2.png")); } - headerbar button.titlebutton.minimize, - .titlebar button.titlebutton.minimize { - background-image: -gtk-scaled(url("assets/titlebutton-minimize.png"), url("assets/titlebutton-minimize@2.png")); } - headerbar button.titlebutton.minimize:backdrop, - .titlebar button.titlebutton.minimize:backdrop { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-backdrop.png"), url("assets/titlebutton-minimize-backdrop@2.png")); } - headerbar button.titlebutton.minimize:hover, - .titlebar button.titlebutton.minimize:hover { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-hover.png"), url("assets/titlebutton-minimize-hover@2.png")); } - headerbar button.titlebutton.minimize:active, - .titlebar button.titlebutton.minimize:active { - background-image: -gtk-scaled(url("assets/titlebutton-minimize-active.png"), url("assets/titlebutton-minimize-active@2.png")); } - -.view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, .view text:selected, iconview text:selected, -textview text:selected, iconview text:selected:focus, -textview text:selected:focus, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, -textview text selection:focus, -textview text selection, flowbox flowboxchild:selected, entry selection:focus, entry selection, menuitem.button.flat:active, menuitem.button.flat:active arrow, menuitem.button.flat:selected, menuitem.button.flat:selected arrow, -modelbutton.flat:active, -modelbutton.flat:active arrow, -modelbutton.flat:selected, -modelbutton.flat:selected arrow, treeview.view:selected, treeview.view:selected:focus, row:selected, calendar:selected, .nemo-window .nemo-window-pane widget.entry:selected:focus, .nemo-window .nemo-window-pane widget.entry:selected, filechooser placessidebar.sidebar row.sidebar-row.has-open-popup:selected, filechooser placessidebar.sidebar row.sidebar-row:selected, filechooser placessidebar.sidebar row.sidebar-row:selected:hover, filechooser placessidebar.sidebar row.sidebar-row:active:hover, -.nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup:selected, -.nautilus-window placessidebar.sidebar row.sidebar-row:selected, -.nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover, -.nautilus-window placessidebar.sidebar row.sidebar-row:active:hover { - background-color: #268bd2; } - row:selected label, label:selected, .view:selected, iconview:selected, .view:selected:focus, iconview:selected:focus, .view text:selected, iconview text:selected, - textview text:selected, iconview text:selected:focus, - textview text:selected:focus, .view text selection:focus, iconview text selection:focus, .view text selection, iconview text selection, - textview text selection:focus, - textview text selection, flowbox flowboxchild:selected, entry selection:focus, entry selection, menuitem.button.flat:active, menuitem.button.flat:active arrow, menuitem.button.flat:selected, menuitem.button.flat:selected arrow, - modelbutton.flat:active, - modelbutton.flat:active arrow, - modelbutton.flat:selected, - modelbutton.flat:selected arrow, treeview.view:selected, treeview.view:selected:focus, row:selected, calendar:selected, .nemo-window .nemo-window-pane widget.entry:selected:focus, .nemo-window .nemo-window-pane widget.entry:selected, filechooser placessidebar.sidebar row.sidebar-row.has-open-popup:selected, filechooser placessidebar.sidebar row.sidebar-row:selected, filechooser placessidebar.sidebar row.sidebar-row:selected:hover, filechooser placessidebar.sidebar row.sidebar-row:active:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup:selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row:active:hover { - color: #fdf6e3; } - row:selected label:disabled, label:disabled:selected, .view:disabled:selected, iconview:disabled:selected, iconview:disabled:selected:focus, .view text:disabled:selected, iconview text:disabled:selected, - textview text:disabled:selected, iconview text selection:disabled:focus, .view text selection:disabled, iconview text selection:disabled, - textview text selection:disabled, flowbox flowboxchild:disabled:selected, label:disabled selection, entry selection:disabled, menuitem.button.flat:disabled:active, menuitem.button.flat:active arrow:disabled, menuitem.button.flat:disabled:selected, menuitem.button.flat:selected arrow:disabled, - modelbutton.flat:disabled:active, - modelbutton.flat:active arrow:disabled, - modelbutton.flat:disabled:selected, - modelbutton.flat:selected arrow:disabled, treeview.view:disabled:selected:focus, row:disabled:selected, calendar:disabled:selected, .nemo-window .nemo-window-pane widget.entry:disabled:selected, filechooser placessidebar.sidebar row.sidebar-row:disabled:selected, filechooser placessidebar.sidebar row.sidebar-row:disabled:active:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled:selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled:active:hover { - color: #92c1db; } - -.gedit-bottom-panel-paned notebook > header.top > tabs > tab:checked, -terminal-window notebook > header.top > tabs > tab:checked { - box-shadow: inset 0 -1px #dcdfe3; } - -terminal-window notebook > header.top, -.mate-terminal notebook > header.top { - padding-top: 3px; - box-shadow: inset 0 1px #e4dabc, inset 0 -1px #dcdfe3; } - terminal-window notebook > header.top button, - .mate-terminal notebook > header.top button { - padding: 0; - min-width: 24px; - min-height: 24px; } - -.nautilus-canvas-item { - border-radius: 2px; } - -.nautilus-desktop.nautilus-canvas-item, .nemo-desktop.nemo-canvas-item, .caja-desktop { - color: white; - text-shadow: 1px 1px rgba(0, 0, 0, 0.6); } - .nautilus-desktop.nautilus-canvas-item:active, .nemo-desktop.nemo-canvas-item:active, .caja-desktop:active { - color: #5c616c; } - .nautilus-desktop.nautilus-canvas-item:selected, .nemo-desktop.nemo-canvas-item:selected, .caja-desktop:selected { - color: #fdf6e3; - text-shadow: none; } - -.nautilus-canvas-item.dim-label, label.nautilus-canvas-item.separator, -popover.background label.nautilus-canvas-item.separator, headerbar .nautilus-canvas-item.subtitle, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle, -.nautilus-list-dim-label { - color: #a9acb2; } - .nautilus-canvas-item.dim-label:selected, label.nautilus-canvas-item.separator:selected, headerbar .nautilus-canvas-item.subtitle:selected, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle:selected, .nautilus-canvas-item.dim-label:selected:focus, label.nautilus-canvas-item.separator:selected:focus, headerbar .nautilus-canvas-item.subtitle:selected:focus, .titlebar:not(headerbar) .nautilus-canvas-item.subtitle:selected:focus, - .nautilus-list-dim-label:selected, - .nautilus-list-dim-label:selected:focus { - color: #d2e1e0; } - -.nautilus-window searchbar { - border-top: 1px solid #dcdfe3; } - -.nautilus-window .searchbar-container { - margin-top: -1px; } - -.nautilus-window notebook, -.nautilus-window notebook > stack:not(:only-child) searchbar { - background-color: #fdf6e3; } - -.disk-space-display { - border-style: solid; - border-width: 1px; } - .disk-space-display.unknown { - background-color: rgba(92, 97, 108, 0.5); - border-color: rgba(69, 72, 80, 0.5); } - .disk-space-display.used { - background-color: rgba(38, 139, 210, 0.8); - border-color: rgba(30, 110, 167, 0.8); } - .disk-space-display.free { - background-color: #edeef0; - border-color: #d0d5da; } - -@keyframes needs_attention_keyframes { - 0% { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - 100% { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } } - -.nautilus-operations-button-needs-attention { - animation: needs_attention_keyframes 2s ease-in-out; } - -.nautilus-operations-button-needs-attention-multiple { - animation: needs_attention_keyframes 3s ease-in-out; - animation-iteration-count: 3; } - -.conflict-row.activatable, .conflict-row.activatable:active { - color: white; - background-color: #dc322f; } - -.conflict-row.activatable:hover { - background-color: #e35d5b; } - -.conflict-row.activatable:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.nemo-window .nemo-places-sidebar.frame { - border-width: 0; } - -.nemo-window notebook { - background-color: #fdf6e3; } - -.nemo-window .nemo-window-pane widget.entry { - border: 1px solid; - border-radius: 3px; - color: #5c616c; - border-color: #268bd2; - background-color: #fdf6e3; } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button { - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(251, 251, 252, 0.9); } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:not(:last-child):not(:only-child) { - margin: 0 0 1px 0; } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover { - background-color: rgba(255, 255, 255, 0.9); } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:active, .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - .nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:disabled { - color: rgba(82, 93, 118, 0.4); } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button + button { - border-left-style: none; } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1), inset -1px 0 rgba(82, 93, 118, 0.1); } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):first-child:hover { - box-shadow: inset -1px 0 rgba(82, 93, 118, 0.1); } - -.nemo-window .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) > button:hover:not(:checked):not(:active):not(:only-child):last-child:hover { - box-shadow: inset 1px 0 rgba(82, 93, 118, 0.1); } - -.caja-notebook { - border-top: 1px solid #dcdfe3; } - -.caja-side-pane .frame { - border-width: 1px 0 0; } - -.caja-notebook .frame { - border-width: 0 0 1px; } - -.open-document-selector-treeview.view, iconview.open-document-selector-treeview { - padding: 3px 6px 3px 6px; - border-color: #fdf6e3; } - .open-document-selector-treeview.view:hover, iconview.open-document-selector-treeview:hover { - background-color: #f2ecdb; } - .open-document-selector-treeview.view:hover:selected, iconview.open-document-selector-treeview:hover:selected { - color: #fdf6e3; - background-color: #268bd2; } - -.open-document-selector-name-label { - color: #5c616c; } - -.open-document-selector-path-label { - color: #adaca8; - font-size: smaller; } - .open-document-selector-path-label:selected { - color: rgba(253, 246, 227, 0.9); } - -.gedit-document-panel row button { - min-width: 22px; - min-height: 22px; - padding: 0; - color: transparent; - background: none; - border: none; - box-shadow: none; } - .gedit-document-panel row button image { - color: inherit; } - -.gedit-document-panel row:hover:not(:selected) button { - color: #92959d; } - .gedit-document-panel row:hover:not(:selected) button:hover { - color: #ff4d4d; } - .gedit-document-panel row:hover:not(:selected) button:active { - color: #5c616c; } - -.gedit-document-panel row:hover:selected button:hover { - color: #ff6666; - background: none; - border: none; - box-shadow: none; } - .gedit-document-panel row:hover:selected button:hover:active { - color: #fdf6e3; } - -.gedit-document-panel-dragged-row { - border: 1px solid #dcdfe3; - background-color: #d9dde0; - color: #5c616c; } - -.gedit-side-panel-paned statusbar { - border-top: 1px solid #dcdfe3; - background-color: #F5F6F7; } - -.gedit-search-slider { - background-color: #fbfbfc; - padding: 6px; - border-color: #dcdfe3; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; } - -.gedit-search-entry-occurrences-tag { - color: rgba(92, 97, 108, 0.6); - border: none; - margin: 2px; - padding: 2px; } - -.gedit-map-frame border { - border-color: rgba(0, 0, 0, 0.3); - border-width: 0; } - .gedit-map-frame border:dir(ltr) { - border-left-width: 1px; } - .gedit-map-frame border:dir(rtl) { - border-right-width: 1px; } - -.pluma-window statusbar frame > border { - border: none; } - -.pluma-window notebook > stack scrolledwindow { - border-width: 0 0 1px 0; } - -#pluma-status-combo-button { - min-height: 0; - padding: 0; - border-top: none; - border-bottom: none; - border-radius: 0; } - -.gb-search-entry-occurrences-tag { - background: none; } - -workbench.csd > stack.titlebar:not(headerbar) { - padding: 0; - background: none; - border: none; - box-shadow: none; } - workbench.csd > stack.titlebar:not(headerbar) headerbar, workbench.csd > stack.titlebar:not(headerbar) headerbar:first-child, workbench.csd > stack.titlebar:not(headerbar) headerbar:last-child { - border-radius: 4px 4px 0 0; } - -editortweak .linked > entry.search:focus + .gb-linked-scroller { - border-top-color: #268bd2; } - -layouttab { - background-color: #fdf6e3; } - -layout { - border: 1px solid #dcdfe3; - -PnlDockBin-handle-size: 1; } - -eggsearchbar box.search-bar { - border-bottom: 1px solid #dcdfe3; } - -pillbox { - color: #fdf6e3; - background-color: #268bd2; - border-radius: 3px; } - pillbox:disabled label { - color: rgba(253, 246, 227, 0.5); } - -docktabstrip { - padding: 0 6px; - background-color: #F5F6F7; - border-bottom: 1px solid #dcdfe3; } - docktabstrip docktab { - min-height: 28px; - border: solid transparent; - border-width: 0 1px; } - docktabstrip docktab label { - opacity: 0.5; } - docktabstrip docktab:checked label, docktabstrip docktab:hover label { - opacity: 1; } - docktabstrip docktab:checked { - border-color: #dcdfe3; - background-color: #fdf6e3; } - -dockbin { - border: 1px solid #dcdfe3; - -PnlDockBin-handle-size: 1; } - -dockpaned { - border: 1px solid #dcdfe3; } - -dockoverlayedge { - background-color: #F5F6F7; } - dockoverlayedge docktabstrip { - padding: 0; - border: none; } - dockoverlayedge.left-edge tab:checked, - dockoverlayedge.right-edge tab:checked { - border-width: 1px 0; } - -popover.messagepopover.background { - padding: 0; } - -popover.messagepopover .popover-content-area { - margin: 16px; } - -popover.messagepopover .popover-action-area { - margin: 8px; } - popover.messagepopover .popover-action-area button:not(:first-child):not(:last-child) { - margin: 0 4px; } - -popover.popover-selector { - padding: 0; } - popover.popover-selector list row { - padding: 5px 0; } - popover.popover-selector list row image { - margin-left: 3px; - margin-right: 10px; } - -entry.search.preferences-search { - border: none; - border-right: 1px solid #dcdfe3; - border-bottom: 1px solid #dcdfe3; - border-radius: 0; } - -preferences stacksidebar.sidebar list { - background-image: linear-gradient(to bottom, #fdf6e3, #fdf6e3); } - -preferences stacksidebar.sidebar list separator { - background-color: transparent; } - -devhelppanel entry:focus, -symboltreepanel entry:focus { - border-color: #dcdfe3; } - -button.run-arrow-button { - min-width: 12px; } - -omnibar.linked > entry:not(:only-child) { - border-style: solid; - border-radius: 3px; - margin-left: 1px; - margin-right: 1px; } - -gstyleslidein #scale_box button.toggle:checked, -gstyleslidein #strings_controls button.toggle:checked, -gstyleslidein #palette_controls button.toggle:checked, -gstyleslidein #components_controls button.toggle:checked { - color: #5c616c; } - -configurationview entry.flat { - background: none; } - -configurationview list { - border-width: 0; } - -.documents-scrolledwin.frame { - border-width: 0; } - -button.documents-load-more { - border-width: 1px 0 0; - border-radius: 0; } - -.documents-icon-bg { - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px; } - -.documents-collection-icon, .photos-collection-icon { - background-color: rgba(92, 97, 108, 0.3); - border-radius: 2px; } - -button.documents-favorite:active, -button.documents-favorite:active:hover { - color: #78b9e6; } - -.documents-entry-tag, .photos-entry-tag { - color: #fdf6e3; - background: #268bd2; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; } - .documents-entry-tag:hover, .photos-entry-tag:hover { - color: #fdf6e3; - background: #3295da; } - .documents-entry-tag:active, .photos-entry-tag:active { - color: #fdf6e3; - background: #2380c1; } - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; } - -.photos-fade-in { - opacity: 1.0; - transition: opacity 0.2s ease-out; } - -.photos-fade-out { - opacity: 0.0; - transition: opacity 0.2s ease-out; } - -.tweak-categories, -.tweak-category:not(:selected):not(:hover) { - background-image: linear-gradient(to bottom, #fdf6e3, #fdf6e3); } - -.tr-workarea undershoot, -.tr-workarea overshoot { - border-color: transparent; } - -.atril-window .primary-toolbar toolbar, .atril-window .primary-toolbar .inline-toolbar { - background: none; } - -#gf-bubble, #gf-bubble.solid, -#gf-osd-window, -#gf-osd-window.solid, -#gf-input-source-popup, -#gf-input-source-popup.solid, -#gf-candidate-popup, -#gf-candidate-popup.solid { - color: #768d96; - background-color: rgba(7, 54, 66, 0.95); - border: 1px solid rgba(3, 24, 29, 0.95); - border-radius: 2px; } - -#gf-bubble levelbar block.low, #gf-bubble levelbar block.high, #gf-bubble levelbar block.full, -#gf-osd-window levelbar block.low, -#gf-osd-window levelbar block.high, -#gf-osd-window levelbar block.full, -#gf-input-source-popup levelbar block.low, -#gf-input-source-popup levelbar block.high, -#gf-input-source-popup levelbar block.full, -#gf-candidate-popup levelbar block.low, -#gf-candidate-popup levelbar block.high, -#gf-candidate-popup levelbar block.full { - background-color: #268bd2; - border-color: #268bd2; } - -#gf-bubble levelbar block.empty, -#gf-osd-window levelbar block.empty, -#gf-input-source-popup levelbar block.empty, -#gf-candidate-popup levelbar block.empty { - background-color: rgba(5, 35, 43, 0.95); } - -#gf-bubble levelbar trough, -#gf-osd-window levelbar trough, -#gf-input-source-popup levelbar trough, -#gf-candidate-popup levelbar trough { - background: none; } - -#gf-input-source { - min-height: 32px; - min-width: 40px; } - #gf-input-source:selected { - color: #fdf6e3; - background-color: #268bd2; - border-radius: 2px; } - -gf-candidate-box label { - padding: 3px; } - -gf-candidate-box:hover, gf-candidate-box:selected { - color: #fdf6e3; - background-color: #268bd2; - border-radius: 2px; } - -MsdOsdWindow.background.osd { - border-radius: 2px; - border: 1px solid rgba(3, 24, 29, 0.95); } - MsdOsdWindow.background.osd .progressbar { - background-color: #268bd2; - border: none; - border-color: red; - border-radius: 5px; } - MsdOsdWindow.background.osd .trough { - background-color: rgba(5, 35, 43, 0.95); - border: none; - border-radius: 5px; } - -.mate-panel-menu-bar, .mate-panel-menu-bar menubar, -panel-toplevel.background, -panel-toplevel.background menubar { - background-color: #05242c; } - -.mate-panel-menu-bar menubar, -.mate-panel-menu-bar #PanelApplet label, -.mate-panel-menu-bar #PanelApplet image, -panel-toplevel.background menubar, -panel-toplevel.background #PanelApplet label, -panel-toplevel.background #PanelApplet image { - color: #657b83; } - -.mate-panel-menu-bar button label, .mate-panel-menu-bar button image, -.mate-panel-menu-bar #tasklist-button label, -.mate-panel-menu-bar #tasklist-button image, -panel-toplevel.background button label, -panel-toplevel.background button image, -panel-toplevel.background #tasklist-button label, -panel-toplevel.background #tasklist-button image { - color: inherit; } - -.mate-panel-menu-bar .wnck-pager, -panel-toplevel.background .wnck-pager { - color: #333e42; - background-color: rgba(0, 0, 0, 0.95); } - .mate-panel-menu-bar .wnck-pager:hover, - panel-toplevel.background .wnck-pager:hover { - background-color: rgba(7, 55, 67, 0.95); } - .mate-panel-menu-bar .wnck-pager:selected, - panel-toplevel.background .wnck-pager:selected { - color: #78b9e6; - background-color: #268bd2; } - -.mate-panel-menu-bar na-tray-applet, -panel-toplevel.background na-tray-applet { - -NaTrayApplet-icon-padding: 0; - -NaTrayApplet-icon-size: 16px; } - -.xfce4-panel.panel { - background-color: rgba(5, 36, 44, 0.95); - text-shadow: none; - -gtk-icon-shadow: none; } - -#tasklist-button { - color: rgba(101, 123, 131, 0.8); - border-radius: 0; - border: none; - background-color: rgba(5, 36, 44, 0); } - #tasklist-button:hover { - color: #7f949c; - background-color: rgba(0, 0, 0, 0.17); } - #tasklist-button:checked { - color: white; - background-color: rgba(0, 0, 0, 0.25); - box-shadow: inset 0 -2px #268bd2; } - -.mate-panel-menu-bar button:not(#tasklist-button), -panel-toplevel.background button:not(#tasklist-button), .xfce4-panel.panel button.flat, .xfce4-panel.panel button.sidebar-button { - color: #657b83; - border-radius: 0; - border: none; - background-color: rgba(5, 36, 44, 0); } - .mate-panel-menu-bar button:hover:not(#tasklist-button), - panel-toplevel.background button:hover:not(#tasklist-button), .xfce4-panel.panel button.flat:hover, .xfce4-panel.panel button.sidebar-button:hover { - border: none; - background-color: rgba(10, 74, 90, 0.95); } - .mate-panel-menu-bar button:active:not(#tasklist-button), - panel-toplevel.background button:active:not(#tasklist-button), .xfce4-panel.panel button.flat:active, .xfce4-panel.panel button.sidebar-button:active, .mate-panel-menu-bar button:checked:not(#tasklist-button), - panel-toplevel.background button:checked:not(#tasklist-button), .xfce4-panel.panel button.flat:checked, .xfce4-panel.panel button.sidebar-button:checked { - color: #fdf6e3; - border: none; - background-color: #268bd2; } - .mate-panel-menu-bar button:active:not(#tasklist-button) label, - panel-toplevel.background button:active:not(#tasklist-button) label, .xfce4-panel.panel button.flat:active label, .xfce4-panel.panel button.sidebar-button:active label, .mate-panel-menu-bar button:active:not(#tasklist-button) image, - panel-toplevel.background button:active:not(#tasklist-button) image, .xfce4-panel.panel button.flat:active image, .xfce4-panel.panel button.sidebar-button:active image, .mate-panel-menu-bar button:checked:not(#tasklist-button) label, - panel-toplevel.background button:checked:not(#tasklist-button) label, .xfce4-panel.panel button.flat:checked label, .xfce4-panel.panel button.sidebar-button:checked label, .mate-panel-menu-bar button:checked:not(#tasklist-button) image, - panel-toplevel.background button:checked:not(#tasklist-button) image, .xfce4-panel.panel button.flat:checked image, .xfce4-panel.panel button.sidebar-button:checked image { - color: inherit; } - -.nautilus-window .floating-bar { - padding: 1px; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 2px 2px 0 0; } - .nautilus-window .floating-bar.bottom.left { - border-top-left-radius: 0; } - .nautilus-window .floating-bar.bottom.right { - border-top-right-radius: 0; } - .nautilus-window .floating-bar button { - border: none; - border-radius: 0; - min-height: 0; } - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - color: rgba(82, 93, 118, 0.8); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(253, 246, 227, 0.9); } - .marlin-pathbar.pathbar image, .marlin-pathbar.pathbar image:hover { - color: inherit; } - .marlin-pathbar.pathbar:focus { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - .marlin-pathbar.pathbar:disabled { - color: rgba(82, 93, 118, 0.35); - border-color: rgba(82, 93, 118, 0.1); - background-color: rgba(253, 246, 227, 0.75); } - .marlin-pathbar.pathbar:active, .marlin-pathbar.pathbar:checked { - color: #268bd2; } - -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: linear-gradient(to bottom, white, white); - background-color: transparent; } - .gala-notification .title, .gala-notification .label { - color: #5c616c; } - -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .panel-shadow { - background-image: none; - background-color: transparent; } - .panel .menu { - box-shadow: none; } - .panel .menu .menuitem { - font-weight: normal; - text-shadow: none; - -gtk-icon-shadow: none; } - .panel .menu .window-frame.menu.csd, - .panel .menu .window-frame.popup.csd { - box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2), 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); } - .panel .menubar > .menuitem { - padding: 3px 6px; } - .panel .menubar > .menuitem:hover { - background-color: transparent; } - .panel .window-frame.menu.csd, - .panel .window-frame.popup.csd { - box-shadow: none; } - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); - -gtk-icon-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); } - .composited-indicator > GtkWidget > GtkWidget:first-child { - padding: 0 2px; } - .composited-indicator .menuitem:active, .composited-indicator .menuitem:hover { - border-style: none; - background-image: none; - box-shadow: none; } - .composited-indicator > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; } - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; } - -.panel .menu .spinner, -.menu .spinner { - opacity: 1; } - -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: #268bd2; - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; } - UnityDecoration .top { - border: 1px solid rgba(0, 0, 0, 0.1); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - background-image: linear-gradient(to bottom, #eee8d5, #eee8d5); - color: rgba(82, 93, 118, 0.8); - box-shadow: inset 0 1px rgba(242, 238, 224, 0.95); } - UnityDecoration .top:backdrop { - border-bottom-width: 0; - color: rgba(82, 93, 118, 0.5); } - UnityDecoration .left, UnityDecoration .right, UnityDecoration .bottom, - UnityDecoration .left:backdrop, UnityDecoration .right:backdrop, UnityDecoration .bottom:backdrop { - background-color: transparent; - background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)); } - -UnityPanelWidget, -.unity-panel { - background-image: linear-gradient(to bottom, #002b36, #002b36); - color: #9cacb2; - box-shadow: none; } - UnityPanelWidget:backdrop, - .unity-panel:backdrop { - color: #677e86; } - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: #fdf6e3; - background-image: linear-gradient(to bottom, #268bd2, #268bd2); - border-bottom: none; } - -.lightdm.menu { - background-image: none; - background-color: rgba(0, 0, 0, 0.4); - border-color: rgba(255, 255, 255, 0.8); - border-radius: 4px; - padding: 1px; - color: white; } - -.lightdm-combo .menu { - background-color: rgba(250, 248, 242, 0.95); - border-radius: 0px; - padding: 0px; - color: white; } - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; } - -.lightdm.menubar { - color: rgba(255, 255, 255, 0.8); - background-image: none; - background-color: rgba(0, 0, 0, 0.5); } - .lightdm.menubar > .menuitem { - padding: 2px 6px; } - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: rgba(0, 0, 0, 0.3); - border-color: rgba(255, 255, 255, 0.4); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; } - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focus, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focus { - background-image: none; - border-image: none; } - -.lightdm.button:focus, -.lightdm.entry:focus { - border-color: rgba(255, 255, 255, 0.1); - border-width: 1px; - border-style: solid; - color: white; } - -.lightdm.entry:selected { - background-color: rgba(255, 255, 255, 0.8); } - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; } - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; } - -.lightdm.toggle-button { - background: none; - border-width: 0; } - .lightdm.toggle-button.selected { - background-color: rgba(0, 0, 0, 0.7); - border-width: 1px; } - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); } } - -.overlay-bar { - background-color: #268bd2; - border-color: #268bd2; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; } - .overlay-bar label { - color: #fdf6e3; } - -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid #dcdfe3; - border-right: 1px solid #dcdfe3; } - -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; } - -.help_button { - border-radius: 100px; - padding: 3px 9px; } - -toolbar.secondary-toolbar, .secondary-toolbar.inline-toolbar { - padding: 3px; - border-bottom: 1px solid #dcdfe3; } - toolbar.secondary-toolbar button, .secondary-toolbar.inline-toolbar button { - padding: 0 3px 0 3px; } - -toolbar.bottom-toolbar, .bottom-toolbar.inline-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: #dcdfe3; - background-color: #F5F6F7; } - toolbar.bottom-toolbar button, .bottom-toolbar.inline-toolbar button { - padding: 2px 3px 2px 3px; } - -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; } - -.source-list, -.source-list.view, -iconview.source-list { - background-color: #F5F6F7; - color: #5c616c; - -gtk-icon-style: regular; } - -.source-list.category-expander { - color: transparent; } - -.source-list.view:hover, iconview.source-list:hover { - background-color: white; } - -.source-list.view:selected, iconview.source-list:selected, -.source-list.view:hover:selected, -iconview.source-list:hover:selected, -.source-list.view:selected:focus, -iconview.source-list:selected:focus, -.source-list.category-expander:hover { - color: #fdf6e3; - background-color: #268bd2; } - -.source-list scrollbar, -.source-list junction { - border-image: none; - border-color: transparent; - background-color: #F5F6F7; - background-image: none; } - -.source-list.badge, -.source-list.badge:hover, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:hover:selected { - background-image: none; - background-color: #268bd2; - color: #fdf6e3; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; } - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:hover:selected { - background-color: #fdf6e3; - color: #268bd2; } - -.source-list.category-expander { - color: #5c616c; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; } - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; } - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); } - -GraniteWidgetsWelcome { - background-color: #fdf6e3; } - -GraniteWidgetsWelcome label { - color: #a9acb2; - font-size: 11px; - text-shadow: none; } - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: rgba(92, 97, 108, 0.8); } - -.help_button { - border-radius: 0; } - -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - border: 1px solid rgba(0, 0, 0, 0.3); - margin: 0; } - -.popover_bg { - background-image: linear-gradient(to bottom, #fdf6e3, #fdf6e3); - border: 1px solid rgba(0, 0, 0, 0.3); } - -GraniteWidgetsPopOver .sidebar.view, GraniteWidgetsPopOver iconview.sidebar, -GraniteWidgetsPopOver * { - background-color: transparent; } - -GraniteWidgetsXsEntry entry { - padding: 4px; } - -.h1 { - font-size: 24px; } - -.h2 { - font-size: 18px; } - -.h3 { - font-size: 11px; } - -.h4, -.category-label { - color: #8a8e96; - font-weight: 600; } - -.h4 { - padding-bottom: 6px; - padding-top: 6px; } - -GtkListBox .h4 { - padding-left: 6px; } - -#panel_window { - background-color: rgba(5, 36, 44, 0.95); - color: #657b83; - font-weight: bold; - box-shadow: inset 0 -1px rgba(1, 10, 12, 0.95); } - #panel_window menubar { - padding-left: 5px; } - #panel_window menubar, #panel_window menubar > menuitem { - background-color: transparent; - color: #657b83; - font-weight: bold; } - #panel_window menubar menuitem:disabled { - color: rgba(101, 123, 131, 0.5); } - #panel_window menubar menuitem:disabled label { - color: inherit; } - #panel_window menubar menu > menuitem { - font-weight: normal; } - -#login_window, -#shutdown_dialog, -#restart_dialog { - font-weight: normal; - border-style: none; - background-color: transparent; - color: #5c616c; } - -#content_frame { - padding-bottom: 14px; - background-color: #F5F6F7; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 1px 1px 0 1px; } - -#content_frame button { - color: #5c616c; - border-color: #657b83; - background-color: #fbfbfc; } - #content_frame button:hover { - color: #5c616c; - border-color: #657b83; - background-color: white; } - #content_frame button:active, #content_frame button:checked { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - #content_frame button:disabled { - border-color: rgba(101, 123, 131, 0.55); - background-color: rgba(251, 251, 252, 0.55); } - #content_frame button:disabled label, #content_frame button:disabled { - color: rgba(92, 97, 108, 0.55); } - -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: rgba(7, 54, 66, 0.95); - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid rgba(0, 0, 0, 0.1); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px rgba(7, 54, 66, 0.95); } - -#buttonbox_frame button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - #buttonbox_frame button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - #buttonbox_frame button:active, #buttonbox_frame button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - #buttonbox_frame button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -#login_window #user_combobox { - color: #5c616c; - font-size: 13px; } - #login_window #user_combobox menu { - font-weight: normal; } - -#user_image { - padding: 3px; - border-radius: 2px; } - -#shutdown_button.button { - background-clip: border-box; - color: green; - background-color: #dc322f; - border-color: #dc322f; } - #shutdown_button.button:hover { - background-clip: border-box; - color: green; - background-color: #e35d5b; - border-color: #e35d5b; } - #shutdown_button.button:active, #shutdown_button.button:checked { - background-clip: border-box; - color: green; - background-color: #b9221f; - border-color: #b9221f; } - -#restart_button.button { - background-clip: border-box; - color: green; - background-color: #2aa198; - border-color: #2aa198; } - #restart_button.button:hover { - background-clip: border-box; - color: green; - background-color: #35c9be; - border-color: #35c9be; } - #restart_button.button:active, #restart_button.button:checked { - background-clip: border-box; - color: green; - background-color: #1f7972; - border-color: #1f7972; } - -#greeter_infobar { - border-bottom-width: 0; - font-weight: bold; } - -.nautilus-window paned > separator { - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.95), rgba(7, 54, 66, 0.95)); } - .nautilus-window paned > separator:dir(ltr) { - margin-left: -1px; } - .nautilus-window paned > separator:dir(rtl) { - margin-right: -1px; } - -filechooser paned > separator { - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.95), rgba(7, 54, 66, 0.95)); } - -filechooser.csd.background, filechooser placessidebar list, -.nautilus-window.csd.background, -.nautilus-window placessidebar list { - background-color: transparent; } - -filechooser placessidebar.sidebar, -.nautilus-window placessidebar.sidebar { - background-color: rgba(7, 54, 66, 0.95); } - filechooser placessidebar.sidebar row.sidebar-row, - .nautilus-window placessidebar.sidebar row.sidebar-row { - border: none; - color: #657b83; } - filechooser placessidebar.sidebar row.sidebar-row .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row .sidebar-icon { - color: rgba(101, 123, 131, 0.6); } - filechooser placessidebar.sidebar row.sidebar-row.has-open-popup, filechooser placessidebar.sidebar row.sidebar-row:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row.has-open-popup, - .nautilus-window placessidebar.sidebar row.sidebar-row:hover { - background-color: rgba(101, 123, 131, 0.15); } - filechooser placessidebar.sidebar row.sidebar-row:disabled, filechooser placessidebar.sidebar row.sidebar-row:disabled label, filechooser placessidebar.sidebar row.sidebar-row:disabled image, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled label, - .nautilus-window placessidebar.sidebar row.sidebar-row:disabled image { - color: rgba(101, 123, 131, 0.4); } - filechooser placessidebar.sidebar row.sidebar-row:selected.has-open-popup .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:selected .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon, filechooser placessidebar.sidebar row.sidebar-row:active:hover .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected.has-open-popup .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:selected:hover .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:active:hover .sidebar-icon { - color: inherit; } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button { - color: #657b83; } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:hover, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:active, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:active { - color: #fdf6e3; - border-color: #268bd2; - background-color: #268bd2; } - filechooser placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:not(:hover):not(:active) > image, - .nautilus-window placessidebar.sidebar row.sidebar-row:not(:selected) button.sidebar-button:not(:hover):not(:active) > image { - opacity: 0.5; } - filechooser placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row, - .nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row { - color: #268bd2; } - filechooser placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row.sidebar-new-bookmark-row .sidebar-icon { - color: inherit; } - filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled), - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) label, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled) .sidebar-icon { - color: #b58900; } - filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected { - background-color: #b58900; } - filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label, filechooser placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected .sidebar-icon, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected label, - .nautilus-window placessidebar.sidebar row.sidebar-row:drop(active):not(:disabled):selected .sidebar-icon { - color: #fdf6e3; } - filechooser placessidebar.sidebar separator, - .nautilus-window placessidebar.sidebar separator { - background-color: transparent; } - -filechooser.maximized placessidebar.sidebar, -.nautilus-window.maximized placessidebar.sidebar { - background-color: #073642; } - -.nemo-window .sidebar { - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); } - .nemo-window .sidebar .view, .nemo-window .sidebar iconview, .nemo-window .sidebar row { - background-color: transparent; - color: #657b83; } - .nemo-window .sidebar .view.cell:selected, .nemo-window .sidebar iconview.cell:selected, .nemo-window .sidebar row.cell:selected { - background-color: #268bd2; - color: #fdf6e3; } - .nemo-window .sidebar .view.expander, .nemo-window .sidebar iconview.expander, .nemo-window .sidebar row.expander { - color: rgba(56, 90, 100, 0.975); } - .nemo-window .sidebar .view.expander:hover, .nemo-window .sidebar iconview.expander:hover, .nemo-window .sidebar row.expander:hover { - color: #657b83; } - .nemo-window .sidebar separator { - background-color: transparent; } - -.caja-side-pane, -.caja-side-pane > notebook > stack > widget > box, -.caja-side-pane text, -.caja-side-pane treeview { - color: #657b83; - caret-color: #657b83; - background-color: #073642; } - -.caja-side-pane > box button:not(:active):not(:checked) { - color: #657b83; } - -.caja-side-pane .frame { - border-color: #05232b; } - -.caja-side-pane junction { - background-color: rgba(5, 35, 43, 0.95); } - -filechooser actionbar { - color: #657b83; - background-color: rgba(7, 54, 66, 0.95); - border-color: rgba(4, 28, 34, 0.95); } - filechooser actionbar label, filechooser actionbar combobox { - color: #657b83; } - -.gedit-bottom-panel-paned { - background-color: #fdf6e3; } - -.gedit-side-panel-paned > separator { - background-image: linear-gradient(to bottom, rgba(7, 54, 66, 0.95), rgba(7, 54, 66, 0.95)); } - -.gedit-bottom-panel-paned > separator { - background-image: linear-gradient(to bottom, #dcdfe3, #dcdfe3); } - -.gedit-document-panel { - background-color: rgba(7, 54, 66, 0.95); } - .maximized .gedit-document-panel { - background-color: #073642; } - .gedit-document-panel row { - color: #657b83; - background-color: rgba(101, 123, 131, 0); } - .gedit-document-panel row:hover { - background-color: rgba(101, 123, 131, 0.15); } - .gedit-document-panel row:active { - color: #fdf6e3; - background-color: #268bd2; } - .gedit-document-panel row:active button { - color: #fdf6e3; } - .gedit-document-panel row:selected, .gedit-document-panel row:selected:hover { - color: #fdf6e3; - background-color: #268bd2; } - .gedit-document-panel row:hover:not(:selected) button:active { - color: #657b83; } - -filechooser actionbar button { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - .caja-side-pane > box button:hover:not(:active), filechooser actionbar button:hover { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(21, 163, 200, 0.45); } - filechooser actionbar button:active, filechooser actionbar button:checked { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - filechooser actionbar button:disabled { - color: #234b56; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.2); } - -filechooser actionbar entry { - color: #657b83; - border-color: rgba(1, 9, 11, 0.35); - background-color: rgba(18, 137, 167, 0.35); } - filechooser actionbar entry image, filechooser actionbar entry image:hover { - color: inherit; } - filechooser actionbar entry:focus { - color: #fdf6e3; - border-color: rgba(1, 9, 11, 0.35); - background-color: #268bd2; } - filechooser actionbar entry:disabled { - color: rgba(101, 123, 131, 0.55); - background-color: rgba(18, 137, 167, 0.2); } - -filechooser placessidebar.sidebar scrollbar, -.nautilus-window placessidebar.sidebar scrollbar, .nemo-window .sidebar scrollbar, .caja-side-pane scrollbar { - border-color: rgba(5, 35, 43, 0.95); } - filechooser placessidebar.sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, - .nautilus-window placessidebar.sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, .nemo-window .sidebar scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider, .caja-side-pane scrollbar.overlay-indicator:not(.dragging):not(.hovering) slider { - background-color: #8da0a7; - border: 1px solid rgba(0, 0, 0, 0.3); } - filechooser placessidebar.sidebar scrollbar slider, - .nautilus-window placessidebar.sidebar scrollbar slider, .nemo-window .sidebar scrollbar slider, .caja-side-pane scrollbar slider { - background-color: rgba(141, 160, 167, 0.7); } - filechooser placessidebar.sidebar scrollbar slider:hover, - .nautilus-window placessidebar.sidebar scrollbar slider:hover, .nemo-window .sidebar scrollbar slider:hover, .caja-side-pane scrollbar slider:hover { - background-color: #9cacb2; } - filechooser placessidebar.sidebar scrollbar slider:hover:active, - .nautilus-window placessidebar.sidebar scrollbar slider:hover:active, .nemo-window .sidebar scrollbar slider:hover:active, .caja-side-pane scrollbar slider:hover:active { - background-color: #268bd2; } - filechooser placessidebar.sidebar scrollbar slider:disabled, - .nautilus-window placessidebar.sidebar scrollbar slider:disabled, .nemo-window .sidebar scrollbar slider:disabled, .caja-side-pane scrollbar slider:disabled { - background-color: transparent; } - filechooser placessidebar.sidebar scrollbar trough, - .nautilus-window placessidebar.sidebar scrollbar trough, .nemo-window .sidebar scrollbar trough, .caja-side-pane scrollbar trough { - background-color: rgba(5, 35, 43, 0.95); } - -@define-color theme_fg_color #5c616c; -@define-color theme_text_color #5c616c; -@define-color theme_bg_color #F5F6F7; -@define-color theme_base_color #fdf6e3; -@define-color theme_selected_bg_color #268bd2; -@define-color theme_selected_fg_color #fdf6e3; -@define-color fg_color #5c616c; -@define-color text_color #5c616c; -@define-color bg_color #F5F6F7; -@define-color base_color #fdf6e3; -@define-color selected_bg_color #268bd2; -@define-color selected_fg_color #fdf6e3; -@define-color insensitive_bg_color #faf6eb; -@define-color insensitive_fg_color alpha(#5c616c, 0.5); -@define-color insensitive_base_color #fdf6e3; -@define-color theme_unfocused_fg_color #5c616c; -@define-color theme_unfocused_text_color #5c616c; -@define-color theme_unfocused_bg_color #F5F6F7; -@define-color theme_unfocused_base_color #fdf6e3; -@define-color borders #dcdfe3; -@define-color unfocused_borders #dcdfe3; -@define-color warning_color #cb4b16; -@define-color error_color #dc322f; -@define-color success_color #859900; -@define-color placeholder_text_color #A8A8A8; -@define-color link_color #1e6ea7; -@define-color content_view_bg #fdf6e3; -@define-color wm_title alpha(#525d76, 0.8); -@define-color wm_unfocused_title alpha(#525d76, 0.5); -@define-color wm_bg #eee8d5; -@define-color wm_bg_unfocused #f2eee0; -@define-color wm_highlight #f2eee0; -@define-color wm_shadow alpha(black, 0.35); -@define-color wm_button_close_bg #f46067; -@define-color wm_button_close_hover_bg #f68086; -@define-color wm_button_close_active_bg #f13039; -@define-color wm_icon_close_bg #657b83; -@define-color wm_button_hover_bg #fdfdfd; -@define-color wm_button_active_bg #268bd2; -@define-color wm_button_hover_border #D1D3DA; -@define-color wm_icon_bg #90949E; -@define-color wm_icon_unfocused_bg #B6B8C0; -@define-color wm_icon_hover_bg #7A7F8B; -@define-color wm_icon_active_bg #fdf6e3; diff --git a/common/gtk-3.0/3.20/render-assets.sh b/common/gtk-3.0/3.20/render-assets.sh deleted file mode 100755 index d31fbb8..0000000 --- a/common/gtk-3.0/3.20/render-assets.sh +++ /dev/null @@ -1,34 +0,0 @@ -#! /bin/bash - -INKSCAPE="/usr/bin/inkscape" -OPTIPNG="/usr/bin/optipng" - -SRC_FILE="assets.svg" -ASSETS_DIR="assets" -INDEX="assets.txt" - -for i in `cat $INDEX` -do -if [ -f $ASSETS_DIR/$i.png ]; then - echo $ASSETS_DIR/$i.png exists. -else - echo - echo Rendering $ASSETS_DIR/$i.png - $INKSCAPE --export-id=$i \ - --export-id-only \ - --export-png=$ASSETS_DIR/$i.png $SRC_FILE >/dev/null \ - && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i.png -fi -if [ -f $ASSETS_DIR/$i@2.png ]; then - echo $ASSETS_DIR/$i@2.png exists. -else - echo - echo Rendering $ASSETS_DIR/$i@2.png - $INKSCAPE --export-id=$i \ - --export-dpi=180 \ - --export-id-only \ - --export-png=$ASSETS_DIR/$i@2.png $SRC_FILE >/dev/null \ - && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i@2.png -fi -done -exit 0 diff --git a/common/gtk-3.0/3.20/sass/_applications.scss b/common/gtk-3.0/3.20/sass/_applications.scss deleted file mode 100644 index 99c0334..0000000 --- a/common/gtk-3.0/3.20/sass/_applications.scss +++ /dev/null @@ -1,869 +0,0 @@ -// -// Tab overrides -// -.gedit-bottom-panel-paned notebook, -terminal-window notebook { - > header.top > tabs > tab:checked { box-shadow: inset 0 -1px $borders_color; } -} - -// -// GNOME Terminal, MATE Terminal -// -terminal-window, -.mate-terminal { - - notebook { - > header.top { - padding-top: 3px; - - box-shadow: inset 0 1px opacify($header_border, 1), - inset 0 -1px $borders_color; - - button { - padding: 0; - min-width: 24px; - min-height: 24px; - } - } - } -} - -// -// Nautilus -// -.nautilus-canvas-item { - border-radius: 2px; -} - -.nautilus-desktop.nautilus-canvas-item { - color: white; - text-shadow: 1px 1px transparentize(black, 0.4); - - &:active { color: $fg_color; } - - &:selected { - color: $selected_fg_color; - text-shadow: none; - } -} - -.nautilus-canvas-item.dim-label, -.nautilus-list-dim-label { - color: mix($fg_color, $bg_color, 50%); - - &:selected, &:selected:focus { color: mix($selected_fg_color, $selected_bg_color, 80%); } -} - -.nautilus-window { - // Workaround for https://bugzilla.gnome.org/show_bug.cgi?id=724096 - - searchbar { border-top: 1px solid $borders_color; } - .searchbar-container { margin-top: -1px; } -} - -.nautilus-window notebook, -.nautilus-window notebook > stack:not(:only-child) searchbar { - background-color: $base_color; -} - -button.nautilus-circular-button.image-button { - @extend button.circular; -} - -$disk_space_unknown: transparentize($fg_color, 0.5); -$disk_space_used: transparentize($selected_bg_color, 0.2); -$disk_space_free: darken($bg_color, 3%); - -.disk-space-display { - border-style: solid; - border-width: 1px; - - &.unknown { - background-color: $disk_space_unknown; - border-color: darken($disk_space_unknown, 10%); - } - &.used { - background-color: $disk_space_used; - border-color: darken($disk_space_used, 10%); - } - &.free { - background-color: $disk_space_free; - border-color: darken($disk_space_free, 10%); - } -} - -@keyframes needs_attention_keyframes { - 0% { @include button(header-hover); } - 100% { @include button(header-active) } -} - -.nautilus-operations-button-needs-attention { - animation: needs_attention_keyframes 2s ease-in-out; -} -.nautilus-operations-button-needs-attention-multiple { - animation: needs_attention_keyframes 3s ease-in-out; - animation-iteration-count: 3; -} - -// Batch renaming dialog -.conflict-row.activatable { - &, &:active { - color: $error_fg_color; - background-color: $error_color; - } - - &:hover { background-color: lighten($error_color, 10%); } - - &:selected { - color: $selected_fg_color; - background-color: $selected_bg_color; - } -} - -// -// Nemo -// -.nemo-desktop.nemo-canvas-item { @extend .nautilus-desktop.nautilus-canvas-item; } - -.nemo-window { - - .nemo-places-sidebar.frame { border-width: 0; } - notebook { background-color: $base_color; } - - // Rename entry - .nemo-window-pane widget.entry { - border: 1px solid; - border-radius: 3px; - - @include entry(focus); - - &:selected { &:focus, & { @extend %selected_items; }} - } - - // Pathbar - .primary-toolbar widget.raised.linked:not(.vertical):not(.path-bar) { - - > button { - &:not(:last-child):not(:only-child) { margin: 0 0 1px 0; } - - @include button(header-hover); - - &:hover { background-color: lighten($header_button_bg, 15%); } - &:active, &:checked { @include button(header-active); } - &:disabled { color: transparentize($header_fg, 0.4); } - - &, &:hover, &:active, &:checked, &:disabled { @extend %linked; } - } - - @include pathbar_linking_rules($sep_color:$header_button_border); - } -} - -// -// Caja -// -.caja-desktop { @extend .nautilus-desktop.nautilus-canvas-item; } - -.caja-notebook { border-top: 1px solid $borders_color; } -.caja-side-pane .frame { border-width: 1px 0 0; } -.caja-notebook .frame { border-width: 0 0 1px; } - -// -// Gedit -// -.open-document-selector-treeview.view { - padding: 3px 6px 3px 6px; - border-color: $base_color; // disable borders, making them transparent doesn't work for some reason - - &:hover { - background-color: mix($fg_color, $base_color, 7%); - - &:selected { - color: $selected_fg_color; - background-color: $selected_bg_color; - } - } -} - -.open-document-selector-name-label { - color: $fg_color; -} - -.open-document-selector-path-label { - color: mix($fg_color, $base_color, 50%); - font-size: smaller; - - &:selected { color: transparentize($selected_fg_color, 0.1); } -} - -.gedit-document-panel { - - row button { - min-width: 22px; - min-height: 22px; - padding: 0; - - color: transparent; - background: none; - border: none; - box-shadow: none; - - image { color: inherit; } - } - - row:hover:not(:selected) button { - color: mix($bg_color, $fg_color, 35%); - - &:hover { color: lighten(red, 15%); } - &:active { color: $fg_color; } - } - - row:hover:selected button:hover { - color: lighten(red, 20%); - background: none; - border: none; - box-shadow: none; - - &:active { color: $selected_fg_color; } - } -} - -.gedit-document-panel-dragged-row { - border: 1px solid $borders_color; - background-color: darken($bg_color, 10%); - color: $fg_color; -} - -.gedit-side-panel-paned statusbar { - border-top: 1px solid $borders_color; - background-color: $bg_color; -} - -.gedit-search-slider { - background-color: lighten($bg_color, 2%); - padding: 6px; - border-color: $borders_color; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; -} - -.gedit-search-entry-occurrences-tag { - color: transparentize($fg_color, 0.4); - border: none; - margin: 2px; - padding: 2px; -} - -.gedit-map-frame { - border { - @if $variant=='light' { border-color: transparentize(black, 0.7); } - border-width: 0; - - &:dir(ltr) { border-left-width: 1px; } - &:dir(rtl) { border-right-width: 1px; } - } -} - -// -// Pluma -// - -.pluma-window statusbar frame > border { border: none; } - -.pluma-window notebook > stack scrolledwindow { border-width: 0 0 1px 0; } - -#pluma-status-combo-button { - min-height: 0; - padding: 0; - - border-top: none; - border-bottom: none; - border-radius: 0; -} - -// -// Gnome Builder -// -// TODO: Merge this with the upstream stylesheet - -.gb-search-entry-occurrences-tag { background: none; } - -workbench.csd > stack.titlebar:not(headerbar) { - padding: 0; - background: none; - border: none; - box-shadow: none; - - headerbar { - &, - &:first-child, - &:last-child { border-radius: $_header_radius $_header_radius 0 0; } - } -} - -editortweak .linked > entry.search:focus + .gb-linked-scroller { border-top-color: $selected_bg_color; } - -layouttab { - background-color: $base_color; -} - -layout { - border: 1px solid $borders_color; - -PnlDockBin-handle-size: 1; -} - -eggsearchbar box.search-bar { - border-bottom: 1px solid $borders_color; -} - -pillbox { - color: $selected_fg_color; - background-color: $selected_bg_color; - border-radius: 3px; - - &:disabled label { color: transparentize($selected_fg_color, 0.5) } -} - -docktabstrip { - padding: 0 6px; - - background-color: $bg_color; - border-bottom: 1px solid $borders_color; - - docktab { - min-height: 28px; - border: solid transparent; - border-width: 0 1px; - - label { opacity: 0.5; } - &:checked, &:hover { label { opacity: 1; }} - - &:checked { - border-color: $borders_color; - background-color: $base_color; - } - } -} - -dockbin { - border: 1px solid $borders_color; - -PnlDockBin-handle-size: 1; -} - -dockpaned { - border: 1px solid $borders_color; -} - -dockoverlayedge { - background-color: $bg_color; - - docktabstrip { - padding: 0; - border: none; - } - - &.left-edge tab:checked, - &.right-edge tab:checked { - border-width: 1px 0; - } -} - -popover.messagepopover { - &.background { padding: 0; } - - .popover-content-area { margin: 16px; } - .popover-action-area { - margin: 8px; - - button:not(:first-child):not(:last-child) { margin: 0 4px; } - } -} - -popover.popover-selector { - padding: 0; - - list { - row { padding: 5px 0; } - row image { margin-left: 3px; margin-right: 10px; } - } -} - -entry.search.preferences-search { - border: none; - border-right: 1px solid $borders_color; - border-bottom: 1px solid $borders_color; - border-radius: 0; -} - -preferences stacksidebar.sidebar { - list { background-image: _solid($base_color); } - - list separator { background-color: transparent; } -} - -devhelppanel entry:focus, -symboltreepanel entry:focus { - border-color: $borders_color -} - -button.run-arrow-button { - min-width: 12px; -} - -omnibar.linked > entry:not(:only-child) { border-style: solid; border-radius: 3px; margin-left: 1px; margin-right: 1px; } - -gstyleslidein { - #scale_box, - #strings_controls, - #palette_controls, - #components_controls { - button.toggle:checked { color: $fg_color; } - } -} - -configurationview { - entry.flat { background: none; } - list { border-width: 0; } -} - -// -// Epiphany -// -//EphyWindow .floating-bar { // Epiphany overrides the floating-bar style, so reset it -// color: $fg_color; -//} - -// -// Gnome Documents -// -.documents-scrolledwin.frame { border-width: 0; } - -button.documents-load-more { - border-width: 1px 0 0; - border-radius: 0; -} - -.documents-icon-bg { - background-color: $selected_bg_color; - color: $selected_fg_color; - border-radius: 2px; -} - -.documents-collection-icon { - background-color: transparentize($fg_color, 0.7); - border-radius: 2px; -} - -button.documents-favorite:active, -button.documents-favorite:active:hover { - color: lighten($selected_bg_color, 20%); -} - -.documents-entry-tag { - color: $selected_fg_color; - background: $selected_bg_color; - border-radius: 2px; - border-width: 0; - margin: 2px; - padding: 4px; - - &:hover { - color: $selected_fg_color; - background: lighten($selected_bg_color, 4%); - } - &:active { - color: $selected_fg_color; - background: darken($selected_bg_color, 4%); - } -} - -.content-view.document-page { - border-style: solid; - border-width: 3px 3px 6px 4px; - border-image: url("assets/thumbnail-frame.png") 3 3 6 4; -} - -// -// Gnome Photos -// -.photos-entry-tag { @extend .documents-entry-tag; } - -.photos-collection-icon { @extend .documents-collection-icon; } - -.photos-fade-in { - opacity: 1.0; - transition: opacity 0.2s ease-out; -} - -.photos-fade-out { - opacity: 0.0; - transition: opacity 0.2s ease-out; -} - -// -// Gnome Tweak Tool -// -.tweak-categories, -.tweak-category:not(:selected):not(:hover) { - background-image: _solid($base_color); -} - -// -// Transmission -// -.tr-workarea undershoot, -.tr-workarea overshoot { - border-color: transparent; // Remove black border on over- and undershoot -} - -// -// Atril (MATE pdf viewer) -// -.atril-window .primary-toolbar toolbar { - background: none; -} - -// -// Gnome Flashback -// -#gf-bubble, -#gf-osd-window, -#gf-input-source-popup, -#gf-candidate-popup { - &, &.solid { - color: lighten($osd_fg_color, 7%); - background-color: $osd_bg_color; - border: 1px solid darken($osd_bg_color, 8%); - border-radius: 2px; - } - - levelbar { - block { - &.low, &.high, &.full { - background-color: $selected_bg_color; - border-color: $selected_bg_color; - } - &.empty { background-color: darken($osd_bg_color, 5%); } - } - trough { background: none; } - } - - // FIXME still needs button styling -} - -#gf-input-source { - min-height: 32px; - min-width: 40px; - - &:selected { - color: $selected_fg_color; - background-color: $selected_bg_color; - border-radius: 2px; - } -} - -gf-candidate-box { - label { padding: 3px; } - - &:hover, - &:selected { - color: $selected_fg_color; - background-color: $selected_bg_color; - border-radius: 2px; - } -} - -// -// Mate OSD Window -// -MsdOsdWindow.background.osd { - border-radius: 2px; - border: 1px solid darken($osd_bg_color, 8%); - - .progressbar { - background-color: $selected_bg_color; - border: none; - border-color: red; - border-radius: 5px; - } - .trough { - background-color: darken($osd_bg_color, 5%); - border: none; - border-radius: 5px; - } -} - -// -// Mate/Gnome Flashback Panel -// -.mate-panel-menu-bar, -panel-toplevel.background { - - &, menubar { background-color: opacify($panel_bg, 1); } - - menubar, - #PanelApplet label, - #PanelApplet image { color: $panel_fg; } - - // Panel buttons - button:not(#tasklist-button) { - @extend %panelbutton; - } - - button, - #tasklist-button { - label, image { color: inherit; } - } - - .wnck-pager { - color: mix($panel_fg, black, 50%); - background-color: darken($panel_bg, 10%); - - &:hover { - background-color: lighten($panel_bg, 5%); - } - - &:selected { - color: lighten($selected_bg_color, 20%); - background-color: $selected_bg_color; - } - } - - na-tray-applet { - -NaTrayApplet-icon-padding: 0; - -NaTrayApplet-icon-size: 16px; - } -} - -// Xfce Panel -.xfce4-panel.panel { - background-color: $panel_bg; - - text-shadow: none; - -gtk-icon-shadow: none; - - button.flat { @extend %panelbutton; } -} - -#tasklist-button { - color: transparentize($panel_fg, 0.2); - border-radius: 0; - border: none; - background-color: transparentize($panel_bg, 1); - - &:hover { - color: lighten($panel_fg, 10%); - background-color: transparentize(black, 0.83); - } - - &:checked { - color: white; - background-color: transparentize(black, 0.75); - box-shadow: inset 0 -2px $selected_bg_color; - } -} - -%panelbutton { - color: $panel_fg; - border-radius: 0; - border: none; - background-color: transparentize($panel_bg, 1); - - &:hover { - border: none; - background-color: lighten($panel_bg, 10%); - } - &:active, &:checked { - color: $selected_fg_color; - border: none; - background-color: $selected_bg_color; - - label, image { color: inherit; } - } -} - -// -// Floating Bar -// -.nautilus-window .floating-bar { - padding: 1px; - background-color: $selected_bg_color; - color: $selected_fg_color; - border-radius: 2px 2px 0 0; - - &.bottom.left { border-top-left-radius: 0; } - &.bottom.right { border-top-right-radius: 0; } - - button { - border: none; - border-radius: 0; - min-height: 0; - - @extend %selected-button; - } -} - -// Elementary Apps - -// -// Birdie -// -//BirdieWidgetsTweetList * { -// background-image: none; -// background-color: transparent; -//} - -// -// Marlin / Pantheon Files -// -//MarlinViewWindow { -// -// *:selected, *:selected:focus { -// color: $selected_fg_color; -// background-color: $selected_bg_color; -// outline-color: transparent; -// } -// GtkIconView.view:selected { -// &, &:focus, &:hover, &:focus:hover { background-color: transparent; } -// } -// FMListView, FMColumnView { outline-color: transparent; } -//} - -.marlin-pathbar.pathbar { - border-radius: 3px; - padding-left: 4px; - padding-right: 4px; - - @include entry(header-normal); - - &:focus { @include entry(header-focus) } - - &:disabled { @include entry(header-insensitive) } - - &:active, &:checked { - color: $selected_bg_color; - } -} - -// -// Gala -// -.gala-notification { - border: 1px solid rgba(0, 0, 0, 0.35); - border-radius: 3px; - box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); - background-image: _solid(white); - background-color: transparent; - - .title, .label { - color: #5c616c; - } -} - -// -// Wingpanel -// -.panel { - background-color: transparent; - color: white; - font-weight: bold; - text-shadow: 0 1px 2px transparentize(black, 0.4); - -gtk-icon-shadow: 0 1px 2px transparentize(black, 0.4); - - &-shadow { - background-image: none; - background-color: transparent; - } - .menu { - box-shadow: none; - - .menuitem { - font-weight: normal; - text-shadow: none; - -gtk-icon-shadow: none; - } - - .window-frame.menu.csd, - .window-frame.popup.csd { - box-shadow: 0 0 0 1px transparentize(black, 0.8), - 0 10px 20px transparentize(black, 0.81), - 0 6px 6px transparentize(black, 0.77); - } - } - .menubar > .menuitem { - padding: 3px 6px; - &:hover { background-color: transparent; } - } - .window-frame.menu.csd, - .window-frame.popup.csd { box-shadow: none; } -} - -.composited-indicator { - background-color: transparent; - color: white; - text-shadow: 0 1px 2px transparentize(black, 0.4); - -gtk-icon-shadow: 0 1px 2px transparentize(black, 0.4); - - > GtkWidget > GtkWidget:first-child { padding: 0 2px; } - - .menuitem:active, .menuitem:hover { - border-style: none; - background-image: none; - box-shadow: none; - } - > .popup > .menu { - padding-top: 8px; - padding-bottom: 8px; - } -} - -.panel-app-button > GtkWidget > GtkWidget:first-child { - padding: 0 2px 0 4px; -} - -.panel .menu .spinner, -.menu .spinner { opacity: 1 } // Fixes sound indicator buttons - -// -// Wingpanel Popover -// -//WingpanelWidgetsIndicatorPopover.popover { -// padding: 0; -// -// text-shadow: none; -// -gtk-icon-shadow: none; -// -// menuitem { -// padding: 5px; -// outline-color: transparent; -// text-shadow: none; -// -gtk-icon-shadow: none; -// border: solid transparent; -// border-width: 1px 0; -// -// label, image { padding: 0 3px; } -// -// &:hover, &:active { -// background-color: if($variant == 'light', transparentize(black, 0.96), transparentize(white, 0.95)); -// border: solid if($variant == 'light', transparentize(black, 0.92), transparentize(white, 0.93)); -// border-width: 1px 0; -// } -// *:disabled { color: $insensitive_fg_color; } -// } -//} - -// -// Pantheon Terminal -// -//PantheonTerminalPantheonTerminalWindow.background { -// background-color: transparent; -//} - -// -// Switchboard -// -//SwitchboardCategoryView .view:selected, -//SwitchboardCategoryView .view:selected:focus { -// color: $fg_color; -//} diff --git a/common/gtk-3.0/3.20/sass/_colors-public.scss b/common/gtk-3.0/3.20/sass/_colors-public.scss deleted file mode 100644 index 7d0abba..0000000 --- a/common/gtk-3.0/3.20/sass/_colors-public.scss +++ /dev/null @@ -1,67 +0,0 @@ -//apps rely on some named colors to be exported - -// Sass thinks we're using the colors in the variables as strings and may shoot -// warning, it's innocuous and can be defeated by using "" + $var -@define-color theme_fg_color #{"" + $fg_color}; -@define-color theme_text_color #{"" + $text_color}; -@define-color theme_bg_color #{"" + $bg_color}; -@define-color theme_base_color #{"" + $base_color}; -@define-color theme_selected_bg_color #{"" + $selected_bg_color}; -@define-color theme_selected_fg_color #{"" + $selected_fg_color}; -@define-color fg_color #{"" + $fg_color}; -@define-color text_color #{"" + $text_color}; -@define-color bg_color #{"" + $bg_color}; -@define-color base_color #{"" + $base_color}; -@define-color selected_bg_color #{"" + $selected_bg_color}; -@define-color selected_fg_color #{"" + $selected_fg_color}; -@define-color insensitive_bg_color #{"" + $insensitive_bg_color}; -@define-color insensitive_fg_color alpha(#{"" + opacify($insensitive_fg_color, 1)}, 0.5); -@define-color insensitive_base_color #{"" + $base_color}; -@define-color theme_unfocused_fg_color #{"" + $fg_color}; -@define-color theme_unfocused_text_color #{"" + $text_color}; -@define-color theme_unfocused_bg_color #{"" + $bg_color}; -@define-color theme_unfocused_base_color #{"" + $base_color}; -@define-color borders #{"" + $borders_color}; -@define-color unfocused_borders #{"" + $borders_color}; - -@define-color warning_color #{"" + $warning_color}; -@define-color error_color #{"" + $error_color}; -@define-color success_color #{"" + $success_color}; -@define-color placeholder_text_color #{#A8A8A8}; -@define-color link_color #{"" + $link_color}; - -@define-color content_view_bg #{"" + $base_color}; - -//WM -$wm_highlight: lighten(opacify($header_bg, 1), 3%); -$wm_bg_unfocused: opacify($header_bg_backdrop, 1); - -@define-color wm_title alpha(#{"" + opacify($header_fg, 1)}, 0.8); -@define-color wm_unfocused_title alpha(#{"" + opacify($header_fg, 1)}, 0.5); - -@define-color wm_bg #{"" + opacify($header_bg, 1)}; -@define-color wm_bg_unfocused #{"" + $wm_bg_unfocused}; - -@define-color wm_highlight #{"" + $wm_highlight}; -@define-color wm_shadow alpha(#{black}, 0.35); - -//WM Buttons - -// Close -@define-color wm_button_close_bg #{"" + $wm_button_close_bg}; -@define-color wm_button_close_hover_bg #{"" + $wm_button_close_hover_bg}; -@define-color wm_button_close_active_bg #{"" + $wm_button_close_active_bg}; - -@define-color wm_icon_close_bg #{"" + $wm_icon_close_bg}; - -// Minimize, Maximize -@define-color wm_button_hover_bg #{"" + $wm_button_hover_bg}; -@define-color wm_button_active_bg #{"" + $wm_button_active_bg}; - -@define-color wm_button_hover_border #{"" + $wm_button_hover_border}; - -@define-color wm_icon_bg #{"" + $wm_icon_bg}; -@define-color wm_icon_unfocused_bg #{"" + $wm_icon_unfocused_bg}; -@define-color wm_icon_hover_bg #{"" + $wm_icon_hover_bg}; -@define-color wm_icon_active_bg #{"" + $wm_icon_active_bg}; - diff --git a/common/gtk-3.0/3.20/sass/_colors.scss b/common/gtk-3.0/3.20/sass/_colors.scss deleted file mode 100644 index fac334a..0000000 --- a/common/gtk-3.0/3.20/sass/_colors.scss +++ /dev/null @@ -1,101 +0,0 @@ -// When color definition differs for dark and light variant, -// it gets @if ed depending on $variant - - -$base_color: if($variant =='light', #fdf6e3, #073642); -$text_color: if($variant == 'light', #5c616c, #657b83); -$bg_color: if($variant =='light', #F5F6F7, #002b36); -$fg_color: if($variant =='light', #5c616c, #657b83); - -$selected_fg_color: #fdf6e3; -$selected_bg_color: #268bd2; -$selected_borders_color: darken($selected_bg_color, 20%); -$borders_color: if($variant =='light', darken($bg_color,9%), darken($bg_color,6%)); - -$link_color: if($variant == 'light', darken($selected_bg_color,10%), - lighten($selected_bg_color,20%)); -$link_visited_color: if($variant == 'light', darken($selected_bg_color,20%), - lighten($selected_bg_color,10%)); - -$selection_mode_bg: if($transparency == 'true', transparentize($selected_bg_color, 0.05), $selected_bg_color); -$selection_mode_fg: $selected_fg_color; -$warning_color: #cb4b16; -$error_color: #dc322f; -$warning_fg_color: white; -$error_fg_color: white; -$success_color: #859900; -$destructive_color: #dc322f; -$suggested_color: #2aa198; -$destructive_fg_color: white; -$suggested_fg_color: white; - -$drop_target_color: #b58900; - -//insensitive state derived colors -$insensitive_fg_color: if($variant == 'light', transparentize($fg_color, 0.45), transparentize($fg_color, 0.55)); -$insensitive_bg_color: if($variant == 'light', mix($bg_color, $base_color, 40%), lighten($bg_color, 2%)); - -$header_bg: red; -@if $transparency=='true' and $variant=='light' { $header_bg: transparentize(#eee8d5, 0.05); } -@if $transparency=='false' and $variant=='light' { $header_bg: #eee8d5; } -@if $transparency=='true' and ($variant=='dark' or $darker=='true') { $header_bg: transparentize(#002b36, 0.03); } -@if $transparency=='false' and ($variant=='dark' or $darker=='true') { $header_bg: #002b36; } - -$header_bg_backdrop: if($darker == 'true' or $variant == 'dark', lighten($header_bg, 1.5%), lighten($header_bg, 3%)); - -$header_border: if($variant == 'light' and $darker=='false', darken($header_bg, 7%), darken($header_bg, 4%)); - -$header_fg: if($variant == 'light', saturate(transparentize($fg_color, 0.2), 10%), saturate(transparentize($fg_color, 0.2), 10%)); -$header_fg: if($darker == 'true', saturate(transparentize(#657b83, 0.2), 10%), $header_fg); - -$dark_sidebar_bg: if($transparency == 'true', transparentize(#073642, 0.05), #073642); -$dark_sidebar_fg: #657b83; -$dark_sidebar_border: if($variant == 'light', $dark_sidebar_bg, darken($dark_sidebar_bg, 5%)); - -$osd_fg_color: $dark_sidebar_fg; -$osd_bg_color: $dark_sidebar_bg; - -$osd_button_bg: transparentize(lighten($osd_bg_color, 22%), 0.6); -$osd_button_border: transparentize(darken($osd_bg_color, 12%), 0.6); - -$osd_entry_bg: transparentize(lighten($osd_bg_color, 22%), 0.6); -$osd_entry_border: transparentize(darken($osd_bg_color, 12%), 0.6); - -$osd_insensitive_bg_color: darken($osd_bg_color, 3%); -$osd_insensitive_fg_color: mix($osd_fg_color, opacify($osd_bg_color, 1), 30%); -$osd_borders_color: transparentize(black, 0.3); - -$panel_bg: darken($dark_sidebar_bg, 4.7%); -$panel_fg: $dark_sidebar_fg; - -$entry_bg: if($variant=='light', $base_color, lighten($base_color, 0%)); -$entry_border: if($variant == 'light', #657b83, darken($borders_color, 0%)); - -$header_entry_bg: if($darker == 'true' or $variant == 'dark', transparentize(lighten($header_bg, 22%), 0.6), transparentize($base_color, 0.1)); -$header_entry_border: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 12%), 0.6), transparentize($header_fg, 0.7)); - -$button_bg: if($variant == 'light', lighten($bg_color, 2%), lighten($base_color, 2%)); -$button_border: $entry_border; - -$header_button_bg: if($darker == 'true' or $variant == 'dark', transparentize(lighten($header_bg, 22%), 0.6), transparentize($button_bg, 0.1)); -$header_button_border: if($darker == 'true' or $variant == 'dark', transparentize(darken($header_bg, 12%), 0.6), transparentize($header_fg, 0.7)); - -//WM Buttons - -// Close -$wm_button_close_bg: if($variant == 'light' and $darker == 'false', #f46067, #dc322f); -$wm_button_close_hover_bg: if($variant == 'light' and $darker == 'false', #f68086, #cb4b16); -$wm_button_close_active_bg: if($variant == 'light' and $darker == 'false', #f13039, #dc322f); - -$wm_icon_close_bg: if($variant == 'light' and $darker == 'false',#657b83 , #002b36); - -// Minimize, Maximize -$wm_button_hover_bg: if($variant == 'light' and $darker == 'false', #fdfdfd, #657b83); -$wm_button_active_bg: $selected_bg_color; - -$wm_button_hover_border: if($variant == 'light' and $darker == 'false', #D1D3DA, #002b36); - -$wm_icon_bg: if($variant == 'light' and $darker == 'false', #90949E, #93a1a1); -$wm_icon_unfocused_bg: if($variant == 'light' and $darker == 'false', #B6B8C0, #657b83); -$wm_icon_hover_bg: if($variant == 'light' and $darker == 'false', #7A7F8B, #93a1a1); -$wm_icon_active_bg: $selected_fg_color; diff --git a/common/gtk-3.0/3.20/sass/_common.scss b/common/gtk-3.0/3.20/sass/_common.scss deleted file mode 100644 index 8f97699..0000000 --- a/common/gtk-3.0/3.20/sass/_common.scss +++ /dev/null @@ -1,3184 +0,0 @@ -@function gtkalpha($c,$a) { - @return unquote("alpha(#{$c},#{$a})"); -} - -$ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94); -$backdrop_transition: 200ms ease-out; -$asset_suffix: if($variant=='dark', '-dark', ''); // use dark assets in dark variant -$darker_asset_suffix: if($darker=='true', '-dark', $asset_suffix); - -* { - background-clip: padding-box; - -GtkToolButton-icon-spacing: 4; - -GtkTextView-error-underline-color: $error_color; - - -GtkScrolledWindow-scrollbar-spacing: 0; - - -GtkToolItemGroup-expander-size: 11; - - -GtkWidget-text-handle-width: 20; - -GtkWidget-text-handle-height: 20; - - -GtkDialog-button-spacing: 4; - -GtkDialog-action-area-border: 0; - - // We use the outline properties to signal the focus properties - outline-color: gtkalpha(currentColor, 0.3); - outline-style: dashed; - outline-offset: -3px; - outline-width: 1px; - -gtk-outline-radius: 2px; -} - - -// -// Base States -// -.background { - color: $fg_color; - background-color: if($transparency == 'true', transparentize($bg_color, 0.001), $bg_color); // without this headerbar transparency doesn't seem to work -} - -*:disabled { -gtk-icon-effect: dim; } - -.gtkstyle-fallback { - background-color: $bg_color; - color: $fg_color; - &:hover { - background-color: lighten($bg_color, 10%); - color: $fg_color; - } - &:active { - background-color: darken($bg_color, 10%); - color: $fg_color; - } - &:disabled { - background-color: $insensitive_bg_color; - color: $insensitive_fg_color; - } - &:selected { - background-color: $selected_bg_color; - color: $selected_fg_color; - } -} - -.view, -%view { - color: $text_color; - background-color: $base_color; - - &:selected { - &, &:focus { - @extend %selected_items; - border-radius: 2px; - } - } -} - -.view, -textview { - text { - @extend %view; - - selection { &:focus, & { @extend %selected_items; }} - } -} - -textview border { background-color: mix($bg_color, $base_color, 50%); } - -iconview { @extend .view; } - -rubberband, -.rubberband { - border: 1px solid darken($selected_bg_color, 10%); - background-color: transparentize(darken($selected_bg_color, 10%), 0.8); -} - -flowbox { - rubberband { @extend rubberband } - - flowboxchild { - padding: 3px; - border-radius: 2px; - - &:selected { - @extend %selected_items; - - outline-offset: -2px; - } - } -} - -label { - &.separator { - @extend .dim-label; - - color: $fg_color; - } - - row:selected &, - &:selected { @extend %nobg_selected_items; } - - selection { - color: $selected_fg_color; - background-color: $selected_bg_color; - } - - &:disabled { - color: $insensitive_fg_color; - - selection { @extend %selected_items:disabled; } - } -} - -.dim-label { - opacity: 0.55; -} - -assistant { - .sidebar { - background-color: $base_color; - border-top: 1px solid $borders_color; - } - - &.csd .sidebar { border-top-style: none; } - - .sidebar label { padding: 6px 12px; } - - .sidebar label.highlight { - background-color: $selected_bg_color; - color: $selected_fg_color; - } -} - -textview { // This will get overridden by .view, needed by gedit line numbers - background-color: $base_color; -} - -%osd, .osd { - color: $osd_fg_color; - border: none; - background-color: $osd_bg_color; - background-clip: padding-box; - box-shadow: none; -} - -// -// Spinner Animations -// -@keyframes spin { - to { -gtk-icon-transform: rotate(1turn); } -} - -spinner { - background: none; - opacity: 0; // non spinning spinner makes no sense - -gtk-icon-source: -gtk-icontheme('process-working-symbolic'); - - &:checked { - opacity: 1; - animation: spin 1s linear infinite; - - &:disabled { - opacity: 0.5; - } - } -} - -// -// Text Entries -// -entry { - min-height: 22px; - border: 1px solid; - padding: 2px 8px; - - caret-color: currentColor; - border-radius: 3px; - transition: all 200ms $ease-out-quad; - - &.search { border-radius: 20px; } - - @include entry(normal); - - image { // icons inside the entry - color: mix($fg_color,$base_color,80%); - - &.left { padding-left: 0; padding-right: 5px; } - &.right { padding-right: 0; padding-left: 5px; } - } - - &.flat { - &, &:focus { - min-height: 0; - padding: 2px; - background-image: none; - border-color: transparent; - border-radius: 0; - } - } - - &:focus { - background-clip: border-box; - @include entry(focus); - } - - &:disabled { @include entry(insensitive); } - - selection { &:focus, & { @extend %selected_items; }} - - // error and warning style - @each $e_type, $e_color, $e_fg_color in (warning, $warning_color, $warning_fg_color), - (error, $error_color, $error_fg_color), - // entry.search-missing for Gnome-Builder - (search-missing, $error_color, $error_fg_color) { - &.#{$e_type} { - color: $e_fg_color; - border-color: if($variant=='light', $e_color, $entry_border); - background-color: mix($e_color, $base_color, 60%); - - image { color: $e_fg_color; } - - &:focus { - color: $e_fg_color; - background-color: $e_color; - box-shadow: none; - } - selection, selection:focus { - background-color: $e_fg_color; - color: $e_color; - } - } - } - - &:drop(active) { - &:focus, & { - border-color: $drop_target_color; - box-shadow: none; - } - } - - .osd & { - @include entry(osd); - &:focus { @include entry(osd-focus); } - &:disabled { @include entry(osd-insensitive); } - - selection { - &:focus, & { - color: $selected_bg_color; - background-color: $selected_fg_color; - } - } - } - - progress { - margin: 0 -6px; - border-radius: 0; - border-width: 0 0 2px; - border-color: $selected_bg_color; - border-style: solid; - background-image: none; - background-color: transparent; - box-shadow: none; - } - - // linked entries - .linked:not(.vertical) > &, - .linked:not(.vertical) > &:focus { @extend %linked; } - - .linked.vertical > &, - .linked.vertical > &:focus { @extend %linked_vertical; } -} - -treeview entry { - &.flat, & { - border-radius: 0; - background-image: none; - background-color: $base_color; - - &:focus { border-color: $selected_bg_color; } - } -} - -// -// Buttons -// -// stuff for .needs-attention -$_dot_color: $selected_bg_color; - -@keyframes needs_attention { - from { - background-image: -gtk-gradient(radial, - center center, 0, - center center, 0.01, - to($_dot_color), - to(transparent)); - } - to { - background-image: -gtk-gradient(radial, - center center, 0, - center center, 0.5, - to($selected_bg_color), - to(transparent)); - } -} - - $button_transition: all 200ms $ease-out-quad; -button { - min-height: 22px; - min-width: 20px; - transition: $button_transition; - border: 1px solid; - border-radius: 3px; - padding: 2px 6px; - - @include button(normal); - - separator { margin: 4px 1px; } - - &.flat { - @include button(undecorated); - // to avoid adiacent buttons borders clashing when transitioning, the transition on the normal state is set - // to none, while it's added back in the hover state, so the button decoration will fade in on hover, but - // it won't fade out when the pointer leave the button allocation area. To make the transition more evident - // in this case the duration is increased. - transition: none; - - &:hover { - transition: $button_transition; - transition-duration: 350ms; - - &:active { transition: $button_transition; } - } - } - - &:hover { - @include button(hover); - -gtk-icon-effect: highlight; - } - - &:active, &:checked { - @include button(active); - - background-clip: if($variant=='light', border-box, padding-box); - transition-duration: 50ms; - - &:not(:disabled) label:disabled { color: inherit; opacity: 0.6; } - } - - //Webkitgtk workaround start - &:active { color: $fg_color; } - &:active:hover, &:checked { color: $selected_fg_color; } - //Webkitgtk workaround end - - &.flat:disabled { @include button(undecorated); } - - &:disabled { - @include button(insensitive); - - &:active, &:checked { - @include button(insensitive-active); - } - } - - &.image-button { - min-width: 24px; - padding-left: 5px; - padding-right: 5px; - } - - &.text-button { - padding-left: 12px; - padding-right: 12px; - } - - &.text-button.image-button { - padding-left: 5px; - padding-right: 5px; - - label { - &:first-child { - padding-left: 8px; - padding-right: 2px; - } - &:last-child { - padding-right: 8px; - padding-left: 2px; - } - &:only-child { - padding-left: 8px; - padding-right: 8px; - } - } - - &.popup { padding-right: 8px; padding-left: 8px; } - } - - &:drop(active) { - color: $drop_target_color; - border-color: $drop_target_color; - box-shadow: none; - } - - // big standalone buttons like in Documents pager - &.osd { - color: $osd_fg_color; - background-color: $osd_bg_color; - border-color: darken($osd_bg_color, 8%); - - &.image-button { - padding: 0; - min-height: 36px; - min-width: 36px; - } - - &:hover { color: $selected_bg_color; } - &:active, &:checked { @include button(osd-active); } - &:disabled { @include button(osd-insensitive); } - } - - //overlay / OSD style - .osd & { - @include button(osd); - - &:hover { @include button(osd-hover); } - &:active, &:checked { - background-clip: padding-box; - @include button(osd-active); - } - &:disabled { @include button(osd-insensitive); } - - &.flat { - @include button(undecorated); - box-shadow: none; - &:hover { @include button(osd-hover); } - &:disabled { - @include button(osd-insensitive); - background-image: none; - } - &:active, &:checked { @include button(osd-active); } - } - } - .osd .linked:not(.vertical):not(.path-bar) > &:hover:not(:checked):not(:active):not(:only-child), - .osd .linked:not(.vertical):not(.path-bar) > &:hover:not(:checked):not(:active) + &:not(:checked):not(:active) { box-shadow: none; } - - // Suggested and Destructive Action buttons - @each $b_type, $b_color, $b_fg in (suggested-action, $suggested_color, $suggested_fg_color), - (destructive-action, $destructive_color, $destructive_fg_color) { - &.#{$b_type} { - @include button(suggested_destructive, $b_color, $b_fg); - - &.flat { - @include button(undecorated); - color: $b_color; - } - &:hover { - @include button(suggested_destructive, lighten($b_color, 10%), $b_fg); - } - &:active, &:checked { - @include button(suggested_destructive, darken($b_color, 10%), $b_fg); - } - &.flat:disabled { - @include button(undecorated); - color: $insensitive_fg_color; - } - &:disabled { @include button(insensitive); } - } - } - - .stack-switcher > & { - // to position the needs attention dot, padding is added to the button - // child, a label needs just lateral padding while an icon needs vertical - // padding added too. - - outline-offset: -3px; // needs to be set or it gets overridden by GtkRadioButton outline-offset - - > label { - padding-left: 6px; // label padding - padding-right: 6px; // - } - > image { - padding-left: 6px; - padding-right: 6px; - padding-top: 3px; - padding-bottom: 3px; - } - &.text-button { - padding-left: 10px; - padding-right: 10px; - } - &.image-button { - padding-left: 2px; - padding-right: 2px; - } - - &.needs-attention { - - > label, > image { @extend %needs_attention; } - - &:active, &:checked { - > label, > image { - animation: none; - background-image: none; - } - } - } - } - - %needs_attention { - animation: needs_attention 150ms ease-in; - background-image: -gtk-gradient(radial, - center center, 0, - center center, 0.5, - to($_dot_color), - to(transparent)); - background-size: 6px 6px, 6px 6px; - background-repeat: no-repeat; - @if $variant == 'light' { background-position: right 3px, right 4px; } - @else { background-position: right 3px, right 2px; } - &:dir(rtl) { - @if $variant == 'light' { background-position: left 3px, left 4px; } - @else { background-position: left 3px, left 2px; } - } - } - - // hide separators - &.font, - &.file { separator { background-color: transparent; }} - - //inline-toolbar buttons - .inline-toolbar &, .inline-toolbar &:backdrop { - border-radius: 2px; - border-width: 1px; - @extend %linked; - } - - .linked:not(.vertical) > &, - .linked:not(.vertical) > &:hover, - .linked:not(.vertical) > &:active, - .linked:not(.vertical) > &:checked { @extend %linked; } - - .linked.vertical > &, - .linked.vertical > &:hover, - .linked.vertical > &:active, - .linked.vertical > &:checked { @extend %linked_vertical; } -} - -// all the following is for the +|- buttons on inline toolbars, that way -// should really be deprecated... -.inline-toolbar toolbutton > button { // redefining the button look is - // needed since those are flat... - @include button(normal); - &:hover { @include button(hover); } - &:active, - &:checked{ @include button(active); } - &:disabled { @include button(insensitive); } - &:disabled:active, - &:disabled:checked { @include button(insensitive-active); } -} - -// More inline toolbar buttons -toolbar.inline-toolbar toolbutton { - & > button.flat { @extend %linked_middle; } - &:first-child > button.flat { @extend %linked:first-child; } - &:last-child > button.flat { @extend %linked:last-child; } - &:only-child > button.flat { @extend %linked:only-child; } -} - -// Some crazy linking stuff -@mixin linking_rules($a:0.7, $var:$variant, $vert:'false', $entry_rules:'true', $button_rules:'true', - $e_border:$entry_border, $b_border:$button_border) { - - $_border: if($vert=='false', left, top); - - @if $entry_rules=='true' { - > entry + entry { border-#{$_border}-color: transparentize($e_border, $a); } - - > entry.error + entry, - > entry + entry.error { border-#{$_border}-color: if($var=='light', $error_color, transparentize($e_border, $a)); } - - > entry.warning + entry, - > entry + entry.warning { border-#{$_border}-color: if($var=='light', $warning_color, transparentize($e_border, $a)); } - - > entry.error + entry.warning, - > entry.warning + entry.error { border-#{$_border}-color: if($var=='light', mix($error_color, $warning_color, 50%), transparentize($e_border, $a));} - - @each $e_type, $e_color in (':focus',$selected_bg_color), - (':drop(active)', $drop_target_color), - ('.warning:focus', $warning_color), - ('.error:focus', $error_color) { - - > entry + entry#{$e_type}:not(:last-child), - > entry + entry#{$e_type}:last-child { border-#{$_border}-color: if($var=='light', $e_color, $e_border); } - - > entry#{$e_type}:not(:only-child) { - + entry, - + button, - + combobox > box > button.combo { border-#{$_border}-color: if($var=='light', $e_color, $e_border); } - } - } - > button:active + entry, - > button:checked + entry { border-#{$_border}-color: if($var=='light', $selected_bg_color, $e_border); } - } - @if $button_rules=='true' { - $_uncolored_button: 'button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action)'; - - > button + button { border-#{$_border}-style: none; } - - > #{$_uncolored_button}:hover:not(:only-child), - > #{$_uncolored_button}:hover + #{$_uncolored_button} { box-shadow: inset if($vert=='false', 1px 0, 0 1px) $b_border; } - - > #{$_uncolored_button}:disabled:not(:only-child), - > #{$_uncolored_button}:disabled + #{$_uncolored_button}:not(:hover) { box-shadow: inset if($vert=='false', 1px 0, 0 1px) transparentize($b_border, 0.5); } - - > button:active + #{$_uncolored_button}:hover, - > button:checked + #{$_uncolored_button}:hover, - > button.suggested-action + #{$_uncolored_button}:hover, - > button.destructive-action + #{$_uncolored_button}:hover, - > entry + #{$_uncolored_button}:hover:not(:only-child), - - > #{$_uncolored_button}:first-child:disabled, - > #{$_uncolored_button}:disabled + #{$_uncolored_button}:disabled, - > #{$_uncolored_button}:first-child:hover, - > button:active + #{$_uncolored_button}:disabled, - > button:checked + #{$_uncolored_button}:disabled, - > button.suggested-action + #{$_uncolored_button}:disabled, - > button.destructive-action + #{$_uncolored_button}:disabled, - > entry + #{$_uncolored_button}:disabled:not(:only-child), { box-shadow: none; } - } -} - -// special case, because path-bars are bugged -@mixin pathbar_linking_rules($sep_color:if($variant=='light', transparentize($button_border, 0.6), transparentize($button_border, 0.5))) { - - > button + button { border-left-style: none; } - - > button:hover:not(:checked):not(:active):not(:only-child) { - - &:hover { - box-shadow: inset 1px 0 $sep_color, - inset -1px 0 $sep_color; - } - &:first-child:hover { box-shadow: inset -1px 0 $sep_color; } - &:last-child:hover { box-shadow: inset 1px 0 $sep_color; } - } -} - -// Apply the rules defined above -.linked:not(.vertical) { - &:not(.path-bar) { @include linking_rules(); } - &.path-bar { @include pathbar_linking_rules(); } -} - -.linked.vertical { @include linking_rules($vert:'true'); } - -%linked_middle { - border-radius: 0; - border-right-style: none; -} - -%linked { - @extend %linked_middle; - &:first-child { - border-top-left-radius: 3px; - border-bottom-left-radius: 3px; - } - &:last-child { - border-top-right-radius: 3px; - border-bottom-right-radius: 3px; - border-right-style: solid; - } - &:only-child { - border-radius: 3px; - border-style: solid; - } -} - -%linked_vertical_middle { - border-radius: 0; - border-bottom-style: none; -} - -%linked_vertical{ - @extend %linked_vertical_middle; - &:first-child { - border-top-left-radius: 3px; - border-top-right-radius: 3px; - } - &:last-child { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border-bottom-style: solid; - } - &:only-child { - border-radius: 3px; - border-style: solid; - } -} - -%undecorated_button { - border-color: transparent; - background-color: transparent; - background-image: none; - box-shadow: none; -} - -// menu buttons -menuitem.button.flat, -modelbutton.flat { - transition: none; - min-height: 24px; - padding-left: 8px; - padding-right: 8px; - outline-offset: -3px; - border-radius: 2px; - - @extend %undecorated_button; - - &:hover { background-color: if($variant=='light', mix($fg_color,$bg_color,5%), mix($fg_color,$bg_color,10%)); } - &:active, &:selected { &, arrow { @extend %selected_items; } } - &:checked { color: $fg_color; } - - // FIXME: temporary workaround - check:last-child, - radio:last-child { margin-left: 8px; } - - check:first-child, - radio:first-child { margin-right: 8px; } -} - -modelbutton.flat arrow { - &.left { -gtk-icon-source: -gtk-icontheme("pan-start-symbolic"); } - &.right { -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); } -} - -// -// Links -// -*:link { - color: $link_color; - - &:visited { - color: $link_visited_color; - *:selected & { color: mix($selected_fg_color, $selected_bg_color, 60%); } - } - &:hover { - color: lighten($link_color,10%); - *:selected & { color: mix($selected_fg_color, $selected_bg_color, 90%); } - } - &:active { - color: $link_color; - *:selected & { color: mix($selected_fg_color, $selected_bg_color, 80%); } - } - - @at-root %link_selected, - &:selected, - *:selected & { color: mix($selected_fg_color, $selected_bg_color, 80%); } -} - -button:link, button:visited { - @extend %undecorated_button; - @extend *:link; - - &:hover, &:active, &:checked { - @extend %undecorated_button; - } - > label { text-decoration-line: underline; } -} - -// -// Spinbuttons -// -spinbutton { - - &:drop(active) { box-shadow: none; } - - button:active { color: $selected_fg_color; } - &:disabled { color: $insensitive_fg_color; } - - &:not(.vertical) { - entry { min-width: 28px; } - - button, entry { @extend %linked; } - - &:dir(ltr) entry, - &:dir(rtl) button.up { border-radius: 3px 0 0 3px; } - - > button + button { border-left-style: none; } - - > button:hover:not(:active), - > button:hover + button { box-shadow: inset 1px 0 $button_border; } - - > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), - > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled { box-shadow: inset 1px 0 transparentize($button_border, 0.5); } - - > button:first-child:hover:not(:active), - > button.up:dir(rtl):hover:not(:active), - > entry + button:not(:active):hover { box-shadow: none; } - - > entry:focus + button { border-left-color: if($variant=='light', $selected_bg_color, $entry_border); } - - > entry:drop(active) + button { border-left-color: $drop_target_color; } - - .osd & { - > button:hover:not(:active), - > button:hover + button { box-shadow: inset 1px 0 $osd_button_border; } - - > button:first-child:hover:not(:active), - > button.up:dir(rtl):hover:not(:active), - > entry + button:not(:active):hover { box-shadow: none; } - - > entry:focus + button { border-left-color: $osd_button_border; } - } - } - &.vertical { - button, entry { - padding-left: 4px; - padding-right: 4px; - min-width: 0; - - @extend %linked_vertical; - } - - button.up { border-radius: 3px 3px 0 0; } - - > entry:focus + button { border-top-color: if($variant=='light', $selected_bg_color, $entry_border); } - - > entry:drop(active) + button { border-top-color: $drop_target_color; } - } -} - -// -// Comboboxes -// -combobox { - button.combo { - min-width: 0; // otherwise the arrow placement is unsymmetric - padding-left: 8px; // - padding-right: 8px // - } - arrow { - -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); - min-height: 16px; - min-width: 16px; - } - - &:drop(active) button.combo { @extend button:drop(active); } - - .linked:not(.vertical) > & > box > button.combo { - // the combobox is a composite widget so the way we do button linking doesn't - // work, special case needed. - &:dir(ltr), - &:dir(rtl) { @extend %linked_middle; } // specificity bump - } - - .linked:not(.vertical) > &:first-child > box > button.combo { @extend %linked:first-child; } - .linked:not(.vertical) > &:last-child > box > button.combo { @extend %linked:last-child; } - .linked:not(.vertical) > &:only-child > box > button.combo { @extend %linked:only-child; } - - .linked.vertical > & > box > button.combo { @extend %linked_vertical_middle; } - .linked.vertical > &:first-child > box > button.combo { @extend %linked_vertical:first-child; } - .linked.vertical > &:last-child > box > button.combo { @extend %linked_vertical:last-child; } - .linked.vertical > &:only-child > box > button.combo { @extend %linked_vertical:only-child; } -} - -// -// Toolbars -// -toolbar { - -GtkWidget-window-dragging: true; - padding: 4px; - background-color: $bg_color; - - separator { background: none; } - &.horizontal separator { margin: 0 6px; } - &.vertical separator { margin: 6px 0; } - - .osd & { background-color: transparent; } - - &.osd { - padding: 7px; - border: 1px solid transparentize(black, 0.5); - border-radius: 3px; - background-color: transparentize($osd_bg_color, 0.1); - - &.left, - &.right, - &.top, - &.bottom { border-radius: 0; } // positional classes for `attached` osd toolbars - - &.top { border-width: 0 0 1px 0; } - &.bottom { border-width: 1px 0 0 0; } - &.left { border-width: 0 1px 0 0; } - &.right { border-width: 0 0 0 1px; } - } - - &:not(.inline-toolbar) { - switch, - scale, - entry, - spinbutton, - button { - margin-right: 1px; - margin-bottom: 1px; - } - .linked > button, - .linked > entry { margin-right:0; } - } -} - -.primary-toolbar:not(.libreoffice-toolbar) { // LO messes up the toolbar styling, so exclude LO toolbars - color: $header_fg; - background-color: opacify($header_bg, 1); - box-shadow: none; - border-width: 0 0 1px 0; - border-style: solid; - border-image: linear-gradient(to bottom, opacify($header_bg, 1), - darken($header_bg, 7%)) 1 0 1 0; //temporary hack for rhythmbox 3.1 - - //&:backdrop { background-color: opacify($header_bg_backdrop, 1); } - - separator { @extend %header_separator; } -} - -.primary-toolbar { @extend %header_widgets; } - -.inline-toolbar { - @extend toolbar; - background-color: darken($bg_color, 3%); - border-style: solid; - border-color: $borders_color; - border-width: 0 1px 1px; - padding: 3px; - border-radius: 0 0 3px 3px; -} - -searchbar { - background-color: $bg_color; - border-style: solid; - border-color: $borders_color; - border-width: 0 0 1px; - padding: 3px; -} - -actionbar { - padding: 6px; - border-top: 1px solid $borders_color; - background-color: darken($bg_color, 3%); -} - -// -// Headerbars -// -$_header_radius: if($darker=='false' and $variant=='light', 4px, 3px); - -headerbar, -%titlebar { - - min-height: 42px; - padding: 0 7px; - - border-width: 0 0 1px; - border-style: solid; - border-color: opacify($header_border, 1); - - color: $header_fg; - background-color: opacify($header_bg, 1); - box-shadow: inset 0 1px lighten($header_bg, 3%); - - .csd & { // Transparent header-bars only in csd windows - background-color: $header_bg; - border-color: $header_border; - } - - &:backdrop { - transition: $backdrop_transition; - - color: transparentize($header_fg, 0.3); - background-color: opacify($header_bg_backdrop, 1); - - .csd & { background-color: $header_bg_backdrop; } - } - - .title { - padding-left: 12px; - padding-right: 12px; - } - - .subtitle { - font-size: smaller; - padding-left: 12px; - padding-right: 12px; - @extend .dim-label; - } - - // Selectionmode - &.selection-mode { - color: $selection_mode_fg; - background-color: $selection_mode_bg; - border-color: darken($selection_mode_bg, 4%); - box-shadow: none; - - &:backdrop { - background-color: $selection_mode_bg; - color: transparentize($selection_mode_fg, 0.4); - } - - .subtitle:link { @extend *:link:selected; } - - .selection-menu { - box-shadow: none; - padding-left: 10px; - padding-right: 10px; - GtkArrow { -GtkArrow-arrow-scaling: 1; } - .arrow { - -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); - } - } - .maximized & { background-color: opacify($selection_mode_bg, 1); } - } - - .tiled &, .tiled &:backdrop, - .maximized &, .maximized &:backdrop { - border-radius: 0; // squared corners when the window is max'd or tiled - } - - .maximized & { - background-color: opacify($header_bg, 1); - border-color: opacify($header_border, 1); - - &:backdrop { background-color: opacify($header_bg_backdrop, 1); } - } - - &.default-decoration, - .csd &.default-decoration, // needed under wayland, since all gtk3 windows are csd windows - &.default-decoration:backdrop, - .csd &.default-decoration:backdrop { - min-height: 28px; - padding: 0 3px; - background-color: opacify($header_bg, 1); - border-bottom-width: 0; - - .maximized & { background-color: opacify($header_bg, 1); } - } - - separator.titlebutton { @extend %header_separator; } -} - -.titlebar { - border-radius: $_header_radius $_header_radius 0 0; -} - -headerbar { - @extend %header_widgets; - - entry, button, separator { - margin-top: 6px; - margin-bottom: 6px; - } - - // Fixes split headerbars - separator:first-child + &, - &:first-child { - &, &:backdrop { - border-top-left-radius: $_header_radius; - - .maximized &, - .tiled & { border-radius: 0; } - } - } - - &:last-child { - &, &:backdrop { - border-top-right-radius: $_header_radius; - - .maximized &, - .tiled & { border-radius: 0; } - } - } -} - -// Fixes split headerbars too -.titlebar:not(headerbar) { - window > &, - window.csd > & { - &, &:backdrop { - padding: 0; - background: none; - border: none; - box-shadow: none; - } - } - - > separator { background-image: _solid($header_border); } - - @extend %titlebar; -} - -%header_separator { - min-width: 1px; - min-height: 1px; - background: none; - border-width: 0 1px; - border-image: linear-gradient(to bottom, - transparentize($header_fg, 1) 25%, - transparentize($header_fg, 0.65) 25%, - transparentize($header_fg, 0.65) 75%, - transparentize($header_fg, 1) 75%) 0 1/0 1px stretch; - - &:backdrop { opacity: 0.6; } -} - -%header_widgets { - - // Headerbar Entries - entry { - @include entry(header-normal); - - &:backdrop { opacity: 0.85; } - - &:focus { - @include entry(header-focus); - background-clip: if($darker=='false' and $variant=='light', border-box, padding-box); - - image { color: $selected_fg_color; } - } - &:disabled { @include entry(header-insensitive); } - - selection:focus { - background-color: $selected_fg_color; - color: $selected_bg_color; - } - - progress { - border-color: $selected_bg_color; - background-image: none; - background-color: transparent; - } - - @each $e_type, $e_color, $e_fg_color in (warning, $warning_color, $warning_fg_color), - (error, $error_color, $error_fg_color) { - &.#{$e_type} { - color: $e_fg_color; - border-color: if($darker=='false' and $variant=='light', $e_color, $header_entry_border); - background-color: mix($e_color, $header_bg, 60%); - - &:focus { - color: $e_fg_color; - background-color: $e_color; - } - selection, selection:focus { - background-color: $e_fg_color; - color: $e_color; - } - } - } - } - - // Headerbar Buttons - button { - - @include button(header-normal); - - &:backdrop { opacity: 0.7; } - - &:hover { @include button(header-hover); } - &:active, &:checked { - @include button(header-active); - background-clip: if($darker=='false' and $variant=='light', border-box, padding-box); - } - &:disabled { @include button(header-insensitive); } - &:disabled:active, &:disabled:checked { @include button(header-insensitive-active); } - } - - &.selection-mode button { - - &, &.flat { - @include button(undecorated); - color: $selection_mode_fg; - background-color: transparentize($selection_mode_fg, 1); - } - &:hover { @extend %normal_selected_button; } - &:active, &:checked { @extend %selected-button:active; } - - &:disabled { - @extend %selected-button.flat:disabled; - - &:checked, &:active { @extend %selected-button:disabled:checked; } - } - } - - // Linking stuff - - // Disconnect linked buttons - .linked:not(.vertical):not(.path-bar):not(.stack-switcher) { - button:not(:last-child):not(:only-child) { margin-right: 1px; } - } - - // Reset buttons - .linked:not(.vertical):not(.path-bar) > button { - &, &:hover, &:active, &:checked, &:disabled { - border-radius: 3px; - border-style: solid; - } - } - .linked:not(.vertical):not(.path-bar) { - $_uncolored_button: 'button:not(:checked):not(:active):not(.suggested-action):not(.destructive-action)'; - - > #{$_uncolored_button}:hover:not(:only-child), - > #{$_uncolored_button}:hover + #{$_uncolored_button}, - > #{$_uncolored_button}:disabled:not(:only-child), - > #{$_uncolored_button}:disabled + #{$_uncolored_button}:not(:hover) { box-shadow: none; } - } - - // special case for path-bars and stack-switchers - .linked:not(.vertical):not(.path-bar).stack-switcher, - .linked:not(.vertical).path-bar { - - > button { - @include button(header-hover); - - &:hover { background-color: lighten($header_button_bg, 15%); } - &:active, &:checked { @include button(header-active); } - &:disabled { color: transparentize($header_fg, 0.4); } - - &, &:hover, &:active, &:checked, &:disabled { @extend %linked; } - } - @include pathbar_linking_rules($sep_color:$header_button_border); - } - - // use linking rules for entries only - .linked:not(.vertical):not(.path-bar) { - @include linking_rules( $a:0.5, - $var:if($variant=='light' and $darker=='false', 'light', 'dark'), - $button_rules:'false', - $e_border:$header_entry_border, - $b_border:$header_button_border ); - } - - // Headerbar Suggested and Destructive Action buttons - @each $b_type, $b_color, $b_fg in (suggested-action, $suggested_color, $suggested_fg_color), - (destructive-action, $destructive_color, $destructive_fg_color) { - button.#{$b_type} { - @include button(suggested_destructive, $b_color, $b_fg); - - &.flat { - @include button(undecorated); - color: $b_color; - } - &:hover { - @include button(suggested_destructive, lighten($b_color, 10%), $b_fg); - } - &:active, &:checked { - @include button(suggested_destructive, darken($b_color, 10%), $b_fg); - } - &.flat:disabled, - &:disabled { @include button(header-insensitive); } - } - button.#{$b_type}:backdrop, - button.#{$b_type}:backdrop { - opacity: 0.8; - } - } - - // Headerbar Spinbuttons - spinbutton:not(.vertical) { - &:focus { - color: $selected_fg_color; - caret-color: $selected_fg_color; - } - button { - &,&:disabled { @include button(header-hover); } - - &:hover { background-color: lighten($header_button_bg, 15%); } - &:active, &:checked { @include button(header-active); } - &:disabled { color: transparentize($header_fg, 0.4); } - } - - > button + button { border-left-style: none; } - - > button:hover:not(:active), - > button:hover + button { box-shadow: inset 1px 0 $header_button_border; } - - > button:disabled + button:not(:disabled):not(:active):not(:checked):not(:hover), - > button:not(:disabled):not(:active):not(:checked):not(:hover) + button:disabled { box-shadow: inset 1px 0 $header_button_border; } - - > button:first-child:hover:not(:active), - > entry + button:not(:active):hover { box-shadow: none; } - - > entry:focus + button { border-left-color: if($variant=='light' and $darker=='false', $selected_bg_color, $header_entry_border); } - } - - // Headerbar ComboBoxes - combobox { - &:disabled { color: transparentize($header_fg, 0.6); } - - > .linked > button.combo { - @include entry(header-normal); - - &:hover { @include entry(header-focus); box-shadow: none; } - &:disabled { @include entry(header-insensitive); } - } - - > .linked > entry.combo { - &:dir(ltr) { - border-right-style: none; - - &:focus { box-shadow: none; } - @if $variant=='light' and $darker=='false' { &:focus { box-shadow: 1px 0 $selected_bg_color; } } - } - &:dir(rtl) { - border-left-style: none; - - &:focus { box-shadow: none; } - @if $variant=='light' and $darker=='false' { &:focus { box-shadow: -1px 0 $selected_bg_color; } } - } - } - > .linked > button.combo { - &:dir(ltr) { - &, &:hover, &:active, &:checked, &:disabled { - border-top-left-radius: 0; - border-bottom-left-radius: 0; - } - } - &:dir(rtl) { - &, &:hover, &:active, &:checked, &:disabled { - border-top-right-radius: 0; - border-bottom-right-radius: 0; - } - } - } - } - - // Headerbar Switches - switch { - &:backdrop { opacity: 0.75; } - } - - progressbar { - trough { background-color: if($variant=='light' and $darker=='false', opacify($header_button_border, 0.05), $header_button_border); } - - &:backdrop { opacity: 0.75; } - } - - // Headerbar Scale - scale { - $_trough_bg: if($variant=='light' and $darker=='false', opacify($header_button_border, 0.05), $header_button_border); - - &:backdrop { opacity: 0.75; } - - slider { - $_slider_border: if($variant=='light' and $darker=='false', opacify($header_button_border, 0.2), opacify($header_button_border, 0.3)); - $_slider_bg: if($variant=='light' and $darker=='false', opacify($header_button_bg,1), lighten(opacify($header_bg,1), 10%)); - - background-color: $_slider_bg; - border-color: $_slider_border; - - &:hover { - background-color: lighten($_slider_bg, 5%); - border-color: $_slider_border; - } - &:active { - background-color: $selected_bg_color; - border-color: $selected_bg_color; - } - &:disabled { - background-color: mix($_slider_bg, $header_bg, 70%); - border-color: $_slider_border; - } - } - trough { - background-color: $_trough_bg; - - &:disabled { background-color: if($variant=='light' and $darker=='false', transparentize($_trough_bg, 0.05), transparentize($_trough_bg, 0.1)); } - } - } -} - -// -// Pathbars -// -.path-bar button { - &.text-button, &.image-button, & { - padding-left: 6px; - padding-right: 6px; - } - - &.text-button.image-button label { padding-left: 0; padding-right: 0; } - - &.text-button.image-button, & { - label:last-child { padding-right: 10px; } - label:first-child { padding-left: 10px; } - } - - &.slider-button, - &:not(.image-button):not(.text-button) { - padding-left: 1px; - padding-right: 1px; - } - - image { - padding-left: 4px; - padding-right: 4px; - } -} - -// -// Tree Views -// -treeview.view { - @at-root * { - -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; - } - - border-left-color: transparentize($fg_color, 0.85); // this is actually the tree lines color, - border-top-color: transparentize(black, 0.9); // while this is the grid lines color, better then nothing - - rubberband { @extend rubberband; } // to avoid borders being overridden by the previously set props - - acceleditor > label { background-color: $selected_bg_color; } - - &:selected { - &, &:focus { - border-radius: 0; - border-left-color: mix($selected_fg_color, $selected_bg_color, 50%); - border-top-color: transparentize($fg_color, 0.9); // doesn't work unfortunately - - @extend %selected_items; - } - } - - &:disabled { - color: $insensitive_fg_color; - - &:selected { - color: mix($selected_fg_color, $selected_bg_color, 40%); - } - } - - &.separator { - min-height: 2px; - color: transparentize(black, 0.9); - } - - &:drop(active) { - border-style: solid none; - border-width: 1px; - border-color: mix($fg_color, $selected_bg_color, 50%); - - &.after { border-top-style: none; } - &.before { border-bottom-style: none; } - } - - &.expander { - -gtk-icon-source: -gtk-icontheme('pan-end-symbolic'); - - &:dir(rtl) { -gtk-icon-source: -gtk-icontheme('pan-end-symbolic-rtl'); } - - color: mix($fg_color, $base_color, 50%); - - &:hover { color: $fg_color; } - - &:selected { - color: mix($selected_fg_color, $selected_bg_color, 70%); - &:hover { color: $selected_fg_color; } - } - - &:checked { -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); } - } - - &.progressbar, &.progressbar:focus { // progress bar in treeviews - color: $selected_fg_color; - border-radius: 3px; - background-color: $selected_bg_color; - - &:selected, &:selected:focus { - color: $selected_bg_color; - box-shadow: none; - background-color: $selected_fg_color; - } - } - &.trough { // progress bar trough in treeviews - color: $fg_color; - background-color: $button_border; - border-radius: 3px; - border-width: 0; - - &:selected, &:selected:focus { - color: $selected_fg_color; - background-color: transparentize(black, 0.8); - border-radius: 3px; - border-width: 0; - } - } - - header { - button { - $_column_header_color: mix($fg_color,$base_color,80%); - - min-height: 0; - min-width: 0; - padding: 3px 6px; - font-weight: bold; - - color: $_column_header_color; - background-color: $base_color; - background-image: none; - border-style: none solid none none; - border-radius: 0; - border-image: linear-gradient(to bottom, - $base_color 20%, - transparentize(if($variant == 'light', black, white), 0.89) 20%, - transparentize(if($variant == 'light', black, white), 0.89) 80%, - $base_color 80%) 0 1 0 0 / 0 1px 0 0 stretch; - - &:hover { color: $selected_bg_color; } - &:active { color: $fg_color; } - - &:active, &:hover { background-color: $base_color; } - &:active:hover { color: $fg_color; } - - &:disabled { - border-color: $bg_color; - background-image: none; - } - &:last-child { - border-right-style: none; - border-image: none; - } - } - } - - button.dnd, - header.button.dnd { - &, &:selected, &:hover, &:active { - padding: 0 6px; - transition: none; - color: $selected_fg_color; - background-color: $selected_bg_color; - border-radius: 0; - border-style: none; - } - } -} - -// -// Menus -// -menubar, -.menubar { - -GtkWidget-window-dragging: true; - padding: 0px; - background-color: opacify($header_bg, 1); - color: $header_fg; - - &:backdrop { - color: transparentize($header_fg, 0.3); - //background-color: opacify($header_bg_backdrop, 1); - } - - > menuitem { - padding: 4px 8px; - border: solid transparent; - border-width: 0; - - &:hover { //Seems like it :hover even with keyboard focus - background-color: $selected_bg_color; - color: $selected_fg_color; - } - &:disabled { - color: transparentize($header_fg, 0.6); - border-color: transparent; - } - } -} - -menu, -.menu { - $_menu_bg: if($variant=='light', $base_color, $bg_color); - margin: 4px; - padding: 0; - border-radius: 0; - background-color: $_menu_bg; - border: 1px solid $borders_color; - - .csd & { - padding: 4px 0px; - border-radius: 2px; - border: none; - } - - separator, - .csd & separator { - margin: 2px 0; - background-color: $_menu_bg; - } - - // Firefox workaround - .separator:not(label), - .csd & .separator:not(label) { color: $_menu_bg; } - // Firefox workaround end - - menuitem { - min-height: 16px; - min-width: 40px; - padding: 5px; - &:hover { - color: $selected_fg_color; - background-color: $selected_bg_color; - } - &:disabled { - color: $insensitive_fg_color; - } - - //submenu indicators - arrow { - min-height: 16px; - min-width: 16px; - - &:dir(ltr) { - -gtk-icon-source: -gtk-icontheme('pan-end-symbolic'); - margin-left: 10px; - } - &:dir(rtl) { - -gtk-icon-source:-gtk-icontheme('pan-end-symbolic-rtl'); - margin-right: 10px; - } - } - @at-root menuitem { - accelerator { color: gtkalpha(currentColor,0.55); } - - check, radio { - min-height: 16px; - min-width: 16px; - &:dir(ltr) { margin-right: 6px; margin-left: 2px; } - &:dir(rtl) { margin-left: 6px; margin-right: 2px; } - } - } - } - // overflow buttons - > arrow { - @include button(undecorated); - min-width: 16px; - min-height: 16px; - padding: 4px; - background-color: $_menu_bg; - border-radius: 0; - - &.top { - margin-top: -6px; - border-bottom: 1px solid mix($fg_color, $base_color, 10%); - -gtk-icon-source: -gtk-icontheme('pan-up-symbolic'); - } - &.bottom { - margin-bottom: -6px; - border-top: 1px solid mix($fg_color, $base_color, 10%); - -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); - } - &:hover { background-color: mix($fg_color, $base_color, 10%); } - &:disabled { - color: transparent; - background-color: transparent; - border-color: transparent ; - } - } -} - -// -// Popovers -// -popover, -popover.background { - $_popover_bg: if($variant=='light', $base_color, $bg_color); - padding: 2px; - border-radius: 3px; - background-clip: border-box; - background-color: $_popover_bg; - - box-shadow: 0 2px 6px 1px if($variant=='light', transparentize(black, 0.93), transparentize(black, 0.65)); - - .csd &, & { border: 1px solid darken($borders_color, 5%); } - - & separator { background-color: $_popover_bg; } - label.separator { @extend label.separator; } // Noice - - > list, - > .view, - > toolbar { - border-style: none; - background-color: transparent; - } - - &, .csd & { - &.osd, &.magnifier { @extend %osd; } - &.touch-selection { @extend .context-menu } - - &.osd { @extend %osd; } - } -} - -//touch selection handlebars for the Popover.osd above -cursor-handle { - background-color: transparent; - background-image: none; - box-shadow: none; - border-style: none; - &.top { -gtk-icon-source: -gtk-icontheme('selection-start-symbolic'); } - &.bottom { -gtk-icon-source: -gtk-icontheme('selection-end-symbolic'); } -} - -// -// Notebooks and Tabs -// -notebook { - padding: 0; - - &.frame { - border: 1px solid $borders_color; - - > header { - // ugly hack to hide the borders around the header - margin: -1px; - &.top { margin-bottom: 0; } - &.bottom { margin-top: 0; } - &.left { margin-right: 0; } - &.right { margin-left: 0; } - - &.top, &.bottom { padding-left: 0; padding-right: 0; } - &.left, &.right { padding-top: 0; padding-bottom: 0; } - } - } - - > stack:not(:only-child) { // the :not(:only-child) is for "hidden" notebooks - background-color: $base_color; - } - - > header { - padding: 2px; - background-color: $bg_color; - - &.top { box-shadow: inset 0 -1px $borders_color; } - &.bottom { box-shadow: inset 0 1px $borders_color; } - &.right { box-shadow: inset 1px 0 $borders_color; } - &.left { box-shadow: inset -1px 0 $borders_color; } - - @each $_pos, $_bpos in (top, bottom), (bottom, top), (right, left), (left, right) { - // sizing and borders - &.#{$_pos} { - padding-#{$_bpos}: 0; - - > tabs > tab { - padding: 2px 10px; - min-width: 20px; - min-height: 20px; - - outline-offset: -4px; - - border: 1px solid transparent; - border-#{$_bpos}: none; - - // tab overlap - + tab { - @if $_pos==top or $_pos==bottom { margin-left: -1px; } - @else { margin-top: -1px; } - } - - // tab border radius - @if $_pos==top { border-radius: 1px 1px 0 0; } - @else if $_pos==bottom { border-radius: 0 0 1px 1px; } - @else if $_pos==left { border-radius: 1px 0 0 1px; } - @else if $_pos==right { border-radius: 0 1px 1px 0; } - } - } - } - // overflow arrows - &.top, &.bottom { - > tabs > arrow.up { - -gtk-icon-source: -gtk-icontheme('pan-end-symbolic'); - &:last-child { margin-left: 2px; } - } - > tabs > arrow.down { - -gtk-icon-source: -gtk-icontheme('pan-start-symbolic'); - &:first-child { margin-right: 2px; } - } - } - &.left, &.right { - > tabs > arrow.up { - -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); - &:last-child { margin-top: 2px; } - } - > tabs > arrow.down { - -gtk-icon-source: -gtk-icontheme('pan-up-symbolic'); - &:first-child { margin-bottom: 2px; } - } - } - > tabs > arrow { - color: $insensitive_fg_color; - - &:hover { color: mix($fg_color, $insensitive_fg_color, 50%); } - &:active { color: $fg_color; } - &:disabled { color: transparentize($insensitive_fg_color,0.3); } - } - - // tab colors - - &.top > tabs > tab:hover:not(:checked) { box-shadow: inset 0 -1px $borders_color; } - &.bottom > tabs > tab:hover:not(:checked) { box-shadow: inset 0 1px $borders_color; } - &.left > tabs > tab:hover:not(:checked) { box-shadow: inset -1px 0 $borders_color; } - &.right > tabs > tab:hover:not(:checked) { box-shadow: inset 1px 0 $borders_color; } - - > tabs > tab { - color: $insensitive_fg_color; - background-color: transparentize($base_color, 1); - - &:hover:not(:checked) { - color: mix($fg_color, $insensitive_fg_color, 50%); - background-color: transparentize($base_color, 0.5); - border-color: $borders_color; - } - &:checked { - color: $fg_color; - background-color: $base_color; - border-color: $borders_color; - } - // close button - button.flat { - min-height: 22px; - min-width: 16px; - padding: 0; - color: mix($bg_color, $fg_color, 35%); - - &:hover { - @extend %undecorated_button; - color: lighten(red, 15%); - } - &:active, &:active:hover { - @extend %undecorated_button; - color: $selected_bg_color; - } - } - } - } -} - -// -// Scrollbars -// -$_scrollbar_bg_color: darken($base_color, 1%); - -scrollbar { - $_slider_min_length: 40px; - - // disable steppers - @at-root * { - -GtkScrollbar-has-backward-stepper: false; - -GtkScrollbar-has-forward-stepper: false; - } - - background-color: $_scrollbar_bg_color; - transition: 300ms $ease-out-quad; - - // scrollbar border - &.top { border-bottom: 1px solid $borders_color; } - &.bottom { border-top: 1px solid $borders_color; } - &.left { border-right: 1px solid $borders_color; } - &.right { border-left: 1px solid $borders_color; } - - button { border: none; } - - &.vertical button { - &.down { -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); } - &.up { -gtk-icon-source: -gtk-icontheme('pan-up-symbolic'); } - } - - &.horizontal button { - &.down { -gtk-icon-source: -gtk-icontheme('pan-right-symbolic'); } - &.up { -gtk-icon-source: -gtk-icontheme('pan-left-symbolic'); } - } - - // slider - slider { - min-width: 6px; - min-height: 6px; - margin: -1px; - border: 4px solid transparent; - border-radius: 8px; - background-clip: padding-box; - background-color: mix($fg_color, $bg_color, 40%); - - &:hover { background-color: mix($fg_color, $bg_color, 30%); } - - &:hover:active { background-color: $selected_bg_color;} - - &:disabled { background-color: transparent; } - } - - &.fine-tune { - slider { - min-width: 4px; - min-height: 4px; - } - - &.horizontal slider { border-width: 5px 4px; } - &.vertical slider { border-width: 4px 5px; } - } - - &.overlay-indicator { - &:not(.dragging):not(.hovering) { - opacity: 0.4; - border-color: transparent; - background-color: transparent; - - slider { - margin: 0; - min-width: 4px; - min-height: 4px; - background-color: mix($fg_color, $bg_color, 70%); - border: 1px solid if($variant == 'light', transparentize(white, 0.4), transparentize(black, 0.7)); - } - - &.horizontal slider { - margin: 0 2px; - min-width: $_slider_min_length; - } - - &.vertical slider { - margin: 2px 0; - min-height: $_slider_min_length; - } - } - - &.dragging, - &.hovering { opacity: 0.99; } - } - - &.horizontal slider { min-width: $_slider_min_length; } - &.vertical slider { min-height: $_slider_min_length; } -} - -// -// Switches -// -switch { - font-size: 1px; - - min-width: 52px; - min-height: 24px; - - background-size: 52px 24px; - background-repeat: no-repeat; - background-position: center center; - - slider { - min-width: 1px; - min-height: 1px; - } - - &, slider { - outline-color: transparent; - color: transparent; - border: none; - box-shadow: none; - } -} - -@each $k,$l in ('',''), - (':checked','-active'), - (':disabled','-insensitive'), - (':checked:disabled','-active-insensitive') { - - // load switch troughs from .png files in assets directory - - switch#{$k} { - background-image: -gtk-scaled(url("assets/switch#{$l}#{$asset_suffix}.png"),url("assets/switch#{$l}#{$asset_suffix}@2.png")); - } - - menuitem:hover switch#{$k}, - row:selected switch#{$k}, - infobar switch#{$k} { - background-image: -gtk-scaled(url("assets/switch#{$l}-selected.png"),url("assets/switch#{$l}-selected@2.png")); - } - - headerbar switch#{$k}, - .primary-toolbar switch#{$k} { - background-image: -gtk-scaled(url("assets/switch#{$l}-header#{$darker_asset_suffix}.png"),url("assets/switch#{$l}-header#{$darker_asset_suffix}@2.png")); - } -} - -// -// Check and Radio items -// -@each $w,$a in ('check', 'checkbox'), - ('radio','radio') { - - //standard checks and radios - @each $s,$as in ('','-unchecked'), - (':disabled','-unchecked-insensitive'), - (':indeterminate', '-mixed'), - (':indeterminate:disabled', '-mixed-insensitive'), - (':checked', '-checked'), - (':checked:disabled','-checked-insensitive') { - .#{$w}#{$s}, - #{$w}#{$s}, - treeview.#{$w}#{$s} { - -gtk-icon-source: -gtk-scaled(url("assets/#{$a}#{$as}#{$asset_suffix}.png"), - url("assets/#{$a}#{$as}#{$asset_suffix}@2.png")); - } - - .osd, - %osd_check_radio { - #{$w}#{$s} { - -gtk-icon-source: -gtk-scaled(url("assets/#{$a}#{$as}-dark.png"), - url("assets/#{$a}#{$as}-dark@2.png")); - } - } - // the borders of checks and radios are - // too similar in luminosity to the selected background color, hence - // we need special casing. - menuitem #{$w}#{$s}:hover, - .view #{$w}#{$s}:selected, - treeview.#{$w}#{$s}:selected, - row:selected #{$w}#{$s}, - infobar #{$w}#{$s} { - -gtk-icon-source: -gtk-scaled(url("assets/#{$a}#{$as}-selected.png"), - url("assets/#{$a}#{$as}-selected@2.png")); - } - } -} - -// Selectionmode -@each $s,$as in ('','-selectionmode'), - (':checked', '-checked-selectionmode') { - .view.content-view.check#{$s}:not(list) { - -gtk-icon-source: -gtk-scaled(url("assets/checkbox#{$as}#{$asset_suffix}.png"), - url("assets/checkbox#{$as}#{$asset_suffix}@2.png")); - background-color: transparent; - } -} - -checkbutton, radiobutton { - // this is for a nice focus on check and radios text - &.text-button { - padding: 2px 0; - outline-offset: 0; - } - - label:not(:only-child) { - &:first-child { margin-left: 4px; } - &:last-child { margin-right: 4px; } - } -} - -check, -radio { - min-width: 16px; - min-height: 16px; - margin: 0 2px; - - &:only-child, - menu menuitem & { margin: 0; } -} - -// -// GtkScale -// -scale { - $_marks_length: 3px; - $_marks_distance: 1px; - - min-height: 15px; - min-width: 15px; - padding: 3px; - - &.horizontal { - trough { padding: 0 4px; } - highlight, fill { margin: 0 -4px; } - } - - &.vertical { - trough { padding: 4px 0; } - highlight, fill { margin: -4px 0; } - } - - // The slider is inside the trough, negative margin to make it bigger - slider { - min-height: 15px; - min-width: 15px; - margin: -6px; - } - - // Click-and-hold the slider to activate - &.fine-tune { - // Make the trough grow in fine-tune mode - slider { margin: -4px; } - - fill, - highlight, - trough { - border-radius: 5px; - -gtk-outline-radius: 7px; - } - } - - // Trough - trough { - $_scale_trough_bg: if($variant == 'light', $button_border, darken($bg_color, 5%)); - - outline-offset: 2px; - -gtk-outline-radius: 4.5px; - - border-radius: 2.5px; - background-color: $_scale_trough_bg; - - &:disabled { background-color: transparentize($_scale_trough_bg, 0.45); } - - //OSD troughs - .osd & { - background-color: lighten($osd_bg_color, 7%); - - highlight { - background-color: $selected_bg_color; - - &:disabled { } - } - - &:disabled { } - } - - // Troughs in selected list-rows and infobars - menuitem:hover &, - row:selected &, - infobar & { - background-color: transparentize(black, 0.8); - - highlight { - background-color: $selected_fg_color; - - &:disabled { background-color: mix($selected_fg_color, $selected_bg_color, 55%); } - } - - &:disabled { background-color: transparentize(black, 0.9); } - } - } - - // The colored part of trough - highlight { - border-radius: 2.5px; - background-color: $selected_bg_color; - - &:disabled { background-color: transparentize($selected_bg_color, 0.45); } - } - - // this is another differently styled part of the trough, the most relevant use case is for example - // in media player to indicate how much video stream as been cached - fill { - border-radius: 2.5px; - background-color: transparentize($selected_bg_color, 0.5); - - &:disabled { background-color: transparent; } - } - - slider { - $_slider_border: if($variant=='light', transparentize(darken($button_border,25%), 0.5), darken($button_border,2%)); - - background-color: $button_bg; - border: 1px solid $_slider_border; - border-radius: 100%; - - transition: $button_transition; - transition-property: background, border; - - &:hover { background-color: lighten($button_bg, 5%); } - - &:active { - background-clip: border-box; - background-color: $selected_bg_color; - border-color: $selected_bg_color; - } - - &:disabled { - background-color: mix($entry_bg, $bg_color, 55%); - border-color: transparentize($_slider_border, 0.2); - } - - // Selected list-row and infobar sliders - menuitem:hover &, - row:selected &, - infobar & { - background-clip: border-box; - background-color: $selected_fg_color; - border-color: $selected_fg_color; - - &:hover { - background-color: mix($selected_fg_color, $selected_bg_color, 85%); - border-color: mix($selected_fg_color, $selected_bg_color, 85%); - } - &:active { - background-color: mix($selected_fg_color, $selected_bg_color, 50%); - border-color: mix($selected_fg_color, $selected_bg_color, 50%); - } - &:disabled{ - background-color: mix($selected_fg_color, $selected_bg_color, 55%); - border-color: mix($selected_fg_color, $selected_bg_color, 55%); - } - } - - // OSD sliders - .osd & { - background-clip: border-box; - background-color: $selected_bg_color; - border-color: $selected_bg_color; - - &:hover { - background-color: lighten($selected_bg_color, 10%); - border-color: lighten($selected_bg_color, 10%) - } - - &:active { - background-color: darken($selected_bg_color, 10%); - border-color: darken($selected_bg_color, 10%); - } - - &:disabled { } - } - } - - value { color: gtkalpha(currentColor, 0.4); } - - marks { - color: gtkalpha(currentColor, 0.4); - - @each $marks_class, $marks_pos, $marks_margin in (top, top, bottom), - (bottom, bottom, top), - (top, left, right), - (bottom, right, left) { - &.#{$marks_class} { - margin-#{$marks_margin}: $_marks_distance; - margin-#{$marks_pos}: -($_marks_distance + $_marks_length); - } - } - } - - &.fine-tune marks { - @each $marks_class, $marks_pos, $marks_margin in (top, top, bottom), - (bottom, bottom, top), - (top, left, right), - (bottom, right, left) { - &.#{$marks_class} { - margin-#{$marks_margin}: ($_marks_distance - 1px); - margin-#{$marks_pos}: -($_marks_distance + $_marks_length - 2px); - } - } - } - &.horizontal { - indicator { - min-height: $_marks_length; - min-width: 1px; - } - - &.fine-tune indicator { min-height: ($_marks_length - 1px); } - } - &.vertical { - indicator { - min-height: 1px; - min-width: $_marks_length; - } - - &.fine-tune indicator { min-width: ($_marks_length - 1px); } - } -} - - -// -// Progress bars -// -progressbar { - padding: 0; - font-size: smaller; - color: transparentize($fg_color, 0.3); - - &.osd { - min-width: 3px; - min-height: 3px; - background-color: transparent; - - trough { - border-style: none; - background-color: transparent; - box-shadow: none; - } - } - // Moving bit - progress { - background-color: $selected_bg_color; - border: none; - border-radius: 3px; - box-shadow: none; //needed for clipping - - row:selected &, - infobar & { background-color: $selected_fg_color; } - } - // Trough - trough { - border: none; - border-radius: 3px; - background-color: if($variant == 'light', $button_border, darken($bg_color, 5%)); - - row:selected &, - infobar & { background-color: transparentize(black, 0.8); } - } -} - -// -// Level Bar -// -levelbar { - block { - min-width: 32px; - min-height: 1px; - } - &.vertical block { - min-width: 1px; - min-height: 32px; - } - - trough { - border: none; - padding: 3px; - border-radius: 3px; - background-color: if($variant == 'light', $button_border, darken($bg_color, 5%)); - } - - &.horizontal.discrete block { margin: 0 1px; } - &.vertical.discrete block { margin: 1px 0; } - - block:not(.empty) { - border: 1px solid $selected_bg_color; - background-color: $selected_bg_color; - border-radius: 2px; - } - block.low { - border-color: $warning_color; - background-color: $warning_color; - } - block.high { - border-color: $selected_bg_color; - background-color: $selected_bg_color; - } - block.full { - border-color: $success_color; - background-color: $success_color; - } - block.empty { - background-color: if($variant=='light', transparentize($fg_color,0.8), $base_color); - border-color: if($variant=='light', transparentize($fg_color,0.8), $base_color); - } -} - -// -// Print dialog -// -printdialog { - paper { - border: 1px solid $borders_color; - background: $base_color; - padding: 0; - } - - .dialog-action-box { margin: 12px; } -} - -// -// Frames -// -frame > border, -.frame { - margin: 0; - padding: 0; - border-radius: 0; - border: 1px solid $borders_color; -} - -frame.flat > border, -frame > border.flat, -.frame.flat { - border-style: none; -} - -scrolledwindow { - viewport.frame { // avoid double borders when viewport inside scrolled window - border-style: none; - } - - // This is used by GtkScrolledWindow, when content is touch-dragged past boundaries. - // This draws a box on top of the content, the size changes programmatically. - overshoot { - &.top { @include overshoot(top); } - &.bottom { @include overshoot(bottom); } - &.left { @include overshoot(left); } - &.right { @include overshoot(right); } - } - - // Overflow indication, works similarly to the overshoot, the size if fixed tho. - undershoot { - &.top { @include undershoot(top); } - &.bottom { @include undershoot(bottom); } - &.left { @include undershoot(left); } - &.right { @include undershoot(right); } - } - - junction { // the small square between two scrollbars - border-color: transparent; - // the border image is used to add the missing dot between the borders, details, details, details... - border-image: linear-gradient(to bottom, $borders_color 1px, transparent 1px) 0 0 0 1 / 0 1px stretch; - background-color: $_scrollbar_bg_color; - - &:dir(rtl) { border-image-slice: 0 1 0 0; } - } -} - -//vbox and hbox separators -separator { - background-color: transparentize(black, 0.9); - min-width: 1px; - min-height: 1px; -} - -// -// Lists -// -list { - background-color: $base_color; - border-color: $borders_color; - - row { padding: 2px; } -} - -row { - &:not(:hover) { transition: all 150ms $ease-out-quad; } - - &:selected { - @extend %selected_items; - - button { @extend %selected-button; } - } - - &.activatable { - &.has-open-popup, - &:hover { background-color: if($variant == 'light', transparentize(black, 0.95), transparentize(white, 0.97)); } - - &:active { color: $fg_color; } - &:disabled { - color: $insensitive_fg_color; - image { color: inherit; } - } - - &:selected { - &:active { color: $selected_fg_color; } - - &.has-open-popup, - &:hover { background-color: mix(black, $selected_bg_color, 10%); } - } - } -} - -// -// App Notifications -// -.app-notification { - padding: 10px; - color: $dark_sidebar_fg; - background-color: $dark_sidebar_bg; - background-clip: border-box; - border-radius: 0 0 2px 2px; - border-width: 0 1px 1px 1px; - border-style: solid; - border-color: darken($dark_sidebar_bg, 10%); - - border { border: none; } - - button { - @include button(osd); - &.flat { - @extend %undecorated_button; - border-color: transparentize($selected_bg_color, 1); - &:disabled { @extend %undecorated_button; } - } - &:hover { @include button(osd-hover); } - &:active, &:checked { @include button(osd-active); background-clip: padding-box; } - &:disabled { @include button(osd-insensitive); - } - } -} - -// -// Expanders -// -expander { - arrow { - min-width: 16px; - min-height: 16px; - -gtk-icon-source: -gtk-icontheme('pan-end-symbolic'); - - &:dir(rtl) { -gtk-icon-source: -gtk-icontheme('pan-end-symbolic-rtl'); } - &:hover { color: lighten($fg_color,30%); } //only lightens the arrow - &:checked { -gtk-icon-source: -gtk-icontheme('pan-down-symbolic'); } - } -} - -// -// Calendar -// -calendar { - color: $fg_color; - border: 1px solid $borders_color; - border-radius: 3px; - padding: 2px; - - &:selected { - @extend %selected_items; - border-radius: 1.5px; - } - - &.header { - color: $fg_color; - border: none; - } - - &.button { - @extend %undecorated_button; - - color: transparentize($fg_color,0.55); - - &:hover { color: $fg_color; } - - &:disabled { color: $insensitive_fg_color; } - } - - &:indeterminate { color: gtkalpha(currentColor,0.55); } - &.highlight { color: $fg_color; } -} - -// -// Dialogs -// -messagedialog { // Message Dialog styling - - .titlebar { - min-height: 20px; - background-color: $header_bg; - border-bottom: 1px solid darken($header_bg, 7%); - } - - .dialog-action-area button { padding: 8px; min-height: 0; } - - &.csd { // rounded bottom border styling for csd version - &.background { - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: none; - } - .dialog-action-area button { - border-bottom-style: none; - - @extend %middle_button; - &:first-child{ @extend %first_button; } - &:last-child { @extend %last_button; } - &:only-child { @extend %single_button; } - } - %middle_button { - border-radius: 0; - border-right-style: none; - } - %last_button { - border-radius: 0 0 3px 0; - border-right-style: none; - } - %first_button { - border-radius: 0 0 0 3px; - border-left-style: none; - } - %single_button { - border-radius: 0 0 3px 3px; - border-left-style: none; - border-right-style: none; - } - } -} - -// -// Filechooser -// -filechooser { - #pathbarbox { border-bottom: 1px solid transparentize($borders_color, 0.5); } -} - -filechooserbutton:drop(active) { - box-shadow: none; - border-color: transparent; -} - -// -// Sidebar -// -.sidebar { - border-style: none; - background-color: lighten($bg_color, 2%); - - @at-root %sidebar_left, - &:dir(ltr), - &.left, - &.left:dir(rtl) { - border-right: 1px solid $borders_color; - border-left-style: none; - } - - @at-root %sidebar_right, - &:dir(rtl), - &.right { - border-left: 1px solid $borders_color; - border-right-style: none; - } - - list { background-color: transparent; } - - paned & { &.left, &.right, &.left:dir(rtl), &:dir(rtl), &:dir(ltr), & { border-style: none; }} -} - -stacksidebar { - &.sidebar { - &:dir(ltr) list, - &.left list, - &.left:dir(rtl) list { @extend %sidebar_left; } - - &:dir(rtl) list, - &.right list { @extend %sidebar_right; } - } - - row { - padding: 10px 4px; - - > label { - padding-left: 6px; - padding-right: 6px; - } - &.needs-attention > label { - @extend %needs_attention; - background-size: 6px 6px, 0 0; - } - } -} - -placessidebar { - > viewport.frame { border-style: none; } - - row { - // Needs overriding of the GtkListBoxRow padding - min-height: 30px; - padding: 0px; - // Using margins/padding directly in the SidebarRow - // will make the animation of the new bookmark row jump - > revealer { - padding: 0 10px; - } - image.sidebar-icon { - &:dir(ltr) { padding-right: 8px; } - &:dir(rtl) { padding-left: 8px; } - } - label.sidebar-label { - &:dir(ltr) { padding-right: 2px; } - &:dir(rtl) { padding-left: 2px; } - } - @at-root button.sidebar-button { - min-width: 22px; - min-height: 22px; - margin-top: 2px; - margin-bottom: 2px; - padding: 0; - @extend button.flat; - border-radius: 100%; - -gtk-outline-radius: 100%; - - &:not(:hover):not(:active) > image { opacity: 0.5 }; - } - - &.sidebar-placeholder-row { - padding: 0 8px; - min-height: 2px; - background-image: _solid($drop_target_color); - background-clip: content-box; - } - - &.sidebar-new-bookmark-row { color: $selected_bg_color; } - - &:drop(active):not(:disabled) { - &, label, image { color: $drop_target_color; } - - box-shadow: inset 0 1px $drop_target_color, - inset 0 -1px $drop_target_color; - - &:selected { - &, label, image { color: $selected_fg_color; } - background-color: $drop_target_color; - } - } - } -} - -// -// Placesview -// -placesview { - .server-list-button > image { - -gtk-icon-transform: rotate(0turn); - } - - .server-list-button:checked > image { - transition: 200ms $ease-out-quad; - -gtk-icon-transform: rotate(-0.5turn); - } - - // this selects the "connect to server" label - > 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: _solid($borders_color); - background-size: 1px 1px; - - &:selected { background-image: _solid($selected_bg_color); } - - &.wide { - min-width: 5px; - min-height: 5px; - background-color: $bg_color; - background-image: _solid($borders_color), _solid($borders_color); - background-size: 1px 1px, 1px 1px; - } - } - - &.horizontal > separator { - background-repeat: repeat-y; - &:dir(ltr) { - margin: 0 -8px 0 0; - padding: 0 8px 0 0; - background-position: left; - } - &:dir(rtl) { - margin: 0 0 0 -8px; - padding: 0 0 0 8px; - background-position: right; - } - - &.wide { - margin: 0; - padding: 0; - background-repeat: repeat-y, repeat-y; - background-position: left, right; - } - } - - &.vertical > separator { - margin: 0 0 -8px 0; - padding: 0 0 8px 0; - background-repeat: repeat-x; - background-position: top; - - &.wide { - margin: 0; - padding: 0; - background-repeat: repeat-x, repeat-x; - background-position: bottom, top; - } - } -} - -// -// GtkInfoBar -// -infobar { - border-style: none; - - &.info, - &.question, - &.warning, - &.error { - background-color: $selected_bg_color; - color: $selected_fg_color; - caret-color: currentColor; - - button { @extend %selected-button } - - selection { - color: $selected_bg_color; - background-color: $selected_fg_color; - } - - *:link { @extend %link_selected; } - } -} - -// -// Buttons on selected backgrounds -// -%selected-button { - - @at-root %normal_selected_button, & { - color: $selected_fg_color; - background-color: transparentize($selected_fg_color, 1); - border-color: transparentize($selected_fg_color, 0.5); - } - - &.flat { - @include button(undecorated); - color: $selected_fg_color; - background-color: transparentize($selected_fg_color, 1); - - &:disabled { - &, label { color: transparentize($selected_fg_color, 0.6); } - } - } - &:hover { - color: $selected_fg_color; - background-color: transparentize($selected_fg_color, 0.8); - border-color: transparentize($selected_fg_color, 0.2); - } - &:active, &:active:hover, &:checked { - color: $selected_bg_color; - background-color: $selected_fg_color; - border-color: $selected_fg_color; - } - &:disabled { - &, label { color: transparentize($selected_fg_color, 0.5); } - background-color: transparentize($selected_fg_color, 1); - border-color: transparentize($selected_fg_color, 0.6); - - &:active, &:checked { - color: $selected_bg_color; - background-color: transparentize($selected_fg_color, 0.5); - border-color: transparentize($selected_fg_color, 0.6); - } - } -} - -// -// Tooltips -// -tooltip { - &.background { - // background-color needs to be set this way otherwise it gets drawn twice - // see https://bugzilla.gnome.org/show_bug.cgi?id=736155 for details. - background-color: lighten($osd_bg_color, 10%); - background-clip: padding-box; - - label { padding: 4px; } - } - - border-radius: 2px; - box-shadow: none; - - decoration { background-color: transparent; } - - * { //Yeah this is ugly - background-color: transparent; - color: $osd_fg_color; // just to be sure - } -} - -// -// Color Chooser -// -colorswatch { - // This widget is made of two boxes one on top of the other, the lower box is GtkColorSwatch {} the other one - // is GtkColorSwatch .overlay {}, GtkColorSwatch has the programmatically set background, so most of the style - // is applied to the overlay box. - - $_colorswatch-radius: 2px; - - &, &:drop(active) { border-style: none; } - - // border rounding - &.top { - border-top-left-radius: $_colorswatch-radius + 0.5px; - border-top-right-radius: $_colorswatch-radius + 0.5; - - overlay { - border-top-left-radius: $_colorswatch-radius; - border-top-right-radius: $_colorswatch-radius; - } - } - &.bottom { - border-bottom-left-radius: $_colorswatch-radius + 0.5px; - border-bottom-right-radius: $_colorswatch-radius + 0.5; - - overlay { - border-bottom-left-radius: $_colorswatch-radius; - border-bottom-right-radius: $_colorswatch-radius; - } - } - &.left, &:first-child:not(.top) { - border-top-left-radius: $_colorswatch_radius + 0.5px; - border-bottom-left-radius: $_colorswatch_radius + 0.5px; - overlay { - border-top-left-radius: $_colorswatch_radius; - border-bottom-left-radius: $_colorswatch_radius; - } - } - &.right, &:last-child:not(.bottom) { - border-top-right-radius: $_colorswatch_radius + 0.5px; - border-bottom-right-radius: $_colorswatch_radius + 0.5px; - overlay { - border-top-right-radius: $_colorswatch_radius; - border-bottom-right-radius: $_colorswatch_radius; - } - } - - &.dark overlay { - color: transparentize(white, 0.3); - &:hover { - border-color: if($variant == 'light', transparentize(black, 0.5), $borders_color); - } - } - &.light overlay { - color: transparentize(black, 0.3); - &:hover { - border-color: if($variant == 'light', transparentize(black, 0.7), $borders_color); - } - } - - overlay { - border: 1px solid if($variant == 'light', transparentize(black, 0.85), $borders_color); - &:hover { background-color: transparentize(white, 0.8) } - } - - &:disabled { - opacity: 0.5; - overlay { - border-color: transparentize(black, 0.4); - box-shadow: none; - } - } - - &#add-color-button { - border-style: solid; // the borders are drawn by the overlay for standard colorswatches to have them semi - border-width: 1px; // translucent on the colored background, here it's not necessary so they need to be set - @include button(normal); - &:hover { @include button(hover); } - overlay { @include button(undecorated); } // reset the overlay to not cover the button style underneath - } -} - -button.color { - padding: 0; - - colorswatch:first-child:last-child { - &, overlay { - margin: 4px; - border-radius: 0; - } - } -} - -// colorscale popup -colorchooser .popover.osd { border-radius: 3px; } - -// -// Misc -// -//content view (grid/list) -.content-view { - background-color: $base_color; - - &:hover { -gtk-icon-effect: highlight; } - - rubberband { @extend rubberband; } -} - -.scale-popup { - .osd & { @extend %osd; } - - button { // +/- buttons on GtkVolumeButton popup - &:hover { - @include button(hover); - } - } -} - -// Decouple the font of context menus from their entry/textview -.context-menu { font: initial; } -.monospace { font-family: Monospace; } - -// -// Shortcuts Help -// -button.circular, -button.circular-button { - padding: 0; - min-width: 16px; - min-height: 24px; - padding: 2px 6px; - border-radius: 50%; - -gtk-outline-radius: 50%; - - label { padding: 0; } -} - -.keycap { - min-width: 16px; - min-height: 20px; - - padding: 3px 6px 4px 6px; - - color: $fg_color; - background-color: $base_color; - border: 1px solid $borders_color; - border-radius: 2.5px; - box-shadow: inset 0px -2px 0px if($variant=='light', transparentize(black, 0.95), transparentize(black, 0.85)); -} - -stackswitcher button { - &.text-button { min-width: 80px; } - &.circular { min-width: 0; } -} - -// -// Dnd -// -*:drop(active):focus, -*:drop(active) { - box-shadow: inset 0 0 0 1px $drop_target_color; -} - -// -// Window Decorations -// - -decoration { - border-radius: if($darker=='false' and $variant=='light', 4px 4px 0 0, 3px 3px 0 0); - border-width: 0px; - - $_wm_border: if($variant=='light', transparentize(black, 0.9), transparentize(black, 0.45)); - - box-shadow: 0 0 0 1px if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), $_wm_border), - 0 8px 8px 0 if($variant == 'light', opacify($_wm_border, 0.1), transparentize($_wm_border, 0.2)); - - // this is used for the resize cursor area - margin: 10px; - - &:backdrop { - // the transparent shadow here is to enforce that the shadow extents don't - // change when we go to backdrop, to prevent jumping windows - box-shadow: 0 0 0 1px if($darker=='true' or $variant == 'dark', transparentize(darken($header_bg, 7%), 0.1), $_wm_border), - 0 8px 8px 0 transparent, - 0 5px 5px 0 if($variant == 'light', opacify($_wm_border, 0.1), transparentize($_wm_border, 0.2)); - - transition: $backdrop_transition; - } - .fullscreen &, - .tiled & { - border-radius: 0; - } - .popup & { - box-shadow: none; - border-radius: 0; - } - // server-side decorations as used by mutter - .ssd & { - border-radius: if($darker=='false' and $variant=='light', 4px 4px 0 0, 3px 3px 0 0); - box-shadow: 0 0 0 1px if($darker=='true' or $variant == 'dark', transparentize(black, 0.35), $_wm_border); - - &.maximized { border-radius: 0; } - } - .csd.popup & { - border-radius: 2px; - box-shadow: 0 3px 6px if($variant == 'light', $_wm_border, transparentize($_wm_border, 0.1)), - 0 0 0 1px if($variant == 'light', $_wm_border, darken($bg_color, 10%)); - } - tooltip.csd & { - border-radius: 2px; - box-shadow: 0 1px 3px 1px if($variant == 'light', $_wm_border, transparentize($_wm_border, 0.3)); - } - messagedialog.csd & { - border-radius: 3px; - } - .solid-csd & { - border-radius: 0; - margin: 1px; - background-color: $header_bg; - box-shadow: none; - } -} - -// -// Titlebuttons -// -headerbar, -.titlebar { - - &.default-decoration button.titlebutton { // no vertical padding for ssd buttons - padding: 0 4px; // already handled by the titlebar-padding - min-width: 0; - min-height: 0; - margin: 0; - } - - button.titlebutton { - padding: 0; - min-width: 24px; - - @include button(undecorated); - background-color: transparentize($header_bg, 1); - - &:hover { - @include button(header-hover); - } - &:active, &:checked { - @include button(header-active); - } - &.close, &.maximize, &.minimize { - color: transparent; - background-color: transparent; - background-position: center; - background-repeat: no-repeat; - border-width: 0; - - &:backdrop { opacity: 1; } - } - // Load png assets for each button - @each $k in ('close','maximize', 'minimize') { - @each $l, $m in ('',''), (':backdrop','-backdrop'), (':hover','-hover'), (':active','-active') { - - &.#{$k}#{$l} { background-image: -gtk-scaled(url('assets/titlebutton-#{$k}#{$m}#{$darker_asset_suffix}.png'), - url('assets/titlebutton-#{$k}#{$m}#{$darker_asset_suffix}@2.png')); } - } - } - } -} - -// catch all extend -%selected_items { - background-color: $selected_bg_color; - - @at-root %nobg_selected_items, & { - color: $selected_fg_color; - - &:disabled { color: mix($selected_fg_color, $selected_bg_color, 50%); } - } -} diff --git a/common/gtk-3.0/3.20/sass/_drawing.scss b/common/gtk-3.0/3.20/sass/_drawing.scss deleted file mode 100644 index 120a158..0000000 --- a/common/gtk-3.0/3.20/sass/_drawing.scss +++ /dev/null @@ -1,354 +0,0 @@ -// Drawing mixins - -// Solid color image -@function _solid($c) { - @return linear-gradient(to bottom, $c, $c); -} - -// Entries - -@mixin entry($t) { -// -// Entries drawing function -// -// $t: entry type -// - - @if $t==normal { - // - // normal entry - // - color: $text_color; - border-color: $entry_border; - background-color: $entry_bg; - } - - @if $t==focus { - // - // focused entry - // - color: $text_color; - border-color: if($variant=='light', $selected_bg_color, $button_border); - background-color: $entry_bg; - - @if $variant == 'dark' { - box-shadow: inset 1px 0 $selected_bg_color, - inset -1px 0 $selected_bg_color, - inset 0 1px $selected_bg_color, - inset 0 -1px $selected_bg_color; - } - } - - @if $t==insensitive { - // - // insensitive entry - // - color: $insensitive_fg_color; - border-color: transparentize($entry_border, 0.45); - background-color: transparentize($entry_bg, 0.45); - } - - @if $t==header-normal { - // - // normal header-bar entry - // - - color: $header_fg; - border-color: $header_entry_border; - background-color: $header_entry_bg; - - image, image:hover { color: inherit; } - } - - @if $t==header-focus { - // - // focused header-bar entry - // - color: $selected_fg_color; - border-color: if($darker=='false' and $variant=='light', $selected_bg_color, transparent); - background-color: $selected_bg_color; - } - - @if $t==header-insensitive { - // - // insensitive header-bar entry - // - color: transparentize($header_fg, 0.45); - border-color: $header_entry_border; - background-color: transparentize($header_entry_bg, 0.15); - } - - @else if $t==osd { - // - // normal osd entry - // - color: $osd_fg_color; - border-color: $osd_entry_border; - background-color: $osd_entry_bg; - - image, image:hover { color: inherit; } - } - - @else if $t==osd-focus { - // - // active osd entry - // - color: $selected_fg_color; - border-color: $osd_entry_border; - background-color: $selected_bg_color; - } - - @else if $t==osd-insensitive { - // - // insensitive osd entry - // - color: transparentize($osd_fg_color, 0.45); - background-color: transparentize($osd_entry_bg, 0.15); - } -} - -// Buttons - -@mixin button($t, $actionb_bg:red, $actionb_fg: green) { -// -// Button drawing function -// -// $t: button type, -// $actionb_bg, $actionb_fg: used for destructive and suggested action buttons - - @if $t==normal { - // - // normal button - // - color: $fg_color; - border-color: $button_border; - background-color: $button_bg; - } - - @else if $t==hover { - // - // hovered button - // - color: $fg_color; - border-color: $button_border; - background-color: lighten($button_bg, 5%); - } - - @else if $t==active { - // - // pushed button - // - color: $selected_fg_color; - border-color: if($variant=='light', $selected_bg_color, $button_border); - background-color: $selected_bg_color; - } - - @else if $t==insensitive { - // - // insensitive button - // - label, & { color: $insensitive_fg_color; } - - border-color: transparentize($button_border, 0.45); - background-color: transparentize($button_bg, 0.45); - } - - @else if $t==insensitive-active { - // - // insensitive pushed button - // - label, & { color: transparentize($selected_fg_color, 0.2); } - - border-color: transparentize($selected_bg_color, 0.25); - background-color: transparentize($selected_bg_color, 0.25); - - opacity: 0.6; - } - - @if $t==header-normal { - // - // normal header-bar button - // - color: $header_fg; - outline-offset: -3px; - background-color: transparentize($header_bg, 1); - border-color: transparentize($header_bg, 1); - } - - @else if $t==header-hover { - // - // hovered header-bar button - // - color: $header_fg; - border-color: $header_button_border; - background-color: $header_button_bg; - } - - @else if $t==header-active { - // - // pushed header-bar button - // - color: $selected_fg_color; - border-color: if($darker=='false' and $variant=='light', $selected_bg_color, transparent); - background-color: $selected_bg_color; - } - - @else if $t==header-insensitive { - // - // insensitive header-bar button - // - label, & { color: transparentize($header_fg, 0.45); } - - background-color: transparentize($header_bg, 1); - border-color: transparentize($header_bg, 1); - } - - @else if $t==header-insensitive-active { - // - // header-bar insensitive pushed button - // - color: transparentize($selected_fg_color, 0.25); - border-color: transparentize($selected_bg_color, 0.35); - background-color: transparentize($selected_bg_color, 0.35); - } - - @else if $t==osd { - // - // normal osd button - // - color: $osd_fg_color; - border-color: $osd_button_border; - background-color: $osd_button_bg; - } - - @else if $t==osd-hover { - // - // active osd button - // - color: $osd_fg_color; - border-color: $osd_button_border; - background-color: opacify(lighten($osd_button_bg, 7%), 0.1); - } - - @else if $t==osd-active { - // - // active osd button - // - color: $selected_fg_color; - border-color: $osd_button_border; - background-color: $selected_bg_color; - } - - @else if $t==osd-insensitive { - // - // insensitive osd button - // - color: $osd_insensitive_fg_color; - border-color: $osd_button_border; - background-color: transparentize($osd_button_bg, 0.15); - } - - @else if $t==suggested_destructive { - // - // suggested or destructive action buttons - // - background-clip: border-box; - - color: $actionb_fg; - background-color: $actionb_bg; - border-color: $actionb_bg; - } - - @else if $t==undecorated { - // - // reset - // - border-color: transparent; - background-color: transparent; - background-image: none; - } -} - -// -// Overshoot -// -@mixin overshoot($p, $c:$selected_bg_color) { -// $p: position -// $c: base color -// -// possible $p values: -// top, bottom, right, left -// - - $_big_gradient_length: 60%; - - $_position: center top; - $_big_gradient_size: 100% $_big_gradient_length; - - @if $p==bottom { - $_position: center bottom; - } - - @else if $p==right { - $_position: right center; - $_big_gradient_size: $_big_gradient_length 100%; - } - - @else if $p==left { - $_position: left center; - $_big_gradient_size: $_big_gradient_length 100%; - } - - background-image: -gtk-gradient(radial, - $_position, 0, - $_position, 0.6, - from(transparentize($c, 0.8)), - to(transparentize($c, 1))); - - background-size: $_big_gradient_size; - background-repeat: no-repeat; - background-position: $_position; - - background-color: transparent; // reset some properties to be sure to not inherit them somehow - border: none; // - box-shadow: none; // -} - -// -// Undershoot -// -@mixin undershoot($p) { -// $p: position -// -// possible $p values: -// top, bottom, right, left -// - - $_undershoot_color_dark: transparentize(black, 0.8); - $_undershoot_color_light: transparentize(white, 0.8); - - $_gradient_dir: left; - $_dash_bg_size: 10px 1px; - $_gradient_repeat: repeat-x; - $_bg_pos: center $p; - - background-color: transparent; // shouldn't be needed, but better to be sure; - - @if ($p == left) or ($p == right) { - $_gradient_dir: top; - $_dash_bg_size: 1px 10px; - $_gradient_repeat: repeat-y; - $_bg_pos: $p center; - } - - background-image: linear-gradient(to $_gradient_dir, // this is the dashed line - $_undershoot_color_light 50%, - $_undershoot_color_dark 50%); - - padding-#{$p}: 1px; - background-size: $_dash_bg_size; - background-repeat: $_gradient_repeat; - background-origin: content-box; - background-position: $_bg_pos; - border: none; -} diff --git a/common/gtk-3.0/3.20/sass/_granite.scss b/common/gtk-3.0/3.20/sass/_granite.scss deleted file mode 100644 index a564d55..0000000 --- a/common/gtk-3.0/3.20/sass/_granite.scss +++ /dev/null @@ -1,218 +0,0 @@ -// Granite Widgets - -// -// Overlay Bar -// -.overlay-bar { - background-color: $selected_bg_color; - border-color: $selected_bg_color; - border-radius: 2px; - padding: 3px 6px; - margin: 3px; - - label { color: $selected_fg_color; } -} - -// -// Thin Pane Separator -// -GraniteWidgetsThinPaned { - background-color: transparent; - background-image: none; - margin: 0; - border-left: 1px solid $borders_color; - border-right: 1px solid $borders_color; - -} - -// avoid borders when a viewport is -// packed into a Static Notebook, or Popover -GraniteWidgetsPopOver .frame, -GraniteWidgetsStaticNotebook .frame { - border: none; -} - -// -// Help Button -// -.help_button { - border-radius: 100px; - padding: 3px 9px; -} - -// -// Secondary Toolbars -// -toolbar.secondary-toolbar { - padding: 3px; - border-bottom: 1px solid $borders_color; - - button { padding: 0 3px 0 3px; } -} - -// -// Bottom Toolbars -// -toolbar.bottom-toolbar { - padding: 5px; - border-width: 1px 0 0 0; - border-style: solid; - border-color: $borders_color; - background-color: $bg_color; - - button { padding: 2px 3px 2px 3px; } -} - -// -// Sidebar & Source List -// -.source-list { - -GtkTreeView-horizontal-separator: 1px; - -GtkTreeView-vertical-separator: 6px; -} - -.source-list, -.source-list.view { - background-color: $bg_color; - color: $fg_color; - -gtk-icon-style: regular; -} - -.source-list.category-expander { - color: transparent; -} - -.source-list.view:hover { - background-color: lighten($bg_color, 5%); -} - -.source-list.view:selected, -.source-list.view:hover:selected, -.source-list.view:selected:focus, -.source-list.category-expander:hover { - color: $selected_fg_color; - background-color: $selected_bg_color; -} - -.source-list scrollbar, -.source-list junction { - border-image: none; - border-color: transparent; - background-color: $bg_color; - background-image: none; -} - -.source-list.badge, -.source-list.badge:hover, -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:hover:selected { - background-image: none; - background-color: $selected_bg_color; - color: $selected_fg_color; - border-radius: 10px; - padding: 0 6px; - margin: 0 3px; - border-width: 0; -} - -.source-list.badge:selected, -.source-list.badge:selected:focus, -.source-list.badge:hover:selected { - background-color: $selected_fg_color; - color: $selected_bg_color; -} - -// -// Expander -// -.source-list.category-expander { - color: $fg_color; - -gtk-icon-source: -gtk-icontheme("pan-end-symbolic"); - -GtkTreeView-expander-size: 16; -} - -.source-list.category-expander, -.source-list.category-expander:backdrop { - color: transparent; - border: none; -} - -.source-list.category-expander:checked { - -gtk-icon-source: -gtk-icontheme("pan-down-symbolic"); -} - -// -// Welcome -// -GraniteWidgetsWelcome { - background-color: $base_color; -} - -GraniteWidgetsWelcome label { - color: mix($fg_color, $bg_color, 50%); - font-size: 11px; - text-shadow: none; -} - -GraniteWidgetsWelcome .h1, -GraniteWidgetsWelcome .h3 { - color: transparentize($fg_color, 0.2); -} - -// -// Help Button -// -.help_button { - border-radius: 0; -} - -// -// Popover -// -GraniteWidgetsPopOver { - -GraniteWidgetsPopOver-arrow-width: 21; - -GraniteWidgetsPopOver-arrow-height: 10; - -GraniteWidgetsPopOver-border-radius: 2px; - -GraniteWidgetsPopOver-border-width: 1; - -GraniteWidgetsPopOver-shadow-size: 12; - - border: 1px solid transparentize(black, 0.7); - margin: 0; -} - -.popover_bg { - background-image: _solid($base_color); - border: 1px solid transparentize(black, 0.7); -} - -GraniteWidgetsPopOver .sidebar.view, -GraniteWidgetsPopOver * { - background-color: transparent; -} - -// -// Xs Entry -// -GraniteWidgetsXsEntry entry { padding: 4px; } - -// -// Text Styles -// -.h1 { font-size: 24px; } -.h2 { font-size: 18px; } -.h3 { font-size: 11px; } -.h4, -.category-label { - color: mix($bg_color, $text_color, 30%); - font-weight: 600; -} - -.h4 { - padding-bottom: 6px; - padding-top: 6px; -} - -GtkListBox .h4{ - padding-left: 6px; -} diff --git a/common/gtk-3.0/3.20/sass/_lightdm.scss b/common/gtk-3.0/3.20/sass/_lightdm.scss deleted file mode 100644 index a9ab2fd..0000000 --- a/common/gtk-3.0/3.20/sass/_lightdm.scss +++ /dev/null @@ -1,109 +0,0 @@ -// the panel widget at the top -#panel_window { - background-color: $panel_bg; - color: $panel_fg; - font-weight: bold; - box-shadow: inset 0 -1px darken($panel_bg, 7%); - - // the menubars/menus of the panel, i.e. indicators - menubar { - padding-left: 5px; - - &, > menuitem { - background-color: transparent; - color: $panel_fg; - font-weight: bold; - } - } - - menubar menuitem:disabled { - color: transparentize($panel_fg, 0.5); - - label { color: inherit; } - } - menubar menu > menuitem { font-weight: normal; } -} - -// the login window -#login_window, -#shutdown_dialog, -#restart_dialog { - font-weight: normal; - border-style: none; - background-color: transparent; - color: $fg_color; -} - -// the top half of the login-window, in GtkDialog terms, the content -#content_frame { - padding-bottom: 14px; - background-color: $bg_color; - border-top-left-radius: 2px; - border-top-right-radius: 2px; - border: solid transparentize(black, 0.9); - border-width: 1px 1px 0 1px; -} - -#content_frame button { - @include button(normal); - - &:hover { @include button(hover); } - &:active, &:checked { @include button(active); } - &:disabled { @include button(insensitive); } -} - -// the lower half of the login-window, in GtkDialog terms the buttonbox or action area -#buttonbox_frame { - padding-top: 20px; - padding-bottom: 0px; - border-style: none; - background-color: if($variant=='light', $osd_bg_color, $header_bg); - border-bottom-left-radius: 3px; - border-bottom-right-radius: 3px; - border: solid transparentize(black, 0.9); - border-width: 0 1px 1px 1px; - box-shadow: inset 0 1px if($variant=="light", $dark_sidebar_border, $header_border); -} - -#buttonbox_frame button{ - @include button(osd); - - &:hover { @include button(osd-hover); } - &:active, &:checked { @include button(osd-active); } - &:disabled { @include button(osd-insensitive); } -} - -#login_window #user_combobox { - color: $fg_color; - font-size: 13px; - - menu { font-weight: normal; } -} - -// the user's avatar box -#user_image { - padding: 3px; - border-radius: 2px; -} - -// the shutdown button -#shutdown_button.button { - @include button(suggested_destructive, $destructive_color); - - &:hover { @include button(suggested_destructive, lighten($destructive_color, 10%)); } - &:active, &:checked { @include button(suggested_destructive, darken($destructive_color, 10%)); } -} - -// the restart button -#restart_button.button { - @include button(suggested_destructive, $suggested_color); - - &:hover { @include button(suggested_destructive, lighten($suggested_color, 10%)); } - &:active, &:checked { @include button(suggested_destructive, darken($suggested_color, 10%)); } -} - -// the warning, in case a wrong password is entered or something else goes wrong according to PAM -#greeter_infobar { - border-bottom-width: 0; - font-weight: bold; -} diff --git a/common/gtk-3.0/3.20/sass/_transparent_widgets.scss b/common/gtk-3.0/3.20/sass/_transparent_widgets.scss deleted file mode 100644 index 2b59744..0000000 --- a/common/gtk-3.0/3.20/sass/_transparent_widgets.scss +++ /dev/null @@ -1,216 +0,0 @@ -//.nemo-window GtkEventBox { background-color: $bg_color; } // fixes nemo statusbar - -//.nemo-window, -.nautilus-window { - paned > separator { - background-image: _solid($dark_sidebar_border); - - @if $variant=='light' { - &:dir(ltr) { margin-left: -1px; } - &:dir(rtl) { margin-right: -1px; } - } - } -} - -filechooser paned > separator { background-image: _solid($dark_sidebar_border); } - -// Dark transparent sidebars -filechooser, -.nautilus-window { - - &.csd.background, placessidebar list { background-color: transparent; } - - placessidebar.sidebar { - - background-color: $dark_sidebar_bg; - - row.sidebar-row { - border: none; - color: $dark_sidebar_fg; - - .sidebar-icon { color: transparentize($dark_sidebar_fg, 0.4); } - - &.has-open-popup, - &:hover { background-color: transparentize($dark_sidebar_fg, 0.85); } - - &:disabled { - &, label, image { color: transparentize($dark_sidebar_fg, 0.6); } - } - - &:selected.has-open-popup, - &:selected, &:selected:hover, &:active:hover { - @extend %selected_items; - - .sidebar-icon { color: inherit; } - } - - &:not(:selected) button.sidebar-button { - color: $dark_sidebar_fg; - - &:hover { @include button(osd-hover); } - &:active { @include button(active); } - - &:not(:hover):not(:active) > image { opacity: 0.5 }; - } - - &.sidebar-new-bookmark-row { - color: $selected_bg_color; - - .sidebar-icon { color: inherit; } - } - - &:drop(active):not(:disabled) { - &, label, .sidebar-icon { color: $drop_target_color; } - - &:selected { - &, label, .sidebar-icon { color: $selected_fg_color; } - background-color: $drop_target_color; - } - } - } - - separator { background-color: transparent; } - - scrollbar { @extend %dark_sidebar_scrollbar } - } - - &.maximized placessidebar.sidebar { background-color: opacify($dark_sidebar_bg, 1); } -} - -.nemo-window { - .sidebar { - color: $dark_sidebar_fg; - background-color: $dark_sidebar_bg; - - .view, row { - background-color: transparent; - color: $dark_sidebar_fg; - - &.cell:selected { - background-color: $selected_bg_color; - color: $selected_fg_color; - } - - &.expander { - color: mix($dark_sidebar_fg, $dark_sidebar_bg, 50%); - - &:hover { color: $dark_sidebar_fg; } - } - } - - separator { background-color: transparent; } - - scrollbar { @extend %dark_sidebar_scrollbar } - } -} - -.caja-side-pane { - - &, - > notebook > stack > widget > box, - text, - treeview { - color: $dark_sidebar_fg; - caret-color: $dark_sidebar_fg; - background-color: opacify($dark_sidebar_bg, 1); - } - - > box button { - &:not(:active):not(:checked) { color: $dark_sidebar_fg; } - &:hover:not(:active) { @extend %dark_sidebar_button:hover; } - } - - .frame { border-color: darken(opacify($dark_sidebar_bg, 1), 5%); } - - scrollbar { @extend %dark_sidebar_scrollbar; } - junction { background-color: darken($dark_sidebar_bg, 5%); } -} - -filechooser { - - actionbar { - color: $dark_sidebar_fg; - background-color: $dark_sidebar_bg; - border-color: if($variant =='light', darken($dark_sidebar_bg, 7%), darken($dark_sidebar_bg, 15%)); - - button { @extend %dark_sidebar_button; } - entry { @extend %dark_sidebar_entry; } - - @extend %osd_check_radio; - - label, combobox { color: $dark_sidebar_fg; } - } -} - -// Gedit -.gedit-bottom-panel-paned { background-color: $base_color; } - -.gedit-side-panel-paned > separator { background-image: _solid($dark_sidebar_border); } -.gedit-bottom-panel-paned > separator { background-image: _solid($borders_color); } - -.gedit-document-panel { - background-color: $dark_sidebar_bg; - - .maximized & { background-color: opacify($dark_sidebar_bg, 1); } - - row { - color: $dark_sidebar_fg; - background-color: transparentize($dark_sidebar_fg, 1); - - &:hover { - background-color: transparentize($dark_sidebar_fg, 0.85); - } - &:active { - color: $selected_fg_color; - background-color: $selected_bg_color; - - button { color: $selected_fg_color; } - } - &:selected, &:selected:hover { - color: $selected_fg_color; - background-color: $selected_bg_color; - } - &:hover:not(:selected) button:active { - color: $dark_sidebar_fg; - } - } -} - -%dark_sidebar_button { - @include button(osd); - - &:hover { @include button(osd-hover); } - &:active, &:checked { @include button(osd-active); } - &:disabled { @include button(osd-insensitive); } -} - -%dark_sidebar_entry { - @include entry(osd); - - &:focus { @include entry(osd-focus); } - &:disabled { @include entry(osd-insensitive); } -} - -%dark_sidebar_scrollbar { - - border-color: darken($dark_sidebar_bg, 5%); - - &.overlay-indicator:not(.dragging):not(.hovering) slider { - background-color: lighten($dark_sidebar_fg, 15%); - border: 1px solid transparentize(black, 0.7); - } - slider { - background-color: transparentize(lighten($dark_sidebar_fg, 15%), 0.3); - - &:hover { background-color: lighten($dark_sidebar_fg, 20%); } - - &:hover:active { background-color: $selected_bg_color; } - - &:disabled { - background-color: transparent; - } - } - trough { - background-color: darken($dark_sidebar_bg, 5%); - } -} diff --git a/common/gtk-3.0/3.20/sass/_unity.scss b/common/gtk-3.0/3.20/sass/_unity.scss deleted file mode 100644 index 0d6168e..0000000 --- a/common/gtk-3.0/3.20/sass/_unity.scss +++ /dev/null @@ -1,159 +0,0 @@ -// Decorations -UnityDecoration { - -UnityDecoration-extents: 28px 1 1 1; - -UnityDecoration-input-extents: 10px; - - -UnityDecoration-shadow-offset-x: 0px; - -UnityDecoration-shadow-offset-y: 3px; - -UnityDecoration-active-shadow-color: rgba(0, 0, 0, 0.2); - -UnityDecoration-active-shadow-radius: 12px; - -UnityDecoration-inactive-shadow-color: rgba(0, 0, 0, 0.07); - -UnityDecoration-inactive-shadow-radius: 7px; - - -UnityDecoration-glow-size: 10px; - -UnityDecoration-glow-color: $selected_bg_color; - - -UnityDecoration-title-indent: 10px; - -UnityDecoration-title-fade: 35px; - -UnityDecoration-title-alignment: 0.0; - - .top { - border: 1px solid if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), transparentize(black, 0.9)); - border-bottom-width: 0; - border-radius: 4px 4px 0 0; - padding: 1px 6px 0 6px; - - background-image: _solid(opacify($header_bg, 1)); - color: $header_fg; // The foreground color will be used to paint the text - - box-shadow: inset 0 1px lighten($header_bg, 3%); - - &:backdrop { - border-bottom-width: 0; - //background-image: _solid(opacify($header_bg_backdrop, 1)); - color: transparentize($header_fg, 0.3); - } - } - .left, .right, .bottom, - .left:backdrop, .right:backdrop, .bottom:backdrop { - background-color: transparent; - background-image: _solid(if($darker=='true' or $variant == 'dark', darken($header_bg, 7%), transparentize(black, 0.9))); - } -} - -// Panel Style -UnityPanelWidget, -.unity-panel { - background-image: _solid(#002b36); - color: lighten($panel_fg, 20%); - box-shadow: none; - - &:backdrop { color: lighten($panel_fg, 1%); } -} - -.unity-panel.menubar.menuitem:hover, -.unity-panel.menubar .menuitem *:hover { - border-radius: 0; - color: $selected_fg_color; - background-image: _solid($selected_bg_color); - border-bottom: none; -} - -// Unity Greeter -.lightdm.menu { - background-image: none; - background-color: transparentize(black, 0.6); - border-color: transparentize(white, 0.2); - border-radius: 4px; - padding: 1px; - color: white; -} - -.lightdm-combo .menu { - background-color: lighten($header_bg, 8); - border-radius: 0px; - padding: 0px; - color: white; -} - -.lightdm.menu .menuitem *, -.lightdm.menu .menuitem.check:active, -.lightdm.menu .menuitem.radio:active { - color: white; -} - -.lightdm.menubar { - color: transparentize(white, 0.2); - background-image: none; - background-color: transparentize(black, 0.5); - - & > .menuitem { - padding: 2px 6px; - } -} - -.lightdm-combo.combobox-entry .button, -.lightdm-combo .cell, -.lightdm-combo .button, -.lightdm-combo .entry, -.lightdm.button, -.lightdm.entry { - background-image: none; - background-color: transparentize(black, 0.7); - border-color: transparentize(white, 0.6); - border-radius: 10px; - padding: 7px; - color: white; - text-shadow: none; -} - -.lightdm.button, -.lightdm.button:hover, -.lightdm.button:active, -.lightdm.button:active:focus, -.lightdm.entry, -.lightdm.entry:hover, -.lightdm.entry:active, -.lightdm.entry:active:focus { - background-image: none; - border-image: none; -} - -.lightdm.button:focus, -.lightdm.entry:focus { - border-color: transparentize(white, 0.9); - border-width: 1px; - border-style: solid; - color: white; -} - -.lightdm.entry:selected { - background-color: transparentize(white, 0.2); -} - -.lightdm.entry:active { - -gtk-icon-source: -gtk-icontheme("process-working-symbolic"); - animation: dashentry_spinner 1s infinite linear; -} - -.lightdm.option-button { - padding: 2px; - background: none; - border: 0; -} - -.lightdm.toggle-button { - background: none; - border-width: 0; - - &.selected { - background-color: transparentize(black, 0.3); - border-width: 1px; - } -} - -@keyframes dashentry_spinner { - to { - -gtk-icon-transform: rotate(1turn); - } -} diff --git a/common/gtk-3.0/3.20/sass/gtk-dark.scss b/common/gtk-3.0/3.20/sass/gtk-dark.scss deleted file mode 100644 index 529ee3d..0000000 --- a/common/gtk-3.0/3.20/sass/gtk-dark.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'dark'; -$darker: 'false'; -$transparency: 'true'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.20/sass/gtk-darker.scss b/common/gtk-3.0/3.20/sass/gtk-darker.scss deleted file mode 100644 index 34b8f81..0000000 --- a/common/gtk-3.0/3.20/sass/gtk-darker.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'light'; -$darker: 'true'; -$transparency: 'true'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.20/sass/gtk-solid-dark.scss b/common/gtk-3.0/3.20/sass/gtk-solid-dark.scss deleted file mode 100644 index 959d8b1..0000000 --- a/common/gtk-3.0/3.20/sass/gtk-solid-dark.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'dark'; -$darker: 'false'; -$transparency: 'false'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.20/sass/gtk-solid-darker.scss b/common/gtk-3.0/3.20/sass/gtk-solid-darker.scss deleted file mode 100644 index 45b7dbe..0000000 --- a/common/gtk-3.0/3.20/sass/gtk-solid-darker.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'light'; -$darker: 'true'; -$transparency: 'false'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.20/sass/gtk-solid.scss b/common/gtk-3.0/3.20/sass/gtk-solid.scss deleted file mode 100644 index 28ff2b6..0000000 --- a/common/gtk-3.0/3.20/sass/gtk-solid.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'light'; -$darker: 'false'; -$transparency: 'false'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.20/sass/gtk.scss b/common/gtk-3.0/3.20/sass/gtk.scss deleted file mode 100644 index 9bb0348..0000000 --- a/common/gtk-3.0/3.20/sass/gtk.scss +++ /dev/null @@ -1,13 +0,0 @@ -$variant: 'light'; -$darker: 'false'; -$transparency: 'true'; - -@import 'colors'; -@import 'drawing'; -@import 'common'; -@import 'applications'; -@import 'unity'; -@import 'granite'; -@import 'lightdm'; -@import 'transparent_widgets'; -@import 'colors-public'; diff --git a/common/gtk-3.0/3.22 b/common/gtk-3.0/3.22 deleted file mode 120000 index 8b6d177..0000000 --- a/common/gtk-3.0/3.22 +++ /dev/null @@ -1 +0,0 @@ -3.20 \ No newline at end of file diff --git a/common/gtk-3.0/3.24 b/common/gtk-3.0/3.24 deleted file mode 120000 index 8b6d177..0000000 --- a/common/gtk-3.0/3.24 +++ /dev/null @@ -1 +0,0 @@ -3.20 \ No newline at end of file diff --git a/common/gtk-3.0/thumbnail-dark.png b/common/gtk-3.0/thumbnail-dark.png deleted file mode 100644 index daf3162a286eafd49d6b80006305683b631e6ca6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1508 zcmV%M?09%fpQzHa#X6xAcSODdeoPM5JpmzN<}9kXr5SboT*A1M`#BDK-k~RHeLu`IVo}e0S!9EvAlQ60DvbM zQXI>>^ z*qw1AQFaw?t1sTxQFAJm@!HIp(T>qGX@b_+pN^w-$YQYJd|A!>MT0arv}+x!HctNK z-5nJS0I0{jx^YhBt`q5tpGzN%t=^o=x+`yJ9FaJ9<-qns*G)MKm(HGGp&?N3Jo43d zXIcdMi52Uo*Exfu##(e5wQ#j$@0Vq6A>L#|EFwsR5da{IysKn8(|C!{q^eEBW4T?G zHa_|?Sa;4{x*GtQbMv*fiMQ<~ZJhu7(YSduMw`b>wegpKZxsN#zhIC%D!%l)`tk4SizW>& z`58d)lsj**GC;^v?Fx@EC1JpX;|Cfc9K$KzbG`2PdpMcIxU2d^xeuFNmgCW|bb9pK zHS6C0?5t(!>kBfvxfbe`Jf5VdIB&2Mp%`rCRE8uB03_be-71wb!cctIk5RO3-aAyX znQyIS+*O3e*jLJ8z!QCG&dnz@sf0FlNNzzFg9^07von-KzM8VKCY{}`$3d24Ko~** z07#{!Q8e{C;&9N*tBqRx=5|a~^Ik@Zq{4%4)ig%S%vA^@0Abc=*7Y@)xrWLvwb3?l z#L~hMOA0mCtmxlaS7kgwBQiN-TFy|>UGJCVkk1n`*wa)95IJPxG%E!FAaQTg*Xas5YqrCzLKvMsZO$mB;#{);4@qiMM#c+UhcDQoG7jtOy}>IdWs$u{y%o4% z^{;XEXx4r4#OH^r7#X0p=ty<`%WrSygRHmaQk8ck0Eo?}f2z)2w)w;7FCEx+AS&K> zY+`THv?auuY-`R+x$j4cK zhu2~q2K`8l^|iX>9=bd8{10O3`ofI2DTWqYZJT76l7|SodoH&-_p>+KLIA+6>2?4J z@tiJM-=9DSI@){uloj?jQG@IlN%v0K_vfK-p!wb z<~#L;&{o^UT?bl5|6fwxM=PKe(25k$2@e_}OcaEEvno*#5W*4>G)YmuHc$UxEee9S z%|lXDLd~kPGgPT)o@YJHZsoss4;FNUb)rp9DTay^&-M-xRw&xx{w9XC~bWmp5?*B{AJvlu&=hx@_&v{NS;q`GK z>fVbK5sZ(d;SY>q@EYg#@F67J_fwLPjGEFtpdg3@8Wj%{FPy{W47Io*xyU8PS zf1s|#2?+aJWkHN8&M>-05U@U1Um7Eh-quXQ-RF`Y&nF*IxI4%9ZY z(Ugbf55mDSZ2P4^JR&+|{j&PKZwJG9kKB+`@Wkq}LZfVy*2rlw+tc%BG33Z{0*RIp zc`0;fpFc*&IMV9Iqc^|+hg;a(6dfZc?>eGMrf}Q4^&jp1cu&>ijQME8&rV@f&gUC{ zyxeJbU>R-)Px7RPrS+@B(Qz{i_vI-dy6d;5!0MJrm`-uvuo+`9uUuxEF_ayHyiTJiH$)8qhnOcy}?=YEka*jg}^CVl8qxT&-P_u2Z zweJ1KuE33Z!mY?7uPZ=nRS|?zO|qPK`49k*6hlYGMi2xDIKI>7f_TT*12#64olNDW z(hl#KDeE;Oe)mJoPKO5#deDc>&ggohhK%R&j-<6YMW$5t;vX&q1W5o07y|&{fSZeg zgh%em01~xM;dgi|1ZH#S%+ z8?4a=4FLI>bUZ<0eyFRZrB9lYsUZnkYowgN_xmwm-rCXJ$3r+mC7zxuJ^?U}DpMIt z7Lc9awEykLg0H9Lq(!l)z#tp1lSa3l-}?F0S5Me_9l^1Fw}|e@VQL7D0=kMTwvj9<)?K z@Y)yXmY7qVLluH0000 -image/svg+xml \ No newline at end of file diff --git a/common/metacity-1/button-border.svg b/common/metacity-1/button-border.svg deleted file mode 100644 index 9cea798..0000000 --- a/common/metacity-1/button-border.svg +++ /dev/null @@ -1,107 +0,0 @@ - -image/svg+xml \ No newline at end of file diff --git a/common/metacity-1/close-icon.svg b/common/metacity-1/close-icon.svg deleted file mode 100644 index efc4175..0000000 --- a/common/metacity-1/close-icon.svg +++ /dev/null @@ -1,104 +0,0 @@ - -image/svg+xml \ No newline at end of file diff --git a/common/metacity-1/max-icon.svg b/common/metacity-1/max-icon.svg deleted file mode 100644 index 6b80028..0000000 --- a/common/metacity-1/max-icon.svg +++ /dev/null @@ -1,75 +0,0 @@ - -image/svg+xml \ No newline at end of file diff --git a/common/metacity-1/metacity-theme-1-dark.xml b/common/metacity-1/metacity-theme-1-dark.xml deleted file mode 100644 index eeab8f5..0000000 --- a/common/metacity-1/metacity-theme-1-dark.xml +++ /dev/null @@ -1,762 +0,0 @@ - - - - SolArc - horst3180 - horst3180 - 2015 - SolArc Metacity theme - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -</draw_ops> - -<draw_ops name="title_unfocused"> - <title x="(0 `max` ((width - title_width) / 2)) + 2" - y="(0 `max` ((height - title_height) / 2)) + 1" - color="C_title_unfocused"/> -</draw_ops> - - <!-- window decorations --> - -<draw_ops name="entire_background_focused"> - <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="entire_background_unfocused"> - <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_focused"> - <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> - <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_unfocused"> - <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> - <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_max"> - -</draw_ops> - -<draw_ops name="titlebar_small_focused"> - -</draw_ops> - -<draw_ops name="titlebar_small_unfocused"> - -</draw_ops> - -<draw_ops name="border_focused"> - <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> -</draw_ops> - -<draw_ops name="border_unfocused"> - <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> -</draw_ops> - - -<!--close--> -<draw_ops name="close_focused"> - <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_focused_pressed"> - <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_focused_prelight"> - <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_unfocused"> - <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_unfocused_prelight"> - <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_unfocused_pressed"> - <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<!--maximize--> -<draw_ops name="maximize_focused"> - <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_focused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_focused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_unfocused"> - <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_unfocused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_unfocused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<!--minimize--> -<draw_ops name="minimize_focused"> - <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_focused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_focused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_unfocused"> - <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_unfocused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_unfocused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - - -<!--Todo--> -<draw_ops name="menu_focused"></draw_ops> -<draw_ops name="menu_focused_pressed"></draw_ops> -<draw_ops name="menu_unfocused"></draw_ops> -<draw_ops name="menu_unfocused_prelight"></draw_ops> -<draw_ops name="menu_unfocused_pressed"></draw_ops> -<draw_ops name="shade_focused"></draw_ops> -<draw_ops name="shade_focused_pressed"></draw_ops> -<draw_ops name="shade_unfocused"></draw_ops> -<draw_ops name="shade_unfocused_prelight"></draw_ops> -<draw_ops name="shade_unfocused_pressed"></draw_ops> - -<!-- frame styles --> - -<frame_style name="normal_focused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_unfocused" geometry="normal_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_focused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_unfocused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_shaded_focused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_shaded_unfocused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="dialog_focused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="dialog_unfocused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="modal_dialog_focused" geometry="modal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="modal_dialog_unfocused" geometry="modal"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="utility_focused" geometry="small"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_small_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="utility_unfocused" geometry="small_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="border_focused" geometry="borderless"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="border_unfocused" geometry="borderless"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<!-- placeholder for unimplementated styles--> -<frame_style name="blank" geometry="normal"> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<!-- frame style sets --> - -<frame_style_set name="normal_style_set"> - <frame focus="yes" state="normal" resize="both" style="normal_focused"/> - <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> - <frame focus="yes" state="maximized" style="normal_max_focused"/> - <frame focus="no" state="maximized" style="normal_max_unfocused"/> - <frame focus="yes" state="shaded" style="normal_focused"/> - <frame focus="no" state="shaded" style="normal_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> - <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> -</frame_style_set> - -<frame_style_set name="dialog_style_set"> - <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> - <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="dialog_focused"/> - <frame focus="no" state="shaded" style="dialog_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - -<frame_style_set name="modal_dialog_style_set"> - <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> - <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="modal_dialog_focused"/> - <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - -<frame_style_set name="utility_style_set"> - <frame focus="yes" state="normal" resize="both" style="utility_focused"/> - <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="utility_focused"/> - <frame focus="no" state="shaded" style="utility_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - -<frame_style_set name="border_style_set"> - <frame focus="yes" state="normal" resize="both" style="border_focused"/> - <frame focus="no" state="normal" resize="both" style="border_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="blank"/> - <frame focus="no" state="shaded" style="blank"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - - -<!-- windows --> - -<window type="normal" style_set="normal_style_set"/> -<window type="dialog" style_set="dialog_style_set"/> -<window type="modal_dialog" style_set="modal_dialog_style_set"/> -<window type="menu" style_set="utility_style_set"/> -<window type="utility" style_set="utility_style_set"/> -<window type="border" style_set="border_style_set"/> - -</metacity_theme> diff --git a/common/metacity-1/metacity-theme-1.xml b/common/metacity-1/metacity-theme-1.xml deleted file mode 100644 index 92bee2a..0000000 --- a/common/metacity-1/metacity-theme-1.xml +++ /dev/null @@ -1,762 +0,0 @@ -<?xml version="1.0"?> -<metacity_theme> -<info> - <name>SolArc</name> - <author>horst3180</author> - <copyright>horst3180</copyright> - <date>2015</date> - <description>SolArc Metacity theme</description> -</info> - -<!-- meaningfull constants --> - -<constant name="C_title_focused" value="#839496" /> -<constant name="C_title_unfocused" value="#979dac" /> - -<constant name="C_wm_bg_focused" value="#eee8d5" /> -<constant name="C_wm_bg_unfocused" value="#eee8d5" /> - -<constant name="C_wm_highlight" value="#eeeff1" /> - -<!-- window button colors --> - -<!-- close --> -<constant name="C_button_close_bg_focused" value="#f46067" /> -<constant name="C_button_close_bg_hover" value="#f68086" /> -<constant name="C_button_close_bg_active" value="#f13039" /> - -<constant name="C_icon_close_bg" value="#657b83" /> - -<!-- minimize, maximize --> -<constant name="C_button_bg_hover" value="#fdfdfd" /> -<constant name="C_button_bg_active" value="#268bd2" /> - -<constant name="C_button_border_hover" value="#D1D3DA" /> - -<constant name="C_icon_bg_focused" value="#90949E" /> -<constant name="C_icon_bg_unfocused" value="#B6B8C0" /> -<constant name="C_icon_bg_hover" value="#7A7F8B" /> -<constant name="C_icon_bg_active" value="#268bd2" /> - -<!-- geometries --> - -<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> - <distance name="left_width" value="1" /> - <distance name="right_width" value="1" /> - <distance name="bottom_height" value="3" /> - <distance name="left_titlebar_edge" value="2"/> - <distance name="right_titlebar_edge" value="2"/> - <distance name="title_vertical_pad" value="3"/> - <border name="title_border" left="10" right="10" top="3" bottom="3"/> - <border name="button_border" left="3" right="3" top="0" bottom="0"/> - <aspect_ratio name="button" value="1.0" /> -</frame_geometry> - -<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> -</frame_geometry> - -<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> - <distance name="left_width" value="0" /> - <distance name="right_width" value="0" /> - <distance name="bottom_height" value="0" /> - <distance name="left_titlebar_edge" value="0"/> - <distance name="right_titlebar_edge" value="0"/> - <distance name="title_vertical_pad" value="2"/> <!-- - This needs to be 1 less then the - title_vertical_pad on normal state - or you'll have bigger buttons --> - <distance name="bottom_height" value="0" /> -</frame_geometry> - -<frame_geometry name="small" title_scale="small" parent="normal" hide_buttons="true" rounded_top_left="1" rounded_top_right="1"> - <distance name="title_vertical_pad" value="7"/> - <border name="title_border" left="10" right="10" top="0" bottom="1"/> -</frame_geometry> - -<frame_geometry name="small_unfocused" parent="small"> - <distance name="left_titlebar_edge" value="1"/> - <distance name="right_titlebar_edge" value="1"/> -</frame_geometry> - -<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > - <distance name="left_width" value="0" /> - <distance name="right_width" value="0" /> - <distance name="bottom_height" value="0" /> - <distance name="title_vertical_pad" value="0" /> - <border name="title_border" left="10" right="10" top="0" bottom="0" /> -</frame_geometry> - -<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> - <distance name="title_vertical_pad" value="5"/> -</frame_geometry> - -<!-- drawing operations --> - - <!-- title --> - -<draw_ops name="title_focused"> - <title x="(0 `max` ((width - title_width) / 2)) + 2" - y="(0 `max` ((height - title_height) / 2)) + 1" - color="C_title_focused" /> -</draw_ops> - -<draw_ops name="title_unfocused"> - <title x="(0 `max` ((width - title_width) / 2)) + 2" - y="(0 `max` ((height - title_height) / 2)) + 1" - color="C_title_unfocused"/> -</draw_ops> - - <!-- window decorations --> - -<draw_ops name="entire_background_focused"> - <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="entire_background_unfocused"> - <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_focused"> - <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> - <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_unfocused"> - <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> - <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_max"> - -</draw_ops> - -<draw_ops name="titlebar_small_focused"> - -</draw_ops> - -<draw_ops name="titlebar_small_unfocused"> - -</draw_ops> - -<draw_ops name="border_focused"> - <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> -</draw_ops> - -<draw_ops name="border_unfocused"> - <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> -</draw_ops> - - -<!--close--> -<draw_ops name="close_focused"> - <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_focused_pressed"> - <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_focused_prelight"> - <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_unfocused"> - <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_unfocused_prelight"> - <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_unfocused_pressed"> - <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<!--maximize--> -<draw_ops name="maximize_focused"> - <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_focused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_focused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_unfocused"> - <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_unfocused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_unfocused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<!--minimize--> -<draw_ops name="minimize_focused"> - <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_focused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_focused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_unfocused"> - <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_unfocused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_unfocused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - - -<!--Todo--> -<draw_ops name="menu_focused"></draw_ops> -<draw_ops name="menu_focused_pressed"></draw_ops> -<draw_ops name="menu_unfocused"></draw_ops> -<draw_ops name="menu_unfocused_prelight"></draw_ops> -<draw_ops name="menu_unfocused_pressed"></draw_ops> -<draw_ops name="shade_focused"></draw_ops> -<draw_ops name="shade_focused_pressed"></draw_ops> -<draw_ops name="shade_unfocused"></draw_ops> -<draw_ops name="shade_unfocused_prelight"></draw_ops> -<draw_ops name="shade_unfocused_pressed"></draw_ops> - -<!-- frame styles --> - -<frame_style name="normal_focused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_unfocused" geometry="normal_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_focused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_unfocused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_shaded_focused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_shaded_unfocused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="dialog_focused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="dialog_unfocused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="modal_dialog_focused" geometry="modal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="modal_dialog_unfocused" geometry="modal"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="utility_focused" geometry="small"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_small_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="utility_unfocused" geometry="small_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="border_focused" geometry="borderless"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="border_unfocused" geometry="borderless"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<!-- placeholder for unimplementated styles--> -<frame_style name="blank" geometry="normal"> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<!-- frame style sets --> - -<frame_style_set name="normal_style_set"> - <frame focus="yes" state="normal" resize="both" style="normal_focused"/> - <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> - <frame focus="yes" state="maximized" style="normal_max_focused"/> - <frame focus="no" state="maximized" style="normal_max_unfocused"/> - <frame focus="yes" state="shaded" style="normal_focused"/> - <frame focus="no" state="shaded" style="normal_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> - <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> -</frame_style_set> - -<frame_style_set name="dialog_style_set"> - <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> - <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="dialog_focused"/> - <frame focus="no" state="shaded" style="dialog_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - -<frame_style_set name="modal_dialog_style_set"> - <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> - <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="modal_dialog_focused"/> - <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - -<frame_style_set name="utility_style_set"> - <frame focus="yes" state="normal" resize="both" style="utility_focused"/> - <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="utility_focused"/> - <frame focus="no" state="shaded" style="utility_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - -<frame_style_set name="border_style_set"> - <frame focus="yes" state="normal" resize="both" style="border_focused"/> - <frame focus="no" state="normal" resize="both" style="border_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="blank"/> - <frame focus="no" state="shaded" style="blank"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - - -<!-- windows --> - -<window type="normal" style_set="normal_style_set"/> -<window type="dialog" style_set="dialog_style_set"/> -<window type="modal_dialog" style_set="modal_dialog_style_set"/> -<window type="menu" style_set="utility_style_set"/> -<window type="utility" style_set="utility_style_set"/> -<window type="border" style_set="border_style_set"/> - -</metacity_theme> diff --git a/common/metacity-1/metacity-theme-2-dark.xml b/common/metacity-1/metacity-theme-2-dark.xml deleted file mode 100644 index eeab8f5..0000000 --- a/common/metacity-1/metacity-theme-2-dark.xml +++ /dev/null @@ -1,762 +0,0 @@ -<?xml version="1.0"?> -<metacity_theme> -<info> - <name>SolArc</name> - <author>horst3180</author> - <copyright>horst3180</copyright> - <date>2015</date> - <description>SolArc Metacity theme</description> -</info> - -<!-- meaningfull constants --> - -<constant name="C_title_focused" value="#afb8c6" /> -<constant name="C_title_unfocused" value="#8a939f" /> - -<constant name="C_wm_bg_focused" value="#002b36" /> -<constant name="C_wm_bg_unfocused" value="#002b36" /> - -<constant name="C_wm_highlight" value="#353a48" /> - -<!-- window button colors --> - -<!-- close --> -<constant name="C_button_close_bg_focused" value="#dc322f" /> -<constant name="C_button_close_bg_hover" value="#cb4b16" /> -<constant name="C_button_close_bg_active" value="#dc322f" /> - -<constant name="C_icon_close_bg" value="#002b36" /> - -<!-- minimize, maximize --> -<constant name="C_button_bg_hover" value="#657b83" /> -<constant name="C_button_bg_active" value="#268bd2" /> - -<constant name="C_button_border_hover" value="#002b36" /> - -<constant name="C_icon_bg_focused" value="#93a1a1" /> -<constant name="C_icon_bg_unfocused" value="#657b83" /> -<constant name="C_icon_bg_hover" value="#93a1a1" /> -<constant name="C_icon_bg_active" value="#268bd2" /> - -<!-- geometries --> - -<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> - <distance name="left_width" value="1" /> - <distance name="right_width" value="1" /> - <distance name="bottom_height" value="3" /> - <distance name="left_titlebar_edge" value="2"/> - <distance name="right_titlebar_edge" value="2"/> - <distance name="title_vertical_pad" value="3"/> - <border name="title_border" left="10" right="10" top="3" bottom="3"/> - <border name="button_border" left="3" right="3" top="0" bottom="0"/> - <aspect_ratio name="button" value="1.0" /> -</frame_geometry> - -<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> -</frame_geometry> - -<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> - <distance name="left_width" value="0" /> - <distance name="right_width" value="0" /> - <distance name="bottom_height" value="0" /> - <distance name="left_titlebar_edge" value="0"/> - <distance name="right_titlebar_edge" value="0"/> - <distance name="title_vertical_pad" value="2"/> <!-- - This needs to be 1 less then the - title_vertical_pad on normal state - or you'll have bigger buttons --> - <distance name="bottom_height" value="0" /> -</frame_geometry> - -<frame_geometry name="small" title_scale="small" parent="normal" hide_buttons="true" rounded_top_left="1" rounded_top_right="1"> - <distance name="title_vertical_pad" value="7"/> - <border name="title_border" left="10" right="10" top="0" bottom="1"/> -</frame_geometry> - -<frame_geometry name="small_unfocused" parent="small"> - <distance name="left_titlebar_edge" value="1"/> - <distance name="right_titlebar_edge" value="1"/> -</frame_geometry> - -<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > - <distance name="left_width" value="0" /> - <distance name="right_width" value="0" /> - <distance name="bottom_height" value="0" /> - <distance name="title_vertical_pad" value="0" /> - <border name="title_border" left="10" right="10" top="0" bottom="0" /> -</frame_geometry> - -<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> - <distance name="title_vertical_pad" value="5"/> -</frame_geometry> - -<!-- drawing operations --> - - <!-- title --> - -<draw_ops name="title_focused"> - <title x="(0 `max` ((width - title_width) / 2)) + 2" - y="(0 `max` ((height - title_height) / 2)) + 1" - color="C_title_focused" /> -</draw_ops> - -<draw_ops name="title_unfocused"> - <title x="(0 `max` ((width - title_width) / 2)) + 2" - y="(0 `max` ((height - title_height) / 2)) + 1" - color="C_title_unfocused"/> -</draw_ops> - - <!-- window decorations --> - -<draw_ops name="entire_background_focused"> - <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="entire_background_unfocused"> - <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_focused"> - <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> - <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_unfocused"> - <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> - <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_max"> - -</draw_ops> - -<draw_ops name="titlebar_small_focused"> - -</draw_ops> - -<draw_ops name="titlebar_small_unfocused"> - -</draw_ops> - -<draw_ops name="border_focused"> - <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> -</draw_ops> - -<draw_ops name="border_unfocused"> - <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> -</draw_ops> - - -<!--close--> -<draw_ops name="close_focused"> - <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_focused_pressed"> - <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_focused_prelight"> - <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_unfocused"> - <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_unfocused_prelight"> - <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_unfocused_pressed"> - <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<!--maximize--> -<draw_ops name="maximize_focused"> - <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_focused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_focused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_unfocused"> - <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_unfocused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_unfocused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<!--minimize--> -<draw_ops name="minimize_focused"> - <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_focused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_focused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_unfocused"> - <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_unfocused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_unfocused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - - -<!--Todo--> -<draw_ops name="menu_focused"></draw_ops> -<draw_ops name="menu_focused_pressed"></draw_ops> -<draw_ops name="menu_unfocused"></draw_ops> -<draw_ops name="menu_unfocused_prelight"></draw_ops> -<draw_ops name="menu_unfocused_pressed"></draw_ops> -<draw_ops name="shade_focused"></draw_ops> -<draw_ops name="shade_focused_pressed"></draw_ops> -<draw_ops name="shade_unfocused"></draw_ops> -<draw_ops name="shade_unfocused_prelight"></draw_ops> -<draw_ops name="shade_unfocused_pressed"></draw_ops> - -<!-- frame styles --> - -<frame_style name="normal_focused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_unfocused" geometry="normal_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_focused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_unfocused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_shaded_focused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_shaded_unfocused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="dialog_focused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="dialog_unfocused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="modal_dialog_focused" geometry="modal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="modal_dialog_unfocused" geometry="modal"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="utility_focused" geometry="small"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_small_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="utility_unfocused" geometry="small_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="border_focused" geometry="borderless"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="border_unfocused" geometry="borderless"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<!-- placeholder for unimplementated styles--> -<frame_style name="blank" geometry="normal"> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<!-- frame style sets --> - -<frame_style_set name="normal_style_set"> - <frame focus="yes" state="normal" resize="both" style="normal_focused"/> - <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> - <frame focus="yes" state="maximized" style="normal_max_focused"/> - <frame focus="no" state="maximized" style="normal_max_unfocused"/> - <frame focus="yes" state="shaded" style="normal_focused"/> - <frame focus="no" state="shaded" style="normal_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> - <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> -</frame_style_set> - -<frame_style_set name="dialog_style_set"> - <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> - <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="dialog_focused"/> - <frame focus="no" state="shaded" style="dialog_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - -<frame_style_set name="modal_dialog_style_set"> - <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> - <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="modal_dialog_focused"/> - <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - -<frame_style_set name="utility_style_set"> - <frame focus="yes" state="normal" resize="both" style="utility_focused"/> - <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="utility_focused"/> - <frame focus="no" state="shaded" style="utility_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - -<frame_style_set name="border_style_set"> - <frame focus="yes" state="normal" resize="both" style="border_focused"/> - <frame focus="no" state="normal" resize="both" style="border_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="blank"/> - <frame focus="no" state="shaded" style="blank"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - - -<!-- windows --> - -<window type="normal" style_set="normal_style_set"/> -<window type="dialog" style_set="dialog_style_set"/> -<window type="modal_dialog" style_set="modal_dialog_style_set"/> -<window type="menu" style_set="utility_style_set"/> -<window type="utility" style_set="utility_style_set"/> -<window type="border" style_set="border_style_set"/> - -</metacity_theme> diff --git a/common/metacity-1/metacity-theme-2.xml b/common/metacity-1/metacity-theme-2.xml deleted file mode 100644 index 92bee2a..0000000 --- a/common/metacity-1/metacity-theme-2.xml +++ /dev/null @@ -1,762 +0,0 @@ -<?xml version="1.0"?> -<metacity_theme> -<info> - <name>SolArc</name> - <author>horst3180</author> - <copyright>horst3180</copyright> - <date>2015</date> - <description>SolArc Metacity theme</description> -</info> - -<!-- meaningfull constants --> - -<constant name="C_title_focused" value="#839496" /> -<constant name="C_title_unfocused" value="#979dac" /> - -<constant name="C_wm_bg_focused" value="#eee8d5" /> -<constant name="C_wm_bg_unfocused" value="#eee8d5" /> - -<constant name="C_wm_highlight" value="#eeeff1" /> - -<!-- window button colors --> - -<!-- close --> -<constant name="C_button_close_bg_focused" value="#f46067" /> -<constant name="C_button_close_bg_hover" value="#f68086" /> -<constant name="C_button_close_bg_active" value="#f13039" /> - -<constant name="C_icon_close_bg" value="#657b83" /> - -<!-- minimize, maximize --> -<constant name="C_button_bg_hover" value="#fdfdfd" /> -<constant name="C_button_bg_active" value="#268bd2" /> - -<constant name="C_button_border_hover" value="#D1D3DA" /> - -<constant name="C_icon_bg_focused" value="#90949E" /> -<constant name="C_icon_bg_unfocused" value="#B6B8C0" /> -<constant name="C_icon_bg_hover" value="#7A7F8B" /> -<constant name="C_icon_bg_active" value="#268bd2" /> - -<!-- geometries --> - -<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> - <distance name="left_width" value="1" /> - <distance name="right_width" value="1" /> - <distance name="bottom_height" value="3" /> - <distance name="left_titlebar_edge" value="2"/> - <distance name="right_titlebar_edge" value="2"/> - <distance name="title_vertical_pad" value="3"/> - <border name="title_border" left="10" right="10" top="3" bottom="3"/> - <border name="button_border" left="3" right="3" top="0" bottom="0"/> - <aspect_ratio name="button" value="1.0" /> -</frame_geometry> - -<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> -</frame_geometry> - -<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> - <distance name="left_width" value="0" /> - <distance name="right_width" value="0" /> - <distance name="bottom_height" value="0" /> - <distance name="left_titlebar_edge" value="0"/> - <distance name="right_titlebar_edge" value="0"/> - <distance name="title_vertical_pad" value="2"/> <!-- - This needs to be 1 less then the - title_vertical_pad on normal state - or you'll have bigger buttons --> - <distance name="bottom_height" value="0" /> -</frame_geometry> - -<frame_geometry name="small" title_scale="small" parent="normal" hide_buttons="true" rounded_top_left="1" rounded_top_right="1"> - <distance name="title_vertical_pad" value="7"/> - <border name="title_border" left="10" right="10" top="0" bottom="1"/> -</frame_geometry> - -<frame_geometry name="small_unfocused" parent="small"> - <distance name="left_titlebar_edge" value="1"/> - <distance name="right_titlebar_edge" value="1"/> -</frame_geometry> - -<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > - <distance name="left_width" value="0" /> - <distance name="right_width" value="0" /> - <distance name="bottom_height" value="0" /> - <distance name="title_vertical_pad" value="0" /> - <border name="title_border" left="10" right="10" top="0" bottom="0" /> -</frame_geometry> - -<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> - <distance name="title_vertical_pad" value="5"/> -</frame_geometry> - -<!-- drawing operations --> - - <!-- title --> - -<draw_ops name="title_focused"> - <title x="(0 `max` ((width - title_width) / 2)) + 2" - y="(0 `max` ((height - title_height) / 2)) + 1" - color="C_title_focused" /> -</draw_ops> - -<draw_ops name="title_unfocused"> - <title x="(0 `max` ((width - title_width) / 2)) + 2" - y="(0 `max` ((height - title_height) / 2)) + 1" - color="C_title_unfocused"/> -</draw_ops> - - <!-- window decorations --> - -<draw_ops name="entire_background_focused"> - <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="entire_background_unfocused"> - <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_focused"> - <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> - <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_unfocused"> - <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> - <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_max"> - -</draw_ops> - -<draw_ops name="titlebar_small_focused"> - -</draw_ops> - -<draw_ops name="titlebar_small_unfocused"> - -</draw_ops> - -<draw_ops name="border_focused"> - <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> -</draw_ops> - -<draw_ops name="border_unfocused"> - <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> -</draw_ops> - - -<!--close--> -<draw_ops name="close_focused"> - <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_focused_pressed"> - <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_focused_prelight"> - <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_unfocused"> - <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_unfocused_prelight"> - <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_unfocused_pressed"> - <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<!--maximize--> -<draw_ops name="maximize_focused"> - <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_focused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_focused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_unfocused"> - <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_unfocused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_unfocused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<!--minimize--> -<draw_ops name="minimize_focused"> - <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_focused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_focused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_unfocused"> - <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_unfocused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_unfocused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - - -<!--Todo--> -<draw_ops name="menu_focused"></draw_ops> -<draw_ops name="menu_focused_pressed"></draw_ops> -<draw_ops name="menu_unfocused"></draw_ops> -<draw_ops name="menu_unfocused_prelight"></draw_ops> -<draw_ops name="menu_unfocused_pressed"></draw_ops> -<draw_ops name="shade_focused"></draw_ops> -<draw_ops name="shade_focused_pressed"></draw_ops> -<draw_ops name="shade_unfocused"></draw_ops> -<draw_ops name="shade_unfocused_prelight"></draw_ops> -<draw_ops name="shade_unfocused_pressed"></draw_ops> - -<!-- frame styles --> - -<frame_style name="normal_focused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_unfocused" geometry="normal_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_focused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_unfocused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_shaded_focused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_shaded_unfocused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="dialog_focused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="dialog_unfocused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="modal_dialog_focused" geometry="modal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="modal_dialog_unfocused" geometry="modal"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="utility_focused" geometry="small"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_small_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="utility_unfocused" geometry="small_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="border_focused" geometry="borderless"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="border_unfocused" geometry="borderless"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<!-- placeholder for unimplementated styles--> -<frame_style name="blank" geometry="normal"> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<!-- frame style sets --> - -<frame_style_set name="normal_style_set"> - <frame focus="yes" state="normal" resize="both" style="normal_focused"/> - <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> - <frame focus="yes" state="maximized" style="normal_max_focused"/> - <frame focus="no" state="maximized" style="normal_max_unfocused"/> - <frame focus="yes" state="shaded" style="normal_focused"/> - <frame focus="no" state="shaded" style="normal_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> - <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> -</frame_style_set> - -<frame_style_set name="dialog_style_set"> - <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> - <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="dialog_focused"/> - <frame focus="no" state="shaded" style="dialog_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - -<frame_style_set name="modal_dialog_style_set"> - <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> - <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="modal_dialog_focused"/> - <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - -<frame_style_set name="utility_style_set"> - <frame focus="yes" state="normal" resize="both" style="utility_focused"/> - <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="utility_focused"/> - <frame focus="no" state="shaded" style="utility_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - -<frame_style_set name="border_style_set"> - <frame focus="yes" state="normal" resize="both" style="border_focused"/> - <frame focus="no" state="normal" resize="both" style="border_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="blank"/> - <frame focus="no" state="shaded" style="blank"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - - -<!-- windows --> - -<window type="normal" style_set="normal_style_set"/> -<window type="dialog" style_set="dialog_style_set"/> -<window type="modal_dialog" style_set="modal_dialog_style_set"/> -<window type="menu" style_set="utility_style_set"/> -<window type="utility" style_set="utility_style_set"/> -<window type="border" style_set="border_style_set"/> - -</metacity_theme> diff --git a/common/metacity-1/metacity-theme-3.xml b/common/metacity-1/metacity-theme-3.xml deleted file mode 100644 index 186b8da..0000000 --- a/common/metacity-1/metacity-theme-3.xml +++ /dev/null @@ -1,1016 +0,0 @@ -<?xml version="1.0"?> -<metacity_theme> -<info> - <name>SolArc</name> - <author>horst3180</author> - <copyright>horst3180</copyright> - <date>2015</date> - <description>SolArc Metacity theme</description> -</info> - -<!-- meaningfull constants --> - -<constant name="C_title_focused" value="gtk:custom(wm_title,#839496)" /> -<constant name="C_title_unfocused" value="gtk:custom(wm_unfocused_title,#979dac)" /> - -<constant name="C_wm_bg_focused" value="gtk:custom(wm_bg,#eee8d5)" /> -<constant name="C_wm_bg_unfocused" value="gtk:custom(wm_bg,#eee8d5)" /> - -<constant name="C_wm_highlight" value="gtk:custom(wm_highlight,#eeeff1)" /> - -<!-- window button colors --> - -<!-- close --> -<constant name="C_button_close_bg_focused" value="gtk:custom(wm_button_close_bg,#f46067)" /> -<constant name="C_button_close_bg_hover" value="gtk:custom(wm_button_close_hover_bg,#f68086)" /> -<constant name="C_button_close_bg_active" value="gtk:custom(wm_button_close_active_bg,#f13039)" /> - -<constant name="C_icon_close_bg" value="gtk:custom(wm_icon_close_bg,#657b83)" /> - -<!-- minimize, maximize --> -<constant name="C_button_bg_hover" value="gtk:custom(wm_button_hover_bg,#fdfdfd)" /> -<constant name="C_button_bg_active" value="gtk:custom(wm_button_active_bg,#268bd2)" /> - -<constant name="C_button_border_hover" value="gtk:custom(wm_button_hover_border,#D1D3DA)" /> - -<constant name="C_icon_bg_focused" value="gtk:custom(wm_icon_bg,#90949E)" /> -<constant name="C_icon_bg_unfocused" value="gtk:custom(wm_icon_unfocused_bg,#B6B8C0)" /> -<constant name="C_icon_bg_hover" value="gtk:custom(wm_icon_hover_bg,#7A7F8B)" /> -<constant name="C_icon_bg_active" value="gtk:custom(wm_icon_active_bg,#fdf6e3)" /> - -<!-- geometries --> - -<frame_geometry name="normal" title_scale="medium" rounded_top_left="1" rounded_top_right="1"> - <distance name="left_width" value="0" /> - <distance name="right_width" value="0" /> - <distance name="bottom_height" value="0" /> - <distance name="left_titlebar_edge" value="2"/> - <distance name="right_titlebar_edge" value="2"/> - <distance name="title_vertical_pad" value="3"/> - <border name="title_border" left="10" right="10" top="3" bottom="3"/> - <border name="button_border" left="0" right="0" top="0" bottom="0"/> - <distance name="button_width" value="30"/> - <distance name="button_height" value="16"/> -</frame_geometry> - -<frame_geometry name="normal_unfocused" title_scale="medium" rounded_top_left="1" rounded_top_right="1" parent="normal"> -</frame_geometry> - -<frame_geometry name="max" title_scale="medium" parent="normal" rounded_top_left="false" rounded_top_right="false"> - <distance name="left_width" value="0" /> - <distance name="right_width" value="0" /> - <distance name="left_titlebar_edge" value="0"/> - <distance name="right_titlebar_edge" value="0"/> - <distance name="title_vertical_pad" value="2"/> <!-- - This needs to be 1 less then the - title_vertical_pad on normal state - or you'll have bigger buttons --> - <distance name="bottom_height" value="0" /> -</frame_geometry> - -<frame_geometry name="tiled_left" title_scale="medium" rounded_top_left="false" rounded_top_right="1" parent="normal"> - <distance name="right_width" value="0" /> -</frame_geometry> - -<frame_geometry name="tiled_right" title_scale="medium" rounded_top_left="1" rounded_top_right="false" parent="normal"> - <distance name="left_width" value="0" /> -</frame_geometry> - -<frame_geometry name="small" title_scale="small" parent="normal" rounded_top_left="1" rounded_top_right="1"> - <distance name="title_vertical_pad" value="7"/> - <distance name="left_titlebar_edge" value="1"/> - <distance name="right_titlebar_edge" value="1"/> - <border name="title_border" left="10" right="10" top="0" bottom="1"/> -</frame_geometry> - -<frame_geometry name="small_unfocused" parent="small"> -</frame_geometry> - -<frame_geometry name="border" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > - <distance name="left_width" value="1" /> - <distance name="right_width" value="1" /> - <distance name="bottom_height" value="1" /> - <border name="title_border" left="10" right="10" top="0" bottom="0" /> - <distance name="title_vertical_pad" value="1" /> - <distance name="button_height" value="0"/> -</frame_geometry> - -<frame_geometry name="borderless" has_title="false" rounded_top_left="false" rounded_top_right="false" parent="normal" > - <distance name="left_width" value="0" /> - <distance name="right_width" value="0" /> - <distance name="bottom_height" value="0" /> - <distance name="title_vertical_pad" value="0" /> - <border name="title_border" left="10" right="10" top="0" bottom="0" /> - <distance name="button_height" value="0"/> -</frame_geometry> - -<frame_geometry name="modal" title_scale="small" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" parent="small"> - <distance name="title_vertical_pad" value="5"/> -</frame_geometry> - -<!--chromium save dialog--> -<frame_geometry name="attached" title_scale="small" has_title="false" hide_buttons="true" rounded_top_left="1" rounded_top_right="1" rounded_bottom_left="0" rounded_bottom_right="0" parent="normal"> - <distance name="title_vertical_pad" value="0"/> - <distance name="bottom_height" value="1"/> - <distance name="left_width" value="1"/> - <distance name="right_width" value="1"/> -</frame_geometry> - -<!-- drawing operations --> - - <!-- title --> - -<draw_ops name="title_focused"> - - <title version="< 3.1" - x="(0 `max` ((width - title_width) / 2))" - y="(0 `max` ((height - title_height) / 2)) + 1" - color="C_title_focused" /> - <title version=">= 3.1" - x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" - y="(0 `max` ((height - title_height) / 2)) + 1" - ellipsize_width="width" - color="C_title_focused" /> -</draw_ops> - -<draw_ops name="title_unfocused"> - <title version="< 3.1" - x="(0 `max` ((width - title_width) / 2))" - y="(0 `max` ((height - title_height) / 2)) + 1" - color="C_title_unfocused" /> - <title version=">= 3.1" - x="(0 `max` ((frame_x_center - title_width / 2) `min` (width - title_width)))" - y="(0 `max` ((height - title_height) / 2)) + 1" - ellipsize_width="width" - color="C_title_unfocused" /> -</draw_ops> - - <!-- window decorations --> - -<draw_ops name="entire_background_focused"> - <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="entire_background_unfocused"> - <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_focused"> - <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="true" /> - <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_unfocused"> - <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="true" /> - <rectangle color="C_wm_highlight" x="0" y="0" width="width" height="1" filled="true" /> -</draw_ops> - -<draw_ops name="titlebar_max"> - -</draw_ops> - -<draw_ops name="titlebar_small_focused"> - -</draw_ops> - -<draw_ops name="titlebar_small_unfocused"> - -</draw_ops> - -<draw_ops name="border_focused"> - <rectangle color="C_wm_bg_focused" x="0" y="0" width="width" height="height" filled="false" /> -</draw_ops> - -<draw_ops name="border_unfocused"> - <rectangle color="C_wm_bg_unfocused" x="0" y="0" width="width" height="height" filled="false" /> -</draw_ops> - - -<!--close--> -<draw_ops name="close_focused"> - <image filename="button-bg.svg" colorize="C_button_close_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_focused_pressed"> - <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_focused_prelight"> - <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_unfocused"> - <image filename="button-bg.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_unfocused_prelight"> - <image filename="button-bg.svg" colorize="C_button_close_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="close_unfocused_pressed"> - <image filename="button-bg.svg" colorize="C_button_close_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="close-icon.svg" colorize="C_icon_close_bg" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<!--maximize--> -<draw_ops name="maximize_focused"> - <image filename="max-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_focused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_focused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_unfocused"> - <image filename="max-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_unfocused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="maximize_unfocused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="max-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<!--minimize--> -<draw_ops name="minimize_focused"> - <image filename="min-icon.svg" colorize="C_icon_bg_focused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_focused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_focused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_unfocused"> - <image filename="min-icon.svg" colorize="C_icon_bg_unfocused" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_unfocused_prelight"> - <image filename="button-bg.svg" colorize="C_button_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="button-border.svg" colorize="C_button_border_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_hover" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - -<draw_ops name="minimize_unfocused_pressed"> - <image filename="button-bg.svg" colorize="C_button_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> - <image filename="min-icon.svg" colorize="C_icon_bg_active" x="(width-object_width)/2" y="(height-object_height)/2" width="object_width" height="object_height"/> -</draw_ops> - - -<!--Todo--> -<draw_ops name="menu_focused"></draw_ops> -<draw_ops name="menu_focused_pressed"></draw_ops> -<draw_ops name="menu_unfocused"></draw_ops> -<draw_ops name="menu_unfocused_prelight"></draw_ops> -<draw_ops name="menu_unfocused_pressed"></draw_ops> -<draw_ops name="shade_focused"></draw_ops> -<draw_ops name="shade_focused_pressed"></draw_ops> -<draw_ops name="shade_unfocused"></draw_ops> -<draw_ops name="shade_unfocused_prelight"></draw_ops> -<draw_ops name="shade_unfocused_pressed"></draw_ops> - -<!-- frame styles --> - -<frame_style name="normal_focused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_unfocused" geometry="normal_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_focused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_unfocused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_shaded_focused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="normal_max_shaded_unfocused" geometry="max"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_max" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="dialog_focused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="dialog_unfocused" geometry="normal"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="modal_dialog_focused" geometry="modal"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button><button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="modal_dialog_unfocused" geometry="modal"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="utility_focused" geometry="small"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_small_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="utility_unfocused" geometry="small_unfocused"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_small_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="border_focused" geometry="border"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="overlay" draw_ops="border_focused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="border_unfocused" geometry="border"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="overlay" draw_ops="border_unfocused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="borderless" geometry="borderless"> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="attached_focused" geometry="attached"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="attached_unfocused" geometry="attached"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_unfocused" /> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_left_focused" geometry="tiled_left"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_left_unfocused" geometry="tiled_left"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_right_focused" geometry="tiled_right"> - <piece position="entire_background" draw_ops="entire_background_focused" /> - <piece position="titlebar" draw_ops="titlebar_focused" /> - <piece position="title" draw_ops="title_focused" /> - <button function="close" state="normal" draw_ops="close_focused" /> - <button function="close" state="pressed" draw_ops="close_focused_pressed" /> - <button function="close" state="prelight" draw_ops="close_focused_prelight" /> - <button function="maximize" state="normal" draw_ops="maximize_focused" /> - <button function="maximize" state="pressed" draw_ops="maximize_focused_pressed" /> - <button function="maximize" state="prelight" draw_ops="maximize_focused_prelight" /> - <button function="minimize" state="normal" draw_ops="minimize_focused" /> - <button function="minimize" state="pressed" draw_ops="minimize_focused_pressed" /> - <button function="minimize" state="prelight" draw_ops="minimize_focused_prelight" /> - <button function="menu" state="normal" draw_ops="menu_focused" /> - <button function="menu" state="pressed" draw_ops="menu_focused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_focused" /> - <button function="shade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_focused" /> - <button function="unshade" state="pressed" draw_ops="shade_focused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<frame_style name="tiled_right_unfocused" geometry="tiled_right"> - <piece position="entire_background" draw_ops="entire_background_unfocused" /> - <piece position="titlebar" draw_ops="titlebar_unfocused" /> - <piece position="title" draw_ops="title_unfocused" /> - <button function="close" state="normal" draw_ops="close_unfocused"/> - <button function="close" state="prelight" draw_ops="close_unfocused_prelight"/> - <button function="close" state="pressed" draw_ops="close_unfocused_pressed"/> - <button function="maximize" state="normal" draw_ops="maximize_unfocused"/> - <button function="maximize" state="prelight" draw_ops="maximize_unfocused_prelight"/> - <button function="maximize" state="pressed" draw_ops="maximize_unfocused_pressed"/> - <button function="minimize" state="normal" draw_ops="minimize_unfocused"/> - <button function="minimize" state="prelight" draw_ops="minimize_unfocused_prelight"/> - <button function="minimize" state="pressed" draw_ops="minimize_unfocused_pressed"/> - <button function="menu" state="normal" draw_ops="menu_unfocused" /> - <button function="menu" state="prelight" draw_ops="menu_unfocused_prelight" /> - <button function="menu" state="pressed" draw_ops="menu_unfocused_pressed" /> - <button function="shade" state="normal" draw_ops="shade_unfocused" /> - <button function="shade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="shade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="unshade" state="normal" draw_ops="shade_unfocused" /> - <button function="unshade" state="prelight" draw_ops="shade_unfocused_prelight" /> - <button function="unshade" state="pressed" draw_ops="shade_unfocused_pressed" /> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<!-- placeholder for unimplementated styles--> -<frame_style name="blank" geometry="normal"> - <button function="close" state="normal"><draw_ops></draw_ops></button> - <button function="close" state="pressed"><draw_ops></draw_ops></button> - <button function="maximize" state="normal"><draw_ops></draw_ops></button> - <button function="maximize" state="pressed"><draw_ops></draw_ops></button> - <button function="minimize" state="normal"><draw_ops></draw_ops></button> - <button function="minimize" state="pressed"><draw_ops></draw_ops></button> - <button function="menu" state="normal"><draw_ops></draw_ops></button> - <button function="menu" state="pressed"><draw_ops></draw_ops></button> - <button function="shade" state="normal"><draw_ops></draw_ops></button> - <button function="shade" state="pressed"><draw_ops></draw_ops></button> - <button function="unshade" state="normal"><draw_ops></draw_ops></button> - <button function="unshade" state="pressed"><draw_ops></draw_ops></button> - <button function="above" state="normal"><draw_ops></draw_ops></button> - <button function="above" state="pressed"><draw_ops></draw_ops></button> - <button function="unabove" state="normal"><draw_ops></draw_ops></button> - <button function="unabove" state="pressed"><draw_ops></draw_ops></button> - <button function="stick" state="normal"><draw_ops></draw_ops></button> - <button function="stick" state="pressed"><draw_ops></draw_ops></button> - <button function="unstick" state="normal"><draw_ops></draw_ops></button> - <button function="unstick" state="pressed"><draw_ops></draw_ops></button> -</frame_style> - -<!-- frame style sets --> - -<frame_style_set name="normal_style_set"> - <frame focus="yes" state="normal" resize="both" style="normal_focused"/> - <frame focus="no" state="normal" resize="both" style="normal_unfocused"/> - <frame focus="yes" state="maximized" style="normal_max_focused"/> - <frame focus="no" state="maximized" style="normal_max_unfocused"/> - <frame focus="yes" state="shaded" style="normal_focused"/> - <frame focus="no" state="shaded" style="normal_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="normal_max_shaded_focused"/> - <frame focus="no" state="maximized_and_shaded" style="normal_max_shaded_unfocused"/> - <frame version=">= 3.3" focus="yes" state="tiled_left" style="tiled_left_focused"/> - <frame version=">= 3.3" focus="no" state="tiled_left" style="tiled_left_unfocused"/> - <frame version=">= 3.3" focus="yes" state="tiled_right" style="tiled_right_focused"/> - <frame version=">= 3.3" focus="no" state="tiled_right" style="tiled_right_unfocused"/> - <frame version=">= 3.3" focus="yes" state="tiled_left_and_shaded" style="tiled_left_focused"/> - <frame version=">= 3.3" focus="no" state="tiled_left_and_shaded" style="tiled_left_unfocused"/> - <frame version=">= 3.3" focus="yes" state="tiled_right_and_shaded" style="tiled_right_focused"/> - <frame version=">= 3.3" focus="no" state="tiled_right_and_shaded" style="tiled_right_unfocused"/> -</frame_style_set> - -<frame_style_set name="dialog_style_set"> - <frame focus="yes" state="normal" resize="both" style="dialog_focused"/> - <frame focus="no" state="normal" resize="both" style="dialog_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="dialog_focused"/> - <frame focus="no" state="shaded" style="dialog_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - -<frame_style_set name="modal_dialog_style_set"> - <frame focus="yes" state="normal" resize="both" style="modal_dialog_focused"/> - <frame focus="no" state="normal" resize="both" style="modal_dialog_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="modal_dialog_focused"/> - <frame focus="no" state="shaded" style="modal_dialog_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - -<frame_style_set name="utility_style_set"> - <frame focus="yes" state="normal" resize="both" style="utility_focused"/> - <frame focus="no" state="normal" resize="both" style="utility_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="utility_focused"/> - <frame focus="no" state="shaded" style="utility_unfocused"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - -<frame_style_set name="border_style_set"> - <frame focus="yes" state="normal" resize="both" style="border_focused"/> - <frame focus="no" state="normal" resize="both" style="border_unfocused"/> - <frame focus="yes" state="maximized" style="borderless"/> - <frame focus="no" state="maximized" style="borderless"/> - <frame focus="yes" state="shaded" style="blank"/> - <frame focus="no" state="shaded" style="blank"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - -<frame_style_set name="attached_style_set"> - <frame focus="yes" state="normal" resize="both" style="attached_focused"/> - <frame focus="no" state="normal" resize="both" style="attached_unfocused"/> - <frame focus="yes" state="maximized" style="blank"/> - <frame focus="no" state="maximized" style="blank"/> - <frame focus="yes" state="shaded" style="blank"/> - <frame focus="no" state="shaded" style="blank"/> - <frame focus="yes" state="maximized_and_shaded" style="blank"/> - <frame focus="no" state="maximized_and_shaded" style="blank"/> -</frame_style_set> - - -<!-- windows --> - -<window type="normal" style_set="normal_style_set"/> -<window type="dialog" style_set="dialog_style_set"/> -<window type="modal_dialog" style_set="modal_dialog_style_set"/> -<window type="menu" style_set="utility_style_set"/> -<window type="utility" style_set="utility_style_set"/> -<window type="border" style_set="border_style_set"/> -<window version=">= 3.2" type="attached" style_set="attached_style_set"/> - -</metacity_theme> diff --git a/common/metacity-1/min-icon.svg b/common/metacity-1/min-icon.svg deleted file mode 100644 index 92920b5..0000000 --- a/common/metacity-1/min-icon.svg +++ /dev/null @@ -1,75 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - enable-background="new 0 0 32 32" - height="16" - id="Layer_1" - version="1.1" - viewBox="0 0 16 16" - width="16" - xml:space="preserve" - inkscape:version="0.91 r13725" - sodipodi:docname="min-icon.svg"><metadata - id="metadata26"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs - id="defs24" /><sodipodi:namedview - pagecolor="#e2e2e2" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1366" - inkscape:window-height="718" - id="namedview22" - showgrid="true" - inkscape:zoom="22.627417" - inkscape:cx="6.164106" - inkscape:cy="8.4082271" - inkscape:window-x="0" - inkscape:window-y="27" - inkscape:window-maximized="1" - inkscape:current-layer="Layer_1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"><inkscape:grid - type="xygrid" - id="grid3003" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /></sodipodi:namedview><g - style="display:inline" - id="titlebutton-min" - inkscape:label="#g6247" - transform="translate(-587,185.63782)"><g - id="g7138" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"><g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3-75"><g - id="g4092-0-7-0" - style="display:inline" - transform="translate(58,0)" /></g><path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4-3" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#808080;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /></g><rect - y="-185.63782" - x="587" - height="16" - width="16" - id="rect17883-32" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /></g></svg> \ No newline at end of file diff --git a/common/metacity-1/thumbnail-dark.png b/common/metacity-1/thumbnail-dark.png deleted file mode 100644 index 02c35905754d296dc168381d00b9dcf81d48c2e6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 772 zcmV+f1N;1mP)<h;3K|Lk000e1NJLTq003kF001Be1^@s6<SX4S00006VoOIv0RI60 z0RN!9r;`8x010qNS#tmY3ljhU3ljkVnw%H_000McNliru;0gv1B`9<&EiwQA0+C5X zK~!ko?U+kX6JZpFpP3fq(hCfw#0Vww17IO>15y;CCMK{T?lh*ZbmQ88;7?#-0+Q%n zjk-fisqRRGr3(o}6KP>8y_0rkT#yt;!IZH@OwYUfCNp!A^W;6}J4d-Va@|67YUJMA zD@YbjkyJ^601*ig0U~nR)FlPSlh5s9(&u5Yy_KN534pCqiM4!@#dL;r+4!sfD?`I! zx%O76VNV;8phk;wcws48CUXg$m26&0)=9v)*AqAr20)9Va=$0Q1y7p*sdt%*1T~b3 z6Mio$Mbq3bIl$d+4X@kPm_0;QRmQ`k^oK$K?Cj{geD$WLF(!Q;n=>A)e__Pi#_fOx zz_aZXu}qG~1AY5WQB@|q9-gOm8_OZ8s$!ZZ(WN*Wo0|Z1b!jz^GuUn~K{q;l#L_vQ zBy|>&I?;5NtA4NTouT&Df9H_Mom+=KpI>-dHyDZn6PLrhjm9txgLlzo#x9LAaK69h zvAW&%G)-%M49nv6_cQ?4I(*#h>ae{NY<8B~|JotFz2~?xK8DNX!m=!4%W*!hZ`6Ul zy=PcJ$}lTuy;R2h^&5wG*P1w_o=&I+N_cF9=u#ZhG+B<nuX&7QsZ3vUbLG5{)cKIf zGTrG1;6-YeGYOqY@St2KO6A6Kh-HDEN&(Ox3NaoYt@M;yYc*H2pYsJ~0-a20ex@`( zGl5Rl3ihq}$Go#Gx(tR@UV9&f&i-)*`B??i;^F33vWD3>4mnAs%La1^y{fig0rQC+ zM=%7)F|?A+GrP52832!R#_YFkR&vf)C$d~TCX`RbJtn;S%f+6igXQ9CzQE#c#<4S` zhn&`7S5hEAL;^&Bhy;iL5eX0hA`&11L?l2&N9hN{xZEDdUe#Uz0000<MNUMnLSTZE C5?9Uu diff --git a/common/metacity-1/thumbnail.png b/common/metacity-1/thumbnail.png deleted file mode 100644 index 44f4038841d6bcede9535430ae011823c55024c0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 755 zcmV<P0u23$P)<h;3K|Lk000e1NJLTq003kF001Be1^@s6<SX4S00006VoOIv0RI60 z0RN!9r;`8x010qNS#tmY3ljhU3ljkVnw%H_000McNliru;0gv19XIa0oIC&k0)R<G zK~!ko?U+qZ6Hyd~-+QN%cA!B@Wn-e-LO>I1updMd(_k>cg@gu7e}O9#7ybk{7=MIO z0!dRf5YaTc>y-M@jS`DXg%(5k&|vGpbgqjrg#slOIzsGuR=v$>Z*rcw=iD<ax40xg z92+>LfP@evgoF?z<p01%DX0y${u8pQLe6{!%P#`}jCMD4j|ZE<0EDyoaQ{!&-Ws0X z53^9BF+kJy4zSx%3=cx@?xK?QPh^aZSC;_*ng-?ZIBXwhNr=^DN{Pk*VHOjnD7#}6 zhxtJWDA5>Lq0pE;#4rpbQ)$dE<NyFJ*9lw=U9RgMvZ_{`4C($oh?x{hk0#9Z%`n)d zUg)=On*qNx$cZF2`a+E*#4rqS&Jpl=%TiWXzt?>q`O{qGzSD8=fqqC_0)zky`eD3$ zRhigK=IDe>L?`$Bet77*Wio^iNT~178|(q+96|pD%)CkC%hzoEXM^RHN+DCv0h<Kg z-)FAluVFlSRuLoRR~oN}WEa07p}vJ-2r$Orzv#u8)2A$GB5X(2I9O}T*4pI)_>NSv zBb-C5JPCgzC7F7UfX@rgIeb0m>t7n(ZQ$A5*3%yu2J`z+nwmD(1J}SdG?X5Wm19co zw#I7ej4`yfwqR}T2j&-YNT$+dDfMQv!vp&^A?(~)7*8i5Uc^mdx(*(?Qt=zTvx5dh zE3duI(Fgm_Alq>`uzvRrL{k&ZA(mVqoXseP2Y2_9D*dK7bmKrWNJtIn-CZa~MgWI> z-;+^{j2!CK36-o`6ILidP9$N=%t2bpn+?4EB=pWdFBcDZGDyfVg-R9)AxH=bAxH=b lAxH=bAxH=bAxH>OmEYj-+WnaE?UVoj002ovPDHLkV1l3}Mh^f0 diff --git a/common/unity/close.svg b/common/unity/close.svg deleted file mode 100644 index 8f0f457..0000000 --- a/common/unity/close.svg +++ /dev/null @@ -1,219 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="5.6211807" - inkscape:cy="10.966175" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1259" - inkscape:window-height="630" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close" - inkscape:label="#g6210" - transform="translate(-641,1218)"> - <g - id="g4927-9" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2"> - <g - id="g4092-0-2-21-0" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#f46067;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 172,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 172,63.867188 173.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 174.9302,66.77394 174.99999,66.9729 175,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 172,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 169.05288,63.088403 168.98357,62.882438 169,62.671875 l 0,-0.75 z" - transform="translate(1204,190)" - id="path4068-7-5-9-6" /> - </g> - </g> - <g - id="g4778-2-68" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-4-4" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-4-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-6-11" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-0-33" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-3-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - <path - inkscape:connector-curvature="0" - d="m 650.00003,-180.71594 0.75,0 c 0.008,-9e-5 0.0156,-3.5e-4 0.0234,0 0.19122,0.008 0.3824,0.0964 0.51563,0.23437 l 1.71093,1.71094 1.73438,-1.71094 c 0.19922,-0.17287 0.335,-0.22912 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0257,0.41298 -0.1875,0.5625 l -1.71093,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21093,0.53907 l 0,0.75 -0.75,0 c -0.19897,-1e-5 -0.39793,-0.0698 -0.53906,-0.21094 l -1.71094,-1.71094 -1.71093,1.71094 c -0.14113,0.14114 -0.3401,0.21094 -0.53907,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15805,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" - id="path10839-9-2-2-7-9-7" - style="color:#657b83;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#657b83;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> -</svg> diff --git a/common/unity/close_dash.svg b/common/unity/close_dash.svg deleted file mode 100644 index 4321c13..0000000 --- a/common/unity/close_dash.svg +++ /dev/null @@ -1,214 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_dash.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-dark" - inkscape:label="#g6210" - transform="translate(-641,1218)"> - <g - id="g4927-9-2-8" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2-5-3"> - <g - id="g4092-0-2-21-0-9-7" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#dc322f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" - transform="translate(962.00001,190.00002)" - id="path4068-7-5-9-6-5-8" /> - </g> - </g> - <g - id="g4778-2-68-8-7" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-4-4-1-1" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8-0-4" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-4-9-6-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5-96-3" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7-9-4" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5-6-3" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-6-11-3-1" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-0-33-2-4" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-3-0-6-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39-99-8" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/close_dash_disabled.svg b/common/unity/close_dash_disabled.svg deleted file mode 100644 index e50f389..0000000 --- a/common/unity/close_dash_disabled.svg +++ /dev/null @@ -1,214 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_dash_disabled.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline;opacity:0.4" - id="titlebutton-close-backdrop-dark" - inkscape:label="#g6210" - transform="translate(-641.00002,1218)"> - <g - id="g4927-9-2-8-0" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2-5-3-3"> - <g - id="g4092-0-2-21-0-9-7-0" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" - transform="translate(962.00001,190.00002)" - id="path4068-7-5-9-6-5-8-3" /> - </g> - </g> - <g - id="g4778-2-68-8-7-6" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-4-4-1-1-0" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8-0-4-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-4-9-6-9-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5-96-3-0" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7-9-4-0" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5-6-3-3" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-6-11-3-1-8" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-0-33-2-4-4" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-3-0-6-6-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39-99-8-6" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/close_dash_prelight.svg b/common/unity/close_dash_prelight.svg deleted file mode 100644 index 0b103e4..0000000 --- a/common/unity/close_dash_prelight.svg +++ /dev/null @@ -1,214 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_dash_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-hover-dark" - inkscape:label="#g6260" - transform="translate(-538,1218)"> - <g - id="g4927-97-4" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-9-1-3"> - <g - id="g4092-0-2-3-4-6" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#cb4b16;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 414,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,97.867188 415.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 411.05288,97.088403 410.98357,96.882438 411,96.671875 l 0,-0.75 z" - transform="translate(962,156.00002)" - id="path4068-7-5-8-2-3" /> - </g> - </g> - <g - id="g4778-4-0-2" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-44-1-6" - transform="translate(-60,-518)" /> - <g - id="layer10-2-9-3-3" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-3-1-7" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-9-3-3" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-7-1-2" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-3-3-7" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-02-1-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-7-9-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-4-7-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="542" - height="16" - width="16" - id="rect17883-5-4-2" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/close_dash_pressed.svg b/common/unity/close_dash_pressed.svg deleted file mode 100644 index e684a03..0000000 --- a/common/unity/close_dash_pressed.svg +++ /dev/null @@ -1,214 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_dash_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-active-dark" - inkscape:label="#g6332" - transform="translate(-437.00001,1218)"> - <g - id="g4927-8-7-4-9" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-3-7-46-6"> - <g - id="g4092-0-2-2-1-7-2" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#dc322f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 414,109 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.92188 0.75,0 c 0.008,-1e-4 0.0156,-3.5e-4 0.0234,0 0.19121,0.008 0.3824,0.0964 0.51562,0.23437 l 1.71094,1.71094 1.73438,-1.71094 c 0.19921,-0.17287 0.335,-0.22913 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0258,0.41298 -0.1875,0.5625 l -1.71094,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,117 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15806,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" - transform="translate(962.00001,139.00001)" - id="path4068-7-5-4-9-7-6" /> - </g> - </g> - <g - id="g4778-3-6-0-5" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-6-0-90-6" - transform="translate(-60,-518)" /> - <g - id="layer10-2-3-6-6-1" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-2-2-6-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-7-0-2-0" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-6-3-5-2" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-4-1-7-0" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-0-2-8-3" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-4-0-5-8" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-5-0-0-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="441" - height="16" - width="16" - id="rect17883-02-4-3" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/close_focused_normal.svg b/common/unity/close_focused_normal.svg deleted file mode 100644 index 8f0f457..0000000 --- a/common/unity/close_focused_normal.svg +++ /dev/null @@ -1,219 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="5.6211807" - inkscape:cy="10.966175" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1259" - inkscape:window-height="630" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close" - inkscape:label="#g6210" - transform="translate(-641,1218)"> - <g - id="g4927-9" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2"> - <g - id="g4092-0-2-21-0" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#f46067;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 172,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 172,63.867188 173.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 174.9302,66.77394 174.99999,66.9729 175,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 172,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 169.05288,63.088403 168.98357,62.882438 169,62.671875 l 0,-0.75 z" - transform="translate(1204,190)" - id="path4068-7-5-9-6" /> - </g> - </g> - <g - id="g4778-2-68" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-4-4" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-4-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-6-11" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-0-33" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-3-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - <path - inkscape:connector-curvature="0" - d="m 650.00003,-180.71594 0.75,0 c 0.008,-9e-5 0.0156,-3.5e-4 0.0234,0 0.19122,0.008 0.3824,0.0964 0.51563,0.23437 l 1.71093,1.71094 1.73438,-1.71094 c 0.19922,-0.17287 0.335,-0.22912 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0257,0.41298 -0.1875,0.5625 l -1.71093,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21093,0.53907 l 0,0.75 -0.75,0 c -0.19897,-1e-5 -0.39793,-0.0698 -0.53906,-0.21094 l -1.71094,-1.71094 -1.71093,1.71094 c -0.14113,0.14114 -0.3401,0.21094 -0.53907,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15805,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" - id="path10839-9-2-2-7-9-7" - style="color:#657b83;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#657b83;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> -</svg> diff --git a/common/unity/close_focused_prelight.svg b/common/unity/close_focused_prelight.svg deleted file mode 100644 index 55215ec..0000000 --- a/common/unity/close_focused_prelight.svg +++ /dev/null @@ -1,219 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="5.6211807" - inkscape:cy="10.966175" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1259" - inkscape:window-height="630" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-hover" - inkscape:label="#g6260" - transform="translate(-538,1218)"> - <g - id="g4927" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-9"> - <g - id="g4092-0-2-3" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#f68086;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 172,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 172,97.867188 173.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 172,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 169.05288,97.088403 168.98357,96.882438 169,96.671875 l 0,-0.75 z" - transform="translate(1204,156)" - id="path4068-7-5-8" /> - </g> - </g> - <g - id="g4778-4" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-44" - transform="translate(-60,-518)" /> - <g - id="layer10-2-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-3" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-9" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-7" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-3" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-02" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-7" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-4" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="542" - height="16" - width="16" - id="rect17883-5" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - <path - inkscape:connector-curvature="0" - d="m 547.00004,-180.71594 0.75,0 c 0.008,-9e-5 0.0156,-3.5e-4 0.0234,0 0.19122,0.008 0.3824,0.0964 0.51563,0.23437 l 1.71093,1.71094 1.73438,-1.71094 c 0.19922,-0.17287 0.335,-0.22912 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0257,0.41298 -0.1875,0.5625 l -1.71093,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21093,0.53907 l 0,0.75 -0.75,0 c -0.19897,-1e-5 -0.39793,-0.0698 -0.53906,-0.21094 L 550,-176.63782 l -1.71093,1.71094 c -0.14113,0.14114 -0.3401,0.21094 -0.53907,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15805,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" - id="path10839-9-2-2-7-9-7-4-9" - style="color:#657b83;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#657b83;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> -</svg> diff --git a/common/unity/close_focused_pressed.svg b/common/unity/close_focused_pressed.svg deleted file mode 100644 index b6f3a9c..0000000 --- a/common/unity/close_focused_pressed.svg +++ /dev/null @@ -1,220 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="13.034303" - inkscape:cy="10.832259" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-active" - inkscape:label="#g6332" - transform="translate(-437,1218)"> - <g - id="g4927-8-7" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-3-7"> - <g - id="g4092-0-2-2-1" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#f13039;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-4-9" /> - </g> - </g> - <g - id="g4778-3-6" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-6-0" - transform="translate(-60,-518)" /> - <g - id="layer10-2-3-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-2-2" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-7-0" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-6-3" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-4-1" - style="display:inline;fill:#fdf6e3;fill-opacity:1"> - <path - inkscape:connector-curvature="0" - d="m 45.001573,764.10442 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z" - id="path10839-9-8-7" - style="color:#657b83;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#fdf6e3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> - </g> - <g - id="layer13-2-0-2" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-4-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-5-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="441" - height="16" - width="16" - id="rect17883-02" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/close_unfocused.svg b/common/unity/close_unfocused.svg deleted file mode 100644 index 979e42f..0000000 --- a/common/unity/close_unfocused.svg +++ /dev/null @@ -1,219 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_unfocused.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="5.6211807" - inkscape:cy="10.966175" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1259" - inkscape:window-height="630" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline;opacity:0.45" - id="titlebutton-close-backdrop" - inkscape:label="#g6210" - transform="translate(-641,1218)"> - <g - id="g4927-9-3" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2-6"> - <g - id="g4092-0-2-21-0-6" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="opacity:1;fill:#7a7f8b;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 172,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 172,63.867188 173.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 174.9302,66.77394 174.99999,66.9729 175,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 172,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 169.05288,63.088403 168.98357,62.882438 169,62.671875 l 0,-0.75 z" - transform="translate(1204,190)" - id="path4068-7-5-9-6-8" /> - </g> - </g> - <g - id="g4778-2-68-3" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-4-4-5" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8-2" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-4-9-8" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5-4" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7-9" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5-3" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-6-11-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-0-33-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-3-0-7" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39-7" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - <path - inkscape:connector-curvature="0" - d="m 650.00004,-180.71594 0.75,0 c 0.008,-9e-5 0.0156,-3.5e-4 0.0234,0 0.19122,0.008 0.3824,0.0964 0.51563,0.23437 l 1.71093,1.71094 1.73438,-1.71094 c 0.19922,-0.17287 0.335,-0.22912 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0257,0.41298 -0.1875,0.5625 l -1.71093,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21093,0.53907 l 0,0.75 -0.75,0 c -0.19897,-1e-5 -0.39793,-0.0698 -0.53906,-0.21094 L 653,-176.63782 l -1.71093,1.71094 c -0.14113,0.14114 -0.3401,0.21094 -0.53907,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15805,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" - id="path10839-9-2-2-7-9-7-4" - style="color:#657b83;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#657b83;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> -</svg> diff --git a/common/unity/close_unfocused_prelight.svg b/common/unity/close_unfocused_prelight.svg deleted file mode 100644 index 55215ec..0000000 --- a/common/unity/close_unfocused_prelight.svg +++ /dev/null @@ -1,219 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="5.6211807" - inkscape:cy="10.966175" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1259" - inkscape:window-height="630" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-hover" - inkscape:label="#g6260" - transform="translate(-538,1218)"> - <g - id="g4927" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-9"> - <g - id="g4092-0-2-3" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#f68086;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 172,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 172,97.867188 173.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 172,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 169.05288,97.088403 168.98357,96.882438 169,96.671875 l 0,-0.75 z" - transform="translate(1204,156)" - id="path4068-7-5-8" /> - </g> - </g> - <g - id="g4778-4" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-44" - transform="translate(-60,-518)" /> - <g - id="layer10-2-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-3" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-9" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-7" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-3" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-02" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-7" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-4" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="542" - height="16" - width="16" - id="rect17883-5" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - <path - inkscape:connector-curvature="0" - d="m 547.00004,-180.71594 0.75,0 c 0.008,-9e-5 0.0156,-3.5e-4 0.0234,0 0.19122,0.008 0.3824,0.0964 0.51563,0.23437 l 1.71093,1.71094 1.73438,-1.71094 c 0.19922,-0.17287 0.335,-0.22912 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0257,0.41298 -0.1875,0.5625 l -1.71093,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21093,0.53907 l 0,0.75 -0.75,0 c -0.19897,-1e-5 -0.39793,-0.0698 -0.53906,-0.21094 L 550,-176.63782 l -1.71093,1.71094 c -0.14113,0.14114 -0.3401,0.21094 -0.53907,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15805,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" - id="path10839-9-2-2-7-9-7-4-9" - style="color:#657b83;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#657b83;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> -</svg> diff --git a/common/unity/close_unfocused_pressed.svg b/common/unity/close_unfocused_pressed.svg deleted file mode 100644 index b6f3a9c..0000000 --- a/common/unity/close_unfocused_pressed.svg +++ /dev/null @@ -1,220 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="13.034303" - inkscape:cy="10.832259" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-active" - inkscape:label="#g6332" - transform="translate(-437,1218)"> - <g - id="g4927-8-7" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-3-7"> - <g - id="g4092-0-2-2-1" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#f13039;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-4-9" /> - </g> - </g> - <g - id="g4778-3-6" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-6-0" - transform="translate(-60,-518)" /> - <g - id="layer10-2-3-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-2-2" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-7-0" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-6-3" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-4-1" - style="display:inline;fill:#fdf6e3;fill-opacity:1"> - <path - inkscape:connector-curvature="0" - d="m 45.001573,764.10442 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z" - id="path10839-9-8-7" - style="color:#657b83;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#fdf6e3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> - </g> - <g - id="layer13-2-0-2" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-4-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-5-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="441" - height="16" - width="16" - id="rect17883-02" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/dash/close_dash.svg b/common/unity/dash/close_dash.svg deleted file mode 100644 index 4321c13..0000000 --- a/common/unity/dash/close_dash.svg +++ /dev/null @@ -1,214 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_dash.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-dark" - inkscape:label="#g6210" - transform="translate(-641,1218)"> - <g - id="g4927-9-2-8" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2-5-3"> - <g - id="g4092-0-2-21-0-9-7" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#dc322f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" - transform="translate(962.00001,190.00002)" - id="path4068-7-5-9-6-5-8" /> - </g> - </g> - <g - id="g4778-2-68-8-7" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-4-4-1-1" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8-0-4" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-4-9-6-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5-96-3" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7-9-4" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5-6-3" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-6-11-3-1" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-0-33-2-4" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-3-0-6-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39-99-8" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/dash/close_dash_disabled.svg b/common/unity/dash/close_dash_disabled.svg deleted file mode 100644 index e50f389..0000000 --- a/common/unity/dash/close_dash_disabled.svg +++ /dev/null @@ -1,214 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_dash_disabled.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline;opacity:0.4" - id="titlebutton-close-backdrop-dark" - inkscape:label="#g6210" - transform="translate(-641.00002,1218)"> - <g - id="g4927-9-2-8-0" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2-5-3-3"> - <g - id="g4092-0-2-21-0-9-7-0" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" - transform="translate(962.00001,190.00002)" - id="path4068-7-5-9-6-5-8-3" /> - </g> - </g> - <g - id="g4778-2-68-8-7-6" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-4-4-1-1-0" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8-0-4-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-4-9-6-9-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5-96-3-0" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7-9-4-0" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5-6-3-3" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-6-11-3-1-8" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-0-33-2-4-4" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-3-0-6-6-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39-99-8-6" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/dash/close_dash_prelight.svg b/common/unity/dash/close_dash_prelight.svg deleted file mode 100644 index 0b103e4..0000000 --- a/common/unity/dash/close_dash_prelight.svg +++ /dev/null @@ -1,214 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_dash_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-hover-dark" - inkscape:label="#g6260" - transform="translate(-538,1218)"> - <g - id="g4927-97-4" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-9-1-3"> - <g - id="g4092-0-2-3-4-6" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#cb4b16;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 414,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,97.867188 415.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 411.05288,97.088403 410.98357,96.882438 411,96.671875 l 0,-0.75 z" - transform="translate(962,156.00002)" - id="path4068-7-5-8-2-3" /> - </g> - </g> - <g - id="g4778-4-0-2" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-44-1-6" - transform="translate(-60,-518)" /> - <g - id="layer10-2-9-3-3" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-3-1-7" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-9-3-3" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-7-1-2" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-3-3-7" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-02-1-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-7-9-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-4-7-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="542" - height="16" - width="16" - id="rect17883-5-4-2" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/dash/close_dash_pressed.svg b/common/unity/dash/close_dash_pressed.svg deleted file mode 100644 index e684a03..0000000 --- a/common/unity/dash/close_dash_pressed.svg +++ /dev/null @@ -1,214 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_dash_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-active-dark" - inkscape:label="#g6332" - transform="translate(-437.00001,1218)"> - <g - id="g4927-8-7-4-9" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-3-7-46-6"> - <g - id="g4092-0-2-2-1-7-2" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#dc322f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 414,109 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.92188 0.75,0 c 0.008,-1e-4 0.0156,-3.5e-4 0.0234,0 0.19121,0.008 0.3824,0.0964 0.51562,0.23437 l 1.71094,1.71094 1.73438,-1.71094 c 0.19921,-0.17287 0.335,-0.22913 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0258,0.41298 -0.1875,0.5625 l -1.71094,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,117 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15806,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" - transform="translate(962.00001,139.00001)" - id="path4068-7-5-4-9-7-6" /> - </g> - </g> - <g - id="g4778-3-6-0-5" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-6-0-90-6" - transform="translate(-60,-518)" /> - <g - id="layer10-2-3-6-6-1" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-2-2-6-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-7-0-2-0" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-6-3-5-2" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-4-1-7-0" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-0-2-8-3" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-4-0-5-8" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-5-0-0-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="441" - height="16" - width="16" - id="rect17883-02-4-3" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/dash/maximize_dash.svg b/common/unity/dash/maximize_dash.svg deleted file mode 100644 index fe3cb25..0000000 --- a/common/unity/dash/maximize_dash.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_dash.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline;opacity:0.7" - id="titlebutton-max-dark" - inkscape:label="#g6234" - transform="translate(-612.00002,1218)"> - <g - id="g7146-16-4" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-96-8-9"> - <g - id="g4092-0-6-83-7-4" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-95-1-7" - style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - y="-185.63782" - x="616" - height="16" - width="16" - id="rect17883-29-2-2" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/dash/maximize_dash_disabled.svg b/common/unity/dash/maximize_dash_disabled.svg deleted file mode 100644 index cd52d6e..0000000 --- a/common/unity/dash/maximize_dash_disabled.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_dash_disabled.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-max-backdrop-dark" - inkscape:label="#g6521" - style="display:inline;opacity:0.4" - transform="translate(-612.00002,1201)"> - <g - style="display:inline;opacity:1" - id="g7146-1-1-6" - transform="translate(-781,-415.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-6-0"> - <g - id="g4092-0-6-9-2" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-6-4" - style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-6-2-5" - width="16" - height="16" - x="616" - y="-168.63782" /> - </g> - </g> -</svg> diff --git a/common/unity/dash/maximize_dash_prelight.svg b/common/unity/dash/maximize_dash_prelight.svg deleted file mode 100644 index 4c3b7c9..0000000 --- a/common/unity/dash/maximize_dash_prelight.svg +++ /dev/null @@ -1,224 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_dash_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover-dark" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891-5-8" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4-6-6" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78-2-6" - inkscape:connector-curvature="0" /> - <g - id="g4806-9-0-6" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7-6-6" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3-2-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75-1-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9-2-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5-0-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8-0-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7-5-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1-4-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0-0-6"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:1;fill:#93a1a1;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6-7-1" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0-1-5" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/dash/maximize_dash_pressed.svg b/common/unity/dash/maximize_dash_pressed.svg deleted file mode 100644 index 3cb0e91..0000000 --- a/common/unity/dash/maximize_dash_pressed.svg +++ /dev/null @@ -1,247 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_dash_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="selected_bg_color" - osb:paint="solid"> - <stop - style="stop-color:#268bd2;stop-opacity:1;" - offset="0" - id="stop4170" /> - </linearGradient> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4172" - x1="1376" - y1="248" - x2="1376" - y2="262" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="16.000001" - inkscape:cx="5.2618001" - inkscape:cy="4.6396105" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-active-dark" - inkscape:label="#g6356" - transform="translate(-408.00001,1218)"> - <g - id="g4891-4-5-5" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-132,0)" - style="display:inline;opacity:1" - id="g4490-2-9-1-2-4-8"> - <g - id="g4092-0-6-3-6-8-3-7" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:url(#linearGradient4172);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-1-6-6-0" /> - </g> - </g> - <g - id="g4806-5-2-2-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-2-0-0-8" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-9-9-51-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-7-6-4-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-7-4-0-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-9-7-6-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-4-2-4-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-4-6-4-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-0-8-22-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-7-2-3-1"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="fill:#fdf6e3;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-4-9-0-2" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="412" - height="16" - width="16" - id="rect17883-79-3-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/dash/minimize_dash.svg b/common/unity/dash/minimize_dash.svg deleted file mode 100644 index a380597..0000000 --- a/common/unity/dash/minimize_dash.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_dash.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline;opacity:0.7" - id="titlebutton-min-dark" - inkscape:label="#g6247" - transform="translate(-583.00002,1218)"> - <g - id="g7138-6-5" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3-75-4-7"> - <g - id="g4092-0-7-0-4-9" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4-3-8-5" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - <rect - y="-185.63782" - x="587" - height="16" - width="16" - id="rect17883-32-6-9" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/dash/minimize_dash_disabled.svg b/common/unity/dash/minimize_dash_disabled.svg deleted file mode 100644 index a77959c..0000000 --- a/common/unity/dash/minimize_dash_disabled.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_dash_disabled.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-min-backdrop-dark" - inkscape:label="#g6534" - style="display:inline;opacity:0.4" - transform="translate(-583.00002,1201)"> - <g - style="display:inline;opacity:1" - id="g7138-0-7-7" - transform="translate(-781,-415.63782)"> - <g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3-6-9"> - <g - id="g4092-0-7-6-5" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4-09-2" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-3-46-6" - width="16" - height="16" - x="587" - y="-168.63782" /> - </g> - </g> -</svg> diff --git a/common/unity/dash/minimize_dash_prelight.svg b/common/unity/dash/minimize_dash_prelight.svg deleted file mode 100644 index dbc5564..0000000 --- a/common/unity/dash/minimize_dash_prelight.svg +++ /dev/null @@ -1,224 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_dash_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-hover-dark" - inkscape:label="#g6308" - transform="translate(-480,1218)"> - <g - id="g4909-3-7" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1273" - style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-1-6-1" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-23-4-3" - inkscape:connector-curvature="0" /> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-0-4-5" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-4-15-6" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-1-8-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-6-4-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-4-8-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-0-8-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-1-7-5" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-9-9-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-2-7-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-6-2-7"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#93a1a1;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-8-2-3" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="484" - height="16" - width="16" - id="rect17883-11-4-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/dash/minimize_dash_pressed.svg b/common/unity/dash/minimize_dash_pressed.svg deleted file mode 100644 index 5a53152..0000000 --- a/common/unity/dash/minimize_dash_pressed.svg +++ /dev/null @@ -1,247 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_dash_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="selected_bg_color" - osb:paint="solid"> - <stop - style="stop-color:#268bd2;stop-opacity:1;" - offset="0" - id="stop4170" /> - </linearGradient> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4172" - x1="1376" - y1="248" - x2="1376" - y2="262" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="16.000001" - inkscape:cx="4.8956836" - inkscape:cy="9.0696203" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-active-dark" - inkscape:label="#g6414" - transform="translate(-379.00001,1218)"> - <g - id="g4909-1-2-0" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-161,0)" - style="display:inline;opacity:1" - id="g4490-3-6-1-4-1-6"> - <g - id="g4092-0-7-2-0-0-94-2" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:url(#linearGradient4172);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-3-0-3-6-8-3" /> - </g> - </g> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-9-3-8-5" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-9-1-0-4" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-0-5-8-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-5-2-6-8" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-7-4-2-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-2-3-2-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-0-6-6-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-4-6-0-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-6-8-7-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-3-7-96-7"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#fdf6e3;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-3-5-1-1" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-79-9-2-2" - width="16" - height="16" - x="383" - y="-185.63782" /> - </g> - </g> -</svg> diff --git a/common/unity/launcher_arrow_ltr_19.svg b/common/unity/launcher_arrow_ltr_19.svg deleted file mode 100644 index b2fca71..0000000 --- a/common/unity/launcher_arrow_ltr_19.svg +++ /dev/null @@ -1,101 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="10" - height="19" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - inkscape:export-filename="test.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - sodipodi:docname="launcher_arrow_ltr_19.svg"> - <defs - id="defs4"> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath4069"> - <rect - style="opacity:0.12000002;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect4071" - width="10" - height="19" - x="20" - y="1033.3622" /> - </clipPath> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#828282" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="20.962996" - inkscape:cx="-0.75898517" - inkscape:cy="9.0594719" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:window-width="1275" - inkscape:window-height="630" - inkscape:window-x="49" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true" - inkscape:snap-bbox-midpoints="true" - inkscape:object-paths="true" - inkscape:snap-intersection-paths="true" - inkscape:object-nodes="true" - inkscape:snap-smooth-nodes="true" - inkscape:snap-midpoints="true" - inkscape:snap-object-midpoints="true" - inkscape:snap-text-baseline="false" - inkscape:snap-center="true" - inkscape:snap-page="true"> - <inkscape:grid - type="xygrid" - id="grid4740" - empspacing="8" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1033.3622)"> - <rect - style="fill:#fdf6e3;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:0.90196079" - id="rect3338" - width="2" - height="17" - x="2" - y="1034.3622" - ry="1.7382812e-05" /> - </g> -</svg> diff --git a/common/unity/launcher_arrow_ltr_37.svg b/common/unity/launcher_arrow_ltr_37.svg deleted file mode 100644 index f8e1a58..0000000 --- a/common/unity/launcher_arrow_ltr_37.svg +++ /dev/null @@ -1,102 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="20" - height="37" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - inkscape:export-filename="test.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - sodipodi:docname="launcher_arrow_ltr_37.svg"> - <defs - id="defs4"> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath4069"> - <rect - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" - id="rect4071" - width="10" - height="19" - x="20" - y="1033.3622" /> - </clipPath> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#828282" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="22.627417" - inkscape:cx="1.4637299" - inkscape:cy="12.768116" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:window-width="1301" - inkscape:window-height="744" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true" - inkscape:snap-bbox-midpoints="true" - inkscape:object-paths="true" - inkscape:snap-intersection-paths="true" - inkscape:object-nodes="true" - inkscape:snap-smooth-nodes="true" - inkscape:snap-midpoints="true" - inkscape:snap-object-midpoints="true" - inkscape:snap-text-baseline="false" - inkscape:snap-center="true" - inkscape:snap-page="true"> - <inkscape:grid - type="xygrid" - id="grid4740" - empspacing="8" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1015.3622)"> - <rect - style="fill:#fdf6e3;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect3338" - width="4" - height="33.000019" - x="4" - y="1017.3622" - ry="1.7382812e-05" - rx="1.7382812e-05" /> - </g> -</svg> diff --git a/common/unity/launcher_arrow_outline_ltr_19.svg b/common/unity/launcher_arrow_outline_ltr_19.svg deleted file mode 100644 index 8c14e20..0000000 --- a/common/unity/launcher_arrow_outline_ltr_19.svg +++ /dev/null @@ -1,101 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="10" - height="19" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - inkscape:export-filename="test.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - sodipodi:docname="launcher_arrow_outline_ltr_19.svg"> - <defs - id="defs4"> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath4069"> - <rect - style="opacity:0.12000002;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect4071" - width="10" - height="19" - x="20" - y="1033.3622" /> - </clipPath> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#fdf6e3" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="20.962996" - inkscape:cx="1.149139" - inkscape:cy="8.9402141" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:window-width="1301" - inkscape:window-height="650" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true" - inkscape:snap-bbox-midpoints="true" - inkscape:object-paths="true" - inkscape:snap-intersection-paths="true" - inkscape:object-nodes="true" - inkscape:snap-smooth-nodes="true" - inkscape:snap-midpoints="true" - inkscape:snap-object-midpoints="true" - inkscape:snap-text-baseline="false" - inkscape:snap-center="true" - inkscape:snap-page="true"> - <inkscape:grid - type="xygrid" - id="grid4740" - empspacing="8" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1033.3622)"> - <rect - style="fill:#fdf6e3;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;fill-opacity:1;opacity:0.4" - id="rect3338" - width="2" - height="17" - x="2" - y="1034.3622" - ry="1.7382812e-05" /> - </g> -</svg> diff --git a/common/unity/launcher_arrow_outline_ltr_37.svg b/common/unity/launcher_arrow_outline_ltr_37.svg deleted file mode 100644 index 621ea5e..0000000 --- a/common/unity/launcher_arrow_outline_ltr_37.svg +++ /dev/null @@ -1,102 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="20" - height="37" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - inkscape:export-filename="test.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - sodipodi:docname="launcher_arrow_outline_ltr_37.svg"> - <defs - id="defs4"> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath4069"> - <rect - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" - id="rect4071" - width="10" - height="19" - x="20" - y="1033.3622" /> - </clipPath> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#fdf6e3" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="22.627417" - inkscape:cx="8.2254385" - inkscape:cy="5.6970486" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:window-width="1301" - inkscape:window-height="650" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true" - inkscape:snap-bbox-midpoints="true" - inkscape:object-paths="true" - inkscape:snap-intersection-paths="true" - inkscape:object-nodes="true" - inkscape:snap-smooth-nodes="true" - inkscape:snap-midpoints="true" - inkscape:snap-object-midpoints="true" - inkscape:snap-text-baseline="false" - inkscape:snap-center="true" - inkscape:snap-page="true"> - <inkscape:grid - type="xygrid" - id="grid4740" - empspacing="8" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1015.3622)"> - <rect - style="opacity:0.4;fill:#fdf6e3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect3338" - width="4" - height="33.000019" - x="4" - y="1017.3622" - ry="1.7382812e-05" - rx="1.7382812e-05" /> - </g> -</svg> diff --git a/common/unity/launcher_arrow_outline_rtl_19.svg b/common/unity/launcher_arrow_outline_rtl_19.svg deleted file mode 100644 index 7a1f5e7..0000000 --- a/common/unity/launcher_arrow_outline_rtl_19.svg +++ /dev/null @@ -1,102 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="10" - height="19" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - inkscape:export-filename="test.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - sodipodi:docname="launcher_arrow_outline_rtl_19.svg"> - <defs - id="defs4"> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath4069"> - <rect - style="opacity:0.12000002;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect4071" - width="10" - height="19" - x="20" - y="1033.3622" /> - </clipPath> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#fdf6e3" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="20.962996" - inkscape:cx="-2.1423752" - inkscape:cy="8.8448079" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:window-width="1301" - inkscape:window-height="650" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true" - inkscape:snap-bbox-midpoints="true" - inkscape:object-paths="true" - inkscape:snap-intersection-paths="true" - inkscape:object-nodes="true" - inkscape:snap-smooth-nodes="true" - inkscape:snap-midpoints="true" - inkscape:snap-object-midpoints="true" - inkscape:snap-text-baseline="false" - inkscape:snap-center="true" - inkscape:snap-page="true"> - <inkscape:grid - type="xygrid" - id="grid4740" - empspacing="8" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1033.3622)"> - <rect - style="opacity:0.4;fill:#fdf6e3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect3338" - width="2" - height="17" - x="6" - y="1034.3622" - ry="1.7382812e-05" - rx="1.7382812e-05" /> - </g> -</svg> diff --git a/common/unity/launcher_arrow_outline_rtl_37.svg b/common/unity/launcher_arrow_outline_rtl_37.svg deleted file mode 100644 index e805fd6..0000000 --- a/common/unity/launcher_arrow_outline_rtl_37.svg +++ /dev/null @@ -1,102 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="20" - height="37" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - inkscape:export-filename="test.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - sodipodi:docname="launcher_arrow_outline_rtl_37.svg"> - <defs - id="defs4"> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath4069"> - <rect - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" - id="rect4071" - width="10" - height="19" - x="20" - y="1033.3622" /> - </clipPath> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#fdf6e3" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="22.627417" - inkscape:cx="8.2254385" - inkscape:cy="5.6970486" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:window-width="1301" - inkscape:window-height="650" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true" - inkscape:snap-bbox-midpoints="true" - inkscape:object-paths="true" - inkscape:snap-intersection-paths="true" - inkscape:object-nodes="true" - inkscape:snap-smooth-nodes="true" - inkscape:snap-midpoints="true" - inkscape:snap-object-midpoints="true" - inkscape:snap-text-baseline="false" - inkscape:snap-center="true" - inkscape:snap-page="true"> - <inkscape:grid - type="xygrid" - id="grid4740" - empspacing="8" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1015.3622)"> - <rect - style="fill:#fdf6e3;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.4" - id="rect3338" - width="4" - height="33.000019" - x="12" - y="1017.3622" - ry="1.7382812e-05" - rx="1.7382812e-05" /> - </g> -</svg> diff --git a/common/unity/launcher_arrow_rtl_19.svg b/common/unity/launcher_arrow_rtl_19.svg deleted file mode 100644 index fc311f6..0000000 --- a/common/unity/launcher_arrow_rtl_19.svg +++ /dev/null @@ -1,101 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="10" - height="19" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - inkscape:export-filename="test.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - sodipodi:docname="launcher_arrow_rtl_19.svg"> - <defs - id="defs4"> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath4069"> - <rect - style="opacity:0.12000002;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect4071" - width="10" - height="19" - x="20" - y="1033.3622" /> - </clipPath> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#fdf6e3" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="20.962996" - inkscape:cx="-4.2413119" - inkscape:cy="9.0594719" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:window-width="1301" - inkscape:window-height="744" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true" - inkscape:snap-bbox-midpoints="true" - inkscape:object-paths="true" - inkscape:snap-intersection-paths="true" - inkscape:object-nodes="true" - inkscape:snap-smooth-nodes="true" - inkscape:snap-midpoints="true" - inkscape:snap-object-midpoints="true" - inkscape:snap-text-baseline="false" - inkscape:snap-center="true" - inkscape:snap-page="true"> - <inkscape:grid - type="xygrid" - id="grid4740" - empspacing="8" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1033.3622)"> - <rect - style="fill:#fdf6e3;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect3338" - width="2" - height="17" - x="6" - y="1034.3622" - ry="1.7382812e-05" /> - </g> -</svg> diff --git a/common/unity/launcher_arrow_rtl_37.svg b/common/unity/launcher_arrow_rtl_37.svg deleted file mode 100644 index 0244bf9..0000000 --- a/common/unity/launcher_arrow_rtl_37.svg +++ /dev/null @@ -1,102 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="20" - height="37" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - inkscape:export-filename="test.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - sodipodi:docname="launcher_arrow_rtl_37.svg"> - <defs - id="defs4"> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath4069"> - <rect - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" - id="rect4071" - width="10" - height="19" - x="20" - y="1033.3622" /> - </clipPath> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#fdf6e3" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="22.627417" - inkscape:cx="1.4637299" - inkscape:cy="5.6970486" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:window-width="1301" - inkscape:window-height="744" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true" - inkscape:snap-bbox-midpoints="true" - inkscape:object-paths="true" - inkscape:snap-intersection-paths="true" - inkscape:object-nodes="true" - inkscape:snap-smooth-nodes="true" - inkscape:snap-midpoints="true" - inkscape:snap-object-midpoints="true" - inkscape:snap-text-baseline="false" - inkscape:snap-center="true" - inkscape:snap-page="true"> - <inkscape:grid - type="xygrid" - id="grid4740" - empspacing="8" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1015.3622)"> - <rect - style="fill:#fdf6e3;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect3338" - width="4" - height="33.000019" - x="12" - y="1017.3622" - ry="1.7382812e-05" - rx="1.7382812e-05" /> - </g> -</svg> diff --git a/common/unity/launcher_icon_back_150.svg b/common/unity/launcher_icon_back_150.svg deleted file mode 100644 index 9e52ff8..0000000 --- a/common/unity/launcher_icon_back_150.svg +++ /dev/null @@ -1,61 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="150" - height="150" - viewBox="0 0 149.99998 150" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="launcher_icon_back_150.svg"> - <metadata - id="metadata12"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - pagecolor="#fdf6e3" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1301" - inkscape:window-height="650" - id="namedview10" - showgrid="true" - inkscape:zoom="2.2250293" - inkscape:cx="36.35956" - inkscape:cy="127.34179" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:current-layer="svg2"> - <inkscape:grid - type="xygrid" - id="grid2989" /> - </sodipodi:namedview> - <defs - id="defs4"> - <clipPath - id="clipPath6"> - <path - d="m 440,80.683594 c -1.84957,0 -3.31641,1.466834 -3.31641,3.316406 l 0,44 c 0,1.84957 1.46684,3.31641 3.31641,3.31641 l 44,0 c 1.84957,0 3.31641,-1.46684 3.31641,-3.31641 l 0,-44 c 0,-1.849572 -1.46684,-3.316406 -3.31641,-3.316406 l -44,0 z" - id="path8" /> - </clipPath> - </defs> -</svg> diff --git a/common/unity/launcher_icon_back_54.svg b/common/unity/launcher_icon_back_54.svg deleted file mode 100644 index e9d9fd1..0000000 --- a/common/unity/launcher_icon_back_54.svg +++ /dev/null @@ -1,55 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="54" - height="54" - viewBox="0 0 54 54.000001" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="launcher_icon_back_54.svg"> - <metadata - id="metadata8"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs6" /> - <sodipodi:namedview - pagecolor="#fdf6e3" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1301" - inkscape:window-height="650" - id="namedview4" - showgrid="true" - inkscape:zoom="17.481481" - inkscape:cx="26.660864" - inkscape:cy="43.535494" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:current-layer="svg2" - inkscape:snap-bbox="true"> - <inkscape:grid - type="xygrid" - id="grid2985" /> - </sodipodi:namedview> -</svg> diff --git a/common/unity/launcher_icon_edge_150.svg b/common/unity/launcher_icon_edge_150.svg deleted file mode 100644 index 89b57a1..0000000 --- a/common/unity/launcher_icon_edge_150.svg +++ /dev/null @@ -1,75 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="150" - height="150" - viewBox="0 0 149.99998 150" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="launcher_icon_edge_150.svg"> - <metadata - id="metadata16"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - pagecolor="#fdf6e3" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1301" - inkscape:window-height="650" - id="namedview14" - showgrid="true" - inkscape:snap-bbox="true" - inkscape:zoom="3.1466667" - inkscape:cx="43.369154" - inkscape:cy="69.620822" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:current-layer="svg2"> - <inkscape:grid - type="xygrid" - id="grid2993" /> - </sodipodi:namedview> - <defs - id="defs4"> - <clipPath - id="clipPath6"> - <path - d="m 440,80.683594 c -1.84957,0 -3.31641,1.466834 -3.31641,3.316406 l 0,44 c 0,1.84957 1.46684,3.31641 3.31641,3.31641 l 44,0 c 1.84957,0 3.31641,-1.46684 3.31641,-3.31641 l 0,-44 c 0,-1.849572 -1.46684,-3.316406 -3.31641,-3.316406 l -44,0 z" - id="path8" /> - </clipPath> - <clipPath - id="clipPath10"> - <rect - y="316" - x="353" - height="148" - width="148" - opacity="0.8" - fill="#ff00ff" - color="#000000" - rx="12" - id="rect12" /> - </clipPath> - </defs> -</svg> diff --git a/common/unity/launcher_icon_edge_54.svg b/common/unity/launcher_icon_edge_54.svg deleted file mode 100644 index 52bcf70..0000000 --- a/common/unity/launcher_icon_edge_54.svg +++ /dev/null @@ -1,65 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="54" - height="54" - viewBox="0 0 54 54.000001" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="launcher_icon_edge_54.svg"> - <metadata - id="metadata12"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - pagecolor="#fdf6e3" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1301" - inkscape:window-height="650" - id="namedview10" - showgrid="true" - inkscape:zoom="24.722548" - inkscape:cx="10.242601" - inkscape:cy="56.465656" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:current-layer="svg2" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid3757" /> - </sodipodi:namedview> - <defs - id="defs4"> - <clipPath - id="clipPath6"> - <path - d="m 440,81.001953 c -1.67866,0 -2.99805,1.319387 -2.99805,2.998047 l 0,44 c 0,1.67866 1.31939,2.99805 2.99805,2.99805 l 44,0 c 1.67866,0 2.99805,-1.31939 2.99805,-2.99805 l 0,-44 c 0,-1.67866 -1.31939,-2.998047 -2.99805,-2.998047 l -44,0 z" - id="path8" /> - </clipPath> - </defs> -</svg> diff --git a/common/unity/launcher_icon_glow_200.svg b/common/unity/launcher_icon_glow_200.svg deleted file mode 100644 index 01bb0d9..0000000 --- a/common/unity/launcher_icon_glow_200.svg +++ /dev/null @@ -1,7 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200.00001 200.00003"> - <defs> - <clipPath> - <path d="m 427.33333,22.026666 0,69.333333 69.33333,0 0,-69.333333 -69.33333,0 z m 13.11917,9.013333 43.095,0 c 2.27623,0 4.10583,1.829606 4.10583,4.105834 l 0,43.094999 c 0,2.276228 -1.8296,4.105834 -4.10583,4.105834 l -43.095,0 c -2.27623,0 -4.10583,-1.829606 -4.10583,-4.105834 l 0,-43.094999 c 0,-2.276228 1.8296,-4.105834 4.10583,-4.105834 z"/> - </clipPath> - </defs> -</svg> diff --git a/common/unity/launcher_icon_glow_62.svg b/common/unity/launcher_icon_glow_62.svg deleted file mode 100644 index 105b068..0000000 --- a/common/unity/launcher_icon_glow_62.svg +++ /dev/null @@ -1,7 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="62" height="62" viewBox="0 0 62 62.000001"> - <defs> - <clipPath> - <path d="m 1,25 0,62 62,0 0,-62 -62,0 z m 9,6 44,0 c 1.662,0 3,1.338 3,3 l 0,44 c 0,1.662 -1.338,3 -3,3 L 10,81 C 8.338,81 7,79.662 7,78 L 7,34 c 0,-1.662 1.338,-3 3,-3 z"/> - </clipPath> - </defs> -</svg> diff --git a/common/unity/launcher_icon_selected_back_150.svg b/common/unity/launcher_icon_selected_back_150.svg deleted file mode 100644 index 22cc776..0000000 --- a/common/unity/launcher_icon_selected_back_150.svg +++ /dev/null @@ -1,96 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="150" - height="150" - viewBox="0 0 149.99998 150" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="launcher_icon_selected_back_150.svg"> - <metadata - id="metadata16"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - pagecolor="#fdf6e3" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1366" - inkscape:window-height="718" - id="namedview14" - showgrid="true" - inkscape:zoom="1.1125147" - inkscape:cx="-204.38973" - inkscape:cy="91.79881" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:current-layer="svg2"> - <inkscape:grid - type="xygrid" - id="grid2993" /> - </sodipodi:namedview> - <defs - id="defs4"> - <linearGradient - id="selected_bg_color" - osb:paint="solid"> - <stop - style="stop-color:#268bd2;stop-opacity:1;" - offset="0" - id="stop4138" /> - </linearGradient> - <clipPath - id="clipPath6"> - <rect - y="1040.22" - x="505" - height="150" - width="150" - opacity="0.2" - fill-rule="evenodd" - color="#000000" - rx="42" - id="rect8" /> - </clipPath> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4140" - x1="75" - y1="1" - x2="75" - y2="148" - gradientUnits="userSpaceOnUse" /> - </defs> - <rect - style="fill:url(#linearGradient4140);fill-opacity:1;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none" - id="rect2995" - width="148" - height="147" - x="1" - y="1" - transform="translate(-1e-5,0)" - ry="1" /> -</svg> diff --git a/common/unity/launcher_icon_selected_back_54.svg b/common/unity/launcher_icon_selected_back_54.svg deleted file mode 100644 index 0666598..0000000 --- a/common/unity/launcher_icon_selected_back_54.svg +++ /dev/null @@ -1,82 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="54" - height="54" - viewBox="0 0 54 54.000001" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="launcher_icon_selected_back_54.svg"> - <metadata - id="metadata8"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs6"> - <linearGradient - id="selected_bg_color" - osb:paint="solid"> - <stop - style="stop-color:#268bd2;stop-opacity:1;" - offset="0" - id="stop4136" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4138" - x1="27" - y1="1" - x2="27" - y2="52" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - pagecolor="#fdf6e3" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1366" - inkscape:window-height="718" - id="namedview4" - showgrid="true" - inkscape:zoom="8.7407407" - inkscape:cx="11.220234" - inkscape:cy="23.327385" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:current-layer="svg2"> - <inkscape:grid - type="xygrid" - id="grid2985" /> - </sodipodi:namedview> - <rect - style="opacity:1;fill:url(#linearGradient4138);fill-opacity:1;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none" - id="rect2987" - width="52" - height="51" - x="1" - y="1" - ry="1" /> -</svg> diff --git a/common/unity/launcher_icon_shadow_200.svg b/common/unity/launcher_icon_shadow_200.svg deleted file mode 100644 index 9e68b14..0000000 --- a/common/unity/launcher_icon_shadow_200.svg +++ /dev/null @@ -1,7 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200.00001 200.00003"> - <defs> - <clipPath> - <path d="m 489.73333,21.333331 0,69.333332 69.33333,0 0,-69.333332 -69.33333,0 z m 13.11917,9.013334 43.095,0 c 2.27623,0 4.10583,1.829606 4.10583,4.105833 l 0,43.094999 c 0,2.276227 -1.8296,4.105833 -4.10583,4.105833 l -43.095,0 c -2.27623,0 -4.10583,-1.829606 -4.10583,-4.105833 l 0,-43.094999 c 0,-2.276227 1.8296,-4.105833 4.10583,-4.105833 z"/> - </clipPath> - </defs> -</svg> diff --git a/common/unity/launcher_icon_shadow_62.svg b/common/unity/launcher_icon_shadow_62.svg deleted file mode 100644 index eb07c40..0000000 --- a/common/unity/launcher_icon_shadow_62.svg +++ /dev/null @@ -1,61 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="62" - height="62" - viewBox="0 0 61.999999 62.000001" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="launcher_icon_shadow_62.svg"> - <metadata - id="metadata12"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - pagecolor="#fdf6e3" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1301" - inkscape:window-height="650" - id="namedview10" - showgrid="true" - inkscape:snap-bbox="true" - inkscape:bbox-nodes="true" - inkscape:bbox-paths="true" - inkscape:snap-bbox-edge-midpoints="true" - inkscape:zoom="10.766271" - inkscape:cx="46.152641" - inkscape:cy="12.729335" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:current-layer="svg2" /> - <defs - id="defs4"> - <clipPath - id="clipPath6"> - <path - d="m 4,24 c -2.216,0 -4,1.784 -4,4 l 0,56 c 0,2.216 1.784,4 4,4 l 56,0 c 2.216,0 4,-1.784 4,-4 l 0,-56 c 0,-2.216 -1.784,-4 -4,-4 L 4,24 z m 6,6 44,0 c 2.216,0 4,1.784 4,4 l 0,44 c 0,2.216 -1.784,4 -4,4 L 10,82 C 7.784,82 6,80.216 6,78 L 6,34 c 0,-2.216 1.784,-4 4,-4 z" - id="path8" /> - </clipPath> - </defs> -</svg> diff --git a/common/unity/launcher_icon_shine_150.svg b/common/unity/launcher_icon_shine_150.svg deleted file mode 100644 index a456296..0000000 --- a/common/unity/launcher_icon_shine_150.svg +++ /dev/null @@ -1,59 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="150" - height="150" - viewBox="0 0 149.99998 150" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="launcher_icon_shine_150.svg"> - <metadata - id="metadata8"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs6" /> - <sodipodi:namedview - pagecolor="#6e6e6e" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0.90588235" - inkscape:pageshadow="2" - inkscape:window-width="1301" - inkscape:window-height="650" - id="namedview4" - showgrid="true" - inkscape:snap-bbox="true" - inkscape:zoom="17.800235" - inkscape:cx="26.229204" - inkscape:cy="7.3679574" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:current-layer="svg2"> - <inkscape:grid - type="xygrid" - id="grid2985" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> -</svg> diff --git a/common/unity/launcher_icon_shine_54.svg b/common/unity/launcher_icon_shine_54.svg deleted file mode 100644 index 31317e2..0000000 --- a/common/unity/launcher_icon_shine_54.svg +++ /dev/null @@ -1,83 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="54" - height="54" - viewBox="0 0 54 54.000001" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="launcher_icon_shine_54.svg"> - <metadata - id="metadata8"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs6"> - <linearGradient - inkscape:collect="always" - id="linearGradient3762"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop3764" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3766" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#linearGradient3762" - id="linearGradient3768" - x1="0" - y1="27" - x2="2.999999" - y2="27" - gradientUnits="userSpaceOnUse" - gradientTransform="matrix(0,-1,1,0,0,54)" /> - </defs> - <sodipodi:namedview - pagecolor="#000000" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0.67843137" - inkscape:pageshadow="2" - inkscape:window-width="1301" - inkscape:window-height="650" - id="namedview4" - showgrid="true" - inkscape:snap-bbox="true" - inkscape:zoom="8.7407407" - inkscape:cx="27.214228" - inkscape:cy="18.946249" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:current-layer="svg2"> - <inkscape:grid - type="xygrid" - id="grid3753" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> -</svg> diff --git a/common/unity/launcher_pip_ltr_19.svg b/common/unity/launcher_pip_ltr_19.svg deleted file mode 100644 index d21bdd1..0000000 --- a/common/unity/launcher_pip_ltr_19.svg +++ /dev/null @@ -1,101 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="10" - height="19" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - inkscape:export-filename="test.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - sodipodi:docname="launcher_pip_ltr_19.svg"> - <defs - id="defs4"> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath4069"> - <rect - style="opacity:0.12000002;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect4071" - width="10" - height="19" - x="20" - y="1033.3622" /> - </clipPath> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#fdf6e3" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="15.178831" - inkscape:cx="2.3818874" - inkscape:cy="5.0805669" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:window-width="1301" - inkscape:window-height="648" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true" - inkscape:snap-bbox-midpoints="true" - inkscape:object-paths="true" - inkscape:snap-intersection-paths="true" - inkscape:object-nodes="true" - inkscape:snap-smooth-nodes="true" - inkscape:snap-midpoints="true" - inkscape:snap-object-midpoints="true" - inkscape:snap-text-baseline="false" - inkscape:snap-center="true" - inkscape:snap-page="true"> - <inkscape:grid - type="xygrid" - id="grid4740" - empspacing="8" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1033.3622)"> - <rect - style="fill:#fdf6e3;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect3338" - width="2" - height="3.0000174" - x="2" - y="1041.3622" - ry="3.0675728e-06" /> - </g> -</svg> diff --git a/common/unity/launcher_pip_ltr_37.svg b/common/unity/launcher_pip_ltr_37.svg deleted file mode 100644 index e9fab53..0000000 --- a/common/unity/launcher_pip_ltr_37.svg +++ /dev/null @@ -1,103 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="20" - height="37" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - inkscape:export-filename="test.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - sodipodi:docname="launcher_pip_ltr_37.svg"> - <defs - id="defs4"> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath4069"> - <rect - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" - id="rect4071" - width="10" - height="19" - x="20" - y="1033.3622" /> - </clipPath> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#fdf6e3" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="16" - inkscape:cx="-7.5475486" - inkscape:cy="14.518805" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:window-width="1301" - inkscape:window-height="744" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true" - inkscape:snap-bbox-midpoints="true" - inkscape:object-paths="true" - inkscape:snap-intersection-paths="true" - inkscape:object-nodes="true" - inkscape:snap-smooth-nodes="true" - inkscape:snap-midpoints="true" - inkscape:snap-object-midpoints="true" - inkscape:snap-text-baseline="false" - inkscape:snap-center="true" - inkscape:snap-page="true" - inkscape:snap-nodes="false"> - <inkscape:grid - type="xygrid" - id="grid4740" - empspacing="8" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1015.3622)"> - <rect - rx="3.0675728e-06" - style="fill:#fdf6e3;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect3338" - width="4" - height="5.0000172" - x="4" - y="1031.3622" - ry="3.0675728e-06" /> - </g> -</svg> diff --git a/common/unity/launcher_pip_rtl_19.svg b/common/unity/launcher_pip_rtl_19.svg deleted file mode 100644 index 0182c55..0000000 --- a/common/unity/launcher_pip_rtl_19.svg +++ /dev/null @@ -1,102 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="10" - height="19" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - inkscape:export-filename="test.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - sodipodi:docname="launcher_pip_rtl_19.svg"> - <defs - id="defs4"> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath4069"> - <rect - style="opacity:0.12000002;color:#000000;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" - id="rect4071" - width="10" - height="19" - x="20" - y="1033.3622" /> - </clipPath> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#fdf6e3" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="32" - inkscape:cx="0.4532629" - inkscape:cy="12.759685" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:window-width="1301" - inkscape:window-height="744" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true" - inkscape:snap-bbox-midpoints="true" - inkscape:object-paths="true" - inkscape:snap-intersection-paths="true" - inkscape:object-nodes="true" - inkscape:snap-smooth-nodes="true" - inkscape:snap-midpoints="true" - inkscape:snap-object-midpoints="true" - inkscape:snap-text-baseline="false" - inkscape:snap-center="true" - inkscape:snap-page="true" - inkscape:snap-nodes="false"> - <inkscape:grid - type="xygrid" - id="grid4740" - empspacing="8" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1033.3622)"> - <rect - style="fill:#fdf6e3;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect3338" - width="2" - height="3.0000174" - x="6" - y="1041.3622" - ry="3.0675728e-06" /> - </g> -</svg> diff --git a/common/unity/launcher_pip_rtl_37.svg b/common/unity/launcher_pip_rtl_37.svg deleted file mode 100644 index 0ce5d91..0000000 --- a/common/unity/launcher_pip_rtl_37.svg +++ /dev/null @@ -1,103 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="20" - height="37" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - inkscape:export-filename="test.png" - inkscape:export-xdpi="90" - inkscape:export-ydpi="90" - sodipodi:docname="launcher_pip_rtl_37.svg"> - <defs - id="defs4"> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath4069"> - <rect - style="color:#000000;display:inline;overflow:visible;visibility:visible;opacity:0.12000002;fill:#ff00ff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;enable-background:accumulate" - id="rect4071" - width="10" - height="19" - x="20" - y="1033.3622" /> - </clipPath> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#fdf6e3" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:zoom="11.313709" - inkscape:cx="3.9744094" - inkscape:cy="10.722806" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:window-width="1301" - inkscape:window-height="744" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true" - inkscape:snap-bbox-midpoints="true" - inkscape:object-paths="true" - inkscape:snap-intersection-paths="true" - inkscape:object-nodes="true" - inkscape:snap-smooth-nodes="true" - inkscape:snap-midpoints="true" - inkscape:snap-object-midpoints="true" - inkscape:snap-text-baseline="false" - inkscape:snap-center="true" - inkscape:snap-page="true" - inkscape:snap-nodes="false"> - <inkscape:grid - type="xygrid" - id="grid4740" - empspacing="8" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1015.3622)"> - <rect - rx="3.0675728e-06" - style="fill:#fdf6e3;fill-opacity:0.90196079;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="rect3338" - width="4" - height="5.0000172" - x="12" - y="1031.3622" - ry="3.0675728e-06" /> - </g> -</svg> diff --git a/common/unity/maximize.svg b/common/unity/maximize.svg deleted file mode 100644 index 54df071..0000000 --- a/common/unity/maximize.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-max" - inkscape:label="#g6234" - transform="translate(-612,1218)" - style="display:inline;opacity:0.8"> - <g - id="g7146" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-96"> - <g - id="g4092-0-6-83" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-95" - style="display:inline;opacity:1;fill:#7a7f8b;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - y="-185.63782" - x="616" - height="16" - width="16" - id="rect17883-29" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/maximize_dash.svg b/common/unity/maximize_dash.svg deleted file mode 100644 index fe3cb25..0000000 --- a/common/unity/maximize_dash.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_dash.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline;opacity:0.7" - id="titlebutton-max-dark" - inkscape:label="#g6234" - transform="translate(-612.00002,1218)"> - <g - id="g7146-16-4" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-96-8-9"> - <g - id="g4092-0-6-83-7-4" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-95-1-7" - style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - y="-185.63782" - x="616" - height="16" - width="16" - id="rect17883-29-2-2" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/maximize_dash_disabled.svg b/common/unity/maximize_dash_disabled.svg deleted file mode 100644 index cd52d6e..0000000 --- a/common/unity/maximize_dash_disabled.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_dash_disabled.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-max-backdrop-dark" - inkscape:label="#g6521" - style="display:inline;opacity:0.4" - transform="translate(-612.00002,1201)"> - <g - style="display:inline;opacity:1" - id="g7146-1-1-6" - transform="translate(-781,-415.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-6-0"> - <g - id="g4092-0-6-9-2" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-6-4" - style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-6-2-5" - width="16" - height="16" - x="616" - y="-168.63782" /> - </g> - </g> -</svg> diff --git a/common/unity/maximize_dash_prelight.svg b/common/unity/maximize_dash_prelight.svg deleted file mode 100644 index 4c3b7c9..0000000 --- a/common/unity/maximize_dash_prelight.svg +++ /dev/null @@ -1,224 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_dash_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover-dark" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891-5-8" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4-6-6" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78-2-6" - inkscape:connector-curvature="0" /> - <g - id="g4806-9-0-6" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7-6-6" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3-2-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75-1-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9-2-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5-0-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8-0-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7-5-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1-4-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0-0-6"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:1;fill:#93a1a1;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6-7-1" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0-1-5" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/maximize_dash_pressed.svg b/common/unity/maximize_dash_pressed.svg deleted file mode 100644 index 3cb0e91..0000000 --- a/common/unity/maximize_dash_pressed.svg +++ /dev/null @@ -1,247 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_dash_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="selected_bg_color" - osb:paint="solid"> - <stop - style="stop-color:#268bd2;stop-opacity:1;" - offset="0" - id="stop4170" /> - </linearGradient> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4172" - x1="1376" - y1="248" - x2="1376" - y2="262" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="16.000001" - inkscape:cx="5.2618001" - inkscape:cy="4.6396105" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-active-dark" - inkscape:label="#g6356" - transform="translate(-408.00001,1218)"> - <g - id="g4891-4-5-5" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-132,0)" - style="display:inline;opacity:1" - id="g4490-2-9-1-2-4-8"> - <g - id="g4092-0-6-3-6-8-3-7" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:url(#linearGradient4172);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-1-6-6-0" /> - </g> - </g> - <g - id="g4806-5-2-2-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-2-0-0-8" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-9-9-51-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-7-6-4-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-7-4-0-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-9-7-6-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-4-2-4-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-4-6-4-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-0-8-22-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-7-2-3-1"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="fill:#fdf6e3;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-4-9-0-2" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="412" - height="16" - width="16" - id="rect17883-79-3-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/maximize_focused_normal.svg b/common/unity/maximize_focused_normal.svg deleted file mode 100644 index 54df071..0000000 --- a/common/unity/maximize_focused_normal.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-max" - inkscape:label="#g6234" - transform="translate(-612,1218)" - style="display:inline;opacity:0.8"> - <g - id="g7146" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-96"> - <g - id="g4092-0-6-83" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-95" - style="display:inline;opacity:1;fill:#7a7f8b;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - y="-185.63782" - x="616" - height="16" - width="16" - id="rect17883-29" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/maximize_focused_prelight.svg b/common/unity/maximize_focused_prelight.svg deleted file mode 100644 index 148e8b8..0000000 --- a/common/unity/maximize_focused_prelight.svg +++ /dev/null @@ -1,224 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.95;fill:#fdf6e3;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.15;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78" - inkscape:connector-curvature="0" /> - <g - id="g4806-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:1;fill:#7a7f8b;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/maximize_focused_pressed.svg b/common/unity/maximize_focused_pressed.svg deleted file mode 100644 index 97e7df2..0000000 --- a/common/unity/maximize_focused_pressed.svg +++ /dev/null @@ -1,347 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="selected_fg_color" - osb:paint="solid"> - <stop - style="stop-color:#fdf6e3gitgitgitgitgit;stop-opacity:1;" - offset="0" - id="stop4188" /> - </linearGradient> - <linearGradient - id="selected_bg_color" - osb:paint="solid"> - <stop - style="stop-color:#268bd2;stop-opacity:1;" - offset="0" - id="stop4185" /> - </linearGradient> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4187" - x1="1376" - y1="248" - x2="1376" - y2="262" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_fg_color" - id="linearGradient4190" - x1="88.996741" - y1="972" - x2="88.996741" - y2="978.00692" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="1.200547" - inkscape:cy="10.23084" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover-dark" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891-5-8" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4-6-6" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78-2-6" - inkscape:connector-curvature="0" /> - <g - id="g4806-9-0-6" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7-6-6" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3-2-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75-1-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9-2-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5-0-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8-0-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7-5-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1-4-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0-0-6"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:1;fill:#93a1a1;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6-7-1" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0-1-5" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - <g - style="display:inline" - id="titlebutton-max-active-dark" - inkscape:label="#g6356" - transform="translate(-408.00001,1218)"> - <g - id="g4891-4-5-5" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-132,0)" - style="display:inline;opacity:1" - id="g4490-2-9-1-2-4-8"> - <g - id="g4092-0-6-3-6-8-3-7" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:url(#linearGradient4187);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-1-6-6-0" /> - </g> - </g> - <g - id="g4806-5-2-2-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-2-0-0-8" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-9-9-51-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-7-6-4-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-7-4-0-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-9-7-6-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-4-2-4-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-4-6-4-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-0-8-22-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-7-2-3-1"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="fill:url(#linearGradient4190);fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-4-9-0-2" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="412" - height="16" - width="16" - id="rect17883-79-3-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/maximize_unfocused.svg b/common/unity/maximize_unfocused.svg deleted file mode 100644 index 9a629e3..0000000 --- a/common/unity/maximize_unfocused.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_unfocused.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-max-backdrop" - inkscape:label="#g6521" - style="display:inline;opacity:0.45" - transform="translate(-612,1201)"> - <g - style="display:inline;opacity:1" - id="g7146-1" - transform="translate(-781,-415.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2"> - <g - id="g4092-0-6" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5" - style="display:inline;opacity:1;fill:#7a7f8b;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-6" - width="16" - height="16" - x="616" - y="-168.63782" /> - </g> - </g> -</svg> diff --git a/common/unity/maximize_unfocused_prelight.svg b/common/unity/maximize_unfocused_prelight.svg deleted file mode 100644 index 148e8b8..0000000 --- a/common/unity/maximize_unfocused_prelight.svg +++ /dev/null @@ -1,224 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.95;fill:#fdf6e3;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.15;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78" - inkscape:connector-curvature="0" /> - <g - id="g4806-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:1;fill:#7a7f8b;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/maximize_unfocused_pressed.svg b/common/unity/maximize_unfocused_pressed.svg deleted file mode 100644 index 97e7df2..0000000 --- a/common/unity/maximize_unfocused_pressed.svg +++ /dev/null @@ -1,347 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="selected_fg_color" - osb:paint="solid"> - <stop - style="stop-color:#fdf6e3gitgitgitgitgit;stop-opacity:1;" - offset="0" - id="stop4188" /> - </linearGradient> - <linearGradient - id="selected_bg_color" - osb:paint="solid"> - <stop - style="stop-color:#268bd2;stop-opacity:1;" - offset="0" - id="stop4185" /> - </linearGradient> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4187" - x1="1376" - y1="248" - x2="1376" - y2="262" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_fg_color" - id="linearGradient4190" - x1="88.996741" - y1="972" - x2="88.996741" - y2="978.00692" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="1.200547" - inkscape:cy="10.23084" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover-dark" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891-5-8" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4-6-6" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78-2-6" - inkscape:connector-curvature="0" /> - <g - id="g4806-9-0-6" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7-6-6" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3-2-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75-1-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9-2-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5-0-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8-0-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7-5-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1-4-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0-0-6"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:1;fill:#93a1a1;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6-7-1" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0-1-5" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - <g - style="display:inline" - id="titlebutton-max-active-dark" - inkscape:label="#g6356" - transform="translate(-408.00001,1218)"> - <g - id="g4891-4-5-5" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-132,0)" - style="display:inline;opacity:1" - id="g4490-2-9-1-2-4-8"> - <g - id="g4092-0-6-3-6-8-3-7" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:url(#linearGradient4187);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-1-6-6-0" /> - </g> - </g> - <g - id="g4806-5-2-2-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-2-0-0-8" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-9-9-51-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-7-6-4-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-7-4-0-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-9-7-6-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-4-2-4-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-4-6-4-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-0-8-22-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-7-2-3-1"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="fill:url(#linearGradient4190);fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-4-9-0-2" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="412" - height="16" - width="16" - id="rect17883-79-3-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/minimize.svg b/common/unity/minimize.svg deleted file mode 100644 index f794fa1..0000000 --- a/common/unity/minimize.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-min" - inkscape:label="#g6247" - transform="translate(-583,1218)" - style="display:inline;opacity:0.8"> - <g - id="g7138" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3-75"> - <g - id="g4092-0-7-0" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4-3" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#7a7f8b;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - <rect - y="-185.63782" - x="587" - height="16" - width="16" - id="rect17883-32" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/minimize_dash.svg b/common/unity/minimize_dash.svg deleted file mode 100644 index a380597..0000000 --- a/common/unity/minimize_dash.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_dash.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline;opacity:0.7" - id="titlebutton-min-dark" - inkscape:label="#g6247" - transform="translate(-583.00002,1218)"> - <g - id="g7138-6-5" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3-75-4-7"> - <g - id="g4092-0-7-0-4-9" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4-3-8-5" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - <rect - y="-185.63782" - x="587" - height="16" - width="16" - id="rect17883-32-6-9" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/minimize_dash_disabled.svg b/common/unity/minimize_dash_disabled.svg deleted file mode 100644 index a77959c..0000000 --- a/common/unity/minimize_dash_disabled.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_dash_disabled.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-min-backdrop-dark" - inkscape:label="#g6534" - style="display:inline;opacity:0.4" - transform="translate(-583.00002,1201)"> - <g - style="display:inline;opacity:1" - id="g7138-0-7-7" - transform="translate(-781,-415.63782)"> - <g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3-6-9"> - <g - id="g4092-0-7-6-5" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4-09-2" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-3-46-6" - width="16" - height="16" - x="587" - y="-168.63782" /> - </g> - </g> -</svg> diff --git a/common/unity/minimize_dash_prelight.svg b/common/unity/minimize_dash_prelight.svg deleted file mode 100644 index dbc5564..0000000 --- a/common/unity/minimize_dash_prelight.svg +++ /dev/null @@ -1,224 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_dash_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-hover-dark" - inkscape:label="#g6308" - transform="translate(-480,1218)"> - <g - id="g4909-3-7" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1273" - style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-1-6-1" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-23-4-3" - inkscape:connector-curvature="0" /> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-0-4-5" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-4-15-6" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-1-8-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-6-4-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-4-8-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-0-8-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-1-7-5" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-9-9-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-2-7-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-6-2-7"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#93a1a1;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-8-2-3" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="484" - height="16" - width="16" - id="rect17883-11-4-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/minimize_dash_pressed.svg b/common/unity/minimize_dash_pressed.svg deleted file mode 100644 index 5a53152..0000000 --- a/common/unity/minimize_dash_pressed.svg +++ /dev/null @@ -1,247 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_dash_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="selected_bg_color" - osb:paint="solid"> - <stop - style="stop-color:#268bd2;stop-opacity:1;" - offset="0" - id="stop4170" /> - </linearGradient> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4172" - x1="1376" - y1="248" - x2="1376" - y2="262" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="16.000001" - inkscape:cx="4.8956836" - inkscape:cy="9.0696203" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-active-dark" - inkscape:label="#g6414" - transform="translate(-379.00001,1218)"> - <g - id="g4909-1-2-0" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-161,0)" - style="display:inline;opacity:1" - id="g4490-3-6-1-4-1-6"> - <g - id="g4092-0-7-2-0-0-94-2" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:url(#linearGradient4172);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-3-0-3-6-8-3" /> - </g> - </g> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-9-3-8-5" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-9-1-0-4" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-0-5-8-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-5-2-6-8" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-7-4-2-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-2-3-2-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-0-6-6-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-4-6-0-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-6-8-7-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-3-7-96-7"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#fdf6e3;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-3-5-1-1" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-79-9-2-2" - width="16" - height="16" - x="383" - y="-185.63782" /> - </g> - </g> -</svg> diff --git a/common/unity/minimize_focused_normal.svg b/common/unity/minimize_focused_normal.svg deleted file mode 100644 index f794fa1..0000000 --- a/common/unity/minimize_focused_normal.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-min" - inkscape:label="#g6247" - transform="translate(-583,1218)" - style="display:inline;opacity:0.8"> - <g - id="g7138" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3-75"> - <g - id="g4092-0-7-0" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4-3" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#7a7f8b;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - <rect - y="-185.63782" - x="587" - height="16" - width="16" - id="rect17883-32" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/minimize_focused_prelight.svg b/common/unity/minimize_focused_prelight.svg deleted file mode 100644 index 6fd6e49..0000000 --- a/common/unity/minimize_focused_prelight.svg +++ /dev/null @@ -1,224 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-hover" - inkscape:label="#g6308" - transform="translate(-480,1218)"> - <g - id="g4909" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1273" - style="display:inline;opacity:0.95;fill:#fdf6e3;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-1" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.15;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-23" - inkscape:connector-curvature="0" /> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-0" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-4" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-1" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-6" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-6"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#7a7f8b;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-8" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="484" - height="16" - width="16" - id="rect17883-11" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/minimize_focused_pressed.svg b/common/unity/minimize_focused_pressed.svg deleted file mode 100644 index 9ecb186..0000000 --- a/common/unity/minimize_focused_pressed.svg +++ /dev/null @@ -1,260 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="selected_fg_color" - osb:paint="solid"> - <stop - style="stop-color:#fdf6e3gitgitgit;stop-opacity:1;" - offset="0" - id="stop4172" /> - </linearGradient> - <linearGradient - id="selected_bg_color" - osb:paint="solid"> - <stop - style="stop-color:#268bd2;stop-opacity:1;" - offset="0" - id="stop4169" /> - </linearGradient> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4171" - x1="1376" - y1="248" - x2="1376" - y2="262" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_fg_color" - id="linearGradient4174" - x1="89.0002" - y1="974" - x2="89.0002" - y2="976" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="-0.56721978" - inkscape:cy="13.766373" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-active-dark" - inkscape:label="#g6414" - transform="translate(-379.00001,1218)"> - <g - id="g4909-1-2-0" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-161,0)" - style="display:inline;opacity:1" - id="g4490-3-6-1-4-1-6"> - <g - id="g4092-0-7-2-0-0-94-2" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:url(#linearGradient4171);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-3-0-3-6-8-3" /> - </g> - </g> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-9-3-8-5" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-9-1-0-4" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-0-5-8-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-5-2-6-8" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-7-4-2-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-2-3-2-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-0-6-6-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-4-6-0-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-6-8-7-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-3-7-96-7"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4174);fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-3-5-1-1" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-79-9-2-2" - width="16" - height="16" - x="383" - y="-185.63782" /> - </g> - </g> -</svg> diff --git a/common/unity/minimize_unfocused.svg b/common/unity/minimize_unfocused.svg deleted file mode 100644 index 134cfda..0000000 --- a/common/unity/minimize_unfocused.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_unfocused.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-min-backdrop" - inkscape:label="#g6534" - style="display:inline;opacity:0.45" - transform="translate(-583,1201)"> - <g - style="display:inline;opacity:1" - id="g7138-0" - transform="translate(-781,-415.63782)"> - <g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3"> - <g - id="g4092-0-7" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#7a7f8b;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-3" - width="16" - height="16" - x="587" - y="-168.63782" /> - </g> - </g> -</svg> diff --git a/common/unity/minimize_unfocused_prelight.svg b/common/unity/minimize_unfocused_prelight.svg deleted file mode 100644 index 6fd6e49..0000000 --- a/common/unity/minimize_unfocused_prelight.svg +++ /dev/null @@ -1,224 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-hover" - inkscape:label="#g6308" - transform="translate(-480,1218)"> - <g - id="g4909" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1273" - style="display:inline;opacity:0.95;fill:#fdf6e3;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-1" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.15;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-23" - inkscape:connector-curvature="0" /> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-0" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-4" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-1" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-6" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-6"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#7a7f8b;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-8" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="484" - height="16" - width="16" - id="rect17883-11" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/minimize_unfocused_pressed.svg b/common/unity/minimize_unfocused_pressed.svg deleted file mode 100644 index 9ecb186..0000000 --- a/common/unity/minimize_unfocused_pressed.svg +++ /dev/null @@ -1,260 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="selected_fg_color" - osb:paint="solid"> - <stop - style="stop-color:#fdf6e3gitgitgit;stop-opacity:1;" - offset="0" - id="stop4172" /> - </linearGradient> - <linearGradient - id="selected_bg_color" - osb:paint="solid"> - <stop - style="stop-color:#268bd2;stop-opacity:1;" - offset="0" - id="stop4169" /> - </linearGradient> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4171" - x1="1376" - y1="248" - x2="1376" - y2="262" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_fg_color" - id="linearGradient4174" - x1="89.0002" - y1="974" - x2="89.0002" - y2="976" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="-0.56721978" - inkscape:cy="13.766373" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-active-dark" - inkscape:label="#g6414" - transform="translate(-379.00001,1218)"> - <g - id="g4909-1-2-0" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-161,0)" - style="display:inline;opacity:1" - id="g4490-3-6-1-4-1-6"> - <g - id="g4092-0-7-2-0-0-94-2" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:url(#linearGradient4171);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-3-0-3-6-8-3" /> - </g> - </g> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-9-3-8-5" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-9-1-0-4" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-0-5-8-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-5-2-6-8" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-7-4-2-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-2-3-2-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-0-6-6-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-4-6-0-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-6-8-7-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-3-7-96-7"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4174);fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-3-5-1-1" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-79-9-2-2" - width="16" - height="16" - x="383" - y="-185.63782" /> - </g> - </g> -</svg> diff --git a/common/unity/sheet_style_close_focused.svg b/common/unity/sheet_style_close_focused.svg deleted file mode 100644 index 8f0f457..0000000 --- a/common/unity/sheet_style_close_focused.svg +++ /dev/null @@ -1,219 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="5.6211807" - inkscape:cy="10.966175" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1259" - inkscape:window-height="630" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close" - inkscape:label="#g6210" - transform="translate(-641,1218)"> - <g - id="g4927-9" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2"> - <g - id="g4092-0-2-21-0" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#f46067;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 172,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 172,63.867188 173.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 174.9302,66.77394 174.99999,66.9729 175,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 172,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 169.05288,63.088403 168.98357,62.882438 169,62.671875 l 0,-0.75 z" - transform="translate(1204,190)" - id="path4068-7-5-9-6" /> - </g> - </g> - <g - id="g4778-2-68" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-4-4" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-4-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-6-11" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-0-33" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-3-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - <path - inkscape:connector-curvature="0" - d="m 650.00003,-180.71594 0.75,0 c 0.008,-9e-5 0.0156,-3.5e-4 0.0234,0 0.19122,0.008 0.3824,0.0964 0.51563,0.23437 l 1.71093,1.71094 1.73438,-1.71094 c 0.19922,-0.17287 0.335,-0.22912 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0257,0.41298 -0.1875,0.5625 l -1.71093,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21093,0.53907 l 0,0.75 -0.75,0 c -0.19897,-1e-5 -0.39793,-0.0698 -0.53906,-0.21094 l -1.71094,-1.71094 -1.71093,1.71094 c -0.14113,0.14114 -0.3401,0.21094 -0.53907,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15805,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" - id="path10839-9-2-2-7-9-7" - style="color:#657b83;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#657b83;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> -</svg> diff --git a/common/unity/sheet_style_close_focused_prelight.svg b/common/unity/sheet_style_close_focused_prelight.svg deleted file mode 100644 index 55215ec..0000000 --- a/common/unity/sheet_style_close_focused_prelight.svg +++ /dev/null @@ -1,219 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="5.6211807" - inkscape:cy="10.966175" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1259" - inkscape:window-height="630" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-hover" - inkscape:label="#g6260" - transform="translate(-538,1218)"> - <g - id="g4927" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-9"> - <g - id="g4092-0-2-3" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#f68086;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 172,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 172,97.867188 173.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 172,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 169.05288,97.088403 168.98357,96.882438 169,96.671875 l 0,-0.75 z" - transform="translate(1204,156)" - id="path4068-7-5-8" /> - </g> - </g> - <g - id="g4778-4" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-44" - transform="translate(-60,-518)" /> - <g - id="layer10-2-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-3" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-9" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-7" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-3" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-02" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-7" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-4" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="542" - height="16" - width="16" - id="rect17883-5" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - <path - inkscape:connector-curvature="0" - d="m 547.00004,-180.71594 0.75,0 c 0.008,-9e-5 0.0156,-3.5e-4 0.0234,0 0.19122,0.008 0.3824,0.0964 0.51563,0.23437 l 1.71093,1.71094 1.73438,-1.71094 c 0.19922,-0.17287 0.335,-0.22912 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0257,0.41298 -0.1875,0.5625 l -1.71093,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21093,0.53907 l 0,0.75 -0.75,0 c -0.19897,-1e-5 -0.39793,-0.0698 -0.53906,-0.21094 L 550,-176.63782 l -1.71093,1.71094 c -0.14113,0.14114 -0.3401,0.21094 -0.53907,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15805,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" - id="path10839-9-2-2-7-9-7-4-9" - style="color:#657b83;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#657b83;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> -</svg> diff --git a/common/unity/sheet_style_close_focused_pressed.svg b/common/unity/sheet_style_close_focused_pressed.svg deleted file mode 100644 index 979e42f..0000000 --- a/common/unity/sheet_style_close_focused_pressed.svg +++ /dev/null @@ -1,219 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_unfocused.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="5.6211807" - inkscape:cy="10.966175" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1259" - inkscape:window-height="630" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline;opacity:0.45" - id="titlebutton-close-backdrop" - inkscape:label="#g6210" - transform="translate(-641,1218)"> - <g - id="g4927-9-3" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2-6"> - <g - id="g4092-0-2-21-0-6" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="opacity:1;fill:#7a7f8b;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 172,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 172,63.867188 173.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 174.9302,66.77394 174.99999,66.9729 175,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 172,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 169.05288,63.088403 168.98357,62.882438 169,62.671875 l 0,-0.75 z" - transform="translate(1204,190)" - id="path4068-7-5-9-6-8" /> - </g> - </g> - <g - id="g4778-2-68-3" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-4-4-5" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8-2" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-4-9-8" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5-4" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7-9" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5-3" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-6-11-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-0-33-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-3-0-7" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39-7" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - <path - inkscape:connector-curvature="0" - d="m 650.00004,-180.71594 0.75,0 c 0.008,-9e-5 0.0156,-3.5e-4 0.0234,0 0.19122,0.008 0.3824,0.0964 0.51563,0.23437 l 1.71093,1.71094 1.73438,-1.71094 c 0.19922,-0.17287 0.335,-0.22912 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0257,0.41298 -0.1875,0.5625 l -1.71093,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21093,0.53907 l 0,0.75 -0.75,0 c -0.19897,-1e-5 -0.39793,-0.0698 -0.53906,-0.21094 L 653,-176.63782 l -1.71093,1.71094 c -0.14113,0.14114 -0.3401,0.21094 -0.53907,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15805,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" - id="path10839-9-2-2-7-9-7-4" - style="color:#657b83;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#657b83;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> -</svg> diff --git a/common/unity/unmaximize.svg b/common/unity/unmaximize.svg deleted file mode 100644 index 54df071..0000000 --- a/common/unity/unmaximize.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-max" - inkscape:label="#g6234" - transform="translate(-612,1218)" - style="display:inline;opacity:0.8"> - <g - id="g7146" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-96"> - <g - id="g4092-0-6-83" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-95" - style="display:inline;opacity:1;fill:#7a7f8b;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - y="-185.63782" - x="616" - height="16" - width="16" - id="rect17883-29" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/unmaximize_dash.svg b/common/unity/unmaximize_dash.svg deleted file mode 100644 index fe3cb25..0000000 --- a/common/unity/unmaximize_dash.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_dash.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline;opacity:0.7" - id="titlebutton-max-dark" - inkscape:label="#g6234" - transform="translate(-612.00002,1218)"> - <g - id="g7146-16-4" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-96-8-9"> - <g - id="g4092-0-6-83-7-4" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-95-1-7" - style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - y="-185.63782" - x="616" - height="16" - width="16" - id="rect17883-29-2-2" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/unmaximize_dash_disabled.svg b/common/unity/unmaximize_dash_disabled.svg deleted file mode 100644 index cd52d6e..0000000 --- a/common/unity/unmaximize_dash_disabled.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_dash_disabled.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-max-backdrop-dark" - inkscape:label="#g6521" - style="display:inline;opacity:0.4" - transform="translate(-612.00002,1201)"> - <g - style="display:inline;opacity:1" - id="g7146-1-1-6" - transform="translate(-781,-415.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-6-0"> - <g - id="g4092-0-6-9-2" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-6-4" - style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-6-2-5" - width="16" - height="16" - x="616" - y="-168.63782" /> - </g> - </g> -</svg> diff --git a/common/unity/unmaximize_dash_prelight.svg b/common/unity/unmaximize_dash_prelight.svg deleted file mode 100644 index 4c3b7c9..0000000 --- a/common/unity/unmaximize_dash_prelight.svg +++ /dev/null @@ -1,224 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_dash_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="32.000001" - inkscape:cx="10.337718" - inkscape:cy="9.0639316" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover-dark" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891-5-8" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4-6-6" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78-2-6" - inkscape:connector-curvature="0" /> - <g - id="g4806-9-0-6" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7-6-6" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3-2-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75-1-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9-2-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5-0-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8-0-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7-5-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1-4-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0-0-6"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:1;fill:#93a1a1;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6-7-1" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0-1-5" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/unmaximize_dash_pressed.svg b/common/unity/unmaximize_dash_pressed.svg deleted file mode 100644 index 3cb0e91..0000000 --- a/common/unity/unmaximize_dash_pressed.svg +++ /dev/null @@ -1,247 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_dash_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="selected_bg_color" - osb:paint="solid"> - <stop - style="stop-color:#268bd2;stop-opacity:1;" - offset="0" - id="stop4170" /> - </linearGradient> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4172" - x1="1376" - y1="248" - x2="1376" - y2="262" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="16.000001" - inkscape:cx="5.2618001" - inkscape:cy="4.6396105" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-active-dark" - inkscape:label="#g6356" - transform="translate(-408.00001,1218)"> - <g - id="g4891-4-5-5" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-132,0)" - style="display:inline;opacity:1" - id="g4490-2-9-1-2-4-8"> - <g - id="g4092-0-6-3-6-8-3-7" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:url(#linearGradient4172);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-1-6-6-0" /> - </g> - </g> - <g - id="g4806-5-2-2-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-2-0-0-8" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-9-9-51-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-7-6-4-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-7-4-0-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-9-7-6-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-4-2-4-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-4-6-4-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-0-8-22-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-7-2-3-1"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="fill:#fdf6e3;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-4-9-0-2" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="412" - height="16" - width="16" - id="rect17883-79-3-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/unmaximize_focused_normal.svg b/common/unity/unmaximize_focused_normal.svg deleted file mode 100644 index 54df071..0000000 --- a/common/unity/unmaximize_focused_normal.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-max" - inkscape:label="#g6234" - transform="translate(-612,1218)" - style="display:inline;opacity:0.8"> - <g - id="g7146" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-96"> - <g - id="g4092-0-6-83" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-95" - style="display:inline;opacity:1;fill:#7a7f8b;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - y="-185.63782" - x="616" - height="16" - width="16" - id="rect17883-29" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/unmaximize_focused_prelight.svg b/common/unity/unmaximize_focused_prelight.svg deleted file mode 100644 index 148e8b8..0000000 --- a/common/unity/unmaximize_focused_prelight.svg +++ /dev/null @@ -1,224 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.95;fill:#fdf6e3;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.15;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78" - inkscape:connector-curvature="0" /> - <g - id="g4806-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:1;fill:#7a7f8b;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/unmaximize_focused_pressed.svg b/common/unity/unmaximize_focused_pressed.svg deleted file mode 100644 index 97e7df2..0000000 --- a/common/unity/unmaximize_focused_pressed.svg +++ /dev/null @@ -1,347 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="selected_fg_color" - osb:paint="solid"> - <stop - style="stop-color:#fdf6e3gitgitgitgitgit;stop-opacity:1;" - offset="0" - id="stop4188" /> - </linearGradient> - <linearGradient - id="selected_bg_color" - osb:paint="solid"> - <stop - style="stop-color:#268bd2;stop-opacity:1;" - offset="0" - id="stop4185" /> - </linearGradient> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4187" - x1="1376" - y1="248" - x2="1376" - y2="262" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_fg_color" - id="linearGradient4190" - x1="88.996741" - y1="972" - x2="88.996741" - y2="978.00692" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="1.200547" - inkscape:cy="10.23084" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover-dark" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891-5-8" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4-6-6" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78-2-6" - inkscape:connector-curvature="0" /> - <g - id="g4806-9-0-6" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7-6-6" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3-2-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75-1-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9-2-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5-0-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8-0-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7-5-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1-4-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0-0-6"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:1;fill:#93a1a1;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6-7-1" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0-1-5" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - <g - style="display:inline" - id="titlebutton-max-active-dark" - inkscape:label="#g6356" - transform="translate(-408.00001,1218)"> - <g - id="g4891-4-5-5" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-132,0)" - style="display:inline;opacity:1" - id="g4490-2-9-1-2-4-8"> - <g - id="g4092-0-6-3-6-8-3-7" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:url(#linearGradient4187);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-1-6-6-0" /> - </g> - </g> - <g - id="g4806-5-2-2-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-2-0-0-8" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-9-9-51-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-7-6-4-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-7-4-0-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-9-7-6-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-4-2-4-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-4-6-4-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-0-8-22-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-7-2-3-1"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="fill:url(#linearGradient4190);fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-4-9-0-2" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="412" - height="16" - width="16" - id="rect17883-79-3-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/unmaximize_unfocused.svg b/common/unity/unmaximize_unfocused.svg deleted file mode 100644 index 9a629e3..0000000 --- a/common/unity/unmaximize_unfocused.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_unfocused.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-max-backdrop" - inkscape:label="#g6521" - style="display:inline;opacity:0.45" - transform="translate(-612,1201)"> - <g - style="display:inline;opacity:1" - id="g7146-1" - transform="translate(-781,-415.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2"> - <g - id="g4092-0-6" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5" - style="display:inline;opacity:1;fill:#7a7f8b;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-6" - width="16" - height="16" - x="616" - y="-168.63782" /> - </g> - </g> -</svg> diff --git a/common/unity/unmaximize_unfocused_prelight.svg b/common/unity/unmaximize_unfocused_prelight.svg deleted file mode 100644 index 148e8b8..0000000 --- a/common/unity/unmaximize_unfocused_prelight.svg +++ /dev/null @@ -1,224 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.95;fill:#fdf6e3;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.15;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78" - inkscape:connector-curvature="0" /> - <g - id="g4806-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:1;fill:#7a7f8b;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/unmaximize_unfocused_pressed.svg b/common/unity/unmaximize_unfocused_pressed.svg deleted file mode 100644 index 97e7df2..0000000 --- a/common/unity/unmaximize_unfocused_pressed.svg +++ /dev/null @@ -1,347 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="selected_fg_color" - osb:paint="solid"> - <stop - style="stop-color:#fdf6e3gitgitgitgitgit;stop-opacity:1;" - offset="0" - id="stop4188" /> - </linearGradient> - <linearGradient - id="selected_bg_color" - osb:paint="solid"> - <stop - style="stop-color:#268bd2;stop-opacity:1;" - offset="0" - id="stop4185" /> - </linearGradient> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4187" - x1="1376" - y1="248" - x2="1376" - y2="262" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_fg_color" - id="linearGradient4190" - x1="88.996741" - y1="972" - x2="88.996741" - y2="978.00692" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="1.200547" - inkscape:cy="10.23084" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover-dark" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891-5-8" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4-6-6" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78-2-6" - inkscape:connector-curvature="0" /> - <g - id="g4806-9-0-6" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7-6-6" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3-2-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75-1-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9-2-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5-0-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8-0-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7-5-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1-4-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0-0-6"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:1;fill:#93a1a1;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6-7-1" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0-1-5" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - <g - style="display:inline" - id="titlebutton-max-active-dark" - inkscape:label="#g6356" - transform="translate(-408.00001,1218)"> - <g - id="g4891-4-5-5" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-132,0)" - style="display:inline;opacity:1" - id="g4490-2-9-1-2-4-8"> - <g - id="g4092-0-6-3-6-8-3-7" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:url(#linearGradient4187);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-1-6-6-0" /> - </g> - </g> - <g - id="g4806-5-2-2-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-2-0-0-8" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-9-9-51-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-7-6-4-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-7-4-0-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-9-7-6-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-4-2-4-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-4-6-4-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-0-8-22-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-7-2-3-1"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="fill:url(#linearGradient4190);fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-4-9-0-2" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="412" - height="16" - width="16" - id="rect17883-79-3-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons-dark/close.svg b/common/unity/window-buttons-dark/close.svg deleted file mode 100644 index 2d76174..0000000 --- a/common/unity/window-buttons-dark/close.svg +++ /dev/null @@ -1,214 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="4.6255954" - inkscape:cy="10.407616" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-dark-8" - inkscape:label="#g6210" - transform="translate(-641,1218)"> - <g - id="g4927-9-2-8-4" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2-5-3-6"> - <g - id="g4092-0-2-21-0-9-7-0" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#dc322f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" - transform="translate(962.00001,190.00002)" - id="path4068-7-5-9-6-5-8-5" /> - </g> - </g> - <g - id="g4778-2-68-8-7-9" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-4-4-1-1-7" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8-0-4-4" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-4-9-6-9-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5-96-3-7" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7-9-4-5" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5-6-3-8" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-6-11-3-1-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-0-33-2-4-8" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-3-0-6-6-3" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39-99-8-8" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons-dark/close_prelight.svg b/common/unity/window-buttons-dark/close_prelight.svg deleted file mode 100644 index 753403e..0000000 --- a/common/unity/window-buttons-dark/close_prelight.svg +++ /dev/null @@ -1,214 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="4.6255954" - inkscape:cy="10.407616" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-hover-dark" - inkscape:label="#g6260" - transform="translate(-538,1218)"> - <g - id="g4927-97-4" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-9-1-3"> - <g - id="g4092-0-2-3-4-6" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#cb4b16;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 414,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,97.867188 415.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 411.05288,97.088403 410.98357,96.882438 411,96.671875 l 0,-0.75 z" - transform="translate(962,156.00002)" - id="path4068-7-5-8-2-3" /> - </g> - </g> - <g - id="g4778-4-0-2" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-44-1-6" - transform="translate(-60,-518)" /> - <g - id="layer10-2-9-3-3" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-3-1-7" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-9-3-3" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-7-1-2" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-3-3-7" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-02-1-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-7-9-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-4-7-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="542" - height="16" - width="16" - id="rect17883-5-4-2" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons-dark/close_pressed.svg b/common/unity/window-buttons-dark/close_pressed.svg deleted file mode 100644 index 8038c7e..0000000 --- a/common/unity/window-buttons-dark/close_pressed.svg +++ /dev/null @@ -1,214 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="4.6255954" - inkscape:cy="10.407616" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-active-dark" - inkscape:label="#g6332" - transform="translate(-437.00001,1218)"> - <g - id="g4927-8-7-4-9" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-3-7-46-6"> - <g - id="g4092-0-2-2-1-7-2" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#dc322f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 414,109 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.92188 0.75,0 c 0.008,-1e-4 0.0156,-3.5e-4 0.0234,0 0.19121,0.008 0.3824,0.0964 0.51562,0.23437 l 1.71094,1.71094 1.73438,-1.71094 c 0.19921,-0.17287 0.335,-0.22913 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0258,0.41298 -0.1875,0.5625 l -1.71094,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,117 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15806,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" - transform="translate(962.00001,139.00001)" - id="path4068-7-5-4-9-7-6" /> - </g> - </g> - <g - id="g4778-3-6-0-5" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-6-0-90-6" - transform="translate(-60,-518)" /> - <g - id="layer10-2-3-6-6-1" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-2-2-6-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-7-0-2-0" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-6-3-5-2" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-4-1-7-0" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-0-2-8-3" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-4-0-5-8" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-5-0-0-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="441" - height="16" - width="16" - id="rect17883-02-4-3" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons-dark/close_unfocused.svg b/common/unity/window-buttons-dark/close_unfocused.svg deleted file mode 100644 index 8603651..0000000 --- a/common/unity/window-buttons-dark/close_unfocused.svg +++ /dev/null @@ -1,214 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_unfocused.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="4.6255954" - inkscape:cy="10.407616" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline;opacity:0.4" - id="titlebutton-close-backdrop-dark" - inkscape:label="#g6210" - transform="translate(-641.00002,1218)"> - <g - id="g4927-9-2-8-0" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2-5-3-3"> - <g - id="g4092-0-2-21-0-9-7-0" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" - transform="translate(962.00001,190.00002)" - id="path4068-7-5-9-6-5-8-3" /> - </g> - </g> - <g - id="g4778-2-68-8-7-6" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-4-4-1-1-0" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8-0-4-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-4-9-6-9-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5-96-3-0" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7-9-4-0" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5-6-3-3" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-6-11-3-1-8" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-0-33-2-4-4" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-3-0-6-6-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39-99-8-6" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons-dark/maximize.svg b/common/unity/window-buttons-dark/maximize.svg deleted file mode 100644 index 9d17bdd..0000000 --- a/common/unity/window-buttons-dark/maximize.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="4.6255954" - inkscape:cy="10.407616" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline;opacity:0.7" - id="titlebutton-max-dark" - inkscape:label="#g6234" - transform="translate(-612.00002,1218)"> - <g - id="g7146-16-4" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-96-8-9"> - <g - id="g4092-0-6-83-7-4" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-95-1-7" - style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - y="-185.63782" - x="616" - height="16" - width="16" - id="rect17883-29-2-2" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons-dark/maximize_prelight.svg b/common/unity/window-buttons-dark/maximize_prelight.svg deleted file mode 100644 index e930e0e..0000000 --- a/common/unity/window-buttons-dark/maximize_prelight.svg +++ /dev/null @@ -1,224 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="4.6255954" - inkscape:cy="10.407616" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover-dark" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891-5-8" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4-6-6" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78-2-6" - inkscape:connector-curvature="0" /> - <g - id="g4806-9-0-6" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7-6-6" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3-2-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75-1-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9-2-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5-0-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8-0-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7-5-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1-4-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0-0-6"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:1;fill:#93a1a1;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6-7-1" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0-1-5" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons-dark/maximize_pressed.svg b/common/unity/window-buttons-dark/maximize_pressed.svg deleted file mode 100644 index 0bbe86c..0000000 --- a/common/unity/window-buttons-dark/maximize_pressed.svg +++ /dev/null @@ -1,347 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="selected_fg_color" - osb:paint="solid"> - <stop - style="stop-color:#fdf6e3git;stop-opacity:1;" - offset="0" - id="stop4188" /> - </linearGradient> - <linearGradient - id="selected_bg_color" - osb:paint="solid"> - <stop - style="stop-color:#268bd2;stop-opacity:1;" - offset="0" - id="stop4185" /> - </linearGradient> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4187" - x1="1376" - y1="248" - x2="1376" - y2="262" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_fg_color" - id="linearGradient4190" - x1="88.996741" - y1="972" - x2="88.996741" - y2="978.00692" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="1.200547" - inkscape:cy="10.23084" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover-dark" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891-5-8" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4-6-6" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78-2-6" - inkscape:connector-curvature="0" /> - <g - id="g4806-9-0-6" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7-6-6" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3-2-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75-1-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9-2-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5-0-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8-0-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7-5-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1-4-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0-0-6"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:1;fill:#93a1a1;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6-7-1" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0-1-5" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - <g - style="display:inline" - id="titlebutton-max-active-dark" - inkscape:label="#g6356" - transform="translate(-408.00001,1218)"> - <g - id="g4891-4-5-5" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-132,0)" - style="display:inline;opacity:1" - id="g4490-2-9-1-2-4-8"> - <g - id="g4092-0-6-3-6-8-3-7" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:url(#linearGradient4187);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-1-6-6-0" /> - </g> - </g> - <g - id="g4806-5-2-2-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-2-0-0-8" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-9-9-51-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-7-6-4-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-7-4-0-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-9-7-6-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-4-2-4-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-4-6-4-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-0-8-22-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-7-2-3-1"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="fill:url(#linearGradient4190);fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-4-9-0-2" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="412" - height="16" - width="16" - id="rect17883-79-3-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons-dark/maximize_unfocused.svg b/common/unity/window-buttons-dark/maximize_unfocused.svg deleted file mode 100644 index b5448dc..0000000 --- a/common/unity/window-buttons-dark/maximize_unfocused.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_unfocused.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="4.6255954" - inkscape:cy="10.407616" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-max-backdrop-dark" - inkscape:label="#g6521" - style="display:inline;opacity:0.4" - transform="translate(-612.00002,1201)"> - <g - style="display:inline;opacity:1" - id="g7146-1-1-6" - transform="translate(-781,-415.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-6-0"> - <g - id="g4092-0-6-9-2" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-6-4" - style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-6-2-5" - width="16" - height="16" - x="616" - y="-168.63782" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons-dark/minimize.svg b/common/unity/window-buttons-dark/minimize.svg deleted file mode 100644 index 3665c76..0000000 --- a/common/unity/window-buttons-dark/minimize.svg +++ /dev/null @@ -1,166 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="4.6255954" - inkscape:cy="10.407616" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline;opacity:0.7" - id="titlebutton-min-dark" - inkscape:label="#g6247" - transform="translate(-583.00002,1218)"> - <g - id="g7138-6-5" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3-75-4-7"> - <g - id="g4092-0-7-0-4-9" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4-3-8-5" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - <rect - y="-185.63782" - x="587" - height="16" - width="16" - id="rect17883-32-6-9" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons-dark/minimize_prelight.svg b/common/unity/window-buttons-dark/minimize_prelight.svg deleted file mode 100644 index a6ec9dc..0000000 --- a/common/unity/window-buttons-dark/minimize_prelight.svg +++ /dev/null @@ -1,220 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="4.6255954" - inkscape:cy="10.407616" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-hover-dark" - inkscape:label="#g6308" - transform="translate(-480,1218)"> - <g - id="g4909-3-7" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1273" - style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-1-6-1" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-23-4-3" - inkscape:connector-curvature="0" /> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-0-4-5" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-4-15-6" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-1-8-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-6-4-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-4-8-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-0-8-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-1-7-5" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-9-9-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-2-7-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-6-2-7"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#93a1a1;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-8-2-3" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="484" - height="16" - width="16" - id="rect17883-11-4-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons-dark/minimize_pressed.svg b/common/unity/window-buttons-dark/minimize_pressed.svg deleted file mode 100644 index fe3c0fc..0000000 --- a/common/unity/window-buttons-dark/minimize_pressed.svg +++ /dev/null @@ -1,260 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="selected_fg_color" - osb:paint="solid"> - <stop - style="stop-color:#fdf6e3git;stop-opacity:1;" - offset="0" - id="stop4172" /> - </linearGradient> - <linearGradient - id="selected_bg_color" - osb:paint="solid"> - <stop - style="stop-color:#268bd2;stop-opacity:1;" - offset="0" - id="stop4169" /> - </linearGradient> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4171" - x1="1376" - y1="248" - x2="1376" - y2="262" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_fg_color" - id="linearGradient4174" - x1="89.0002" - y1="974" - x2="89.0002" - y2="976" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="-0.56721978" - inkscape:cy="13.766373" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-active-dark" - inkscape:label="#g6414" - transform="translate(-379.00001,1218)"> - <g - id="g4909-1-2-0" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-161,0)" - style="display:inline;opacity:1" - id="g4490-3-6-1-4-1-6"> - <g - id="g4092-0-7-2-0-0-94-2" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:url(#linearGradient4171);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-3-0-3-6-8-3" /> - </g> - </g> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-9-3-8-5" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-9-1-0-4" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-0-5-8-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-5-2-6-8" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-7-4-2-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-2-3-2-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-0-6-6-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-4-6-0-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-6-8-7-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-3-7-96-7"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4174);fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-3-5-1-1" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-79-9-2-2" - width="16" - height="16" - x="383" - y="-185.63782" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons-dark/minimize_unfocused.svg b/common/unity/window-buttons-dark/minimize_unfocused.svg deleted file mode 100644 index e313a78..0000000 --- a/common/unity/window-buttons-dark/minimize_unfocused.svg +++ /dev/null @@ -1,166 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_unfocused.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="4.6255954" - inkscape:cy="10.407616" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-min-backdrop-dark" - inkscape:label="#g6534" - style="display:inline;opacity:0.4" - transform="translate(-583.00002,1201)"> - <g - style="display:inline;opacity:1" - id="g7138-0-7-7" - transform="translate(-781,-415.63782)"> - <g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3-6-9"> - <g - id="g4092-0-7-6-5" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4-09-2" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-3-46-6" - width="16" - height="16" - x="587" - y="-168.63782" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons/close.svg b/common/unity/window-buttons/close.svg deleted file mode 100644 index 8f0f457..0000000 --- a/common/unity/window-buttons/close.svg +++ /dev/null @@ -1,219 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="5.6211807" - inkscape:cy="10.966175" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1259" - inkscape:window-height="630" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close" - inkscape:label="#g6210" - transform="translate(-641,1218)"> - <g - id="g4927-9" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2"> - <g - id="g4092-0-2-21-0" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#f46067;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 172,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 172,63.867188 173.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 174.9302,66.77394 174.99999,66.9729 175,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 172,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 169.05288,63.088403 168.98357,62.882438 169,62.671875 l 0,-0.75 z" - transform="translate(1204,190)" - id="path4068-7-5-9-6" /> - </g> - </g> - <g - id="g4778-2-68" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-4-4" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-4-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-6-11" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-0-33" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-3-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - <path - inkscape:connector-curvature="0" - d="m 650.00003,-180.71594 0.75,0 c 0.008,-9e-5 0.0156,-3.5e-4 0.0234,0 0.19122,0.008 0.3824,0.0964 0.51563,0.23437 l 1.71093,1.71094 1.73438,-1.71094 c 0.19922,-0.17287 0.335,-0.22912 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0257,0.41298 -0.1875,0.5625 l -1.71093,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21093,0.53907 l 0,0.75 -0.75,0 c -0.19897,-1e-5 -0.39793,-0.0698 -0.53906,-0.21094 l -1.71094,-1.71094 -1.71093,1.71094 c -0.14113,0.14114 -0.3401,0.21094 -0.53907,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15805,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" - id="path10839-9-2-2-7-9-7" - style="color:#657b83;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#657b83;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons/close_prelight.svg b/common/unity/window-buttons/close_prelight.svg deleted file mode 100644 index 55215ec..0000000 --- a/common/unity/window-buttons/close_prelight.svg +++ /dev/null @@ -1,219 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="5.6211807" - inkscape:cy="10.966175" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1259" - inkscape:window-height="630" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-hover" - inkscape:label="#g6260" - transform="translate(-538,1218)"> - <g - id="g4927" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-9"> - <g - id="g4092-0-2-3" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#f68086;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 172,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 172,97.867188 173.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 172,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 169.05288,97.088403 168.98357,96.882438 169,96.671875 l 0,-0.75 z" - transform="translate(1204,156)" - id="path4068-7-5-8" /> - </g> - </g> - <g - id="g4778-4" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-44" - transform="translate(-60,-518)" /> - <g - id="layer10-2-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-3" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-9" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-7" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-3" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-02" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-7" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-4" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="542" - height="16" - width="16" - id="rect17883-5" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - <path - inkscape:connector-curvature="0" - d="m 547.00004,-180.71594 0.75,0 c 0.008,-9e-5 0.0156,-3.5e-4 0.0234,0 0.19122,0.008 0.3824,0.0964 0.51563,0.23437 l 1.71093,1.71094 1.73438,-1.71094 c 0.19922,-0.17287 0.335,-0.22912 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0257,0.41298 -0.1875,0.5625 l -1.71093,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21093,0.53907 l 0,0.75 -0.75,0 c -0.19897,-1e-5 -0.39793,-0.0698 -0.53906,-0.21094 L 550,-176.63782 l -1.71093,1.71094 c -0.14113,0.14114 -0.3401,0.21094 -0.53907,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15805,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" - id="path10839-9-2-2-7-9-7-4-9" - style="color:#657b83;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#657b83;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons/close_pressed.svg b/common/unity/window-buttons/close_pressed.svg deleted file mode 100644 index b6f3a9c..0000000 --- a/common/unity/window-buttons/close_pressed.svg +++ /dev/null @@ -1,220 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="1" - inkscape:cx="13.034303" - inkscape:cy="10.832259" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-active" - inkscape:label="#g6332" - transform="translate(-437,1218)"> - <g - id="g4927-8-7" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-3-7"> - <g - id="g4092-0-2-2-1" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#f13039;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-4-9" /> - </g> - </g> - <g - id="g4778-3-6" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-6-0" - transform="translate(-60,-518)" /> - <g - id="layer10-2-3-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-2-2" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-7-0" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-6-3" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-4-1" - style="display:inline;fill:#fdf6e3;fill-opacity:1"> - <path - inkscape:connector-curvature="0" - d="m 45.001573,764.10442 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z" - id="path10839-9-8-7" - style="color:#657b83;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#fdf6e3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> - </g> - <g - id="layer13-2-0-2" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-4-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-5-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="441" - height="16" - width="16" - id="rect17883-02" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons/close_unfocused.svg b/common/unity/window-buttons/close_unfocused.svg deleted file mode 100644 index 979e42f..0000000 --- a/common/unity/window-buttons/close_unfocused.svg +++ /dev/null @@ -1,219 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="close_unfocused.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="5.6211807" - inkscape:cy="10.966175" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1259" - inkscape:window-height="630" - inkscape:window-x="65" - inkscape:window-y="24" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline;opacity:0.45" - id="titlebutton-close-backdrop" - inkscape:label="#g6210" - transform="translate(-641,1218)"> - <g - id="g4927-9-3" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2-6"> - <g - id="g4092-0-2-21-0-6" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="opacity:1;fill:#7a7f8b;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 172,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 172,63.867188 173.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 174.9302,66.77394 174.99999,66.9729 175,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 172,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 169.05288,63.088403 168.98357,62.882438 169,62.671875 l 0,-0.75 z" - transform="translate(1204,190)" - id="path4068-7-5-9-6-8" /> - </g> - </g> - <g - id="g4778-2-68-3" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-4-4-5" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8-2" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-4-9-8" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5-4" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7-9" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5-3" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-6-11-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-0-33-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-3-0-7" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39-7" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - <path - inkscape:connector-curvature="0" - d="m 650.00004,-180.71594 0.75,0 c 0.008,-9e-5 0.0156,-3.5e-4 0.0234,0 0.19122,0.008 0.3824,0.0964 0.51563,0.23437 l 1.71093,1.71094 1.73438,-1.71094 c 0.19922,-0.17287 0.335,-0.22912 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0257,0.41298 -0.1875,0.5625 l -1.71093,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21093,0.53907 l 0,0.75 -0.75,0 c -0.19897,-1e-5 -0.39793,-0.0698 -0.53906,-0.21094 L 653,-176.63782 l -1.71093,1.71094 c -0.14113,0.14114 -0.3401,0.21094 -0.53907,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15805,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" - id="path10839-9-2-2-7-9-7-4" - style="color:#657b83;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#657b83;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons/maximize.svg b/common/unity/window-buttons/maximize.svg deleted file mode 100644 index 54df071..0000000 --- a/common/unity/window-buttons/maximize.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-max" - inkscape:label="#g6234" - transform="translate(-612,1218)" - style="display:inline;opacity:0.8"> - <g - id="g7146" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-96"> - <g - id="g4092-0-6-83" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-95" - style="display:inline;opacity:1;fill:#7a7f8b;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - y="-185.63782" - x="616" - height="16" - width="16" - id="rect17883-29" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons/maximize_prelight.svg b/common/unity/window-buttons/maximize_prelight.svg deleted file mode 100644 index 148e8b8..0000000 --- a/common/unity/window-buttons/maximize_prelight.svg +++ /dev/null @@ -1,224 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.95;fill:#fdf6e3;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.15;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78" - inkscape:connector-curvature="0" /> - <g - id="g4806-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:1;fill:#7a7f8b;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons/maximize_pressed.svg b/common/unity/window-buttons/maximize_pressed.svg deleted file mode 100644 index 97e7df2..0000000 --- a/common/unity/window-buttons/maximize_pressed.svg +++ /dev/null @@ -1,347 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="selected_fg_color" - osb:paint="solid"> - <stop - style="stop-color:#fdf6e3gitgitgitgitgit;stop-opacity:1;" - offset="0" - id="stop4188" /> - </linearGradient> - <linearGradient - id="selected_bg_color" - osb:paint="solid"> - <stop - style="stop-color:#268bd2;stop-opacity:1;" - offset="0" - id="stop4185" /> - </linearGradient> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4187" - x1="1376" - y1="248" - x2="1376" - y2="262" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_fg_color" - id="linearGradient4190" - x1="88.996741" - y1="972" - x2="88.996741" - y2="978.00692" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="1.200547" - inkscape:cy="10.23084" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover-dark" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891-5-8" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4-6-6" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78-2-6" - inkscape:connector-curvature="0" /> - <g - id="g4806-9-0-6" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7-6-6" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3-2-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75-1-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9-2-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5-0-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8-0-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7-5-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1-4-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0-0-6"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:1;fill:#93a1a1;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6-7-1" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0-1-5" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - <g - style="display:inline" - id="titlebutton-max-active-dark" - inkscape:label="#g6356" - transform="translate(-408.00001,1218)"> - <g - id="g4891-4-5-5" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-132,0)" - style="display:inline;opacity:1" - id="g4490-2-9-1-2-4-8"> - <g - id="g4092-0-6-3-6-8-3-7" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:url(#linearGradient4187);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-1-6-6-0" /> - </g> - </g> - <g - id="g4806-5-2-2-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-2-0-0-8" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-9-9-51-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-7-6-4-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-7-4-0-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-9-7-6-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-4-2-4-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-4-6-4-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-0-8-22-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-7-2-3-1"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="fill:url(#linearGradient4190);fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-4-9-0-2" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="412" - height="16" - width="16" - id="rect17883-79-3-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons/maximize_unfocused.svg b/common/unity/window-buttons/maximize_unfocused.svg deleted file mode 100644 index 9a629e3..0000000 --- a/common/unity/window-buttons/maximize_unfocused.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="maximize_unfocused.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-max-backdrop" - inkscape:label="#g6521" - style="display:inline;opacity:0.45" - transform="translate(-612,1201)"> - <g - style="display:inline;opacity:1" - id="g7146-1" - transform="translate(-781,-415.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2"> - <g - id="g4092-0-6" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5" - style="display:inline;opacity:1;fill:#7a7f8b;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-6" - width="16" - height="16" - x="616" - y="-168.63782" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons/minimize.svg b/common/unity/window-buttons/minimize.svg deleted file mode 100644 index f794fa1..0000000 --- a/common/unity/window-buttons/minimize.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-min" - inkscape:label="#g6247" - transform="translate(-583,1218)" - style="display:inline;opacity:0.8"> - <g - id="g7138" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3-75"> - <g - id="g4092-0-7-0" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4-3" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#7a7f8b;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - <rect - y="-185.63782" - x="587" - height="16" - width="16" - id="rect17883-32" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons/minimize_prelight.svg b/common/unity/window-buttons/minimize_prelight.svg deleted file mode 100644 index 6fd6e49..0000000 --- a/common/unity/window-buttons/minimize_prelight.svg +++ /dev/null @@ -1,224 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_prelight.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-hover" - inkscape:label="#g6308" - transform="translate(-480,1218)"> - <g - id="g4909" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1273" - style="display:inline;opacity:0.95;fill:#fdf6e3;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-1" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.15;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-23" - inkscape:connector-curvature="0" /> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-0" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-4" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-1" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-6" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-6"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#7a7f8b;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-8" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="484" - height="16" - width="16" - id="rect17883-11" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons/minimize_pressed.svg b/common/unity/window-buttons/minimize_pressed.svg deleted file mode 100644 index 9ecb186..0000000 --- a/common/unity/window-buttons/minimize_pressed.svg +++ /dev/null @@ -1,260 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_pressed.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="selected_fg_color" - osb:paint="solid"> - <stop - style="stop-color:#fdf6e3gitgitgit;stop-opacity:1;" - offset="0" - id="stop4172" /> - </linearGradient> - <linearGradient - id="selected_bg_color" - osb:paint="solid"> - <stop - style="stop-color:#268bd2;stop-opacity:1;" - offset="0" - id="stop4169" /> - </linearGradient> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4171" - x1="1376" - y1="248" - x2="1376" - y2="262" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_fg_color" - id="linearGradient4174" - x1="89.0002" - y1="974" - x2="89.0002" - y2="976" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="22.627418" - inkscape:cx="-0.56721978" - inkscape:cy="13.766373" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-active-dark" - inkscape:label="#g6414" - transform="translate(-379.00001,1218)"> - <g - id="g4909-1-2-0" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-161,0)" - style="display:inline;opacity:1" - id="g4490-3-6-1-4-1-6"> - <g - id="g4092-0-7-2-0-0-94-2" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:url(#linearGradient4171);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-3-0-3-6-8-3" /> - </g> - </g> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-9-3-8-5" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-9-1-0-4" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-0-5-8-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-5-2-6-8" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-7-4-2-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-2-3-2-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-0-6-6-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-4-6-0-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-6-8-7-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-3-7-96-7"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4174);fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-3-5-1-1" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-79-9-2-2" - width="16" - height="16" - x="383" - y="-185.63782" /> - </g> - </g> -</svg> diff --git a/common/unity/window-buttons/minimize_unfocused.svg b/common/unity/window-buttons/minimize_unfocused.svg deleted file mode 100644 index 134cfda..0000000 --- a/common/unity/window-buttons/minimize_unfocused.svg +++ /dev/null @@ -1,170 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="24" - height="24" - id="svg4306" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="minimize_unfocused.svg" - style="enable-background:new"> - <defs - id="defs4308"> - <linearGradient - id="linearGradient3770"> - <stop - style="stop-color:#000000;stop-opacity:0.62827224;" - offset="0" - id="stop3772" /> - <stop - style="stop-color:#000000;stop-opacity:0.49803922;" - offset="1" - id="stop3774" /> - </linearGradient> - <linearGradient - id="linearGradient4882"> - <stop - style="stop-color:#fdf6e3;stop-opacity:1;" - offset="0" - id="stop4884" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop4886" /> - </linearGradient> - <linearGradient - id="linearGradient3784-6"> - <stop - style="stop-color:#fdf6e3;stop-opacity:0.21568628;" - offset="0" - id="stop3786-4" /> - <stop - style="stop-color:#fdf6e3;stop-opacity:0;" - offset="1" - id="stop3788-6" /> - </linearGradient> - <linearGradient - id="linearGradient4892"> - <stop - id="stop4894" - offset="0" - style="stop-color:#2f3a42;stop-opacity:1;" /> - <stop - id="stop4896" - offset="1" - style="stop-color:#1d242a;stop-opacity:1;" /> - </linearGradient> - <linearGradient - id="linearGradient4882-4"> - <stop - id="stop4884-9" - offset="0" - style="stop-color:#728495;stop-opacity:1;" /> - <stop - id="stop4886-9" - offset="1" - style="stop-color:#617c95;stop-opacity:0;" /> - </linearGradient> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#f0f1f2" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="1" - inkscape:pageshadow="2" - inkscape:zoom="45.254834" - inkscape:cx="12.734727" - inkscape:cy="10.911658" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - showguides="true" - inkscape:guide-bbox="true" - inkscape:window-width="1366" - inkscape:window-height="721" - inkscape:window-x="0" - inkscape:window-y="25" - inkscape:window-maximized="1" - inkscape:snap-bbox="true" - inkscape:snap-global="true" - inkscape:snap-bbox-midpoints="false" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="true"> - <inkscape:grid - type="xygrid" - id="grid4314" - empspacing="5" - visible="true" - enabled="true" - snapvisiblegridlinesonly="true" /> - <sodipodi:guide - orientation="1,0" - position="12,12" - id="guide4316" /> - <sodipodi:guide - orientation="0,1" - position="12,12" - id="guide4318" /> - </sodipodi:namedview> - <metadata - id="metadata4311"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-min-backdrop" - inkscape:label="#g6534" - style="display:inline;opacity:0.45" - transform="translate(-583,1201)"> - <g - style="display:inline;opacity:1" - id="g7138-0" - transform="translate(-781,-415.63782)"> - <g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3"> - <g - id="g4092-0-7" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#7a7f8b;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-3" - width="16" - height="16" - x="587" - y="-168.63782" /> - </g> - </g> -</svg> diff --git a/common/xfwm4-dark/close-active.xpm b/common/xfwm4-dark/close-active.xpm deleted file mode 100644 index 89512ed..0000000 --- a/common/xfwm4-dark/close-active.xpm +++ /dev/null @@ -1,70 +0,0 @@ -/* XPM */ -static char * close_active_xpm[] = { -"28 28 39 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -"# c #3C3741", -"$ c #80464E", -"% c #AE5056", -"& c #C5555B", -"* c #AD5057", -"= c #7F464E", -"- c #633F49", -"; c #C3555B", -"> c #dc322f", -", c #623F49", -"' c #CB565C", -") c #C2545C", -"! c #3C3641", -"~ c #32343F", -"{ c #6C414A", -"] c #CA565C", -"^ c #6F414B", -"/ c #30343F", -"( c #7F454D", -"_ c #AF5057", -": c #7C454D", -"< c #6A414A", -"[ c #6B414A", -"} c #77434C", -"| c #79444D", -"1 c #75434C", -"2 c #69404A", -"3 c #643F48", -"4 c #C9565C", -"5 c #7D464E", -"6 c #81464E", -"7 c #7E454E", -"8 c #3B3641", -"9 c #613F48", -"0 c #C4555B", -"............................", -"++++++++++++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@#$%&&*=#@@@@@@@@@@", -"@@@@@@@@@-;>>>>>>;,@@@@@@@@@", -"@@@@@@@@-'>>>>>>>>',@@@@@@@@", -"@@@@@@@#;>>)>>>>;>>;!@@@@@@@", -"@@@@@@@$>>>~{]]^/>>>(@@@@@@@", -"@@@@@@@_>>>:@<[@}>>>*@@@@@@@", -"@@@@@@@;>>>>|@@1>>>>;@@@@@@@", -"@@@@@@@;>>>]2@@34>>>;@@@@@@@", -"@@@@@@@%>>>[@55@<>>>*@@@@@@@", -"@@@@@@@=>>>#6>>6#>>>7@@@@@@@", -"@@@@@@@#;>>>>>>>>>>)8@@@@@@@", -"@@@@@@@@,'>>>>>>>>'9@@@@@@@@", -"@@@@@@@@@,;>>>>>>)9@@@@@@@@@", -"@@@@@@@@@@!(*00*78@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/close-inactive.xpm b/common/xfwm4-dark/close-inactive.xpm deleted file mode 100644 index e0fe2be..0000000 --- a/common/xfwm4-dark/close-inactive.xpm +++ /dev/null @@ -1,65 +0,0 @@ -/* XPM */ -static char * close_inactive_xpm[] = { -"28 28 34 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -"# c #333843", -"$ c #4B5059", -"% c #5B5F69", -"& c #646770", -"* c #5C6069", -"= c #4B505A", -"- c #414650", -"; c #636771", -"> c #666A73", -", c #404650", -"' c #636770", -") c #303540", -"! c #444953", -"~ c #666A72", -"{ c #454A54", -"] c #2E333F", -"^ c #4B4F5A", -"/ c #494E58", -"( c #444852", -"_ c #434953", -": c #484D57", -"< c #474C56", -"[ c #656972", -"} c #444853", -"| c #4A4F59", -"1 c #4C515A", -"2 c #4B4F59", -"3 c #40454F", -"4 c #5C5F68", -"5 c #636871", -"............................", -"++++++++++++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@#$%&&*=#@@@@@@@@@@", -"@@@@@@@@@-;>>>>>>;,@@@@@@@@@", -"@@@@@@@@->>>>>>>>>>,@@@@@@@@", -"@@@@@@@#;>>'>>>>'>>'#@@@@@@@", -"@@@@@@@$>>>)!~~{]>>>^@@@@@@@", -"@@@@@@@%>>>/@(_@:>>>*@@@@@@@", -"@@@@@@@;>>>>/@@<>>>>;@@@@@@@", -"@@@@@@@;>>>[(@@-[>>>'@@@@@@@", -"@@@@@@@%>>>}@||@_>>>*@@@@@@@", -"@@@@@@@=>>>#1>>1#>>>2@@@@@@@", -"@@@@@@@#;>>>>>>>>>>'#@@@@@@@", -"@@@@@@@@,>>>>>>>>>>3@@@@@@@@", -"@@@@@@@@@,'>>>>>>'3@@@@@@@@@", -"@@@@@@@@@@#^45542#@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/close-prelight.xpm b/common/xfwm4-dark/close-prelight.xpm deleted file mode 100644 index 8506a82..0000000 --- a/common/xfwm4-dark/close-prelight.xpm +++ /dev/null @@ -1,71 +0,0 @@ -/* XPM */ -static char * close_prelight_xpm[] = { -"28 28 40 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -"# c #3D3944", -"$ c #85575F", -"% c #B86A70", -"& c #CF757A", -"* c #B66A71", -"= c #84575E", -"- c #674A54", -"; c #CE7479", -"> c #cb4b16", -", c #664A53", -"' c #D6777C", -") c #CD7479", -"! c #3D3943", -"~ c #32343F", -"{ c #704E57", -"] c #D5777C", -"^ c #734F58", -"/ c #30343F", -"( c #85565F", -"_ c #B86B71", -": c #82555D", -"< c #6E4D56", -"[ c #6F4E56", -"} c #7C535B", -"| c #7E545B", -"1 c #7A525A", -"2 c #6D4D56", -"3 c #674A53", -"4 c #D4767C", -"5 c #6F4E57", -"6 c #83565E", -"7 c #875760", -"8 c #3C3844", -"9 c #654A52", -"0 c #B66970", -"a c #CF747A", -"............................", -"++++++++++++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@#$%&&*=#@@@@@@@@@@", -"@@@@@@@@@-;>>>>>>;,@@@@@@@@@", -"@@@@@@@@-'>>>>>>>>',@@@@@@@@", -"@@@@@@@#;>>)>>>>)>>)!@@@@@@@", -"@@@@@@@$>>>~{]]^/>>>(@@@@@@@", -"@@@@@@@_>>>:@<[@}>>>*@@@@@@@", -"@@@@@@@;>>>>|@@1>>>>;@@@@@@@", -"@@@@@@@;>>>]2@@34>>>)@@@@@@@", -"@@@@@@@%>>>5@66@[>>>*@@@@@@@", -"@@@@@@@=>>>#7>>7#>>>6@@@@@@@", -"@@@@@@@#;>>>>>>>>>>)8@@@@@@@", -"@@@@@@@@,'>>>>>>>>'9@@@@@@@@", -"@@@@@@@@@,)>>>>>>)9@@@@@@@@@", -"@@@@@@@@@@!(0aa068@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/close-pressed.xpm b/common/xfwm4-dark/close-pressed.xpm deleted file mode 100644 index 83e1ace..0000000 --- a/common/xfwm4-dark/close-pressed.xpm +++ /dev/null @@ -1,71 +0,0 @@ -/* XPM */ -static char * close_pressed_xpm[] = { -"28 28 40 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -"# c #3A343F", -"$ c #783640", -"% c #A33640", -"& c #B73740", -"* c #A13741", -"= c #78363F", -"- c #5E3540", -"; c #B63740", -"> c #dc322f", -", c #5E343F", -"' c #BD3740", -") c #B53740", -"! c #3B343E", -"~ c #32333E", -"{ c #67353F", -"] c #BC3740", -"^ c #683540", -"/ c #2F333F", -"( c #773640", -"_ c #A33740", -": c #75363F", -"< c #65353F", -"[ c #653540", -"} c #71353F", -"| c #72363F", -"1 c #6F353F", -"2 c #64353F", -"3 c #5F353F", -"4 c #BB3740", -"5 c #66353F", -"6 c #763640", -"7 c #7A3540", -"8 c #773540", -"9 c #3A333F", -"0 c #5C353F", -"a c #A13740", -"............................", -"++++++++++++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@#$%&&*=#@@@@@@@@@@", -"@@@@@@@@@-;>>>>>>;,@@@@@@@@@", -"@@@@@@@@-'>>>>>>>>',@@@@@@@@", -"@@@@@@@#;>>)>>>>;>>;!@@@@@@@", -"@@@@@@@$>>>~{]]^/>>>(@@@@@@@", -"@@@@@@@_>>>:@<[@}>>>*@@@@@@@", -"@@@@@@@;>>>>|@@1>>>>;@@@@@@@", -"@@@@@@@;>>>]2@@34>>>;@@@@@@@", -"@@@@@@@%>>>5@66@<>>>*@@@@@@@", -"@@@@@@@=>>>#7>>7#>>>8@@@@@@@", -"@@@@@@@#;>>>>>>>>>>)9@@@@@@@", -"@@@@@@@@,'>>>>>>>>'0@@@@@@@@", -"@@@@@@@@@,;>>>>>>)0@@@@@@@@@", -"@@@@@@@@@@!(a&&a89@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/hide-active.xpm b/common/xfwm4-dark/hide-active.xpm deleted file mode 100644 index 3cd607a..0000000 --- a/common/xfwm4-dark/hide-active.xpm +++ /dev/null @@ -1,36 +0,0 @@ -/* XPM */ -static char * hide_active_xpm[] = { -"28 28 5 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -"# c #8F939A", -"............................", -"++++++++++++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@######@@@@@@@@@@@", -"@@@@@@@@@@@######@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/hide-inactive.xpm b/common/xfwm4-dark/hide-inactive.xpm deleted file mode 100644 index aeede93..0000000 --- a/common/xfwm4-dark/hide-inactive.xpm +++ /dev/null @@ -1,36 +0,0 @@ -/* XPM */ -static char * hide_inactive_xpm[] = { -"28 28 5 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -"# c #666A73", -"............................", -"++++++++++++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@######@@@@@@@@@@@", -"@@@@@@@@@@@######@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/hide-prelight.xpm b/common/xfwm4-dark/hide-prelight.xpm deleted file mode 100644 index 34a84dc..0000000 --- a/common/xfwm4-dark/hide-prelight.xpm +++ /dev/null @@ -1,53 +0,0 @@ -/* XPM */ -static char * hide_prelight_xpm[] = { -"28 28 22 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -"# c #2E333E", -"$ c #2A2E37", -"% c #262B34", -"& c #252932", -"* c #2A2E38", -"= c #657b83", -"- c #262A34", -"; c #2F3641", -"> c #3D4250", -", c #424959", -"' c #282B35", -") c #3D4353", -"! c #444B5B", -"~ c #3D4252", -"{ c #262B33", -"] c #3B4250", -"^ c #93a1a1", -"/ c #252933", -"............................", -"++++++++++++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@#$%&&%*#@@@@@@@@@@", -"@@@@@@@@@=-;>,,>;-=@@@@@@@@@", -"@@@@@@@@=')!!!!!!~'=@@@@@@@@", -"@@@@@@@#-)!!!!!!!!~-#@@@@@@@", -"@@@@@@@$;!!!!!!!!!!;*@@@@@@@", -"@@@@@@@{]!!!!!!!!!!]%@@@@@@@", -"@@@@@@@&,!!^^^^^^!!,/@@@@@@@", -"@@@@@@@/,!!^^^^^^!!,/@@@@@@@", -"@@@@@@@%]!!!!!!!!!!]%@@@@@@@", -"@@@@@@@*;!!!!!!!!!!;*@@@@@@@", -"@@@@@@@#-~!!!!!!!!~%#@@@@@@@", -"@@@@@@@@='~!!!!!!~'=@@@@@@@@", -"@@@@@@@@@=-;],,];%=@@@@@@@@@", -"@@@@@@@@@@#*%&&%*#@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/hide-pressed.xpm b/common/xfwm4-dark/hide-pressed.xpm deleted file mode 100644 index 4499c0d..0000000 --- a/common/xfwm4-dark/hide-pressed.xpm +++ /dev/null @@ -1,56 +0,0 @@ -/* XPM */ -static char * hide_pressed_xpm[] = { -"28 28 25 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -"# c #2F343B", -"$ c #313C48", -"% c #406691", -"& c #4C81C1", -"* c #508FDA", -"= c #4B82C2", -"- c #406590", -"; c #3A5372", -"> c #508FD8", -", c #268bd2", -"' c #3A5371", -") c #5193E1", -"! c #4F8ED8", -"~ c #323B49", -"{ c #406490", -"] c #4B82C3", -"^ c #fdf6e3", -"/ c #40648E", -"( c #313B48", -"_ c #395371", -": c #4B81C1", -"............................", -"++++++++++++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@########################@@", -"@@########################@@", -"@@########$%&**=-$########@@", -"@@#######;>,,,,,,>'#######@@", -"@@######;),,,,,,,,)'######@@", -"@@#####$>,,,,,,,,,,!~#####@@", -"@@#####%,,,,,,,,,,,,{#####@@", -"@@#####],,,,,,,,,,,,=#####@@", -"@@#####*,,,^^^^^^,,,>#####@@", -"@@#####>,,,^^^^^^,,,!#####@@", -"@@#####&,,,,,,,,,,,,=#####@@", -"@@#####-,,,,,,,,,,,,/#####@@", -"@@#####$>,,,,,,,,,,!(#####@@", -"@@######'),,,,,,,,)_######@@", -"@@#######'!,,,,,,!_#######@@", -"@@########~{:**:/(########@@", -"@@########################@@", -"@@########################@@", -"@@########################@@", -"@@########################@@", -"@@########################@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/maximize-active.xpm b/common/xfwm4-dark/maximize-active.xpm deleted file mode 100644 index b7a8afd..0000000 --- a/common/xfwm4-dark/maximize-active.xpm +++ /dev/null @@ -1,43 +0,0 @@ -/* XPM */ -static char * maximize_active_xpm[] = { -"28 28 12 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -"# c #313641", -"$ c #70757E", -"% c #8F939A", -"& c #7D8089", -"* c #73777F", -"= c #323641", -"- c #6E717B", -"; c #7E818A", -"............................", -"++++++++++++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@#$%%&@@@@@@@@@@@", -"@@@@@@@@@@@#@#$%%@@@@@@@@@@@", -"@@@@@@@@@@@*=@@-%@@@@@@@@@@@", -"@@@@@@@@@@@%*=@@-@@@@@@@@@@@", -"@@@@@@@@@@@%%$#@#@@@@@@@@@@@", -"@@@@@@@@@@@;%%$#@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/maximize-inactive.xpm b/common/xfwm4-dark/maximize-inactive.xpm deleted file mode 100644 index 5508d4e..0000000 --- a/common/xfwm4-dark/maximize-inactive.xpm +++ /dev/null @@ -1,43 +0,0 @@ -/* XPM */ -static char * maximize_inactive_xpm[] = { -"28 28 12 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -"# c #303540", -"$ c #545862", -"% c #666A73", -"& c #5C5F68", -"* c #2E333F", -"= c #555A64", -"- c #525761", -"; c #5B5F69", -"............................", -"++++++++++++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@#$%%&@@@@@@@@@@@", -"@@@@@@@@@@@#@#$%%@@@@@@@@@@@", -"@@@@@@@@@@*=#@@-%@@@@@@@@@@@", -"@@@@@@@@@@*%=#@@-@@@@@@@@@@@", -"@@@@@@@@@@*%%$#@#@@@@@@@@@@@", -"@@@@@@@@@@@;%%$#@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/maximize-prelight.xpm b/common/xfwm4-dark/maximize-prelight.xpm deleted file mode 100644 index 695bec1..0000000 --- a/common/xfwm4-dark/maximize-prelight.xpm +++ /dev/null @@ -1,62 +0,0 @@ -/* XPM */ -static char * maximize_prelight_xpm[] = { -"28 28 31 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -"# c #2E333E", -"$ c #2A2E37", -"% c #262B34", -"& c #252932", -"* c #2A2E38", -"= c #657b83", -"- c #262A34", -"; c #2F3641", -"> c #3D4250", -", c #424959", -"' c #282B35", -") c #3D4353", -"! c #444B5B", -"~ c #3D4252", -"{ c #474D5E", -"] c #9B9FA6", -"^ c #93a1a1", -"/ c #ABAEB5", -"( c #262B33", -"_ c #3B4250", -": c #464D5D", -"< c #9EA2AB", -"[ c #484E5E", -"} c #454C5B", -"| c #979BA6", -"1 c #252933", -"2 c #ACAFB7", -"............................", -"++++++++++++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@#$%&&%*#@@@@@@@@@@", -"@@@@@@@@@=-;>,,>;-=@@@@@@@@@", -"@@@@@@@@=')!!!!!!~'=@@@@@@@@", -"@@@@@@@#-)!!!!!!!!~-#@@@@@@@", -"@@@@@@@$;!!!{]^^/!!;*@@@@@@@", -"@@@@@@@(_!!{!{]^^!!_%@@@@@@@", -"@@@@@@@&,!:<[!}|^!!,1@@@@@@@", -"@@@@@@@1,!:^<[!}|!!,1@@@@@@@", -"@@@@@@@%_!:^^]{!{!!_%@@@@@@@", -"@@@@@@@*;!!2^^]{!!!;*@@@@@@@", -"@@@@@@@#-~!!!!!!!!~%#@@@@@@@", -"@@@@@@@@='~!!!!!!~'=@@@@@@@@", -"@@@@@@@@@=-;_,,_;%=@@@@@@@@@", -"@@@@@@@@@@#*%&&%*#@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/maximize-pressed.xpm b/common/xfwm4-dark/maximize-pressed.xpm deleted file mode 100644 index c9cf5f8..0000000 --- a/common/xfwm4-dark/maximize-pressed.xpm +++ /dev/null @@ -1,65 +0,0 @@ -/* XPM */ -static char * maximize_pressed_xpm[] = { -"28 28 34 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -"# c #2F343B", -"$ c #313C48", -"% c #406691", -"& c #4C81C1", -"* c #508FDA", -"= c #4B82C2", -"- c #406590", -"; c #3A5372", -"> c #508FD8", -", c #268bd2", -"' c #3A5371", -") c #5193E1", -"! c #4F8ED8", -"~ c #323B49", -"{ c #5596E3", -"] c #C7DDF6", -"^ c #fdf6e3", -"/ c #DDEAF9", -"( c #406490", -"_ c #4B82C3", -": c #5395E2", -"< c #CCE0F6", -"[ c #5797E3", -"} c #5495E2", -"| c #C3DAF5", -"1 c #DFEBFA", -"2 c #40648E", -"3 c #313B48", -"4 c #395371", -"5 c #4B81C1", -"............................", -"++++++++++++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@###@@@@@@@@", -"@@@@@@@@##################@@", -"@@########################@@", -"@@########$%&**=-$########@@", -"@@#######;>,,,,,,>'#######@@", -"@@######;),,,,,,,,)'######@@", -"@@#####$>,,,,,,,,,,!~#####@@", -"@@#####%,,,,{]^^/,,,(#####@@", -"@@#####_,,,{,{]^^,,,=#####@@", -"@@#####*,,:<[,}|^,,,>#####@@", -"@@#####>,,:^<[,}|,,,!#####@@", -"@@#####&,,:^^]{,{,,,=#####@@", -"@@#####-,,,1^^]{,,,,2#####@@", -"@@#####$>,,,,,,,,,,!3#####@@", -"@@######'),,,,,,,,)4######@@", -"@@#######'!,,,,,,!4#######@@", -"@@########~(5**523########@@", -"@@########################@@", -"@@########################@@", -"@@########################@@", -"@@########################@@", -"@@########################@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/menu-active.xpm b/common/xfwm4-dark/menu-active.xpm deleted file mode 100644 index 4ce0be6..0000000 --- a/common/xfwm4-dark/menu-active.xpm +++ /dev/null @@ -1,21 +0,0 @@ -/* XPM */ -static char * menu_active_xpm[] = { -"26 16 2 1", -" c None", -". c #002b36", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -".........................."}; diff --git a/common/xfwm4-dark/menu-inactive.xpm b/common/xfwm4-dark/menu-inactive.xpm deleted file mode 100644 index ddad143..0000000 --- a/common/xfwm4-dark/menu-inactive.xpm +++ /dev/null @@ -1,21 +0,0 @@ -/* XPM */ -static char * menu_inactive_xpm[] = { -"26 16 2 1", -" c None", -". c #002b36", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -".........................."}; diff --git a/common/xfwm4-dark/menu-pressed.xpm b/common/xfwm4-dark/menu-pressed.xpm deleted file mode 100644 index fd57b2d..0000000 --- a/common/xfwm4-dark/menu-pressed.xpm +++ /dev/null @@ -1,21 +0,0 @@ -/* XPM */ -static char * menu_pressed_xpm[] = { -"26 16 2 1", -" c None", -". c #002b36", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -".........................."}; diff --git a/common/xfwm4-dark/shade-active.xpm b/common/xfwm4-dark/shade-active.xpm deleted file mode 100644 index 2b64e19..0000000 --- a/common/xfwm4-dark/shade-active.xpm +++ /dev/null @@ -1,36 +0,0 @@ -/* XPM */ -static char * shade_active_xpm[] = { -"18 28 5 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -"# c #A4AAB7", -"..................", -"++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@@@####@@@@@@@", -"@@@@@@######@@@@@@", -"@@@@@########@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@########@@@@@", -"@@@@@########@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/shade-inactive.xpm b/common/xfwm4-dark/shade-inactive.xpm deleted file mode 100644 index ed7f554..0000000 --- a/common/xfwm4-dark/shade-inactive.xpm +++ /dev/null @@ -1,36 +0,0 @@ -/* XPM */ -static char * shade_inactive_xpm[] = { -"18 28 5 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -"# c #797D87", -"..................", -"++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@@@####@@@@@@@", -"@@@@@@######@@@@@@", -"@@@@@########@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@########@@@@@", -"@@@@@########@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/shade-pressed.xpm b/common/xfwm4-dark/shade-pressed.xpm deleted file mode 100644 index 00a0f19..0000000 --- a/common/xfwm4-dark/shade-pressed.xpm +++ /dev/null @@ -1,36 +0,0 @@ -/* XPM */ -static char * shade_pressed_xpm[] = { -"18 28 5 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -"# c #268bd2", -"..................", -"++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@@@####@@@@@@@", -"@@@@@@######@@@@@@", -"@@@@@########@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@########@@@@@", -"@@@@@########@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/stick-active.xpm b/common/xfwm4-dark/stick-active.xpm deleted file mode 100644 index 6bf45a8..0000000 --- a/common/xfwm4-dark/stick-active.xpm +++ /dev/null @@ -1,36 +0,0 @@ -/* XPM */ -static char * stick_active_xpm[] = { -"18 28 5 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -"# c #A4AAB7", -"..................", -"++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@########@@@@@", -"@@@@@########@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/stick-inactive.xpm b/common/xfwm4-dark/stick-inactive.xpm deleted file mode 100644 index 0ca04d8..0000000 --- a/common/xfwm4-dark/stick-inactive.xpm +++ /dev/null @@ -1,36 +0,0 @@ -/* XPM */ -static char * stick_inactive_xpm[] = { -"18 28 5 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -"# c #797D87", -"..................", -"++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@########@@@@@", -"@@@@@########@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/stick-pressed.xpm b/common/xfwm4-dark/stick-pressed.xpm deleted file mode 100644 index 1d16bc7..0000000 --- a/common/xfwm4-dark/stick-pressed.xpm +++ /dev/null @@ -1,36 +0,0 @@ -/* XPM */ -static char * stick_pressed_xpm[] = { -"18 28 5 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -"# c #268bd2", -"..................", -"++++++++++++++++++", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@########@@@@@", -"@@@@@########@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@@@@##@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@", -"@@@@@@@@@@@@@@@@@@"}; diff --git a/common/xfwm4-dark/title-1-active.xpm b/common/xfwm4-dark/title-1-active.xpm deleted file mode 100644 index 0e113e0..0000000 --- a/common/xfwm4-dark/title-1-active.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * title_1_active_xpm[] = { -"5 28 4 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -".....", -"+++++", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@"}; diff --git a/common/xfwm4-dark/title-1-inactive.xpm b/common/xfwm4-dark/title-1-inactive.xpm deleted file mode 100644 index 79d9a7c..0000000 --- a/common/xfwm4-dark/title-1-inactive.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * title_1_inactive_xpm[] = { -"5 28 4 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -".....", -"+++++", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@"}; diff --git a/common/xfwm4-dark/title-2-active.xpm b/common/xfwm4-dark/title-2-active.xpm deleted file mode 100644 index aa7e2af..0000000 --- a/common/xfwm4-dark/title-2-active.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * title_2_active_xpm[] = { -"5 28 4 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -".....", -"+++++", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@"}; diff --git a/common/xfwm4-dark/title-2-inactive.xpm b/common/xfwm4-dark/title-2-inactive.xpm deleted file mode 100644 index eb53989..0000000 --- a/common/xfwm4-dark/title-2-inactive.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * title_2_inactive_xpm[] = { -"5 28 4 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -".....", -"+++++", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@"}; diff --git a/common/xfwm4-dark/title-3-active.xpm b/common/xfwm4-dark/title-3-active.xpm deleted file mode 100644 index 000dded..0000000 --- a/common/xfwm4-dark/title-3-active.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * title_3_active_xpm[] = { -"5 28 4 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -".....", -"+++++", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@"}; diff --git a/common/xfwm4-dark/title-3-inactive.xpm b/common/xfwm4-dark/title-3-inactive.xpm deleted file mode 100644 index c3be5e6..0000000 --- a/common/xfwm4-dark/title-3-inactive.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * title_3_inactive_xpm[] = { -"5 28 4 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -".....", -"+++++", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@"}; diff --git a/common/xfwm4-dark/title-4-active.xpm b/common/xfwm4-dark/title-4-active.xpm deleted file mode 100644 index 075e9dc..0000000 --- a/common/xfwm4-dark/title-4-active.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * title_4_active_xpm[] = { -"5 28 4 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -".....", -"+++++", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@"}; diff --git a/common/xfwm4-dark/title-4-inactive.xpm b/common/xfwm4-dark/title-4-inactive.xpm deleted file mode 100644 index a0d5e36..0000000 --- a/common/xfwm4-dark/title-4-inactive.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * title_4_inactive_xpm[] = { -"5 28 4 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -".....", -"+++++", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@"}; diff --git a/common/xfwm4-dark/title-5-active.xpm b/common/xfwm4-dark/title-5-active.xpm deleted file mode 100644 index 892b1ad..0000000 --- a/common/xfwm4-dark/title-5-active.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * title_5_active_xpm[] = { -"5 28 4 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -".....", -"+++++", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@"}; diff --git a/common/xfwm4-dark/title-5-inactive.xpm b/common/xfwm4-dark/title-5-inactive.xpm deleted file mode 100644 index 1c53338..0000000 --- a/common/xfwm4-dark/title-5-inactive.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * title_5_inactive_xpm[] = { -"5 28 4 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -".....", -"+++++", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@", -"@@@@@"}; diff --git a/common/xfwm4-dark/top-left-active.xpm b/common/xfwm4-dark/top-left-active.xpm deleted file mode 100644 index 3619b21..0000000 --- a/common/xfwm4-dark/top-left-active.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * top_left_active_xpm[] = { -"2 28 4 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -" .", -".+", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@"}; diff --git a/common/xfwm4-dark/top-left-inactive.xpm b/common/xfwm4-dark/top-left-inactive.xpm deleted file mode 100644 index 302215b..0000000 --- a/common/xfwm4-dark/top-left-inactive.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * top_left_inactive_xpm[] = { -"2 28 4 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -" .", -".+", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@", -".@"}; diff --git a/common/xfwm4-dark/top-right-active.xpm b/common/xfwm4-dark/top-right-active.xpm deleted file mode 100644 index 2c2fd0c..0000000 --- a/common/xfwm4-dark/top-right-active.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * top_right_active_xpm[] = { -"2 28 4 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -". ", -"+.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@."}; diff --git a/common/xfwm4-dark/top-right-inactive.xpm b/common/xfwm4-dark/top-right-inactive.xpm deleted file mode 100644 index 03e24d3..0000000 --- a/common/xfwm4-dark/top-right-inactive.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * top_right_inactive_xpm[] = { -"2 28 4 1", -" c None", -". c #21252B", -"+ c #353B48", -"@ c #002b36", -". ", -"+.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@.", -"@."}; diff --git a/common/xfwm4/assets-dark.svg b/common/xfwm4/assets-dark.svg deleted file mode 100644 index 795261c..0000000 --- a/common/xfwm4/assets-dark.svg +++ /dev/null @@ -1,1764 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="224" - height="217" - viewBox="0 0 224 217" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="assets-dark.svg"> - <defs - id="defs4"> - <linearGradient - id="selected_bg_color" - osb:paint="solid"> - <stop - style="stop-color:#268bd2;stop-opacity:1;" - offset="0" - id="stop4421" /> - </linearGradient> - <linearGradient - id="selected_fg_color" - osb:paint="solid"> - <stop - style="stop-color:#fdf6e3git;stop-opacity:1;" - offset="0" - id="stop4416" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_fg_color" - id="linearGradient4418" - x1="89.0002" - y1="974" - x2="89.0002" - y2="976" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_fg_color" - id="linearGradient4420" - x1="88.996741" - y1="972" - x2="88.996741" - y2="978.00692" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4423" - x1="608.36218" - y1="-157.99998" - x2="608.36218" - y2="-150.00001" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4425" - x1="154" - y1="601.86216" - x2="154" - y2="606.36218" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4427" - x1="568.36218" - y1="-155.99998" - x2="568.36218" - y2="-148.00001" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4429" - x1="152" - y1="564.36218" - x2="152" - y2="572.36216" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4431" - x1="1376" - y1="248" - x2="1376" - y2="262" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4433" - x1="1376" - y1="248" - x2="1376" - y2="262" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#fdf6e3" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="8" - inkscape:cx="52.856479" - inkscape:cy="23.766568" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="false" - units="px" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="false" - inkscape:snap-bbox-midpoints="true" - inkscape:object-paths="true" - inkscape:snap-intersection-paths="false" - inkscape:object-nodes="true" - inkscape:snap-nodes="true" - fit-margin-top="10" - fit-margin-left="10" - fit-margin-right="10" - fit-margin-bottom="10"> - <inkscape:grid - type="xygrid" - id="grid4136" - originx="5" - originy="-288" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(5,-547.36215)"> - <rect - style="opacity:1;fill:#002b36;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="menu-active" - width="26" - height="16" - x="5" - y="662.36218" - inkscape:label="#rect4138-3" /> - <use - x="0" - y="0" - xlink:href="#g4206" - id="title-1-active" - transform="matrix(0.17857143,0,0,1,4.1071429,131.99998)" - width="100%" - height="100%" - inkscape:label="#use4212" /> - <g - id="stick-active" - inkscape:label="#g5228"> - <use - height="100%" - width="100%" - transform="matrix(0.64285714,0,0,1,141.78571,-2.2617187e-5)" - id="use4210" - xlink:href="#g4206" - y="0" - x="0" /> - <g - style="fill:#a4aab7;fill-opacity:1" - transform="translate(1.9999997,2.9999886)" - id="g5140"> - <rect - style="opacity:1;fill:#a4aab7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect5123" - width="2" - height="7.9999776" - x="151" - y="564.36218" /> - <rect - style="opacity:1;fill:#a4aab7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect5123-1" - width="2" - height="7.9999776" - x="567.36218" - y="-155.99998" - transform="matrix(0,1,-1,0,0,0)" /> - </g> - </g> - <g - id="stick-pressed" - inkscape:label="#g5234"> - <use - height="100%" - width="100%" - transform="translate(23,-7.3828127e-6)" - id="use5113" - xlink:href="#use4210" - y="0" - x="0" /> - <g - style="fill:#268bd2;fill-opacity:1" - transform="translate(25,2.9999812)" - id="g5140-7"> - <rect - style="opacity:1;fill:url(#linearGradient4429);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect5123-7" - width="2" - height="7.9999776" - x="151" - y="564.36218" /> - <rect - style="opacity:1;fill:url(#linearGradient4427);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect5123-1-1" - width="2" - height="7.9999776" - x="567.36218" - y="-155.99998" - transform="matrix(0,1,-1,0,0,0)" /> - </g> - </g> - <g - id="stick-inactive" - inkscape:label="#g5240"> - <use - height="100%" - width="100%" - transform="translate(46,-7.3828127e-6)" - id="use5115" - xlink:href="#use4210" - y="0" - x="0" /> - <g - style="fill:#797d87;fill-opacity:1" - transform="translate(48,2.9999812)" - id="g5140-1"> - <rect - style="opacity:1;fill:#797d87;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect5123-5" - width="2" - height="7.9999776" - x="151" - y="564.36218" /> - <rect - style="opacity:1;fill:#797d87;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect5123-1-9" - width="2" - height="7.9999776" - x="567.36218" - y="-155.99998" - transform="matrix(0,1,-1,0,0,0)" /> - </g> - </g> - <g - id="shade-active" - inkscape:label="#g5258"> - <use - height="100%" - width="100%" - transform="translate(-3.4e-7,32.999993)" - id="use5117" - xlink:href="#use4210" - y="0" - x="0" /> - <g - style="fill:#a4aab7;fill-opacity:1" - transform="translate(-4.68e-6,-1.0000226)" - id="g5193"> - <rect - transform="matrix(0,1,-1,0,0,0)" - y="-157.99998" - x="607.36218" - height="7.9999776" - width="2" - id="rect5123-1-7" - style="opacity:1;fill:#a4aab7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <path - style="opacity:1;fill:#a4aab7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 154,601.86216 4,4.50002 -8,0 z" - id="rect5190" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - </g> - </g> - <g - id="shade-pressed" - inkscape:label="#g5252"> - <use - height="100%" - width="100%" - transform="translate(23,32.999993)" - id="use5119" - xlink:href="#use4210" - y="0" - x="0" /> - <g - style="fill:#268bd2;fill-opacity:1" - transform="translate(22.999996,-1.0000226)" - id="g5193-7"> - <rect - transform="matrix(0,1,-1,0,0,0)" - y="-157.99998" - x="607.36218" - height="7.9999776" - width="2" - id="rect5123-1-7-6" - style="opacity:1;fill:url(#linearGradient4423);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <path - style="opacity:1;fill:url(#linearGradient4425);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 154,601.86216 4,4.50002 -8,0 z" - id="rect5190-7" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - </g> - </g> - <g - id="shade-inactive" - inkscape:label="#g5246"> - <use - height="100%" - width="100%" - transform="translate(46,32.999993)" - id="use5121" - xlink:href="#use4210" - y="0" - x="0" /> - <g - style="fill:#797d87;fill-opacity:1" - transform="translate(45.999996,-1.0000226)" - id="g5193-3"> - <rect - transform="matrix(0,1,-1,0,0,0)" - y="-157.99998" - x="607.36218" - height="7.9999776" - width="2" - id="rect5123-1-7-65" - style="opacity:1;fill:#797d87;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <path - style="opacity:1;fill:#797d87;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 154,601.86216 4,4.50002 -8,0 z" - id="rect5190-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - </g> - </g> - <use - x="0" - y="0" - xlink:href="#menu-active" - id="menu-inactive" - transform="translate(62,-2.2617187e-5)" - width="100%" - height="100%" - inkscape:label="#use5268" /> - <use - x="0" - y="0" - xlink:href="#menu-active" - id="menu-pressed" - transform="translate(31,-2.2617187e-5)" - width="100%" - height="100%" - inkscape:label="#use5270" /> - <use - x="0" - y="0" - xlink:href="#title-1-active" - id="title-2-active" - transform="translate(6.9999999,-2.6171874e-6)" - width="100%" - height="100%" - inkscape:label="#use5296" /> - <use - x="0" - y="0" - xlink:href="#title-1-active" - id="title-3-active" - transform="translate(14,-2.6171872e-6)" - width="100%" - height="100%" - inkscape:label="#use5298" /> - <use - x="0" - y="0" - xlink:href="#title-1-active" - id="title-4-active" - transform="translate(21,-2.6171874e-6)" - width="100%" - height="100%" - inkscape:label="#use5300" /> - <use - x="0" - y="0" - xlink:href="#title-1-active" - id="title-5-active" - transform="translate(28,-2.6171874e-6)" - width="100%" - height="100%" - inkscape:label="#use5302" /> - <use - x="0" - y="0" - xlink:href="#title-1-active" - id="title-1-inactive" - transform="translate(35,-2.6171874e-6)" - width="100%" - height="100%" - inkscape:label="#use5304" /> - <use - x="0" - y="0" - xlink:href="#title-1-active" - id="title-2-inactive" - transform="translate(42,-2.6171874e-6)" - width="100%" - height="100%" - inkscape:label="#use5306" /> - <use - x="0" - y="0" - xlink:href="#title-1-active" - id="title-3-inactive" - transform="translate(49,-2.6171874e-6)" - width="100%" - height="100%" - inkscape:label="#use5308" /> - <use - x="0" - y="0" - xlink:href="#title-1-active" - id="title-4-inactive" - transform="translate(56,-2.6171874e-6)" - width="100%" - height="100%" - inkscape:label="#use5310" /> - <use - x="0" - y="0" - xlink:href="#title-1-active" - id="title-5-inactive" - transform="translate(63,-2.6171874e-6)" - width="100%" - height="100%" - inkscape:label="#use5312" /> - <g - id="top-left-active" - inkscape:label="#g5352"> - <path - id="rect4138-9" - transform="translate(0,552.36216)" - d="m 6,174 0,1 -1,0 0,27 2,0 0,-28 -1,0 z" - style="opacity:1;fill:#002b36;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <rect - y="726.36218" - x="6" - height="1" - width="1" - id="rect5348" - style="opacity:1;fill:#21252b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - style="opacity:1;fill:#21252b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect5512" - width="1" - height="27.000029" - x="5" - y="727.36212" /> - <rect - style="opacity:1;fill:#353b48;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect5514" - width="1" - height="1" - x="6" - y="727.36212" /> - </g> - <use - x="0" - y="0" - xlink:href="#top-left-active" - id="top-left-inactive" - transform="translate(4,-2.2617187e-5)" - width="100%" - height="100%" - inkscape:label="#use5357" /> - <use - x="0" - y="0" - xlink:href="#top-left-active" - id="top-right-active" - transform="matrix(-1,0,0,1,20,-2.2617187e-5)" - width="100%" - height="100%" - inkscape:label="#use5359" /> - <use - x="0" - y="0" - xlink:href="#top-left-active" - id="top-right-inactive" - transform="matrix(-1,0,0,1,24,-2.2617187e-5)" - width="100%" - height="100%" - inkscape:label="#use5361" /> - <g - id="close-active" - inkscape:label="#g5279"> - <g - style="opacity:1" - id="g4206"> - <rect - style="opacity:1;fill:#002b36;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect4138" - width="28" - height="28" - x="5" - y="557.36218" /> - <rect - style="opacity:1;fill:#353b48;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect4204" - width="28" - height="1" - x="5" - y="558.36212" /> - <rect - style="opacity:1;fill:#21252b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect4204-3" - width="28" - height="1" - x="5" - y="557.36212" /> - </g> - <g - transform="translate(7,559.3622)" - id="g4663" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-7" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-dark-8" - inkscape:label="#g6210" - transform="translate(-641,1218)"> - <g - id="g4927-9-2-8-4" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2-5-3-6"> - <g - id="g4092-0-2-21-0-9-7-0" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#dc322f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" - transform="translate(962.00001,190.00002)" - id="path4068-7-5-9-6-5-8-5" /> - </g> - </g> - <g - id="g4778-2-68-8-7-9" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-4-4-1-1-7" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8-0-4-4" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-4-9-6-9-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5-96-3-7" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7-9-4-5" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5-6-3-8" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-6-11-3-1-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-0-33-2-4-8" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-3-0-6-6-3" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39-99-8-8" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> - </g> - </g> - <g - id="close-prelight" - inkscape:label="#g5303"> - <use - height="100%" - width="100%" - transform="translate(33,-2.2617187e-5)" - id="use4214" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(40,559.36215)" - id="g4721" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-0" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-hover-dark" - inkscape:label="#g6260" - transform="translate(-538,1218)"> - <g - id="g4927-97-4" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-9-1-3"> - <g - id="g4092-0-2-3-4-6" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#cb4b16;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 414,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,97.867188 415.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 411.05288,97.088403 410.98357,96.882438 411,96.671875 l 0,-0.75 z" - transform="translate(962,156.00002)" - id="path4068-7-5-8-2-3" /> - </g> - </g> - <g - id="g4778-4-0-2" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-44-1-6" - transform="translate(-60,-518)" /> - <g - id="layer10-2-9-3-3" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-3-1-7" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-9-3-3" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-7-1-2" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-3-3-7" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-02-1-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-7-9-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-4-7-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="542" - height="16" - width="16" - id="rect17883-5-4-2" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> - </g> - </g> - <g - id="close-pressed" - inkscape:label="#g5324"> - <use - height="100%" - width="100%" - transform="translate(66,-2.2617187e-5)" - id="use4216" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(73.00001,559.36215)" - id="g4779" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-79" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-active-dark" - inkscape:label="#g6332" - transform="translate(-437.00001,1218)"> - <g - id="g4927-8-7-4-9" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-3-7-46-6"> - <g - id="g4092-0-2-2-1-7-2" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#dc322f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 414,109 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.92188 0.75,0 c 0.008,-1e-4 0.0156,-3.5e-4 0.0234,0 0.19121,0.008 0.3824,0.0964 0.51562,0.23437 l 1.71094,1.71094 1.73438,-1.71094 c 0.19921,-0.17287 0.335,-0.22913 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0258,0.41298 -0.1875,0.5625 l -1.71094,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 414,117 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15806,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" - transform="translate(962.00001,139.00001)" - id="path4068-7-5-4-9-7-6" /> - </g> - </g> - <g - id="g4778-3-6-0-5" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-6-0-90-6" - transform="translate(-60,-518)" /> - <g - id="layer10-2-3-6-6-1" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-2-2-6-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-7-0-2-0" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-6-3-5-2" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-4-1-7-0" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-0-2-8-3" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-4-0-5-8" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-5-0-0-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="441" - height="16" - width="16" - id="rect17883-02-4-3" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> - </g> - </g> - <g - id="close-inactive" - inkscape:label="#g5345"> - <use - height="100%" - width="100%" - transform="translate(99,-2.2617187e-5)" - id="use4218" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(106.00002,559.36215)" - id="g4837" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-8" - transform="translate(0,-1028.3622)"> - <g - style="display:inline;opacity:0.4" - id="titlebutton-close-backdrop-dark" - inkscape:label="#g6210" - transform="translate(-641.00002,1218)"> - <g - id="g4927-9-2-8-0" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2-5-3-3"> - <g - id="g4092-0-2-21-0-9-7-0-9" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 414,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 414,63.867188 415.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 416.9302,66.77394 416.99999,66.9729 417,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 414,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 411.05288,63.088403 410.98357,62.882438 411,62.671875 l 0,-0.75 z" - transform="translate(962.00001,190.00002)" - id="path4068-7-5-9-6-5-8-3" /> - </g> - </g> - <g - id="g4778-2-68-8-7-6" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-4-4-1-1-0" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8-0-4-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-4-9-6-9-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5-96-3-0" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7-9-4-0" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5-6-3-3" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-6-11-3-1-8" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-0-33-2-4-4" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-3-0-6-6-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39-99-8-6" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> - </g> - </g> - <g - id="maximize-active" - inkscape:label="#g5436"> - <use - height="100%" - width="100%" - transform="translate(0,32.999977)" - id="use4220" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(7.00002,592.36215)" - id="g4885" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-4" - transform="translate(0,-1028.3622)"> - <g - style="display:inline;opacity:0.7" - id="titlebutton-max-dark" - inkscape:label="#g6234" - transform="translate(-612.00002,1218)"> - <g - id="g7146-16-4" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-96-8-9"> - <g - id="g4092-0-6-83-7-4" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-95-1-7" - style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - y="-185.63782" - x="616" - height="16" - width="16" - id="rect17883-29-2-2" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> - </g> - </g> - <g - id="maximize-prelight" - inkscape:label="#g5415"> - <use - height="100%" - width="100%" - transform="translate(33,32.999977)" - id="use4222" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(40,592.36215)" - id="g4933" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-6" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover-dark" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891-5-8" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4-6-6" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78-2-6" - inkscape:connector-curvature="0" /> - <g - id="g4806-9-0-6" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7-6-6" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3-2-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75-1-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9-2-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5-0-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8-0-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7-5-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1-4-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0-0-6"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:1;fill:#93a1a1;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6-7-1" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0-1-5" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> - </g> - </g> - <g - id="maximize-pressed" - inkscape:label="#g5377"> - <use - height="100%" - width="100%" - transform="translate(66,32.999977)" - id="use4228" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(73.000005,592.36215)" - id="g5011" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-65" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover-dark-6" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891-5-8-9" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4-6-6-3" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78-2-6-7" - inkscape:connector-curvature="0" /> - <g - id="g4806-9-0-6-4" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7-6-6-5" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3-2-7-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75-1-2-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9-2-3-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5-0-4-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8-0-4-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7-5-9-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1-4-1-3" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0-0-6-0"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:1;fill:#93a1a1;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6-7-1-7" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0-1-5-8" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - <g - style="display:inline" - id="titlebutton-max-active-dark" - inkscape:label="#g6356" - transform="translate(-408.00001,1218)"> - <g - id="g4891-4-5-5" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-132,0)" - style="display:inline;opacity:1" - id="g4490-2-9-1-2-4-8"> - <g - id="g4092-0-6-3-6-8-3-7" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:url(#linearGradient4433);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-1-6-6-0" /> - </g> - </g> - <g - id="g4806-5-2-2-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-2-0-0-8" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-9-9-51-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-7-6-4-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-7-4-0-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-9-7-6-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-4-2-4-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-4-6-4-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-0-8-22-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-7-2-3-1"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="fill:url(#linearGradient4420);fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-4-9-0-2" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="412" - height="16" - width="16" - id="rect17883-79-3-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> - </g> - </g> - <g - id="maximize-inactive" - inkscape:label="#g5366"> - <use - height="100%" - width="100%" - transform="translate(99,32.999977)" - id="use4232" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(106.00002,592.36215)" - id="g5076" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-06" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-max-backdrop-dark" - inkscape:label="#g6521" - style="display:inline;opacity:0.4" - transform="translate(-612.00002,1201)"> - <g - style="display:inline;opacity:1" - id="g7146-1-1-6" - transform="translate(-781,-415.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-6-0"> - <g - id="g4092-0-6-9-2" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-6-4" - style="display:inline;opacity:1;fill:#b9bcc2;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-6-2-5" - width="16" - height="16" - x="616" - y="-168.63782" /> - </g> - </g> - </g> - </g> - <g - id="hide-active" - inkscape:label="#g5447"> - <use - height="100%" - width="100%" - transform="translate(0,65.999977)" - id="use4234" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(7.00002,625.36215)" - id="g5113" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-48" - transform="translate(0,-1028.3622)"> - <g - style="display:inline;opacity:0.7" - id="titlebutton-min-dark" - inkscape:label="#g6247" - transform="translate(-583.00002,1218)"> - <g - id="g7138-6-5" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3-75-4-7"> - <g - id="g4092-0-7-0-4-9" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4-3-8-5" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - <rect - y="-185.63782" - x="587" - height="16" - width="16" - id="rect17883-32-6-9" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> - </g> - </g> - <g - id="hide-prelight" - inkscape:label="#g5458"> - <use - height="100%" - width="100%" - transform="translate(33,65.999977)" - id="use4226" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(40,625.36215)" - id="g5160" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-061" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-hover-dark" - inkscape:label="#g6308" - transform="translate(-480,1218)"> - <g - id="g4909-3-7" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1273" - style="display:inline;opacity:0.45;fill:#5f697f;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-1-6-1" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.37000002;fill:#15171c;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-23-4-3" - inkscape:connector-curvature="0" /> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-0-4-5" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-4-15-6" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-1-8-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-6-4-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-4-8-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-0-8-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-1-7-5" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-9-9-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-2-7-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-6-2-7"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#93a1a1;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-8-2-3" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="484" - height="16" - width="16" - id="rect17883-11-4-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> - </g> - </g> - <g - id="hide-pressed" - inkscape:label="#g5479"> - <use - height="100%" - width="100%" - transform="translate(66,65.999977)" - id="use4236" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(73.00001,625.36215)" - id="g5222" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-1" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-active-dark" - inkscape:label="#g6414" - transform="translate(-379.00001,1218)"> - <g - id="g4909-1-2-0" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-161,0)" - style="display:inline;opacity:1" - id="g4490-3-6-1-4-1-6"> - <g - id="g4092-0-7-2-0-0-94-2" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:url(#linearGradient4431);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-3-0-3-6-8-3" /> - </g> - </g> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-9-3-8-5" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-9-1-0-4" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-0-5-8-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-5-2-6-8" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-7-4-2-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-2-3-2-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-0-6-6-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-4-6-0-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-6-8-7-4" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-3-7-96-7"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4418);fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-3-5-1-1" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-79-9-2-2" - width="16" - height="16" - x="383" - y="-185.63782" /> - </g> - </g> - </g> - </g> - <g - id="hide-inactive" - inkscape:label="#g5501"> - <use - height="100%" - width="100%" - transform="translate(99,65.999977)" - id="use4238" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(106.00002,625.36215)" - id="g5270" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-63" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-min-backdrop-dark" - inkscape:label="#g6534" - style="display:inline;opacity:0.4" - transform="translate(-583.00002,1201)"> - <g - style="display:inline;opacity:1" - id="g7138-0-7-7" - transform="translate(-781,-415.63782)"> - <g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3-6-9"> - <g - id="g4092-0-7-6-5" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4-09-2" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#b9bcc2;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-3-46-6" - width="16" - height="16" - x="587" - y="-168.63782" /> - </g> - </g> - </g> - </g> - <rect - style="opacity:1;fill:#21252b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="right-active" - width="1" - height="16" - x="-37" - y="734.36212" - inkscape:label="#rect4138-3" - transform="scale(-1,1)" /> - <rect - style="opacity:1;fill:#21252b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="right-inactive" - width="1" - height="16" - x="-39" - y="734.36212" - inkscape:label="#rect4138-3" - transform="scale(-1,1)" /> - <rect - style="opacity:1;fill:#21252b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="bottom-inactive" - width="2.9999716" - height="16" - x="-750.36212" - y="-60" - inkscape:label="#rect4138-3" - transform="matrix(0,-1,-1,0,0,0)" /> - <rect - style="opacity:1;fill:#21252b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="left-active" - width="1" - height="16" - x="-33" - y="734.36212" - inkscape:label="#rect4138-3" - transform="scale(-1,1)" /> - <rect - style="opacity:1;fill:#21252b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="left-inactive" - width="1" - height="16" - x="-35" - y="734.36212" - inkscape:label="#rect4138-3" - transform="scale(-1,1)" /> - <rect - style="opacity:1;fill:#21252b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="bottom-active" - width="3.0000284" - height="16" - x="-746.36212" - y="-60" - inkscape:label="#rect4138-3" - transform="matrix(0,-1,-1,0,0,0)" /> - <path - inkscape:connector-curvature="0" - style="opacity:1;fill:#21252b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 40,743.36215 0,2 1,0 0,1 2,0 0,-3 -3,0 z" - id="bottom-left-active" /> - <path - inkscape:connector-curvature="0" - style="opacity:1;fill:#21252b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 61,743.36215 0,3 2,0 0,-1 1,0 0,-2 -3,0 z" - id="bottom-right-active" /> - <path - inkscape:connector-curvature="0" - style="opacity:1;fill:#21252b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 61,747.36215 0,3 2,0 0,-1 1,0 0,-2 -3,0 z" - id="bottom-right-inactive" /> - <path - inkscape:connector-curvature="0" - style="opacity:1;fill:#21252b;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 40,747.36215 0,2 1,0 0,1 2,0 0,-3 -3,0 z" - id="bottom-left-inactive" /> - </g> -</svg> diff --git a/common/xfwm4/assets-dark/bottom-active.png b/common/xfwm4/assets-dark/bottom-active.png deleted file mode 100644 index fe31d88ab2e17b5e89a34776ab70da7c47c47f57..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~n!3HE}ZR`&LQY^(zo*^7SP{WbZ0pxQQctjQh z)n5l;MkkHg6+l7B64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1UVJY5_^ pIA$h?gk1f1-hnY;k&AIC4^X(7vFzQ?WOtwn22WQ%mvv4FO#m`yC^-NC diff --git a/common/xfwm4/assets-dark/bottom-inactive.png b/common/xfwm4/assets-dark/bottom-inactive.png deleted file mode 100644 index fe31d88ab2e17b5e89a34776ab70da7c47c47f57..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~n!3HE}ZR`&LQY^(zo*^7SP{WbZ0pxQQctjQh z)n5l;MkkHg6+l7B64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1UVJY5_^ pIA$h?gk1f1-hnY;k&AIC4^X(7vFzQ?WOtwn22WQ%mvv4FO#m`yC^-NC diff --git a/common/xfwm4/assets-dark/bottom-left-active.png b/common/xfwm4/assets-dark/bottom-left-active.png deleted file mode 100644 index ae1e12242c64ded1390f3cdcd823e2bc80ce726f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^%plCc1|-8Yw(bW~EX7WqAsj$Z!;#Vf<Z~8yL>2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4<ivthz5Jr|+3#$mfQqC%T^vI= uW+sP(T>W>Rfz^k{qhVrWV<V#)H-q(lrl(7PzcU4@V(@hJb6Mw<&;$U&RVqgS diff --git a/common/xfwm4/assets-dark/bottom-left-inactive.png b/common/xfwm4/assets-dark/bottom-left-inactive.png deleted file mode 100644 index ae1e12242c64ded1390f3cdcd823e2bc80ce726f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^%plCc1|-8Yw(bW~EX7WqAsj$Z!;#Vf<Z~8yL>2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4<ivthz5Jr|+3#$mfQqC%T^vI= uW+sP(T>W>Rfz^k{qhVrWV<V#)H-q(lrl(7PzcU4@V(@hJb6Mw<&;$U&RVqgS diff --git a/common/xfwm4/assets-dark/bottom-right-active.png b/common/xfwm4/assets-dark/bottom-right-active.png deleted file mode 100644 index b9280e39d68fb82a5c0657e0f638f6008fd5c899..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^%plCc1|-8Yw(bW~EX7WqAsj$Z!;#Vf<Z~8yL>2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4<ivthz5Jr|+3#$mK#DwF978x} sCWnMv{db;$)rZG};oQ#p-&)EH)-^0_S51~00u?cMy85}Sb4q9e0E*fu$^ZZW diff --git a/common/xfwm4/assets-dark/bottom-right-inactive.png b/common/xfwm4/assets-dark/bottom-right-inactive.png deleted file mode 100644 index b9280e39d68fb82a5c0657e0f638f6008fd5c899..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^%plCc1|-8Yw(bW~EX7WqAsj$Z!;#Vf<Z~8yL>2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4<ivthz5Jr|+3#$mK#DwF978x} sCWnMv{db;$)rZG};oQ#p-&)EH)-^0_S51~00u?cMy85}Sb4q9e0E*fu$^ZZW diff --git a/common/xfwm4/assets-dark/close-active.png b/common/xfwm4/assets-dark/close-active.png deleted file mode 100644 index f0852a8439f8f74bf4ae0c54f093507c6fb110de..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 413 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s3?yAI>n{UR%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0x30X`wF zimKZBCiaG=4o0R9rq&+T=8iVzPPP_KN%o$}4xTCYo|%r`S&m-WAmp9n<elr}mG9(T z=HgrK;#=k7TkGmq>*iPI=2!3P*Wl*g=;qhx?!Pu5d|g2J`amFxI2;;tBsBU6kPM4H z8X9vdEap^r?CJ2>GvTqOhu%*CI%A5bi(`n!#H$xh@--QVxFxRR+Imje*hBL~<$v{( z=3`UZ)_%;{|3&R@bHci-K8<I-B!^VqEe%~(vqG04!q(N+z$`<2YAf4;hEAC?jZas; zKhLdD`hoFI>h|f{0hSqzc}n68uMZ|_Z>nTEc2LT~OXl>!Vl(Ct##Sbw^WpbQAD-dJ uK3|ho^L^v{hl{u5+&1Do+J5;Tcl_A|ai%Kf6AysyWAJqKb6Mw<&;$Tk)t9vZ diff --git a/common/xfwm4/assets-dark/close-inactive.png b/common/xfwm4/assets-dark/close-inactive.png deleted file mode 100644 index 90b3eff83a0ea04321d09c297373cd605341f60f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 392 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s3?yAI>n{UR%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0v%0X`wF zimKZBCieO!4u)oq#uhFn7S5*D9*(X7j&6ZYZh<Zy!7iS`u0Z4kM4=wO;hugGUjC8Z zAQa^t5a}Hd<r5ek6Q3EA07O~I=>^H@g~=I(DH(;SnZ;>YMQK?;vgFOb=h{FUr+B(J zhG<N@df_x*lYxLkpj)?CK;QzKs0;W0|MxWi;c<I|>AklneT*ijM$4L=N?9zw*y!;l zAGf6&3K$-g^t7g*eJwDRnLFX&Ge)U|`fvX>G2dcvf1sACYHGmxf?=JKX@mEJy&{@& z4Zdq^J+FICjmT!W>b$-|t?<<97a|wutIIt8p1J$n-nYL$R$8C=eBsHYLp%N-QeS#b Wc+wTseM^AuWAJqKb6Mw<&;$S)j*#X6 diff --git a/common/xfwm4/assets-dark/close-prelight.png b/common/xfwm4/assets-dark/close-prelight.png deleted file mode 100644 index 9dddb8acac1f7c42891a94fd393f86974575dac1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 421 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s3?yAI>n{UR%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0v@0X`wF zimKZBCiaG=4o0R9rq&)dmM*qdE_PO~sb0b9-ar(R;T4kW7oO)EmhTr{07U)~h5q3s z0TI=~(KR74^&v4$p>fS&aV_C-tzq%4;qh(Z@$C@_+p-F_XBX}OqMV|$B~|B2D$kWx zoiC}nP+EPpyyj{}?X`;9>lL-~abD6um(28ZaSYLzc=f_bz9s_^x5RZ^qI29G)G`?@ z-~VsQEAYs?A$9(ncmAdOpO;1XJUQuN?>03wH~QWbZe?Z$HJRiq##h?Sw3tmB*kmJS zFn)HvE}QO<^-y-lsWk2M1zRpK#JKn|9Bb^~dSVsxmR8XX(=DdWef)+u!14)~hfI8B z=<jbF57S$oR_qJle}C_rZOsHR-(Zz}I|}a9KNMaOB;Fg@V!avYNCr<=KbLh*2~7Zj C8=UX} diff --git a/common/xfwm4/assets-dark/close-pressed.png b/common/xfwm4/assets-dark/close-pressed.png deleted file mode 100644 index 542bfe3daac672e13fd971e75f261e859bf9f457..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 410 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s3?yAI>n{UR%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0we0X`wF zimKZBCiVs<4n`*Srq&)-Cid2*K;#f>>JVq<5N~Q9Z|aa@=8$S?pK9umX6BG?=8$1# zpK0b$VCGP0=1^?rP-f;(Zst&7=1^(oP-W(@$Q+0q7n?gSv2fgG;ke!0al3`X4hzRU z7LI!@9QIl`?z3>TDt5~OI$*k|i(`n!#H$xh@--QVxFxRRnrh|mAgSYO@&12DUV%sE z4XN|ryz?*FcRh<bD{|7u-Ys?3y4Ag0iCK&XUTH34PHz4d7`cIgFXqug#%as<+3PnP zI&3}RWS)Nbf^Qd??zreNm^B;@OZm(&r=7Q8iq2%`2WuEZIF~YgIuIUr^M<@*y<3F; t^UHZP-?zPgIC)XlZLNOQmdpRR=Vx<?sVLOu7z3Ti;OXk;vd$@?2>@K9j#vNy diff --git a/common/xfwm4/assets-dark/hide-active.png b/common/xfwm4/assets-dark/hide-active.png deleted file mode 100644 index 20998daa42a3ab7af27d255ec1422dae30691e6e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*v3?%uJ&DntzbFq_W2nPqp?T7vkfLzW3kH})6 z^6MbX=%g{b0w^e1;u=vBoS#-wo>-L1P+nfHmzkGcoSayYs+V7sKKq@G6i^XQfKQ04 zqN=vOiM^?{$ArnVU#$M+3>25~ba4#fh)zyvU^o^UU^OMp<Z@Rw?+KG#Hoh4QU)J+x UmR+7422{u3>FVdQ&MBb@0B6TDBLDyZ diff --git a/common/xfwm4/assets-dark/hide-inactive.png b/common/xfwm4/assets-dark/hide-inactive.png deleted file mode 100644 index 6b089a9b323b6a50042aa2ee388b2aae52e707cc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 182 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*v3?%uJ&DntzbFq_W2nPqp?T7vkfLzW3kH})6 z^6MbX=%g{b0w^e1;u=vBoS#-wo>-L1P+nfHmzkGcoSayYs+V7sKKq@G6i^XQfKQ04 zqN=vOiM^?{M_N|N8qEM3pty{ui(?2!baF}q!?Dl+t0`$Fm%FlgPnhho@y%fPvYt1y T?DFI=pgIOmS3j3^P6<r_{j@PU diff --git a/common/xfwm4/assets-dark/hide-prelight.png b/common/xfwm4/assets-dark/hide-prelight.png deleted file mode 100644 index 60dc6465f8cd0bbd65340504b3b2f7f4790927bb..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 342 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s3?yAI>n{UR%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0xC0X`wF zimKYGTE=Q1WTLKZqON12sbi|CW2U8Np<`&JV`!~!Y^QGmMD_+|js|8<rq&)d&VjZd z6lCWT?Ccfk>=ote6LaMF8JX6dN<d?4JzX3_G$vlXaF?%Hfu}8T!=j^FT{$J+>z78K z_~WT)8~bgZ9jE4e!>HMlBB#{#w494-zv9IIdfsQb1J_@)vroVDLRF~d?P3R}!l#=X zn0{9zmN4a})lHpItiECQ!{9}i=N(-j<1%60`ZHfSUP>fpofS`-`F_i>51%g`+V%gC Zx!fnsdM)Q0=YS4j@O1TaS?83{1OUe(c@zKu diff --git a/common/xfwm4/assets-dark/hide-pressed.png b/common/xfwm4/assets-dark/hide-pressed.png deleted file mode 100644 index 9f51af991ff55efec0be88b1dcdd44959701c615..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 330 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s3?yAI>n{UR%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0u>0X`wF zimKZBCiaFlK1MdaMz+4D)*e>DB~~G&)*&ShsS_PjCOM`~c1)Y>-FV2m>97wFH6ID+ zyBW|AM7IJa+zy)jFlfr7|NsB%aIMk-npxuM;uxYa@#=-!Tn!2Wu7UYeBP09L{{LS- z)#IebXQ{XD;#_jaR#+(=>$Gz-U9Wh<b8A7v45rw}8;;*uXQ<WTuON7C;|Ya3URyZ+ zmX<AfS1!oZs{Qp%$Rm%MqntKPb?z@-|18<}T28xtdfLZ2N!I+tyZb+|gkR-f@#W+X QMxgx+p00i_>zopr0LycIEC2ui diff --git a/common/xfwm4/assets-dark/left-active.png b/common/xfwm4/assets-dark/left-active.png deleted file mode 100644 index c0e39f52bdcb613afa28be641beb2cce632fa2b8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^j6f{F!3HF+&llYeq*#ibJVQ8upoSx*1IXtr@Q5r1 zs=p4xj7}P}D}aKMC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6dzc)B=- paLh~&2)X+2{E-6(4mij%F%(NM_Ol&5G8-t*;OXk;vd$@?2>=v3DKP*5 diff --git a/common/xfwm4/assets-dark/left-inactive.png b/common/xfwm4/assets-dark/left-inactive.png deleted file mode 100644 index c0e39f52bdcb613afa28be641beb2cce632fa2b8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^j6f{F!3HF+&llYeq*#ibJVQ8upoSx*1IXtr@Q5r1 zs=p4xj7}P}D}aKMC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6dzc)B=- paLh~&2)X+2{E-6(4mij%F%(NM_Ol&5G8-t*;OXk;vd$@?2>=v3DKP*5 diff --git a/common/xfwm4/assets-dark/maximize-active.png b/common/xfwm4/assets-dark/maximize-active.png deleted file mode 100644 index b32615de0d0e074faf3d91cd61ffe83c1d48c75b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*t3?v(r4=o2$%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0v20X`wF zimKZBCiVuV4u)oqM&?eY)*g99)rF;XCFKpZjh%IkT@xnHuC`uk22^kE>Eak7F*P~C zfpwuqgQEZ|kHPht?=C9qHWYkyQ(4!xSjs4Tx2uNW%-we{2y|+1-CdEe$3aY-;Rc(s V!a~=X(||@Wc)I$ztaD0e0sv}wM)3du diff --git a/common/xfwm4/assets-dark/maximize-inactive.png b/common/xfwm4/assets-dark/maximize-inactive.png deleted file mode 100644 index b92be3dafc425ae036808f902ff943e9f0dad220..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 233 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*t3?v(r4=o2$%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0v20X`wF zimKZBCieO!4hE(UhGveY)*iv(i6N26VNoeD@tH9RnQ2)iG6ydH2dX#sba4!kn3|m6 zz`9VQ!BK#f$KZPHcNdj)9UfoZRMxdElr#$89cdvrbNAhgf}Pr1cc&!maS#({U<_6c Uev!%J12lrc)78&qol`;+0NF`I#Q*>R diff --git a/common/xfwm4/assets-dark/maximize-prelight.png b/common/xfwm4/assets-dark/maximize-prelight.png deleted file mode 100644 index 6659a6cc0ef47312d4a3a9b8d60823e2211b7084..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 390 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s3?yAI>n{UR%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0w?0X`wF zimKYGTE=Q1WTLKZqON12sbi|CW2U8Np<`&JV`!~!Y^QGmMD_+|js|8<rq&)d&VjZd z6lCWT?Ccfk>=ote6XWI^>){{g;U7O^&a&C_SIk?qdd>Q6Yd35^a{SEl-Wzj))=l+v zaSYLzc=f_XzC#K;tN{{>6r?9FEO{03@4t5LiDjOd6{h!&&s&nYUSRDUDM4ptd$;s0 zQ*K%Ct(96nMQwdfZ&`iYq>2q9bE9}eEt}Ggd@Mcrlk)-Z!B_`vE&&tAnF)1w680%C z>q}^#(ajX2@v32l_?<IrOywSgPO&_(@<;8`_1+!PobK!F<h^R;le^xt^S%BfzK>Ci XPfPk+$Cleb2QqlN`njxgN@xNAbqI)c diff --git a/common/xfwm4/assets-dark/maximize-pressed.png b/common/xfwm4/assets-dark/maximize-pressed.png deleted file mode 100644 index bf0d588c59849d606d9de5308ff795d494d1eec5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 391 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s3?yAI>n{UR%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0v%0X`wF zimKZBCiaFl-bU6wMm9dC)*cptg%&|YmO+JfNqu%n{dUO{?34OD8xDFk9Pk2?jfebu zZ}|7!3;?43n*kGU1x<b!H04q7)JGvxAB9eP96tT=;agvi-~D#x!MD4we%^om>;M1% zliGJ>0d1V@>EaloG4bk!+kDLmJZuReW*_%(M$O&T`@R0;)+0NX3gn6Zm-g6yp^Z!M zw5rfVmrv<aLd|)6HJxW<7hF7byr#u=@gogWnU}_GqM`D$x9Zzux0xF)ugH{;YIwQx zz#gHjHjAQ7ewiAF`!3|&u)MJC$gSI&%Q|YF&ikag;=Rzif4@TZ@3($a{xR~d)Mc?u eAt(Fihxq+(3B0iW&rt+)9)qW=pUXO@geCyHqN3UW diff --git a/common/xfwm4/assets-dark/menu-active.png b/common/xfwm4/assets-dark/menu-active.png deleted file mode 100644 index 614600ab5b3d808e8b486687b87f72dd9ee68acd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)g$P6Tn<o~_~Qq09po*^6@9Je3(KLBz$3p^r= zfy%FgFr$;k><XZuWQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6HXu`(1AIbU s^-b(&sy{jl<Z^quIEHY@CND4oasn6_-^Z!G2eKGEUHx3vIVCg!03q5a0{{R3 diff --git a/common/xfwm4/assets-dark/menu-inactive.png b/common/xfwm4/assets-dark/menu-inactive.png deleted file mode 100644 index 614600ab5b3d808e8b486687b87f72dd9ee68acd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)g$P6Tn<o~_~Qq09po*^6@9Je3(KLBz$3p^r= zfy%FgFr$;k><XZuWQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6HXu`(1AIbU s^-b(&sy{jl<Z^quIEHY@CND4oasn6_-^Z!G2eKGEUHx3vIVCg!03q5a0{{R3 diff --git a/common/xfwm4/assets-dark/menu-pressed.png b/common/xfwm4/assets-dark/menu-pressed.png deleted file mode 100644 index 614600ab5b3d808e8b486687b87f72dd9ee68acd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)g$P6Tn<o~_~Qq09po*^6@9Je3(KLBz$3p^r= zfy%FgFr$;k><XZuWQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6HXu`(1AIbU s^-b(&sy{jl<Z^quIEHY@CND4oasn6_-^Z!G2eKGEUHx3vIVCg!03q5a0{{R3 diff --git a/common/xfwm4/assets-dark/right-active.png b/common/xfwm4/assets-dark/right-active.png deleted file mode 100644 index c0e39f52bdcb613afa28be641beb2cce632fa2b8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^j6f{F!3HF+&llYeq*#ibJVQ8upoSx*1IXtr@Q5r1 zs=p4xj7}P}D}aKMC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6dzc)B=- paLh~&2)X+2{E-6(4mij%F%(NM_Ol&5G8-t*;OXk;vd$@?2>=v3DKP*5 diff --git a/common/xfwm4/assets-dark/right-inactive.png b/common/xfwm4/assets-dark/right-inactive.png deleted file mode 100644 index c0e39f52bdcb613afa28be641beb2cce632fa2b8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^j6f{F!3HF+&llYeq*#ibJVQ8upoSx*1IXtr@Q5r1 zs=p4xj7}P}D}aKMC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6dzc)B=- paLh~&2)X+2{E-6(4mij%F%(NM_Ol&5G8-t*;OXk;vd$@?2>=v3DKP*5 diff --git a/common/xfwm4/assets-dark/shade-active.png b/common/xfwm4/assets-dark/shade-active.png deleted file mode 100644 index 784965c97bb4fb560506e801b89b294b16e497a4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 259 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9T!3-p$rQ}6{6mzkYX9x!e$L)vy4}e_G0*}aI zpz`Y=%;=;sy8<XES>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkS%6Q7 ztD>s5zKOkose_TZld-w8sg;|lwTHQlyN#nyL0MBtWouPKPi=EwYxnf_zFGZK7fzhM zc*&~m>n8rZ05rkg)5S4FV`6f`0hSzzhDJeV9z8`qz7oZ-I>xdP#k4p_M?0|;MYTLf vg$IdFLXSjPnDzdcaXB&8DSFwMOmJd29L7>3wEKGw&?p8^S3j3^P6<r_qtZ*2 diff --git a/common/xfwm4/assets-dark/shade-inactive.png b/common/xfwm4/assets-dark/shade-inactive.png deleted file mode 100644 index f8baf64adc15b4442ee3ade8ad765bbc6fa18b29..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9T!3-p$rQ}6{6mzkYX9x!e$L)vy4}e_G0*}aI zpz`Y=%;=;sy8<XES>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkWq?nJ ztD>s5zKOlQiGzWugQ1zDk(r~hg|msJi>bATxs7{7Y<hHjW?XV^LTX-GR!MqJX-+{^ zZeew0ZTokwLw|sV*n7G-hG<MoPB_3KBhk<($jqas=;v3WXvXMR7NRI-r>IyLmZGR8 xr>O8C)lKM;5EFCWA2TjT#yUkW8<Po64934$PVF%-Tm>|W!PC{xWt~$(69AuwNC5x< diff --git a/common/xfwm4/assets-dark/shade-pressed.png b/common/xfwm4/assets-dark/shade-pressed.png deleted file mode 100644 index f7ee16c27ab00c30711ba8fc99fcef99b58e85c9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 262 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9T!3-p$rQ}6{6mzkYX9x!e$L)vy4}e_G0*}aI zpz`Y=%;=;sy8<XES>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkWq?nJ ztD>s5zKOlQse^&3qk);Tfu)C`xr?E-m$6--skMi5<}8<-d9Fpv-AYz_R&V#L-R0AK z#HaOm(3D40O!Z}ehS+<$IEH9UOinn!GDo7JQIMHOPmzzWL@|ufu`EPU%uZ3U&MZYy yO-@naL8_b3BOxZ{ygz1Kj*NARUN$BZoESnjvfN^0bV>yp#o+1c=d#Wzp$P!WIY!|C diff --git a/common/xfwm4/assets-dark/stick-active.png b/common/xfwm4/assets-dark/stick-active.png deleted file mode 100644 index f84dcc06f9a12a3dd7b8ab9ec0919a7406249eab..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9T#0(?_SFvvaQq09po*^6@9Je3(KLBz$3p^r= zfy%FgFr$;k><XZuWQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc~)EJOMr- zu8OMK`X=_K)*ee%ZT~(sEDR{F?CIhd!Z9;BfuT9nVMBwW2nUmg(*8x0zy4o;$kQis d(%JUO464#5k$1cv)d7_=c)I$ztaD0e0su!FHn{)* diff --git a/common/xfwm4/assets-dark/stick-inactive.png b/common/xfwm4/assets-dark/stick-inactive.png deleted file mode 100644 index 93978fce0ce19bbf18d442a036408252ac759233..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9T#0(?_SFvvaQq09po*^6@9Je3(KLBz$3p^r= zfy%FgFr$;k><XZuWQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc~)EJOMr- zu8OMK`X=_K)*h9$?XyxQI|9X(JzX3_IA$g%Ff@lcY-msv;b8Jm+P`S>*Z=DedHO_7 cI@>;(K~>r$@{ZS|I-qg}Pgg&ebxsLQ01I?A%K!iX diff --git a/common/xfwm4/assets-dark/stick-pressed.png b/common/xfwm4/assets-dark/stick-pressed.png deleted file mode 100644 index 53bb534d81fec4bca783df3479d4dccb1ae4369d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 189 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9T#0(?_SFvvaQq09po*^6@9Je3(KLBz$3p^r= zfy%FgFr$;k><XZuWQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc~)EJOMr- zu8OMK`X=_K)*eAq9?3{NHv)<)d%8G=aLi0jU}z3?*wCOT!olRBw13g$um9H{^7M(E cbhdpmgQ~Pi<Q=a^bwK3|p00i_>zopr0R03tkpKVy diff --git a/common/xfwm4/assets-dark/title-1-active.png b/common/xfwm4/assets-dark/title-1-active.png deleted file mode 100644 index f4637bc811f8ecdc6fb76724b20728e58d537150..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo!3HE(ZY$jeq*#ibJVQ8upoSx*1IXtr@Q5r1 zs=p4xj7}P}D}aKMC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6e8c)B=- zXiQ8F3Ay_3d;?pA%aN3eM<pWa{{HDxJkg?Pq-BxB%9y0da#zete?Cw>gQu&X%Q~lo FCIB<(FNOdB diff --git a/common/xfwm4/assets-dark/title-1-inactive.png b/common/xfwm4/assets-dark/title-1-inactive.png deleted file mode 100644 index f4637bc811f8ecdc6fb76724b20728e58d537150..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo!3HE(ZY$jeq*#ibJVQ8upoSx*1IXtr@Q5r1 zs=p4xj7}P}D}aKMC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6e8c)B=- zXiQ8F3Ay_3d;?pA%aN3eM<pWa{{HDxJkg?Pq-BxB%9y0da#zete?Cw>gQu&X%Q~lo FCIB<(FNOdB diff --git a/common/xfwm4/assets-dark/title-2-active.png b/common/xfwm4/assets-dark/title-2-active.png deleted file mode 100644 index f4637bc811f8ecdc6fb76724b20728e58d537150..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo!3HE(ZY$jeq*#ibJVQ8upoSx*1IXtr@Q5r1 zs=p4xj7}P}D}aKMC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6e8c)B=- zXiQ8F3Ay_3d;?pA%aN3eM<pWa{{HDxJkg?Pq-BxB%9y0da#zete?Cw>gQu&X%Q~lo FCIB<(FNOdB diff --git a/common/xfwm4/assets-dark/title-2-inactive.png b/common/xfwm4/assets-dark/title-2-inactive.png deleted file mode 100644 index f4637bc811f8ecdc6fb76724b20728e58d537150..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo!3HE(ZY$jeq*#ibJVQ8upoSx*1IXtr@Q5r1 zs=p4xj7}P}D}aKMC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6e8c)B=- zXiQ8F3Ay_3d;?pA%aN3eM<pWa{{HDxJkg?Pq-BxB%9y0da#zete?Cw>gQu&X%Q~lo FCIB<(FNOdB diff --git a/common/xfwm4/assets-dark/title-3-active.png b/common/xfwm4/assets-dark/title-3-active.png deleted file mode 100644 index f4637bc811f8ecdc6fb76724b20728e58d537150..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo!3HE(ZY$jeq*#ibJVQ8upoSx*1IXtr@Q5r1 zs=p4xj7}P}D}aKMC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6e8c)B=- zXiQ8F3Ay_3d;?pA%aN3eM<pWa{{HDxJkg?Pq-BxB%9y0da#zete?Cw>gQu&X%Q~lo FCIB<(FNOdB diff --git a/common/xfwm4/assets-dark/title-3-inactive.png b/common/xfwm4/assets-dark/title-3-inactive.png deleted file mode 100644 index f4637bc811f8ecdc6fb76724b20728e58d537150..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo!3HE(ZY$jeq*#ibJVQ8upoSx*1IXtr@Q5r1 zs=p4xj7}P}D}aKMC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6e8c)B=- zXiQ8F3Ay_3d;?pA%aN3eM<pWa{{HDxJkg?Pq-BxB%9y0da#zete?Cw>gQu&X%Q~lo FCIB<(FNOdB diff --git a/common/xfwm4/assets-dark/title-4-active.png b/common/xfwm4/assets-dark/title-4-active.png deleted file mode 100644 index f4637bc811f8ecdc6fb76724b20728e58d537150..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo!3HE(ZY$jeq*#ibJVQ8upoSx*1IXtr@Q5r1 zs=p4xj7}P}D}aKMC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6e8c)B=- zXiQ8F3Ay_3d;?pA%aN3eM<pWa{{HDxJkg?Pq-BxB%9y0da#zete?Cw>gQu&X%Q~lo FCIB<(FNOdB diff --git a/common/xfwm4/assets-dark/title-4-inactive.png b/common/xfwm4/assets-dark/title-4-inactive.png deleted file mode 100644 index f4637bc811f8ecdc6fb76724b20728e58d537150..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo!3HE(ZY$jeq*#ibJVQ8upoSx*1IXtr@Q5r1 zs=p4xj7}P}D}aKMC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6e8c)B=- zXiQ8F3Ay_3d;?pA%aN3eM<pWa{{HDxJkg?Pq-BxB%9y0da#zete?Cw>gQu&X%Q~lo FCIB<(FNOdB diff --git a/common/xfwm4/assets-dark/title-5-active.png b/common/xfwm4/assets-dark/title-5-active.png deleted file mode 100644 index f4637bc811f8ecdc6fb76724b20728e58d537150..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo!3HE(ZY$jeq*#ibJVQ8upoSx*1IXtr@Q5r1 zs=p4xj7}P}D}aKMC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6e8c)B=- zXiQ8F3Ay_3d;?pA%aN3eM<pWa{{HDxJkg?Pq-BxB%9y0da#zete?Cw>gQu&X%Q~lo FCIB<(FNOdB diff --git a/common/xfwm4/assets-dark/title-5-inactive.png b/common/xfwm4/assets-dark/title-5-inactive.png deleted file mode 100644 index f4637bc811f8ecdc6fb76724b20728e58d537150..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 167 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo!3HE(ZY$jeq*#ibJVQ8upoSx*1IXtr@Q5r1 zs=p4xj7}P}D}aKMC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6e8c)B=- zXiQ8F3Ay_3d;?pA%aN3eM<pWa{{HDxJkg?Pq-BxB%9y0da#zete?Cw>gQu&X%Q~lo FCIB<(FNOdB diff --git a/common/xfwm4/assets-dark/top-left-active.png b/common/xfwm4/assets-dark/top-left-active.png deleted file mode 100644 index bbb2579d9fc019bed8e51cc8de3ef00754d68c8e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^Oh7Ed!3HF~v+~XZDVAa<&kznEsNqQI0P;BtJR*yM z>aT+^qm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0voo-U3d z95a&>fFK~`>c8_VR;>CP@8UD9v9qzU@!|FJ?*-VHnGbJBWnfs#%H}>NfM*6!7lWs( KpUXO@geCw*P%_>C diff --git a/common/xfwm4/assets-dark/top-left-inactive.png b/common/xfwm4/assets-dark/top-left-inactive.png deleted file mode 100644 index bbb2579d9fc019bed8e51cc8de3ef00754d68c8e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 173 zcmeAS@N?(olHy`uVBq!ia0vp^Oh7Ed!3HF~v+~XZDVAa<&kznEsNqQI0P;BtJR*yM z>aT+^qm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0voo-U3d z95a&>fFK~`>c8_VR;>CP@8UD9v9qzU@!|FJ?*-VHnGbJBWnfs#%H}>NfM*6!7lWs( KpUXO@geCw*P%_>C diff --git a/common/xfwm4/assets-dark/top-right-active.png b/common/xfwm4/assets-dark/top-right-active.png deleted file mode 100644 index a3b7a3c00e4e6b9e01fa17fa3028662739c10dc7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^Oh7Ed!3HF~v+~XZDVAa<&kznEsNqQI0P;BtJR*yM z>aT+^qm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0wTo-U3d z95a&xLazQhe*g%Sl+;cGsSopCUO)ey2Lyb00t{j#8AAA3Zx%+2SOGOLc)I$ztaD0e F0stIxF~I-; diff --git a/common/xfwm4/assets-dark/top-right-inactive.png b/common/xfwm4/assets-dark/top-right-inactive.png deleted file mode 100644 index a3b7a3c00e4e6b9e01fa17fa3028662739c10dc7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 172 zcmeAS@N?(olHy`uVBq!ia0vp^Oh7Ed!3HF~v+~XZDVAa<&kznEsNqQI0P;BtJR*yM z>aT+^qm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0wTo-U3d z95a&xLazQhe*g%Sl+;cGsSopCUO)ey2Lyb00t{j#8AAA3Zx%+2SOGOLc)I$ztaD0e F0stIxF~I-; diff --git a/common/xfwm4/assets.svg b/common/xfwm4/assets.svg deleted file mode 100644 index daa4f16..0000000 --- a/common/xfwm4/assets.svg +++ /dev/null @@ -1,1684 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:osb="http://www.openswatchbook.org/uri/2009/osb" - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:svg="http://www.w3.org/2000/svg" - xmlns="http://www.w3.org/2000/svg" - xmlns:xlink="http://www.w3.org/1999/xlink" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - width="224" - height="217" - viewBox="0 0 224 217" - id="svg2" - version="1.1" - inkscape:version="0.91 r13725" - sodipodi:docname="assets.svg"> - <defs - id="defs4"> - <linearGradient - id="selected_bg_color" - osb:paint="solid"> - <stop - style="stop-color:#268bd2;stop-opacity:1;" - offset="0" - id="stop4407" /> - </linearGradient> - <linearGradient - id="selected_fg_color" - osb:paint="solid"> - <stop - style="stop-color:#fdf6e3git;stop-opacity:1;" - offset="0" - id="stop4402" /> - </linearGradient> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_fg_color" - id="linearGradient4404" - x1="89.0002" - y1="974" - x2="89.0002" - y2="976" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_fg_color" - id="linearGradient4406" - x1="88.996741" - y1="972" - x2="88.996741" - y2="978.00692" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4409" - x1="152" - y1="564.36218" - x2="152" - y2="572.36216" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4411" - x1="568.36218" - y1="-155.99998" - x2="568.36218" - y2="-148.00001" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4413" - x1="608.36218" - y1="-157.99998" - x2="608.36218" - y2="-150.00001" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4415" - x1="154" - y1="601.86216" - x2="154" - y2="606.36218" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4417" - x1="1376" - y1="248" - x2="1376" - y2="262" - gradientUnits="userSpaceOnUse" /> - <linearGradient - inkscape:collect="always" - xlink:href="#selected_bg_color" - id="linearGradient4419" - x1="1376" - y1="248" - x2="1376" - y2="262" - gradientUnits="userSpaceOnUse" /> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#fdf6e3" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="22.627417" - inkscape:cx="50.251658" - inkscape:cy="19.116687" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - units="px" - inkscape:snap-bbox="true" - inkscape:bbox-paths="true" - inkscape:bbox-nodes="true" - inkscape:snap-bbox-edge-midpoints="false" - inkscape:snap-bbox-midpoints="true" - inkscape:object-paths="true" - inkscape:snap-intersection-paths="false" - inkscape:object-nodes="true" - inkscape:snap-nodes="true" - fit-margin-top="10" - fit-margin-left="10" - fit-margin-right="10" - fit-margin-bottom="10"> - <inkscape:grid - type="xygrid" - id="grid4136" - originx="5" - originy="-288" /> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> - <dc:title /> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Ebene 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(5,-547.36215)"> - <rect - style="opacity:1;fill:#eee8d5;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="menu-active" - width="26" - height="16" - x="5" - y="662.36218" - inkscape:label="#rect4138-3" /> - <use - x="0" - y="0" - xlink:href="#g4206" - id="title-1-active" - transform="matrix(0.17857143,0,0,1,4.1071429,131.99998)" - width="100%" - height="100%" - inkscape:label="#use4212" /> - <g - id="close-active" - inkscape:label="#g4893"> - <g - style="opacity:1" - id="g4206"> - <rect - style="opacity:1;fill:#eee8d5;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect4138" - width="28" - height="28" - x="5" - y="557.36218" /> - <rect - style="opacity:1;fill:#eeeff1;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect4204" - width="28" - height="1" - x="5" - y="557.36218" /> - </g> - <g - transform="translate(7,559.3622)" - id="g4292" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-3" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close" - inkscape:label="#g6210" - transform="translate(-641,1218)"> - <g - id="g4927-9" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2"> - <g - id="g4092-0-2-21-0" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#f46067;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 172,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 172,63.867188 173.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 174.9302,66.77394 174.99999,66.9729 175,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 172,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 169.05288,63.088403 168.98357,62.882438 169,62.671875 l 0,-0.75 z" - transform="translate(1204,190)" - id="path4068-7-5-9-6" /> - </g> - </g> - <g - id="g4778-2-68" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-4-4" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-4-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-6-11" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-0-33" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-3-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - <path - inkscape:connector-curvature="0" - d="m 650.00003,-180.71594 0.75,0 c 0.008,-9e-5 0.0156,-3.5e-4 0.0234,0 0.19122,0.008 0.3824,0.0964 0.51563,0.23437 l 1.71093,1.71094 1.73438,-1.71094 c 0.19922,-0.17287 0.335,-0.22912 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0257,0.41298 -0.1875,0.5625 l -1.71093,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21093,0.53907 l 0,0.75 -0.75,0 c -0.19897,-1e-5 -0.39793,-0.0698 -0.53906,-0.21094 l -1.71094,-1.71094 -1.71093,1.71094 c -0.14113,0.14114 -0.3401,0.21094 -0.53907,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15805,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" - id="path10839-9-2-2-7-9-7" - style="color:#657b83;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#657b83;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> - </g> - </g> - <g - id="close-prelight" - inkscape:label="#g4917"> - <use - height="100%" - width="100%" - transform="translate(33,-2.2617187e-5)" - id="use4214" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(40,559.36218)" - id="g4352" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-6" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-hover" - inkscape:label="#g6260" - transform="translate(-538,1218)"> - <g - id="g4927" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-9"> - <g - id="g4092-0-2-3" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="fill:#f68086;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 172,92 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 172,97.867188 173.73438,96.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.687498 c 0.14114,0.14113 0.21093,0.34009 0.21094,0.53907 l 0,0.75 -0.75,0 c -0.19898,-1e-5 -0.39794,-0.0698 -0.53906,-0.21094 L 172,100 l -1.71094,1.71094 c -0.14112,0.14114 -0.34009,0.21094 -0.53906,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.687498 -1.71094,-1.710937 C 169.05288,97.088403 168.98357,96.882438 169,96.671875 l 0,-0.75 z" - transform="translate(1204,156)" - id="path4068-7-5-8" /> - </g> - </g> - <g - id="g4778-4" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-44" - transform="translate(-60,-518)" /> - <g - id="layer10-2-9" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-3" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-9" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-7" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-3" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-02" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-7" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-4" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="542" - height="16" - width="16" - id="rect17883-5" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - <path - inkscape:connector-curvature="0" - d="m 547.00004,-180.71594 0.75,0 c 0.008,-9e-5 0.0156,-3.5e-4 0.0234,0 0.19122,0.008 0.3824,0.0964 0.51563,0.23437 l 1.71093,1.71094 1.73438,-1.71094 c 0.19922,-0.17287 0.335,-0.22912 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0257,0.41298 -0.1875,0.5625 l -1.71093,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21093,0.53907 l 0,0.75 -0.75,0 c -0.19897,-1e-5 -0.39793,-0.0698 -0.53906,-0.21094 L 550,-176.63782 l -1.71093,1.71094 c -0.14113,0.14114 -0.3401,0.21094 -0.53907,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15805,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" - id="path10839-9-2-2-7-9-7-4-9" - style="color:#657b83;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#657b83;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> - </g> - </g> - <g - id="close-pressed" - inkscape:label="#g4939"> - <use - height="100%" - width="100%" - transform="translate(66,-2.2617187e-5)" - id="use4216" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(73,559.36218)" - id="g4412" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-0" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-close-active" - inkscape:label="#g6332" - transform="translate(-437,1218)"> - <g - id="g4927-8-7" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-3-7"> - <g - id="g4092-0-2-2-1" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:#f13039;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-4-9" /> - </g> - </g> - <g - id="g4778-3-6" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-6-0" - transform="translate(-60,-518)" /> - <g - id="layer10-2-3-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-2-2" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-7-0" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-6-3" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-4-1" - style="display:inline;fill:#fdf6e3;fill-opacity:1"> - <path - inkscape:connector-curvature="0" - d="m 45.001573,764.10442 1,0 c 0.01037,-1.2e-4 0.02079,-4.6e-4 0.03125,0 0.254951,0.0112 0.50987,0.12858 0.6875,0.3125 l 2.28125,2.28125 2.3125,-2.28125 c 0.265625,-0.2305 0.446672,-0.3055 0.6875,-0.3125 l 1,0 0,1 c 0,0.28647 -0.03434,0.55065 -0.25,0.75 l -2.28125,2.28125 2.25,2.25 c 0.188188,0.18817 0.281242,0.45345 0.28125,0.71875 l 0,1 -1,0 c -0.265301,-10e-6 -0.530586,-0.0931 -0.71875,-0.28125 l -2.28125,-2.28125 -2.28125,2.28125 c -0.188164,0.18819 -0.45346,0.28125 -0.71875,0.28125 l -1,0 0,-1 c -3e-6,-0.26529 0.09306,-0.53058 0.28125,-0.71875 l 2.28125,-2.25 -2.28125,-2.28125 c -0.210742,-0.19463 -0.30316,-0.46925 -0.28125,-0.75 l 0,-1 z" - id="path10839-9-8-7" - style="color:#657b83;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#fdf6e3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> - </g> - <g - id="layer13-2-0-2" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-4-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-5-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="441" - height="16" - width="16" - id="rect17883-02" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> - </g> - </g> - <g - id="close-inactive" - inkscape:label="#g4961"> - <use - height="100%" - width="100%" - transform="translate(99,-2.2617187e-5)" - id="use4218" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(106,559.36218)" - id="g4472" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-7" - transform="translate(0,-1028.3622)"> - <g - style="display:inline;opacity:0.45" - id="titlebutton-close-backdrop" - inkscape:label="#g6210" - transform="translate(-641,1218)"> - <g - id="g4927-9-3" - style="display:inline;opacity:1" - transform="translate(-678,-432.63782)"> - <g - transform="translate(-103,0)" - style="display:inline;opacity:1" - id="g4490-6-5-2-6"> - <g - id="g4092-0-2-21-0-6" - style="display:inline" - transform="translate(58,0)"> - <path - inkscape:connector-curvature="0" - style="opacity:1;fill:#7a7f8b;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 172,58 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m -3,3.921875 0.75,0 c 0.008,-9e-5 0.0156,-3.45e-4 0.0234,0 0.19121,0.0084 0.3824,0.09643 0.51562,0.234375 L 172,63.867188 173.73438,62.15625 c 0.19921,-0.172875 0.335,-0.229125 0.51562,-0.234375 l 0.75,0 0,0.75 c 0,0.214853 -0.0258,0.412987 -0.1875,0.5625 l -1.71094,1.710937 1.6875,1.6875 C 174.9302,66.77394 174.99999,66.9729 175,67.171875 l 0,0.75 -0.75,0 c -0.19898,-8e-6 -0.39794,-0.06982 -0.53906,-0.210937 L 172,66 l -1.71094,1.710938 c -0.14112,0.141142 -0.34009,0.210937 -0.53906,0.210937 l -0.75,0 0,-0.75 c 0,-0.198967 0.0698,-0.397935 0.21094,-0.539063 l 1.71094,-1.6875 -1.71094,-1.710937 C 169.05288,63.088403 168.98357,62.882438 169,62.671875 l 0,-0.75 z" - transform="translate(1204,190)" - id="path4068-7-5-9-6-8" /> - </g> - </g> - <g - id="g4778-2-68-3" - transform="translate(1323,246.86719)" - style="fill:#fdf6e3;fill-opacity:1"> - <g - style="display:inline;fill:#fdf6e3;fill-opacity:1" - id="layer9-9-4-4-5" - transform="translate(-60,-518)" /> - <g - id="layer10-2-1-8-2" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer11-16-4-9-8" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - transform="matrix(0.75,0,0,0.75,2,2.0546875)" - id="g2996-76-5-4" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(-60,-518)" - id="layer12-4-5-7-9" - style="fill:#fdf6e3;fill-opacity:1"> - <g - transform="translate(19,-242)" - id="layer4-4-1-9-5-3" - style="display:inline;fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <g - id="layer13-2-6-11-6" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer14-4-0-33-0" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - <g - id="layer15-7-3-0-7" - transform="translate(-60,-518)" - style="fill:#fdf6e3;fill-opacity:1" /> - </g> - </g> - <rect - y="-185.63782" - x="645" - height="16" - width="16" - id="rect17883-39-7" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - <path - inkscape:connector-curvature="0" - d="m 650.00004,-180.71594 0.75,0 c 0.008,-9e-5 0.0156,-3.5e-4 0.0234,0 0.19122,0.008 0.3824,0.0964 0.51563,0.23437 l 1.71093,1.71094 1.73438,-1.71094 c 0.19922,-0.17287 0.335,-0.22912 0.51562,-0.23437 l 0.75,0 0,0.75 c 0,0.21485 -0.0257,0.41298 -0.1875,0.5625 l -1.71093,1.71093 1.6875,1.6875 c 0.14114,0.14113 0.21093,0.34009 0.21093,0.53907 l 0,0.75 -0.75,0 c -0.19897,-1e-5 -0.39793,-0.0698 -0.53906,-0.21094 L 653,-176.63782 l -1.71093,1.71094 c -0.14113,0.14114 -0.3401,0.21094 -0.53907,0.21094 l -0.75,0 0,-0.75 c 0,-0.19897 0.0698,-0.39794 0.21094,-0.53907 l 1.71094,-1.6875 -1.71094,-1.71093 c -0.15805,-0.14598 -0.22737,-0.35194 -0.21094,-0.5625 l 0,-0.75 z" - id="path10839-9-2-2-7-9-7-4" - style="color:#657b83;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:'Andale Mono';-inkscape-font-specification:'Andale Mono';text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#657b83;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.78124988;marker:none;enable-background:new" /> - </g> - </g> - </g> - </g> - <g - id="maximize-active" - inkscape:label="#g5037"> - <use - height="100%" - width="100%" - transform="translate(0,32.999977)" - id="use4220" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(7,592.36218)" - id="g4521" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-78" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-max" - inkscape:label="#g6234" - transform="translate(-612,1218)" - style="display:inline;opacity:0.8"> - <g - id="g7146" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2-96"> - <g - id="g4092-0-6-83" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5-95" - style="display:inline;opacity:1;fill:#7a7f8b;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - y="-185.63782" - x="616" - height="16" - width="16" - id="rect17883-29" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> - </g> - </g> - <g - id="maximize-prelight" - inkscape:label="#g5016"> - <use - height="100%" - width="100%" - transform="translate(33,32.999977)" - id="use4222" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(40,592.36218)" - id="g4569" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-2" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-hover" - inkscape:label="#g6284" - transform="translate(-509,1218)"> - <g - id="g4891" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1302" - style="display:inline;opacity:0.95;fill:#fdf6e3;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-4" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.15;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1302,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-78" - inkscape:connector-curvature="0" /> - <g - id="g4806-9" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-7" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-75" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-7" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-0"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="opacity:1;fill:#7a7f8b;fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-6" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="513" - height="16" - width="16" - id="rect17883-0" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> - </g> - </g> - <g - id="maximize-pressed" - inkscape:label="#g4994"> - <use - height="100%" - width="100%" - transform="translate(66,32.999977)" - id="use4228" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(73,592.36218)" - id="g4634" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-69" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-max-active" - inkscape:label="#g6356" - transform="translate(-408,1218)"> - <g - id="g4891-4" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-132,0)" - style="display:inline;opacity:1" - id="g4490-2-9-1-2"> - <g - id="g4092-0-6-3-6-8" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:url(#linearGradient4417);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-6-5-1-6" /> - </g> - </g> - <g - id="g4806-5-2" - transform="translate(1294,247)" - style="fill:#c0e3ff;fill-opacity:1"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-78-2-0" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-3-9-9" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-19-7-6" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-4-7-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-8-9-7" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-5-4-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-1-4-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-7-0-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-3-7-2"> - <path - sodipodi:nodetypes="csscccsscc" - inkscape:connector-curvature="0" - d="m 87.799705,972 3.381737,0 c 0.450297,0 0.816227,0.36847 0.818758,0.8188 l 0,3.3817 z m 2.407413,6.00692 -3.395078,0 c -0.450346,0 -0.818758,-0.36842 -0.818758,-0.81875 l 0,-3.39509 4.213836,4.21384" - style="fill:url(#linearGradient4406);fill-opacity:1;fill-rule:evenodd;stroke:none" - id="path4293-4-9" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="412" - height="16" - width="16" - id="rect17883-79" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> - </g> - </g> - <g - id="maximize-inactive" - inkscape:label="#g4983"> - <use - height="100%" - width="100%" - transform="translate(99,32.999977)" - id="use4232" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(106,592.36218)" - id="g4683" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-4" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-max-backdrop" - inkscape:label="#g6521" - style="display:inline;opacity:0.45" - transform="translate(-612,1201)"> - <g - style="display:inline;opacity:1" - id="g7146-1" - transform="translate(-781,-415.63782)"> - <g - transform="translate(-29,0)" - style="display:inline;opacity:1" - id="g4490-2"> - <g - id="g4092-0-6" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - id="path4293-5" - style="display:inline;opacity:1;fill:#7a7f8b;fill-opacity:1;fill-rule:evenodd;stroke:none" - d="m 1403.7995,252 3.3818,0 c 0.4503,0 0.8162,0.36847 0.8187,0.8188 l 0,3.3817 z m 2.4074,6.00692 -3.395,0 c -0.4504,0 -0.8188,-0.36842 -0.8188,-0.81875 l 0,-3.39509 4.2138,4.21384" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscccsscc" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-6" - width="16" - height="16" - x="616" - y="-168.63782" /> - </g> - </g> - </g> - </g> - <g - id="hide-active" - inkscape:label="#g5048"> - <use - height="100%" - width="100%" - transform="translate(0,65.999977)" - id="use4234" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(7,625.36218)" - id="g4721" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-1" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-min" - inkscape:label="#g6247" - transform="translate(-583,1218)" - style="display:inline;opacity:0.8"> - <g - id="g7138" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3-75"> - <g - id="g4092-0-7-0" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4-3" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#7a7f8b;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - <rect - y="-185.63782" - x="587" - height="16" - width="16" - id="rect17883-32" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> - </g> - </g> - <g - id="hide-prelight" - inkscape:label="#g5059"> - <use - height="100%" - width="100%" - transform="translate(33,65.999977)" - id="use4226" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(40,625.36218)" - id="g4769" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-64" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-hover" - inkscape:label="#g6308" - transform="translate(-480,1218)"> - <g - id="g4909" - style="display:inline;opacity:1" - transform="translate(-781,-432.63782)"> - <ellipse - cy="255" - cx="1273" - style="display:inline;opacity:0.95;fill:#fdf6e3;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-5-9-6-7-2-1" - rx="6" - ry="6.0000005" /> - <path - style="display:inline;opacity:0.15;fill:#525d76;fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 1273,248 a 7,7 0 0 0 -7,7 7,7 0 0 0 7,7 7,7 0 0 0 7,-7 7,7 0 0 0 -7,-7 z m 0,1 a 6,6 0 0 1 6,6 6,6 0 0 1 -6,6 6,6 0 0 1 -6,-6 6,6 0 0 1 6,-6 z" - id="path4068-7-5-9-6-7-2-5-23" - inkscape:connector-curvature="0" /> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-0" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-4" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-1" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-6" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-0" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-9" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-2" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-6"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#7a7f8b;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-8" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - y="-185.63782" - x="484" - height="16" - width="16" - id="rect17883-11" - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> - </g> - </g> - </g> - </g> - <g - id="hide-pressed" - inkscape:label="#g5080"> - <use - height="100%" - width="100%" - transform="translate(66,65.999977)" - id="use4236" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(73,625.36218)" - id="g4833" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-22" - transform="translate(0,-1028.3622)"> - <g - style="display:inline" - id="titlebutton-min-active" - inkscape:label="#g6414" - transform="translate(-379,1218)"> - <g - id="g4909-1" - style="display:inline;opacity:1" - transform="translate(-882,-432.63782)"> - <g - transform="translate(-161,0)" - style="display:inline;opacity:1" - id="g4490-3-6-1-4"> - <g - id="g4092-0-7-2-0-0" - style="display:inline" - transform="translate(58,0)"> - <circle - r="7" - cy="255" - cx="1376" - style="fill:url(#linearGradient4419);fill-opacity:1;stroke:none;stroke-width:0;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path4068-7-3-0-3-6" /> - </g> - </g> - <g - style="display:inline;opacity:1;fill:#c0e3ff;fill-opacity:1" - id="g4834-9-3" - transform="translate(1265,247)"> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="status" - id="layer9-3-9-1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="devices" - id="layer10-4-0-5" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="apps" - id="layer11-2-5-2" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="places" - id="layer13-5-7-4" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - inkscape:label="mimetypes" - id="layer14-6-2-3" - style="fill:#c0e3ff;fill-opacity:1" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emblems" - id="layer15-52-0-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="emotes" - id="g71291-3-4-6" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="categories" - id="g4953-8-6-8" /> - <g - transform="translate(-81.0002,-967)" - style="display:inline;fill:#c0e3ff;fill-opacity:1" - inkscape:label="actions" - id="layer12-45-3-7"> - <path - sodipodi:nodetypes="ccccc" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:url(#linearGradient4404);fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - id="rect9057-3-5" - d="m 86.0002,974 0,2 6,0 0,-2 z" - inkscape:connector-curvature="0" /> - </g> - </g> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-79-9" - width="16" - height="16" - x="383" - y="-185.63782" /> - </g> - </g> - </g> - </g> - <g - id="hide-inactive" - inkscape:label="#g5102"> - <use - height="100%" - width="100%" - transform="translate(99,65.999977)" - id="use4238" - xlink:href="#g4206" - y="0" - x="0" /> - <g - transform="translate(106,625.36218)" - id="g4882" - style="enable-background:new"> - <g - inkscape:label="Ebene 1" - id="layer1-09" - transform="translate(0,-1028.3622)"> - <g - id="titlebutton-min-backdrop" - inkscape:label="#g6534" - style="display:inline;opacity:0.45" - transform="translate(-583,1201)"> - <g - style="display:inline;opacity:1" - id="g7138-0" - transform="translate(-781,-415.63782)"> - <g - transform="translate(-58,0)" - style="display:inline;opacity:1" - id="g4490-3"> - <g - id="g4092-0-7" - style="display:inline" - transform="translate(58,0)" /> - </g> - <path - inkscape:connector-curvature="0" - d="m 1373,254 0,2 6,0 0,-2 z" - id="rect9057-4" - style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;opacity:1;fill:#7a7f8b;fill-opacity:1;stroke:none;stroke-width:2;marker:none;enable-background:accumulate" - sodipodi:nodetypes="ccccc" /> - </g> - <rect - style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" - id="rect17883-39-3" - width="16" - height="16" - x="587" - y="-168.63782" /> - </g> - </g> - </g> - </g> - <g - id="stick-active" - inkscape:label="#g5228"> - <use - height="100%" - width="100%" - transform="matrix(0.64285714,0,0,1,141.78571,-2.2617187e-5)" - id="use4210" - xlink:href="#g4206" - y="0" - x="0" /> - <g - style="fill:#a4aab7;fill-opacity:1" - transform="translate(1.9999997,2.9999886)" - id="g5140"> - <rect - style="opacity:1;fill:#a4aab7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect5123" - width="2" - height="7.9999776" - x="151" - y="564.36218" /> - <rect - style="opacity:1;fill:#a4aab7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect5123-1" - width="2" - height="7.9999776" - x="567.36218" - y="-155.99998" - transform="matrix(0,1,-1,0,0,0)" /> - </g> - </g> - <g - id="stick-pressed" - inkscape:label="#g5234"> - <use - height="100%" - width="100%" - transform="translate(23,-7.3828127e-6)" - id="use5113" - xlink:href="#use4210" - y="0" - x="0" /> - <g - style="fill:#268bd2;fill-opacity:1" - transform="translate(25,2.9999812)" - id="g5140-7"> - <rect - style="opacity:1;fill:url(#linearGradient4409);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect5123-7" - width="2" - height="7.9999776" - x="151" - y="564.36218" /> - <rect - style="opacity:1;fill:url(#linearGradient4411);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect5123-1-1" - width="2" - height="7.9999776" - x="567.36218" - y="-155.99998" - transform="matrix(0,1,-1,0,0,0)" /> - </g> - </g> - <g - id="stick-inactive" - inkscape:label="#g5240"> - <use - height="100%" - width="100%" - transform="translate(46,-7.3828127e-6)" - id="use5115" - xlink:href="#use4210" - y="0" - x="0" /> - <g - style="fill:#b9bfce;fill-opacity:1" - transform="translate(48,2.9999812)" - id="g5140-1"> - <rect - style="opacity:1;fill:#b9bfce;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect5123-5" - width="2" - height="7.9999776" - x="151" - y="564.36218" /> - <rect - style="opacity:1;fill:#b9bfce;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect5123-1-9" - width="2" - height="7.9999776" - x="567.36218" - y="-155.99998" - transform="matrix(0,1,-1,0,0,0)" /> - </g> - </g> - <g - id="shade-active" - inkscape:label="#g5258"> - <use - height="100%" - width="100%" - transform="translate(-3.4e-7,32.999993)" - id="use5117" - xlink:href="#use4210" - y="0" - x="0" /> - <g - style="fill:#a4aab7;fill-opacity:1" - transform="translate(-4.68e-6,-1.0000226)" - id="g5193"> - <rect - transform="matrix(0,1,-1,0,0,0)" - y="-157.99998" - x="607.36218" - height="7.9999776" - width="2" - id="rect5123-1-7" - style="opacity:1;fill:#a4aab7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <path - style="opacity:1;fill:#a4aab7;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 154,601.86216 4,4.50002 -8,0 z" - id="rect5190" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - </g> - </g> - <g - id="shade-pressed" - inkscape:label="#g5252"> - <use - height="100%" - width="100%" - transform="translate(23,32.999993)" - id="use5119" - xlink:href="#use4210" - y="0" - x="0" /> - <g - style="fill:#268bd2;fill-opacity:1" - transform="translate(22.999996,-1.0000226)" - id="g5193-7"> - <rect - transform="matrix(0,1,-1,0,0,0)" - y="-157.99998" - x="607.36218" - height="7.9999776" - width="2" - id="rect5123-1-7-6" - style="opacity:1;fill:url(#linearGradient4413);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <path - style="opacity:1;fill:url(#linearGradient4415);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 154,601.86216 4,4.50002 -8,0 z" - id="rect5190-7" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - </g> - </g> - <g - id="shade-inactive" - inkscape:label="#g5246"> - <use - height="100%" - width="100%" - transform="translate(46,32.999993)" - id="use5121" - xlink:href="#use4210" - y="0" - x="0" /> - <g - style="fill:#b9bfce;fill-opacity:1" - transform="translate(45.999996,-1.0000226)" - id="g5193-3"> - <rect - transform="matrix(0,1,-1,0,0,0)" - y="-157.99998" - x="607.36218" - height="7.9999776" - width="2" - id="rect5123-1-7-65" - style="opacity:1;fill:#b9bfce;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <path - style="opacity:1;fill:#b9bfce;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 154,601.86216 4,4.50002 -8,0 z" - id="rect5190-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccc" /> - </g> - </g> - <use - x="0" - y="0" - xlink:href="#menu-active" - id="menu-inactive" - transform="translate(62,-2.2617187e-5)" - width="100%" - height="100%" - inkscape:label="#use5268" /> - <use - x="0" - y="0" - xlink:href="#menu-active" - id="menu-pressed" - transform="translate(31,-2.2617187e-5)" - width="100%" - height="100%" - inkscape:label="#use5270" /> - <use - x="0" - y="0" - xlink:href="#title-1-active" - id="title-2-active" - transform="translate(6.9999999,-2.6171874e-6)" - width="100%" - height="100%" - inkscape:label="#use5296" /> - <use - x="0" - y="0" - xlink:href="#title-1-active" - id="title-3-active" - transform="translate(14,-2.6171872e-6)" - width="100%" - height="100%" - inkscape:label="#use5298" /> - <use - x="0" - y="0" - xlink:href="#title-1-active" - id="title-4-active" - transform="translate(21,-2.6171874e-6)" - width="100%" - height="100%" - inkscape:label="#use5300" /> - <use - x="0" - y="0" - xlink:href="#title-1-active" - id="title-5-active" - transform="translate(28,-2.6171874e-6)" - width="100%" - height="100%" - inkscape:label="#use5302" /> - <use - x="0" - y="0" - xlink:href="#title-1-active" - id="title-1-inactive" - transform="translate(35,-2.6171874e-6)" - width="100%" - height="100%" - inkscape:label="#use5304" /> - <use - x="0" - y="0" - xlink:href="#title-1-active" - id="title-2-inactive" - transform="translate(42,-2.6171874e-6)" - width="100%" - height="100%" - inkscape:label="#use5306" /> - <use - x="0" - y="0" - xlink:href="#title-1-active" - id="title-3-inactive" - transform="translate(49,-2.6171874e-6)" - width="100%" - height="100%" - inkscape:label="#use5308" /> - <use - x="0" - y="0" - xlink:href="#title-1-active" - id="title-4-inactive" - transform="translate(56,-2.6171874e-6)" - width="100%" - height="100%" - inkscape:label="#use5310" /> - <use - x="0" - y="0" - xlink:href="#title-1-active" - id="title-5-inactive" - transform="translate(63,-2.6171874e-6)" - width="100%" - height="100%" - inkscape:label="#use5312" /> - <g - id="top-left-active" - inkscape:label="#g5352"> - <path - id="rect4138-9" - transform="translate(0,552.36216)" - d="m 6,174 0,1 -1,0 0,27 2,0 0,-28 -1,0 z" - style="opacity:1;fill:#eee8d5;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - inkscape:connector-curvature="0" /> - <rect - y="726.36218" - x="6" - height="1" - width="1" - id="rect5348" - style="opacity:1;fill:#ecedf0;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - <rect - y="727.36218" - x="5" - height="1" - width="1" - id="rect5350" - style="opacity:1;fill:#ecedf0;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> - </g> - <use - x="0" - y="0" - xlink:href="#top-left-active" - id="top-left-inactive" - transform="translate(4,-2.2617187e-5)" - width="100%" - height="100%" - inkscape:label="#use5357" /> - <use - x="0" - y="0" - xlink:href="#top-left-active" - id="top-right-active" - transform="matrix(-1,0,0,1,20,-2.2617187e-5)" - width="100%" - height="100%" - inkscape:label="#use5359" /> - <use - x="0" - y="0" - xlink:href="#top-left-active" - id="top-right-inactive" - transform="matrix(-1,0,0,1,24,-2.2617187e-5)" - width="100%" - height="100%" - inkscape:label="#use5361" /> - <rect - style="opacity:1;fill:#eee8d5;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="right-active" - width="1" - height="16" - x="-37" - y="734.36212" - inkscape:label="#rect4138-3" - transform="scale(-1,1)" /> - <rect - style="opacity:1;fill:#eee8d5;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="right-inactive" - width="1" - height="16" - x="-39" - y="734.36212" - inkscape:label="#rect4138-3" - transform="scale(-1,1)" /> - <rect - style="opacity:1;fill:#eee8d5;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="bottom-inactive" - width="2.9999716" - height="16" - x="-750.36212" - y="-60" - inkscape:label="#rect4138-3" - transform="matrix(0,-1,-1,0,0,0)" /> - <rect - style="opacity:1;fill:#eee8d5;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="left-active" - width="1" - height="16" - x="-33" - y="734.36212" - inkscape:label="#rect4138-3" - transform="scale(-1,1)" /> - <rect - style="opacity:1;fill:#eee8d5;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="left-inactive" - width="1" - height="16" - x="-35" - y="734.36212" - inkscape:label="#rect4138-3" - transform="scale(-1,1)" /> - <rect - style="opacity:1;fill:#eee8d5;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="bottom-active" - width="3.0000284" - height="16" - x="-746.36212" - y="-60" - inkscape:label="#rect4138-3" - transform="matrix(0,-1,-1,0,0,0)" /> - <path - style="opacity:1;fill:#eee8d5;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="M 45 196 L 45 198 L 46 198 L 46 199 L 48 199 L 48 196 L 45 196 z " - transform="translate(-5,547.36215)" - id="bottom-left-active" /> - <path - style="opacity:1;fill:#eee8d5;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="M 66 196 L 66 199 L 68 199 L 68 198 L 69 198 L 69 196 L 66 196 z " - transform="translate(-5,547.36215)" - id="bottom-right-active" /> - <path - style="opacity:1;fill:#eee8d5;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="M 66 200 L 66 203 L 68 203 L 68 202 L 69 202 L 69 200 L 66 200 z " - transform="translate(-5,547.36215)" - id="bottom-right-inactive" /> - <path - style="opacity:1;fill:#eee8d5;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="M 45 200 L 45 202 L 46 202 L 46 203 L 48 203 L 48 200 L 45 200 z " - transform="translate(-5,547.36215)" - id="bottom-left-inactive" /> - </g> -</svg> diff --git a/common/xfwm4/assets.txt b/common/xfwm4/assets.txt deleted file mode 100644 index 55e3c9f..0000000 --- a/common/xfwm4/assets.txt +++ /dev/null @@ -1,45 +0,0 @@ -close-active -close-inactive -close-prelight -close-pressed -hide-active -hide-inactive -hide-prelight -hide-pressed -maximize-active -maximize-inactive -maximize-prelight -maximize-pressed -menu-active -menu-inactive -menu-pressed -shade-active -shade-inactive -shade-pressed -stick-active -stick-inactive -stick-pressed -title-1-active -title-1-inactive -title-2-active -title-2-inactive -title-3-active -title-3-inactive -title-4-active -title-4-inactive -title-5-active -title-5-inactive -top-left-active -top-left-inactive -top-right-active -top-right-inactive -left-active -left-inactive -right-active -right-inactive -bottom-active -bottom-inactive -bottom-left-active -bottom-left-inactive -bottom-right-active -bottom-right-inactive diff --git a/common/xfwm4/assets/bottom-active.png b/common/xfwm4/assets/bottom-active.png deleted file mode 100644 index 130639a7bd40217415e1a5095b01f2a3fb942f3e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~n!3HE}ZR`&LQY^(zo*^7SP{WbZ0pxQQctjQh z)n5l;MkkHg6+l7B64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1UVJY5_^ rIA$i-{Co7Zo{ft^SasIQBnF1_3z_%tse334RKeis>gTe~DWM4fObsbe diff --git a/common/xfwm4/assets/bottom-inactive.png b/common/xfwm4/assets/bottom-inactive.png deleted file mode 100644 index 130639a7bd40217415e1a5095b01f2a3fb942f3e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 153 zcmeAS@N?(olHy`uVBq!ia0vp^0zk~n!3HE}ZR`&LQY^(zo*^7SP{WbZ0pxQQctjQh z)n5l;MkkHg6+l7B64!{5;QX|b^2DN4hVt@qz0ADq;^f4FRK5J7^x5xhq=1UVJY5_^ rIA$i-{Co7Zo{ft^SasIQBnF1_3z_%tse334RKeis>gTe~DWM4fObsbe diff --git a/common/xfwm4/assets/bottom-left-active.png b/common/xfwm4/assets/bottom-left-active.png deleted file mode 100644 index f786e2d4a7cfbc871ede8ce50c5a5ce8cf788aa1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^%plCc1|-8Yw(bW~EX7WqAsj$Z!;#Vf<Z~8yL>2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4<ivthz5Jr|+3#$mfQqC%T^vI= sW+vDCd-S!QO(P-6fvJZF2n-?_7KF2x-;OI32C8E4boFyt=akR{0I8lRX8-^I diff --git a/common/xfwm4/assets/bottom-left-inactive.png b/common/xfwm4/assets/bottom-left-inactive.png deleted file mode 100644 index f786e2d4a7cfbc871ede8ce50c5a5ce8cf788aa1..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 157 zcmeAS@N?(olHy`uVBq!ia0vp^%plCc1|-8Yw(bW~EX7WqAsj$Z!;#Vf<Z~8yL>2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4<ivthz5Jr|+3#$mfQqC%T^vI= sW+vDCd-S!QO(P-6fvJZF2n-?_7KF2x-;OI32C8E4boFyt=akR{0I8lRX8-^I diff --git a/common/xfwm4/assets/bottom-right-active.png b/common/xfwm4/assets/bottom-right-active.png deleted file mode 100644 index c8a96c4194260e1968a9b2f6509edf53e9dc2632..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^%plCc1|-8Yw(bW~EX7WqAsj$Z!;#Vf<Z~8yL>2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4<ivthz5Jr|+3#$mK#DwF978x} rCfEFX^tGN%BO%Fwsi1F3i-s~orydKNQ=^zKP!WTttDnm{r-UW|kA)~l diff --git a/common/xfwm4/assets/bottom-right-inactive.png b/common/xfwm4/assets/bottom-right-inactive.png deleted file mode 100644 index c8a96c4194260e1968a9b2f6509edf53e9dc2632..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^%plCc1|-8Yw(bW~EX7WqAsj$Z!;#Vf<Z~8yL>2?p zUk71ECym(^Ktah8*NBqf{Irtt#G+J&^73-M%)IR4<ivthz5Jr|+3#$mK#DwF978x} rCfEFX^tGN%BO%Fwsi1F3i-s~orydKNQ=^zKP!WTttDnm{r-UW|kA)~l diff --git a/common/xfwm4/assets/close-active.png b/common/xfwm4/assets/close-active.png deleted file mode 100644 index ed3418cb8a12967c7fb42676f2e6bf314d0e4c10..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 410 zcmV;L0cHM)P)<h;3K|Lk000e1NJLTq000~S000~a0{{R3Mbj^)00003b3#c}2nYz< z;ZNWI000SaNLh0L01ejw01ejxLMWSf0000PbVXQnQ*UN;cVTj60C#tHE@^ISb7Ns} zWiD@WXPfRk8UO$Qeo#zQMd#@2=-lAw-Qein;p@A<>%742qNeSlr|qMt?WCyg@A2_^ zfbn{P@q2*sd4KZG(el#O^JZ=H%FXl6((}{T^VQh%<K^^VXY^rc^kQlBWNY+hZS-eu z^k{DMXm9k}-Spkx^xoj~-{AD$;q>6)^>B9ead-Fj_xShu`1tt?f5nLa0053jL_t(2 z&)v{T5`sVsK+ym)35ekE85+eAbN>sv!A;x6UjO!0QkBShA^Fw3D66U>_FT3y0ANCg zHOw_%>KS+fJYeuGjDXkJwr2$r3pc<{Z&%#|g@p!St9k%14(#r##|{`Q%z#nLQZJ6R zF)-CoPeAH8<<lv!4-FTdAQBGqoWn%?B=7q?4dfqt1JJh*+NbmG+W-In07*qoM6N<$ Eg5ONZOaK4? diff --git a/common/xfwm4/assets/close-inactive.png b/common/xfwm4/assets/close-inactive.png deleted file mode 100644 index cfadbdbcf78c2a29a5a6595f97ee05fea4693838..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 384 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s3?yAI>n{UR%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0w?0X`wF z+ji{Vw&TF|od>t?I<S5Bp&h#p?EsQ{4)5G^X!pLOyZ0a6fAIK$gC`CgI(hc|m2>B> zp1W}E`i;AH??1kG|Iz&iPaZsc`tZ@y$4{O=e){4G5IuYG^x4a2&tE@(@%r8S5AWW8 zeE<HVBfD@k(7Jw47sn8diB~V27HU@DaR^+u^#XfW#@f)XXaDzalHTpuR$9G1ebP*q z+}04CFQ+ZGhGoBACR4@Ca7_N9_O~hig+>L;JDTPR=P+`Heib^PTEQ+SBqqr?djX?_ z>pTXv=H&{X?3k?_xmjLTM;c|zZs0Rm<1pRw>1|cpr9WCE_TGDL^uD{W%s1Bju1s;o coBbb{MW1_D97#4j1aumMr>mdKI;Vst0MRV7`2YX_ diff --git a/common/xfwm4/assets/close-prelight.png b/common/xfwm4/assets/close-prelight.png deleted file mode 100644 index 253df24d1bf44af52960f62fba9b9f17a960f985..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 379 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s3?yAI>n{UR%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0v%0X`wF z&tJTLasTm)2SD`X&9PJOHf?*idHcI9JKnwj_<73A&r@c7zIOBT%{!lO-Ti#~-j~TU zzFfZc<-wybkDh#a3`9@AJbC)%*~_mjU0++fzqa*!YiRq{)bXvQ>l={WJL!Ax<nP~p z{P^)Rl>KrK(8hL87sn8d^LH<J@*OhZaR^-Q>=o7Kq*+=o@#=T{B;E}if<oRuZmUOc zO8u(%^J<LjGR=zVo4ptvR`+~-<vaHf?*p#li3z+n6p!s?v^yw!;bz4aUIC$yhOIZn z9E>I0H(!>VA<T0iAvWDPZ7usWxnHaqM$2t>Pq}a7xMY@mv81qO&FWibOaCO7-^}DM U&u;Ty2y_yIr>mdKI;Vst04%GsZ2$lO diff --git a/common/xfwm4/assets/close-pressed.png b/common/xfwm4/assets/close-pressed.png deleted file mode 100644 index cf27e4e372ac5ba1fff8c4a1e834a71ae66bad9f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 388 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s3?yAI>n{UR%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0vH0X`wF z&tJTLapTU5n|EK_y8CMNhF5DgzUl0L(*;Bm-gHlV_x|Ji;HdW@(eFcIJ_JR6G_d?= zX!X&^`lE&8M@z?#R!$$SoIhH-{Fpue$Gk;97cKj_WW~?rt9~wD{d2{dpKCV!T)Xkt zhAsbp{rdms&;S4b51*XT2DG=!)5S4F<NVzVr}>&3cpNS=eG>W*CUGTDWaIz;{dpbT zg@@wae_P@kbu(XOe^ii3?fq$<XUg~(V&n`{efOIb)<|7u;7-_i;3sPcqg=!6%6#Js zY!(bv=GAhH;tQC+WPJ-r;Mu^q$9MA26SssS_N<C;sCqmlSWIqKzKx@b{Pmq3ol8Q^ gd1B|DwExC-E1O5&_uc_u*fB78y85}Sb4q9e02{xrd;kCd diff --git a/common/xfwm4/assets/hide-active.png b/common/xfwm4/assets/hide-active.png deleted file mode 100644 index 338396430241c54940b18d9317d4a0d947d7273d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*v3?%uJ&DntzbFq_W2nPqp?T7vkfLzW3kH})6 z^6MbX=%g{b0w^e1;u=vBoS#-wo>-L1P+nfHmzkGcoSayYs+V7sKKq@G6i8=)Pl)S; zDf6Dcc>V7E$NvRuyFfZUT^vI=W+ulRWnk-BXtMnOdcjhMWiONT8C>7;?vwlULIJ3V N!PC{xWt~$(698dnHcS8j diff --git a/common/xfwm4/assets/hide-inactive.png b/common/xfwm4/assets/hide-inactive.png deleted file mode 100644 index f45d3311f1c0f544b31b05b7d023f2650a4124bc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 176 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*v3?%uJ&DntzbFq_W2nPqp?T7vkfLzW3kH})6 z^6MbX=%g{b0w^e1;u=vBoS#-wo>-L1P+nfHmzkGcoSayYs+V7sKKq@G6i8=)Pl)Tb z9S5Gjc>V7E$IB}=2Y_^Xx;Tb#%uJ3s%D~pM&}8}l^@61i%U&kwGq}Fx-6!|yg#u6! NgQu&X%Q~loCIE9uHjn@S diff --git a/common/xfwm4/assets/hide-prelight.png b/common/xfwm4/assets/hide-prelight.png deleted file mode 100644 index 0ae27823cbc57bf7c98710f906b9c8c344e0d306..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 320 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s3?yAI>n{UR%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0vE0X`wF zRrTE$uiU<L<@V)kKy>Hobs)NX`|hJV_a5DU`1HZUXOEw}c>3(+^B1q*z5n>-%eSxJ zfav?5KY#xH`*+z|bQ92=GEW!B5RLO!FWu&9P!Mnpylj{sJnQrS|51^WD>(LDt&COJ zHF53SjY~J{D{GzH8FIsk`P}grvNNR4?g@;V;oHfvU6w0iLD7`wC5@N%zesJg5!z_7 z=tQ+eugvYe0!}CV1tZ)!{8?_FP+wPb$n5ZI<2}dfYbHD1VO$rZ!O3=v<uT9&44$rj JF6*2UngEiZk?H^d diff --git a/common/xfwm4/assets/hide-pressed.png b/common/xfwm4/assets/hide-pressed.png deleted file mode 100644 index 7311e499762993d43ea9ff55b08c36069a802da4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 326 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s3?yAI>n{UR%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0wn0X`wF zK~o+DPk9tE<5A>{M^QjD^Ktad$9YR0=PiAbzvRixz0YRteKs42_C4Er=Eb(NFSeh3 zaqHo$+Yevge)RhJi`VbofBgUdzn{zQ2|xpjJzX3_G$vlX;LX>dz~g#R%hi>I<>Fuc ztNt8jM<-ZZw*JDx%zw>GK)Y7*?~Uzm7yK2DYSAuHy~P&P`}l=mk&%H+qlw`gO+KEZ zA9HtGy+0zLdCGkMRT1B(ns*Pm7kuX^wwyotWsI3s&5S7mr*uAYp8nTref*`-tpW@4 RpFrywJYD@<);T3K0RX-6jL851 diff --git a/common/xfwm4/assets/left-active.png b/common/xfwm4/assets/left-active.png deleted file mode 100644 index 4e853fe7ec81f0bd24d0f734d74df58dfacefc88..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^j6f{F!3HF+&llYeq*#ibJVQ8upoSx*1IXtr@Q5r1 zs=p4xj7}P}D}aKMC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6dzc)B=- naLi1u`1j~*y&4-3yb@qg&1SywXy$Kipge=8tDnm{r-UW|_s}R) diff --git a/common/xfwm4/assets/left-inactive.png b/common/xfwm4/assets/left-inactive.png deleted file mode 100644 index 4e853fe7ec81f0bd24d0f734d74df58dfacefc88..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^j6f{F!3HF+&llYeq*#ibJVQ8upoSx*1IXtr@Q5r1 zs=p4xj7}P}D}aKMC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6dzc)B=- naLi1u`1j~*y&4-3yb@qg&1SywXy$Kipge=8tDnm{r-UW|_s}R) diff --git a/common/xfwm4/assets/maximize-active.png b/common/xfwm4/assets/maximize-active.png deleted file mode 100644 index 670bbcaabda8f54dfc5735074d37762d87b155c0..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 231 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*t3?v(r4=o2$%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0v20X`wF z6Q;~tuyozRC2Ll#-Lhu=_H`R}K6(1$>9d#5p1*qb{Ppt}uiw4@s9e%03{-FG>Eak7 zF*W%{FOx*r!iIxKbrUBzJ<^MRccAr1?zvfAXL1dqC0oy=u3QBaO)8L=(4TOWm7(nS Wzx>U+MH_(zFnGH9xvX<aXaWF}PFd3c diff --git a/common/xfwm4/assets/maximize-inactive.png b/common/xfwm4/assets/maximize-inactive.png deleted file mode 100644 index 23dff4c691a97e6f3fd4cb728dd73ffa2b0f63db..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 228 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*t3?v(r4=o2$%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0wD0X`wF z+jbn-fAIK$Lnn_OKXdfN+2beAKYjM<*>fOz{rtu2cke$gT(Ha=sMyrg#W6%;YH~y? zlSJC0hJ#0S6EC<t@|*weK<5$Nb2+Zh#AclBaCx>VBuuGL-Dn4YkNAm4Obl<QKTYvT SR1W|ez~JfX=d#Wzp$PyWHd#;r diff --git a/common/xfwm4/assets/maximize-prelight.png b/common/xfwm4/assets/maximize-prelight.png deleted file mode 100644 index cd39fdae4a2e18ba555cf15b9d7e48d3b0641aad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 375 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s3?yAI>n{UR%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0xF0X`wF zRrTGIr!SZ?W6{E;YnQIruwwP*i&t)6x^nySH6Xfk^*RvUy?yu5oqLb&KYaS&;j_n2 zUOavF^7)I`@7{m>^5xstZ$R|@*RS8dfByl4zd-Qs-@n>=!TCTdCV9FzhG?9>dg(6T zAq5`R2djeX*m|^9?AZ6e_?F>Urdg`@GWCB>np_mLBZp^>`LpSQb3;#AO);1;!^`tx zi`?OgrB;<Zx{E3$S07}Hee(P_!v^)PeU7tltP)bay+F%EKJSZ#k(jDNNUF`(jm8HK zoOF7#>B72I8w6(k`Pp@BU&|l8M4?xgvumq_y1#pWl>7hKXWtQZjRofA`&=&E1G<jE M)78&qol`;+0A5wN_y7O^ diff --git a/common/xfwm4/assets/maximize-pressed.png b/common/xfwm4/assets/maximize-pressed.png deleted file mode 100644 index 6d538064ca51808c3d7de4dcaebd106cbcee1d37..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 381 zcmeAS@N?(olHy`uVBq!ia0vp^G9b*s3?yAI>n{UR%*9TgAsieWw;%dH0CG7CJR*yM z%CCbkqm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0us0X`wF zK~o+D1JTq+AyXfPPJ0|a{c*&MN0BogMFG*w$I&w%=Ph}hxAaN=k|#6wKAW}o*=!)% z_iXE#7u(Lh*nalK;agvi-~D#x!M9rvU)_HA`u3yOcVGRy|N7VS7q8#F|M>s^|2@H4 zmw<Nld%8G=XiU6%;WS^9fr#rxUXiFLzDsRH-v9r<RJduGs_g4|>%OSj?orz4{wp=+ z)+&uxc{>kXWN6r^*vIMK`L)n+&eYZIx(!82{0qKsU=lgi$*{Fu>XN1UY!(AKDUZ~1 zC)F14oL{Eow@~j~*@56AnhlDdrrv(mpJ1<i=kU**%01R^tAA|G-;&psyZ_LJ|A)-& XFM3rPGQSc4I*q~8)z4*}Q$iB}4_dQb diff --git a/common/xfwm4/assets/menu-active.png b/common/xfwm4/assets/menu-active.png deleted file mode 100644 index 6abb25fe46cb59beb104991316a5ca954959e6bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)g$P6Tn<o~_~Qq09po*^6@9Je3(KLBz$3p^r= zfy%FgFr$;k><XZuWQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6HXu`(1AIbU rpTBs$YQ;{Fx!j&Ejv*Yf$qS5toB#&K_i?K4fh-13S3j3^P6<r_i^eLV diff --git a/common/xfwm4/assets/menu-inactive.png b/common/xfwm4/assets/menu-inactive.png deleted file mode 100644 index 6abb25fe46cb59beb104991316a5ca954959e6bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)g$P6Tn<o~_~Qq09po*^6@9Je3(KLBz$3p^r= zfy%FgFr$;k><XZuWQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6HXu`(1AIbU rpTBs$YQ;{Fx!j&Ejv*Yf$qS5toB#&K_i?K4fh-13S3j3^P6<r_i^eLV diff --git a/common/xfwm4/assets/menu-pressed.png b/common/xfwm4/assets/menu-pressed.png deleted file mode 100644 index 6abb25fe46cb59beb104991316a5ca954959e6bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 156 zcmeAS@N?(olHy`uVBq!ia0vp^Qa~)g$P6Tn<o~_~Qq09po*^6@9Je3(KLBz$3p^r= zfy%FgFr$;k><XZuWQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6HXu`(1AIbU rpTBs$YQ;{Fx!j&Ejv*Yf$qS5toB#&K_i?K4fh-13S3j3^P6<r_i^eLV diff --git a/common/xfwm4/assets/right-active.png b/common/xfwm4/assets/right-active.png deleted file mode 100644 index 4e853fe7ec81f0bd24d0f734d74df58dfacefc88..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^j6f{F!3HF+&llYeq*#ibJVQ8upoSx*1IXtr@Q5r1 zs=p4xj7}P}D}aKMC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6dzc)B=- naLi1u`1j~*y&4-3yb@qg&1SywXy$Kipge=8tDnm{r-UW|_s}R) diff --git a/common/xfwm4/assets/right-inactive.png b/common/xfwm4/assets/right-inactive.png deleted file mode 100644 index 4e853fe7ec81f0bd24d0f734d74df58dfacefc88..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmeAS@N?(olHy`uVBq!ia0vp^j6f{F!3HF+&llYeq*#ibJVQ8upoSx*1IXtr@Q5r1 zs=p4xj7}P}D}aKMC9V-A!TD(=<%vb94CUqJdYO6I#mR{Use1WE>9gP2NC6dzc)B=- naLi1u`1j~*y&4-3yb@qg&1SywXy$Kipge=8tDnm{r-UW|_s}R) diff --git a/common/xfwm4/assets/shade-active.png b/common/xfwm4/assets/shade-active.png deleted file mode 100644 index 2b081b51c5a01eb6937285f7b658d9cb587b1747..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 252 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9T!3-p$rQ}6{6mzkYX9x!e$L)vy4}e_G0*}aI zpz`Y=%;=;sy8<XES>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkaez;V z>ylO5*Kawnaod3{JCAJJeRTK!6MGJxI&k>x!DHthJbL>0$@9lgUOavF>e=&`&z`?} z{^Iq!_aDRNsb>SVTYI`VhG?8m7C6Ab^G71#0(W82BJM(C!=i;;A2%5o7<^v9vC)u$ uQCohJ06Vk9hR53{GID+3=3T4c!oYCNSh_>)fQ%~87zR&QKbLh*2~7aLuwZcj diff --git a/common/xfwm4/assets/shade-inactive.png b/common/xfwm4/assets/shade-inactive.png deleted file mode 100644 index 56b0955c479f5abd2ffa18ea66729b7cb6b98c00..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 243 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9T!VDzmz4{~qq?n7HJVQ7*IBq}me*oli7I;J! z1C?I~VMZs7*%d%R$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS3<7*Y zTzBq2cktNdL&q;4IeGQiscR?C-Z**g=9vq(&R)Fz=*f#GPhUQH_VU^DSI?fme*WV1 zyZ0ZH4Dxw^dQClD9780+lYj6t^Sn=JP+K$8;F|W)+JI|<Y|<Lqjg4RBW_)dGY+T6a l`<{7$guE2DqPMabL*M6HbC0ES#sLjr@O1TaS?83{1OQpkVZs0a diff --git a/common/xfwm4/assets/shade-pressed.png b/common/xfwm4/assets/shade-pressed.png deleted file mode 100644 index 998cb0fdeec556781ea64d6d82e1b65f296f204b..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 256 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9T!3-p$rQ}6{6mzkYX9x!e$L)vy4}e_G0*}aI zpz`Y=%;=;sy8<XES>hT|5}cn_Ql40p%1~Zju9umYU7Va)kgAtols@~NjTBIkS%6Q7 zYtWQOS&N?JEqPqF;z`x&r!5<vwr_qqVcWAQJD**@|LX4JSN9&jdi?D5lV`7<J%9b| z#p~xUUcY<)QRnDQ0iX#so-U3d8t0P*jxg{rNhDn0E-YHaU1)4rw2<rLCIbV5&kEch yHybiAYRgX&U}u)t@Ob+~My?OsylWL)7#Oy`mJOM;*Vqtf4uhwwpUXO@geCy~{9;xB diff --git a/common/xfwm4/assets/stick-active.png b/common/xfwm4/assets/stick-active.png deleted file mode 100644 index 12fb81018c0b39f8cc6e1029685d884b968cab91..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9T#0(?_SFvvaQq09po*^6@9Je3(KLBz$3p^r= zfy%FgFr$;k><XZuWQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}v+0X`wF zOIB@v{^Iq!_aEKPGll>K6+B%WLpWw8N3gPROE@(uH1JFkom-M1&^md>rj%PuDvaW( WI*HB)S1JM3GI+ZBxvX<aXaWGM05tdj diff --git a/common/xfwm4/assets/stick-inactive.png b/common/xfwm4/assets/stick-inactive.png deleted file mode 100644 index 14a6b510d8739aea27573a0fb31224a2facb0992..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9T#0(?_SFvvaQq09po*^6@9Je3(KLBz$3p^r= zfy%FgFr$;k><XZuWQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}v+0X`wF zJNKV^{^Iq!_aDPv^Bn~WDtNj$hH%VGj$mcsmT+oRXyBP7I=3W2pmp+$O)0mSR2aom WbrPKqu2cf5W$<+Mb6Mw<&;$VDku~E0 diff --git a/common/xfwm4/assets/stick-pressed.png b/common/xfwm4/assets/stick-pressed.png deleted file mode 100644 index 626a491466af2b84cc4a025cb05774ad4c4f3bd5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 183 zcmeAS@N?(olHy`uVBq!ia0vp^LO?9T#0(?_SFvvaQq09po*^6@9Je3(KLBz$3p^r= zfy%FgFr$;k><XZuWQl7;NpOBzNqJ&XDnogBxn5>oc5!lIL8@MUQTpt6Hc}v+0X`wF zK~o+*fARX=`;ShYHqt;r1y2{p5RRG25v(lS5>AZ@4Lp-X=awW0v`(I}DdiTE3Zr<c VPNMU{l}bRh44$rjF6*2UngEIFG;;s| diff --git a/common/xfwm4/assets/title-1-active.png b/common/xfwm4/assets/title-1-active.png deleted file mode 100644 index cdf82079ec0cc24b26935083939d3ffe71e8ab68..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo$P6SWS3Lg;q?n7HJVQ7*IBq}me*oli7I;J! z1C?I~VMZs7*%d%R$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS*aCb) zT%W&q{qFro_B$LGfg-$~E{-7_vdKRVI*2ham^Lu{R7l9k07@`;y85}Sb4q9e0Qg2O AX#fBK diff --git a/common/xfwm4/assets/title-1-inactive.png b/common/xfwm4/assets/title-1-inactive.png deleted file mode 100644 index cdf82079ec0cc24b26935083939d3ffe71e8ab68..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo$P6SWS3Lg;q?n7HJVQ7*IBq}me*oli7I;J! z1C?I~VMZs7*%d%R$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS*aCb) zT%W&q{qFro_B$LGfg-$~E{-7_vdKRVI*2ham^Lu{R7l9k07@`;y85}Sb4q9e0Qg2O AX#fBK diff --git a/common/xfwm4/assets/title-2-active.png b/common/xfwm4/assets/title-2-active.png deleted file mode 100644 index cdf82079ec0cc24b26935083939d3ffe71e8ab68..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo$P6SWS3Lg;q?n7HJVQ7*IBq}me*oli7I;J! z1C?I~VMZs7*%d%R$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS*aCb) zT%W&q{qFro_B$LGfg-$~E{-7_vdKRVI*2ham^Lu{R7l9k07@`;y85}Sb4q9e0Qg2O AX#fBK diff --git a/common/xfwm4/assets/title-2-inactive.png b/common/xfwm4/assets/title-2-inactive.png deleted file mode 100644 index cdf82079ec0cc24b26935083939d3ffe71e8ab68..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo$P6SWS3Lg;q?n7HJVQ7*IBq}me*oli7I;J! z1C?I~VMZs7*%d%R$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS*aCb) zT%W&q{qFro_B$LGfg-$~E{-7_vdKRVI*2ham^Lu{R7l9k07@`;y85}Sb4q9e0Qg2O AX#fBK diff --git a/common/xfwm4/assets/title-3-active.png b/common/xfwm4/assets/title-3-active.png deleted file mode 100644 index cdf82079ec0cc24b26935083939d3ffe71e8ab68..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo$P6SWS3Lg;q?n7HJVQ7*IBq}me*oli7I;J! z1C?I~VMZs7*%d%R$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS*aCb) zT%W&q{qFro_B$LGfg-$~E{-7_vdKRVI*2ham^Lu{R7l9k07@`;y85}Sb4q9e0Qg2O AX#fBK diff --git a/common/xfwm4/assets/title-3-inactive.png b/common/xfwm4/assets/title-3-inactive.png deleted file mode 100644 index cdf82079ec0cc24b26935083939d3ffe71e8ab68..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo$P6SWS3Lg;q?n7HJVQ7*IBq}me*oli7I;J! z1C?I~VMZs7*%d%R$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS*aCb) zT%W&q{qFro_B$LGfg-$~E{-7_vdKRVI*2ham^Lu{R7l9k07@`;y85}Sb4q9e0Qg2O AX#fBK diff --git a/common/xfwm4/assets/title-4-active.png b/common/xfwm4/assets/title-4-active.png deleted file mode 100644 index cdf82079ec0cc24b26935083939d3ffe71e8ab68..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo$P6SWS3Lg;q?n7HJVQ7*IBq}me*oli7I;J! z1C?I~VMZs7*%d%R$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS*aCb) zT%W&q{qFro_B$LGfg-$~E{-7_vdKRVI*2ham^Lu{R7l9k07@`;y85}Sb4q9e0Qg2O AX#fBK diff --git a/common/xfwm4/assets/title-4-inactive.png b/common/xfwm4/assets/title-4-inactive.png deleted file mode 100644 index cdf82079ec0cc24b26935083939d3ffe71e8ab68..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo$P6SWS3Lg;q?n7HJVQ7*IBq}me*oli7I;J! z1C?I~VMZs7*%d%R$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS*aCb) zT%W&q{qFro_B$LGfg-$~E{-7_vdKRVI*2ham^Lu{R7l9k07@`;y85}Sb4q9e0Qg2O AX#fBK diff --git a/common/xfwm4/assets/title-5-active.png b/common/xfwm4/assets/title-5-active.png deleted file mode 100644 index cdf82079ec0cc24b26935083939d3ffe71e8ab68..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo$P6SWS3Lg;q?n7HJVQ7*IBq}me*oli7I;J! z1C?I~VMZs7*%d%R$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS*aCb) zT%W&q{qFro_B$LGfg-$~E{-7_vdKRVI*2ham^Lu{R7l9k07@`;y85}Sb4q9e0Qg2O AX#fBK diff --git a/common/xfwm4/assets/title-5-inactive.png b/common/xfwm4/assets/title-5-inactive.png deleted file mode 100644 index cdf82079ec0cc24b26935083939d3ffe71e8ab68..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 161 zcmeAS@N?(olHy`uVBq!ia0vp^tUxTo$P6SWS3Lg;q?n7HJVQ7*IBq}me*oli7I;J! z1C?I~VMZs7*%d%R$r9IylHmNblJdl&REF~Ma=pyF?Be9af>gcyqV(DCY@~pS*aCb) zT%W&q{qFro_B$LGfg-$~E{-7_vdKRVI*2ham^Lu{R7l9k07@`;y85}Sb4q9e0Qg2O AX#fBK diff --git a/common/xfwm4/assets/top-left-active.png b/common/xfwm4/assets/top-left-active.png deleted file mode 100644 index 54746a4332f8827787d09d17918d4ef2b582b2e3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^Oh7Ed!3HF~v+~XZDVAa<&kznEsNqQI0P;BtJR*yM z>aT+^qm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0u-o-U3d z95e48+sMmcz;R&1l>h#$owm$6F@gSU3ag)|eqGVR<xo&}mT8R_?~450{YQX$7(8A5 KT-G@yGywp9>oETS diff --git a/common/xfwm4/assets/top-left-inactive.png b/common/xfwm4/assets/top-left-inactive.png deleted file mode 100644 index 54746a4332f8827787d09d17918d4ef2b582b2e3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^Oh7Ed!3HF~v+~XZDVAa<&kznEsNqQI0P;BtJR*yM z>aT+^qm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0u-o-U3d z95e48+sMmcz;R&1l>h#$owm$6F@gSU3ag)|eqGVR<xo&}mT8R_?~450{YQX$7(8A5 KT-G@yGywp9>oETS diff --git a/common/xfwm4/assets/top-right-active.png b/common/xfwm4/assets/top-right-active.png deleted file mode 100644 index 6aa399066f8ad5a9ea38bb8c70e594fca57dd762..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^Oh7Ed!3HF~v+~XZDVAa<&kznEsNqQI0P;BtJR*yM z>aT+^qm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0u-o-U3d z95e48+sMmcz`?Td@_TzNk1yd4lQkcm3OUc@vb4&KLF?g9Q}(sCyepO0FRBFUVeoYI Kb6Mw<&;$UC!!Ymw diff --git a/common/xfwm4/assets/top-right-inactive.png b/common/xfwm4/assets/top-right-inactive.png deleted file mode 100644 index 6aa399066f8ad5a9ea38bb8c70e594fca57dd762..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 171 zcmeAS@N?(olHy`uVBq!ia0vp^Oh7Ed!3HF~v+~XZDVAa<&kznEsNqQI0P;BtJR*yM z>aT+^qm#z$3ZS55iEBhjaDG}zd16s2LwR|*US?i)adKios$PCk`s{Z$Qb0u-o-U3d z95e48+sMmcz`?Td@_TzNk1yd4lQkcm3OUc@vb4&KLF?g9Q}(sCyepO0FRBFUVeoYI Kb6Mw<&;$UC!!Ymw diff --git a/common/xfwm4/close-active.xpm b/common/xfwm4/close-active.xpm deleted file mode 100644 index 7de8536..0000000 --- a/common/xfwm4/close-active.xpm +++ /dev/null @@ -1,70 +0,0 @@ -/* XPM */ -static char * close_active_xpm[] = { -"28 28 39 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -"@ c #E8DCDF", -"# c #EDA2A6", -"$ c #F1797F", -"% c #F3656C", -"& c #F17A80", -"* c #EDA1A7", -"= c #EBBABE", -"- c #F3666D", -"; c #F46067", -"> c #EABBBF", -", c #F36067", -"' c #F36E74", -") c #F36C73", -"! c #F3676E", -"~ c #E7DCDF", -"{ c #F7F7F8", -"] c #F4D3D6", -"^ c #F36269", -"/ c #F4D2D4", -"( c #EDA2A8", -"_ c #F4C4C8", -": c #F7F8F9", -"< c #F4D5D8", -"[ c #F4C9CD", -"} c #F4C8CB", -"| c #F3CBCE", -"1 c #F4D9DC", -"2 c #F3646B", -"3 c #F3C3C7", -"4 c #F6F2F3", -"5 c #F3BFC3", -"6 c #EDA3A8", -"7 c #F3686E", -"8 c #E7DDE0", -"9 c #EABCC0", -"0 c #F4656D", -"............................", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++@#$%%&*@++++++++++", -"+++++++++=-;;;;;;->+++++++++", -"++++++++=,;;;;;;;;,>++++++++", -"+++++++@-;;';;;;);;!~+++++++", -"+++++++#;;;{]^^/{;;;(+++++++", -"+++++++$;;;_:<<:[;;;&+++++++", -"+++++++-;;;;}::|;;;;-+++++++", -"+++++++-;;;^<::12;;;!+++++++", -"+++++++$;;;]:33:<;;;&+++++++", -"+++++++*;;;45;;54;;;6+++++++", -"+++++++@-;;;;;;;;;;78+++++++", -"++++++++>,;;;;;;;;,9++++++++", -"+++++++++>!;;;;;;79+++++++++", -"++++++++++~(&00&68++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++"}; diff --git a/common/xfwm4/close-inactive.xpm b/common/xfwm4/close-inactive.xpm deleted file mode 100644 index fbde571..0000000 --- a/common/xfwm4/close-inactive.xpm +++ /dev/null @@ -1,65 +0,0 @@ -/* XPM */ -static char * close_inactive_xpm[] = { -"28 28 34 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -"@ c #E2E3E6", -"# c #CCCFD3", -"$ c #BFC1C8", -"% c #B8BBC1", -"& c #CDCFD4", -"* c #D6D8DC", -"= c #B8BBC2", -"- c #B5B8C0", -"; c #B5B8BE", -"> c #BBBDC3", -", c #BABCC3", -"' c #B8BAC1", -") c #E3E4E7", -"! c #DFE1E4", -"~ c #B6B9C0", -"{ c #BEC1C7", -"] c #DBDCDF", -"^ c #E1E2E6", -"/ c #DDDEE1", -"( c #DCDEE1", -"_ c #DEDEE2", -": c #E4E4E7", -"< c #B7BAC0", -"[ c #E1E1E6", -"} c #DADCDF", -"| c #ECECEE", -"1 c #CED0D5", -"2 c #B9BBC2", -"3 c #D7D8DC", -"4 c #BFC2C9", -"5 c #B7BBC1", -"............................", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++@#$%%$&@++++++++++", -"+++++++++*=------=*+++++++++", -"++++++++*;--------;*++++++++", -"+++++++@=-->----,--')+++++++", -"+++++++#---.!~~!.---&+++++++", -"+++++++{---].^^./---$+++++++", -"+++++++=----(.._----=+++++++", -"+++++++=---~^..:<---'+++++++", -"+++++++$---[.}}.^---$+++++++", -"+++++++&---|}--}|---1+++++++", -"+++++++@=----------2)+++++++", -"++++++++*;--------;3++++++++", -"+++++++++*'------23+++++++++", -"++++++++++)&45541)++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++"}; diff --git a/common/xfwm4/close-prelight.xpm b/common/xfwm4/close-prelight.xpm deleted file mode 100644 index 6b98035..0000000 --- a/common/xfwm4/close-prelight.xpm +++ /dev/null @@ -1,74 +0,0 @@ -/* XPM */ -static char * close_prelight_xpm[] = { -"28 28 43 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -"@ c #E8DFE2", -"# c #EEB2B6", -"$ c #F39399", -"% c #F5848A", -"& c #EEB2B7", -"* c #ECC5C9", -"= c #F5858B", -"- c #F68086", -"; c #EBC5C9", -"> c #F58086", -", c #F68A91", -"' c #F58A8F", -") c #F4858B", -"! c #E7DFE2", -"~ c #F7F7F8", -"{ c #F4DADD", -"] c #F58186", -"^ c #F4D8DB", -"/ c #F39398", -"( c #F4CFD1", -"_ c #F7F8F9", -": c #F4DCDD", -"< c #F5DCDF", -"[ c #F5D3D5", -"} c #F4D1D4", -"| c #F4D4D7", -"1 c #F58288", -"2 c #F4DCDF", -"3 c #F4DFE1", -"4 c #F58388", -"5 c #F5DADD", -"6 c #F4CDD0", -"7 c #F5DCDD", -"8 c #F6F3F4", -"9 c #F4CCCE", -"0 c #EEB3B7", -"a c #F6868B", -"b c #E7DFE3", -"c c #EBC6CA", -"d c #F39499", -"............................", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++@#$%%$&@++++++++++", -"+++++++++*=------=;+++++++++", -"++++++++*>-------->;++++++++", -"+++++++@=--,----'--)!+++++++", -"+++++++#---~{]]^~---&+++++++", -"+++++++/---(_:<_[---$+++++++", -"+++++++=----}__|----=+++++++", -"+++++++=---12__34---)+++++++", -"+++++++$---5_66_7---$+++++++", -"+++++++&---89--98---0+++++++", -"+++++++@=----------ab+++++++", -"++++++++;>-------->c++++++++", -"+++++++++;)------ac+++++++++", -"++++++++++!&d%%d0b++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++"}; diff --git a/common/xfwm4/close-pressed.xpm b/common/xfwm4/close-pressed.xpm deleted file mode 100644 index 5e4ec8c..0000000 --- a/common/xfwm4/close-pressed.xpm +++ /dev/null @@ -1,77 +0,0 @@ -/* XPM */ -static char * close_pressed_xpm[] = { -"28 28 46 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -"@ c #E8D7DB", -"# c #EC888F", -"$ c #EF525A", -"% c #F03740", -"& c #EF535B", -"* c #EC898F", -"= c #EAAAAF", -"- c #F03942", -"; c #F13039", -"> c #E9ABB0", -", c #F03039", -"' c #F23C45", -") c #F23B44", -"! c #F03A42", -"~ c #E7D8DC", -"{ c #FFFBFB", -"] c #FAAEB1", -"^ c #F1323B", -"/ c #F9ABAE", -"( c #FFFDFD", -"_ c #EC8990", -": c #EF5158", -"< c #F8999D", -"[ c #fdf6e3", -"} c #FAB1B4", -"| c #FAB0B4", -"1 c #F99FA3", -"2 c #F03841", -"3 c #F89DA1", -"4 c #F9A2A6", -"5 c #FAB2B5", -"6 c #FAB9BC", -"7 c #F1333C", -"8 c #FAAFB2", -"9 c #F8989C", -"0 c #FAAFB3", -"a c #FEEDEE", -"b c #F89297", -"c c #EC8A90", -"d c #F03A43", -"e c #E7D9DC", -"f c #E9ACB1", -"g c #EF545B", -"............................", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++@#$%%&*@++++++++++", -"+++++++++=-;;;;;;->+++++++++", -"++++++++=,;;;;;;;;,>++++++++", -"+++++++@-;;';;;;);;!~+++++++", -"+++++++#;;;{]^^/(;;;_+++++++", -"+++++++:;;;<[}|[1;;;&+++++++", -"+++++++2;;;;3[[4;;;;-+++++++", -"+++++++-;;;^5[[67;;;!+++++++", -"+++++++$;;;8[99[0;;;&+++++++", -"+++++++*;;;ab;;ba;;;c+++++++", -"+++++++@-;;;;;;;;;;de+++++++", -"++++++++>,;;;;;;;;,f++++++++", -"+++++++++>!;;;;;;df+++++++++", -"++++++++++~_g22gce++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++"}; diff --git a/common/xfwm4/hide-active.xpm b/common/xfwm4/hide-active.xpm deleted file mode 100644 index 3a2062f..0000000 --- a/common/xfwm4/hide-active.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * hide_active_xpm[] = { -"28 28 4 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -"@ c #90949E", -"............................", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"+++++++++++@@@@@@+++++++++++", -"+++++++++++@@@@@@+++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++"}; diff --git a/common/xfwm4/hide-inactive.xpm b/common/xfwm4/hide-inactive.xpm deleted file mode 100644 index da90405..0000000 --- a/common/xfwm4/hide-inactive.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * hide_inactive_xpm[] = { -"28 28 4 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -"@ c #B5B8C0", -"............................", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"+++++++++++@@@@@@+++++++++++", -"+++++++++++@@@@@@+++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++"}; diff --git a/common/xfwm4/hide-prelight.xpm b/common/xfwm4/hide-prelight.xpm deleted file mode 100644 index 3e3f00e..0000000 --- a/common/xfwm4/hide-prelight.xpm +++ /dev/null @@ -1,54 +0,0 @@ -/* XPM */ -static char * hide_prelight_xpm[] = { -"28 28 23 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -"@ c #E5E6E9", -"# c #DADCE1", -"$ c #D4D6DC", -"% c #D2D4DA", -"& c #DFE1E5", -"* c #D2D5DB", -"= c #E3E4E8", -"- c #F3F4F6", -"; c #FCFCFC", -"> c #E2E4E8", -", c #D5D7DD", -"' c #F5F6F6", -") c #FDFDFE", -"! c #DBDDE2", -"~ c #FBFCFC", -"{ c #7A7F8B", -"] c #FBFBFC", -"^ c #D1D4DA", -"/ c #E0E1E5", -"( c #F3F3F6", -"............................", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++@#$%%$#@++++++++++", -"+++++++++&*=-;;->*&+++++++++", -"++++++++&,'))))))',&++++++++", -"+++++++@*'))))))))'*@+++++++", -"+++++++#=))))))))))>!+++++++", -"+++++++$-))))))))))-$+++++++", -"+++++++%~)){{{{{{))~%+++++++", -"+++++++%~)){{{{{{))]^+++++++", -"+++++++$-))))))))))-$+++++++", -"+++++++#>))))))))))>!+++++++", -"+++++++@*'))))))))'*@+++++++", -"++++++++&,'))))))',/++++++++", -"+++++++++&*>-~~(>*/+++++++++", -"++++++++++@!$%%$!@++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++"}; diff --git a/common/xfwm4/hide-pressed.xpm b/common/xfwm4/hide-pressed.xpm deleted file mode 100644 index 9cddc59..0000000 --- a/common/xfwm4/hide-pressed.xpm +++ /dev/null @@ -1,55 +0,0 @@ -/* XPM */ -static char * hide_pressed_xpm[] = { -"28 28 24 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -"@ c #DAE1E9", -"# c #99BDE6", -"$ c #6EA3E2", -"% c #5897E2", -"& c #6EA4E4", -"* c #9ABCE6", -"= c #B5CBE7", -"- c #5998E1", -"; c #268bd2", -"> c #B5CCE7", -", c #5998E2", -"' c #DAE0EA", -") c #9BBCE6", -"! c #6DA3E3", -"~ c #5997E2", -"{ c #fdf6e3", -"] c #9BBDE5", -"^ c #5A98E2", -"/ c #DAE1EA", -"( c #B6CDE8", -"_ c #6FA4E3", -"............................", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++@#$%%&*@++++++++++", -"+++++++++=-;;;;;;->+++++++++", -"++++++++=;;;;;;;;;;>++++++++", -"+++++++@-;;;;;;;;;;,'+++++++", -"+++++++#;;;;;;;;;;;;)+++++++", -"+++++++!;;;;;;;;;;;;&+++++++", -"+++++++~;;;{{{{{{;;;-+++++++", -"+++++++-;;;{{{{{{;;;,+++++++", -"+++++++$;;;;;;;;;;;;&+++++++", -"+++++++*;;;;;;;;;;;;]+++++++", -"+++++++@-;;;;;;;;;;^/+++++++", -"++++++++>;;;;;;;;;;(++++++++", -"+++++++++>,;;;;;;^(+++++++++", -"++++++++++')_~~_]/++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++"}; diff --git a/common/xfwm4/maximize-active.xpm b/common/xfwm4/maximize-active.xpm deleted file mode 100644 index 057e727..0000000 --- a/common/xfwm4/maximize-active.xpm +++ /dev/null @@ -1,44 +0,0 @@ -/* XPM */ -static char * maximize_active_xpm[] = { -"28 28 13 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -"@ c #E5E6E9", -"# c #ACAFB7", -"$ c #90949E", -"% c #A0A5AD", -"& c #E6E7EA", -"* c #A9ADB4", -"= c #E3E4E8", -"- c #E6E7EB", -"; c #ADB0B8", -"> c #A0A4AB", -"............................", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++@#$$%+++++++++++", -"+++++++++++@+@#$$+++++++++++", -"++++++++++&*=+-;$+++++++++++", -"++++++++++&$*=+-;+++++++++++", -"++++++++++&$$#@+@+++++++++++", -"+++++++++++>$$#@++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++"}; diff --git a/common/xfwm4/maximize-inactive.xpm b/common/xfwm4/maximize-inactive.xpm deleted file mode 100644 index 46eb741..0000000 --- a/common/xfwm4/maximize-inactive.xpm +++ /dev/null @@ -1,43 +0,0 @@ -/* XPM */ -static char * maximize_inactive_xpm[] = { -"28 28 12 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -"@ c #E6E7EA", -"# c #C5C8CD", -"$ c #B5B8C0", -"% c #BFC2C9", -"& c #93a1a1", -"* c #E5E6EA", -"= c #E6E7EB", -"- c #C6C8CE", -"; c #BEC1C7", -"............................", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++@#$$%+++++++++++", -"+++++++++++@+@#$$+++++++++++", -"++++++++++@&*+=-$+++++++++++", -"++++++++++@$&*+=-+++++++++++", -"++++++++++@$$#@+@+++++++++++", -"+++++++++++;$$#@++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++"}; diff --git a/common/xfwm4/maximize-prelight.xpm b/common/xfwm4/maximize-prelight.xpm deleted file mode 100644 index 3d0f2c0..0000000 --- a/common/xfwm4/maximize-prelight.xpm +++ /dev/null @@ -1,62 +0,0 @@ -/* XPM */ -static char * maximize_prelight_xpm[] = { -"28 28 31 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -"@ c #E5E6E9", -"# c #DADCE1", -"$ c #D4D6DC", -"% c #D2D4DA", -"& c #DFE1E5", -"* c #D2D5DB", -"= c #E3E4E8", -"- c #F3F4F6", -"; c #FCFCFC", -"> c #E2E4E8", -", c #D5D7DD", -"' c #F5F6F6", -") c #FDFDFE", -"! c #FBFBFC", -"~ c #A5A8AF", -"{ c #7A7F8B", -"] c #9397A1", -"^ c #DBDDE2", -"/ c #FBFCFC", -"( c #FCFCFD", -"_ c #A1A5AC", -": c #FAFAFB", -"< c #FBFCFD", -"[ c #A8AAB2", -"} c #D1D4DA", -"| c #92969F", -"1 c #E0E1E5", -"2 c #F3F3F6", -"............................", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++@#$%%$#@++++++++++", -"+++++++++&*=-;;->*&+++++++++", -"++++++++&,'))))))',&++++++++", -"+++++++@*'))))))))'*@+++++++", -"+++++++#=)))!~{{]))>^+++++++", -"+++++++$-))!)!~{{))-$+++++++", -"+++++++%/)(_:)<[{))/%+++++++", -"+++++++%/)({_:)<[))!}+++++++", -"+++++++$-)({{~!)!))-$+++++++", -"+++++++#>))|{{~!)))>^+++++++", -"+++++++@*'))))))))'*@+++++++", -"++++++++&,'))))))',1++++++++", -"+++++++++&*>-//2>*1+++++++++", -"++++++++++@^$%%$^@++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++"}; diff --git a/common/xfwm4/maximize-pressed.xpm b/common/xfwm4/maximize-pressed.xpm deleted file mode 100644 index 5918640..0000000 --- a/common/xfwm4/maximize-pressed.xpm +++ /dev/null @@ -1,64 +0,0 @@ -/* XPM */ -static char * maximize_pressed_xpm[] = { -"28 28 33 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -"@ c #DAE1E9", -"# c #99BDE6", -"$ c #6EA3E2", -"% c #5897E2", -"& c #6EA4E4", -"* c #9ABCE6", -"= c #B5CBE7", -"- c #5998E1", -"; c #268bd2", -"> c #B5CCE7", -", c #5998E2", -"' c #DAE0EA", -") c #5596E3", -"! c #C7DDF6", -"~ c #fdf6e3", -"{ c #DDEAF9", -"] c #9BBCE6", -"^ c #6DA3E3", -"/ c #5997E2", -"( c #5395E2", -"_ c #CCE0F6", -": c #5797E3", -"< c #5495E2", -"[ c #C3DAF5", -"} c #DFEBFA", -"| c #9BBDE5", -"1 c #5A98E2", -"2 c #DAE1EA", -"3 c #B6CDE8", -"4 c #6FA4E3", -"............................", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++@#$%%&*@++++++++++", -"+++++++++=-;;;;;;->+++++++++", -"++++++++=;;;;;;;;;;>++++++++", -"+++++++@-;;;;;;;;;;,'+++++++", -"+++++++#;;;;)!~~{;;;]+++++++", -"+++++++^;;;);)!~~;;;&+++++++", -"+++++++/;;(_:;<[~;;;-+++++++", -"+++++++-;;(~_:;<[;;;,+++++++", -"+++++++$;;(~~!););;;&+++++++", -"+++++++*;;;}~~!);;;;|+++++++", -"+++++++@-;;;;;;;;;;12+++++++", -"++++++++>;;;;;;;;;;3++++++++", -"+++++++++>,;;;;;;13+++++++++", -"++++++++++']4//4|2++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++", -"++++++++++++++++++++++++++++"}; diff --git a/common/xfwm4/menu-active.xpm b/common/xfwm4/menu-active.xpm deleted file mode 100644 index b5b6af8..0000000 --- a/common/xfwm4/menu-active.xpm +++ /dev/null @@ -1,21 +0,0 @@ -/* XPM */ -static char * menu_active_xpm[] = { -"26 16 2 1", -" c None", -". c #eee8d5", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -".........................."}; diff --git a/common/xfwm4/menu-inactive.xpm b/common/xfwm4/menu-inactive.xpm deleted file mode 100644 index f21825d..0000000 --- a/common/xfwm4/menu-inactive.xpm +++ /dev/null @@ -1,21 +0,0 @@ -/* XPM */ -static char * menu_inactive_xpm[] = { -"26 16 2 1", -" c None", -". c #eee8d5", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -".........................."}; diff --git a/common/xfwm4/menu-pressed.xpm b/common/xfwm4/menu-pressed.xpm deleted file mode 100644 index 24d8ce3..0000000 --- a/common/xfwm4/menu-pressed.xpm +++ /dev/null @@ -1,21 +0,0 @@ -/* XPM */ -static char * menu_pressed_xpm[] = { -"26 16 2 1", -" c None", -". c #eee8d5", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -"..........................", -".........................."}; diff --git a/common/xfwm4/render-assets.sh b/common/xfwm4/render-assets.sh deleted file mode 100755 index f38ea37..0000000 --- a/common/xfwm4/render-assets.sh +++ /dev/null @@ -1,36 +0,0 @@ -#! /bin/bash - -INKSCAPE="/usr/bin/inkscape" -OPTIPNG="/usr/bin/optipng" - -SRC_FILE="assets.svg" -DARK_SRC_FILE="assets-dark.svg" -ASSETS_DIR="assets" -DARK_ASSETS_DIR="assets-dark" - -INDEX="assets.txt" - -for i in `cat $INDEX` -do -if [ -f $ASSETS_DIR/$i.png ]; then - echo $ASSETS_DIR/$i.png exists. -else - echo - echo Rendering $ASSETS_DIR/$i.png - $INKSCAPE --export-id=$i \ - --export-id-only \ - --export-png=$ASSETS_DIR/$i.png $SRC_FILE >/dev/null \ - && $OPTIPNG -o7 --quiet $ASSETS_DIR/$i.png -fi -if [ -f $DARK_ASSETS_DIR/$i.png ]; then - echo $DARK_ASSETS_DIR/$i.png exists. -else - echo - echo Rendering $DARK_ASSETS_DIR/$i.png - $INKSCAPE --export-id=$i \ - --export-id-only \ - --export-png=$DARK_ASSETS_DIR/$i.png $DARK_SRC_FILE >/dev/null \ - && $OPTIPNG -o7 --quiet $DARK_ASSETS_DIR/$i.png -fi -done -exit 0 diff --git a/common/xfwm4/shade-active.xpm b/common/xfwm4/shade-active.xpm deleted file mode 100644 index a181c4b..0000000 --- a/common/xfwm4/shade-active.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * shade_active_xpm[] = { -"18 28 4 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -"@ c #A4AAB7", -"..................", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++@@++++++++", -"+++++++@@@@+++++++", -"++++++@@@@@@++++++", -"+++++@@@@@@@@+++++", -"++++++++++++++++++", -"+++++@@@@@@@@+++++", -"+++++@@@@@@@@+++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++"}; diff --git a/common/xfwm4/shade-inactive.xpm b/common/xfwm4/shade-inactive.xpm deleted file mode 100644 index 7c90405..0000000 --- a/common/xfwm4/shade-inactive.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * shade_inactive_xpm[] = { -"18 28 4 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -"@ c #B9BFCE", -"..................", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++@@++++++++", -"+++++++@@@@+++++++", -"++++++@@@@@@++++++", -"+++++@@@@@@@@+++++", -"++++++++++++++++++", -"+++++@@@@@@@@+++++", -"+++++@@@@@@@@+++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++"}; diff --git a/common/xfwm4/shade-pressed.xpm b/common/xfwm4/shade-pressed.xpm deleted file mode 100644 index 1c2da56..0000000 --- a/common/xfwm4/shade-pressed.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * shade_pressed_xpm[] = { -"18 28 4 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -"@ c #268bd2", -"..................", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++@@++++++++", -"+++++++@@@@+++++++", -"++++++@@@@@@++++++", -"+++++@@@@@@@@+++++", -"++++++++++++++++++", -"+++++@@@@@@@@+++++", -"+++++@@@@@@@@+++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++"}; diff --git a/common/xfwm4/stick-active.xpm b/common/xfwm4/stick-active.xpm deleted file mode 100644 index 70ca743..0000000 --- a/common/xfwm4/stick-active.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * stick_active_xpm[] = { -"18 28 4 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -"@ c #A4AAB7", -"..................", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++@@++++++++", -"++++++++@@++++++++", -"++++++++@@++++++++", -"+++++@@@@@@@@+++++", -"+++++@@@@@@@@+++++", -"++++++++@@++++++++", -"++++++++@@++++++++", -"++++++++@@++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++"}; diff --git a/common/xfwm4/stick-inactive.xpm b/common/xfwm4/stick-inactive.xpm deleted file mode 100644 index e0e21d2..0000000 --- a/common/xfwm4/stick-inactive.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * stick_inactive_xpm[] = { -"18 28 4 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -"@ c #B9BFCE", -"..................", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++@@++++++++", -"++++++++@@++++++++", -"++++++++@@++++++++", -"+++++@@@@@@@@+++++", -"+++++@@@@@@@@+++++", -"++++++++@@++++++++", -"++++++++@@++++++++", -"++++++++@@++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++"}; diff --git a/common/xfwm4/stick-pressed.xpm b/common/xfwm4/stick-pressed.xpm deleted file mode 100644 index a308f0f..0000000 --- a/common/xfwm4/stick-pressed.xpm +++ /dev/null @@ -1,35 +0,0 @@ -/* XPM */ -static char * stick_pressed_xpm[] = { -"18 28 4 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -"@ c #268bd2", -"..................", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++@@++++++++", -"++++++++@@++++++++", -"++++++++@@++++++++", -"+++++@@@@@@@@+++++", -"+++++@@@@@@@@+++++", -"++++++++@@++++++++", -"++++++++@@++++++++", -"++++++++@@++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++", -"++++++++++++++++++"}; diff --git a/common/xfwm4/themerc b/common/xfwm4/themerc deleted file mode 100644 index e584d43..0000000 --- a/common/xfwm4/themerc +++ /dev/null @@ -1,23 +0,0 @@ -button_offset=2 -button_spacing=4 - -show_app_icon=true - -full_width_title=true - -title_shadow_active=false -title_shadow_inactive=false - -title_horizontal_offset=3 - -active_text_color=#70788d -active_text_shadow_color=#e7e8eb - -inactive_text_color=#979dac -inactive_text_shadow_color=#e7e8eb - -shadow_delta_height=2 -shadow_delta_width=0 -shadow_delta_x=0 -shadow_delta_y=-5 -shadow_opacity=40 diff --git a/common/xfwm4/themerc-dark b/common/xfwm4/themerc-dark deleted file mode 100644 index f7fd498..0000000 --- a/common/xfwm4/themerc-dark +++ /dev/null @@ -1,23 +0,0 @@ -button_offset=2 -button_spacing=4 - -show_app_icon=true - -full_width_title=true - -title_shadow_active=false -title_shadow_inactive=false - -title_horizontal_offset=3 - -active_text_color=#afb8c5 -active_text_shadow_color=#2f343b - -inactive_text_color=#808791 -inactive_text_shadow_color=#2f343b - -shadow_delta_height=2 -shadow_delta_width=0 -shadow_delta_x=0 -shadow_delta_y=-5 -shadow_opacity=40 diff --git a/common/xfwm4/title-1-active.xpm b/common/xfwm4/title-1-active.xpm deleted file mode 100644 index 2a2a78d..0000000 --- a/common/xfwm4/title-1-active.xpm +++ /dev/null @@ -1,34 +0,0 @@ -/* XPM */ -static char * title_1_active_xpm[] = { -"5 28 3 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -".....", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++"}; diff --git a/common/xfwm4/title-1-inactive.xpm b/common/xfwm4/title-1-inactive.xpm deleted file mode 100644 index e01f40a..0000000 --- a/common/xfwm4/title-1-inactive.xpm +++ /dev/null @@ -1,34 +0,0 @@ -/* XPM */ -static char * title_1_inactive_xpm[] = { -"5 28 3 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -".....", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++"}; diff --git a/common/xfwm4/title-2-active.xpm b/common/xfwm4/title-2-active.xpm deleted file mode 100644 index d1f0714..0000000 --- a/common/xfwm4/title-2-active.xpm +++ /dev/null @@ -1,34 +0,0 @@ -/* XPM */ -static char * title_2_active_xpm[] = { -"5 28 3 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -".....", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++"}; diff --git a/common/xfwm4/title-2-inactive.xpm b/common/xfwm4/title-2-inactive.xpm deleted file mode 100644 index 9767fb8..0000000 --- a/common/xfwm4/title-2-inactive.xpm +++ /dev/null @@ -1,34 +0,0 @@ -/* XPM */ -static char * title_2_inactive_xpm[] = { -"5 28 3 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -".....", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++"}; diff --git a/common/xfwm4/title-3-active.xpm b/common/xfwm4/title-3-active.xpm deleted file mode 100644 index d51b929..0000000 --- a/common/xfwm4/title-3-active.xpm +++ /dev/null @@ -1,34 +0,0 @@ -/* XPM */ -static char * title_3_active_xpm[] = { -"5 28 3 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -".....", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++"}; diff --git a/common/xfwm4/title-3-inactive.xpm b/common/xfwm4/title-3-inactive.xpm deleted file mode 100644 index 70e2826..0000000 --- a/common/xfwm4/title-3-inactive.xpm +++ /dev/null @@ -1,34 +0,0 @@ -/* XPM */ -static char * title_3_inactive_xpm[] = { -"5 28 3 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -".....", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++"}; diff --git a/common/xfwm4/title-4-active.xpm b/common/xfwm4/title-4-active.xpm deleted file mode 100644 index a2fcc84..0000000 --- a/common/xfwm4/title-4-active.xpm +++ /dev/null @@ -1,34 +0,0 @@ -/* XPM */ -static char * title_4_active_xpm[] = { -"5 28 3 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -".....", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++"}; diff --git a/common/xfwm4/title-4-inactive.xpm b/common/xfwm4/title-4-inactive.xpm deleted file mode 100644 index 99a2844..0000000 --- a/common/xfwm4/title-4-inactive.xpm +++ /dev/null @@ -1,34 +0,0 @@ -/* XPM */ -static char * title_4_inactive_xpm[] = { -"5 28 3 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -".....", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++"}; diff --git a/common/xfwm4/title-5-active.xpm b/common/xfwm4/title-5-active.xpm deleted file mode 100644 index 9a61f4c..0000000 --- a/common/xfwm4/title-5-active.xpm +++ /dev/null @@ -1,34 +0,0 @@ -/* XPM */ -static char * title_5_active_xpm[] = { -"5 28 3 1", -" c None", -". c #EEEFF1", -"+ c #eee8d5", -".....", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++", -"+++++"}; diff --git a/configure.ac b/configure.ac deleted file mode 100644 index ee291ec..0000000 --- a/configure.ac +++ /dev/null @@ -1,35 +0,0 @@ -AC_INIT( - [solarc-theme], - [v1.0.2], - [https://github.com/apheleia/solarc-theme/issues], - [solarc-theme], - [https://github.com/apheleia/solarc-theme], - [] -) - -AC_CONFIG_AUX_DIR([build-aux]) -AC_CONFIG_MACRO_DIR([m4]) -AM_INIT_AUTOMAKE([no-dist-gzip dist-xz foreign]) -AC_PROG_MKDIR_P - -ARC_ENABLE([LIGHT], [light], [SolArc Light], [disable]) -ARC_ENABLE([DARKER], [darker], [SolArc Darker], [disable]) -ARC_ENABLE([DARK], [dark], [SolArc Dark], [disable]) -ARC_ENABLE([CINNAMON], [cinnamon], [Cinnamon], [disable]) -ARC_ENABLE([GNOME_SHELL], [gnome-shell], [GNOME Shell], [disable]) -ARC_ENABLE([GTK2], [gtk2], [GTK2], [disable]) -ARC_ENABLE([GTK3], [gtk3], [GTK3], [disable]) -ARC_ENABLE([METACITY], [metacity], [Metacity], [disable]) -ARC_ENABLE([UNITY], [unity], [Unity], [disable]) -ARC_ENABLE([XFWM], [xfwm], [XFWM], [disable]) -ARC_ENABLE([TRANSPARENCY], [transparency], [transparency], [disable]) - -AS_IF([test "x$ENABLE_GNOME_SHELL$ENABLE_GTK3" != xnono], [ARC_GNOME]) - -AC_CONFIG_FILES([ - common/Makefile - extra/Makefile - Makefile -]) - -AC_OUTPUT diff --git a/extra/Chrome/arc-dark-theme.crx b/extra/Chrome/arc-dark-theme.crx deleted file mode 100644 index 8c081eb83d3ee7ebd00d0c65f7c4d4e49fe3ee64..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 65060 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%0Ddq$DvBMX3XvXso)IbL>eawqiN%NwDdClZrQM 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 W0R6dd0RVvgyn=rEOX2Om-u)joa^?R3 diff --git a/extra/Chrome/arc-darker-theme.crx b/extra/Chrome/arc-darker-theme.crx deleted file mode 100644 index 46e25ed2c3d7cd921207bda419c6cf25abab3bce..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1888 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 PK<Ze4@E4GlVgd00Yrz=A diff --git a/extra/Chrome/solarc-dark-theme/images/theme_frame.png b/extra/Chrome/solarc-dark-theme/images/theme_frame.png deleted file mode 100644 index ef5e128cda5471e7dbe1b1c7340da5f93e57a230..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 334 zcmeAS@N?(olHy`uVBq!ia0vp^atsWN3><7g){@!B{sK9oo-U3d6>)E`Y~($lz`$ZS zL&LY~+x)ICFZrd689dZKf3CbPCw}hBhn25_=4;t5nP#QU5I*f&{l+Un>8uY<UHWyr z;NVoz25s-`oe!F{L2}oM4zh-aF|5;B`?QIB-5Q3N$f(n-;xUnoJ2q{Z#;vzw6H`HI zrmlEQK`Kapl-`a9r??JGUAi@9uo$#1dxzb@DT@Ry>RNmNh7*IQtDnm{r-UW|q+5uu diff --git a/extra/Chrome/solarc-dark-theme/images/theme_tab_background.png b/extra/Chrome/solarc-dark-theme/images/theme_tab_background.png deleted file mode 100644 index 597b912d8dfaa9ded39acb8aaf60421a02faebe7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 230 zcmeAS@N?(olHy`uVBq!ia0vp^azK27gAGXj4-cFGq}Y<Y-CY>|gW!U_%O?XxI14-? ziy0WWg+Z8+Vb&Z8pdfpRr>`sf0~R?!ZPop5*VTbS#hxyXAr-gYo@L}^FyLS|=&SeL zT$VCn!ZnBZN%7pfrga=m+8CiD)=e$y<J$^`SI1aR3fY_Y0j+27boFyt=akR{0QiPY A0RR91 diff --git a/extra/Chrome/solarc-dark-theme/images/theme_toolbar.png b/extra/Chrome/solarc-dark-theme/images/theme_toolbar.png deleted file mode 100644 index 3432a67fb27bc32bbd10b778aed44e8dbaaabd44..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 255 zcmeAS@N?(olHy`uVBq!ia0vp^atsWN3><7g){@!B{sJksByV>YhW{YAVDIwDKoQOY zkH}&M25w;xW@MN(M*=9wUgGKN%Km^wPEe7vyfD}gDAeQW;uunK>+M-XMg|2A1_PC; z?VNA!vnv&R%3&>g_gj?PXj;e7q>T|eV%@Z+=9%2S&Aj)<?>rx%yBIuO{an^LB{Ts5 DcoJ7O diff --git a/extra/Chrome/solarc-dark-theme/manifest.json b/extra/Chrome/solarc-dark-theme/manifest.json deleted file mode 100644 index 6c0a14f..0000000 --- a/extra/Chrome/solarc-dark-theme/manifest.json +++ /dev/null @@ -1,40 +0,0 @@ -{ - "description": "Arc-Dark theme for Chrome/Chromium", - "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC6RY/VX2xN/FFEQQwi4sSHGaMxF6cARCTsKKxmPhbics9qDIkZxxBqeM4TUhHDhgsZrxZsXAplyKnIjTEIdw96XDK34uF5cqLOG5vzFRIOAdFfCyC9HNupQGg3Vd8PKSVmLZz/2Xsu5zmvx+zz3VIDtNK+HaVktMhJnO9utBougQIDAQAB", - "manifest_version": 2, - "name": "Arc Dark", - "theme": { - "colors": { - "bookmark_text": [ 238, 238, 238 ], - "button_background": [ 59, 66, 80, 1 ], - "frame": [ 47, 52, 63 ], - "frame_inactive": [ 47, 52, 63 ], - "frame_incognito": [ 47, 52, 63 ], - "frame_incognito_inactive": [ 47, 52, 63], - "ntp_background": [ 64, 69, 82 ], - "ntp_text": [ 238, 238, 238 ], - "tab_background_text": [ 36, 36, 36 ], - "tab_text": [ 238, 238, 238 ], - "toolbar": [ 47, 52, 63 ] - }, - "images": { - "theme_frame": "images/theme_frame.png", - "theme_frame_inactive": "images/theme_frame.png", - "theme_tab_background": "images/theme_tab_background.png", - "theme_toolbar": "images/theme_toolbar.png" - }, - "properties": { - "ntp_background_alignment": "bottom", - "ntp_background_repeat": "no-repeat" - }, - "tints": { - "background_tab": [ -1, 0.5, 0.85 ], - "buttons": [ 0, 0, 0.81 ], - "frame": [ -1, -1, -1 ], - "frame_inactive": [ -1, -1, -1 ], - "frame_incognito": [ -1, 0.2, 0.35 ], - "frame_incognito_inactive": [ -1, 0.3, 0.6 ] - } - }, - "version": "1" -} diff --git a/extra/Chrome/solarc-darker-theme/images/theme_frame.png b/extra/Chrome/solarc-darker-theme/images/theme_frame.png deleted file mode 100644 index 83681106dab5e8200f5959caa2a1537f6bbff3a2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 140 zcmeAS@N?(olHy`uVBq!ia0vp^j6i&XgAGV(e(L@Tq}Y<Y-CY>|gW!U_%O?XxI14-? ziy0WWg+Z8+Vb&Z8pdfpRr>`sfeNIjx8EGAnQ+z-nNlzEY5RLQ67tA;QKY!%Ffdd9! fJwl6*6sR(!#xoln?P{3;RK(!v>gTe~DWM4fBhw~u diff --git a/extra/Chrome/solarc-darker-theme/images/theme_toolbar.png b/extra/Chrome/solarc-darker-theme/images/theme_toolbar.png deleted file mode 100644 index ff91e1cdd583b6f6f47e2f7fe1149f9c5315eee7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^{6JjJ!3HGnESGu)q}Y<Y-CY>IGJIqB{+gYqA1K0E z;1OBOz`!jG!i)^F=12eq*-JcqUD+QnaR^#+O$$u-0}7dYx;TbJ9DaLxBQJvj2ZO<f y|K&#m>kgb;a(DLbbG-{i`BNgNrJ|#M8s@HIEa&$ywJ!u3!QkoY=d#Wzp$PyfC^E$W diff --git a/extra/Chrome/solarc-darker-theme/manifest.json b/extra/Chrome/solarc-darker-theme/manifest.json deleted file mode 100644 index f9e5413..0000000 --- a/extra/Chrome/solarc-darker-theme/manifest.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "description": "Arc-Darker theme for Chrome/Chromium", - "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC6RY/VX2xN/FFEQQwi4sSHGaMxF6cARCTsKKxmPhbics9qDIkZxxBqeM4TUhHDhgsZrxZsXAplyKnIjTEIdw96XDK34uF5cqLOG5vzFRIOAdFfCyC9HNupQGg3Vd8PKSVmLZz/2Xsu5zmvx+zz3VIDtNK+HaVktMhJnO9utBougQIDAQAB", - "manifest_version": 2, - "name": "Arc Darker", - "theme": { - "colors": { - "bookmark_text": [ 35, 35, 35 ], - "button_background": [ 0, 0, 0, 0 ], - "frame": [ 235, 235, 237 ], - "frame_inactive": [ 235, 235, 237 ], - "frame_incognito": [ 235, 235, 237 ], - "frame_incognito_inactive": [ 235, 235, 237 ], - "ntp_background": [ 255, 255, 255 ], - "ntp_text": [ 0, 0, 0 ], - "tab_background_text": [ 100, 100, 100 ], - "tab_text": [ 20, 20, 20 ], - "toolbar": [ 223, 223, 223 ] - }, - "images": { - "theme_frame": "images/theme_frame.png", - "theme_frame_inactive": "images/theme_frame.png", - "theme_toolbar": "images/theme_toolbar.png" - }, - "properties": { - "ntp_background_alignment": "bottom", - "ntp_background_repeat": "no-repeat" - }, - "tints": { - "background_tab": [ -1, 0.5, 0.85 ], - "buttons": [ -1, -1, -1 ], - "frame": [ -1, -1, -1 ], - "frame_inactive": [ -1, -1, -1 ], - "frame_incognito": [ -1, 0.2, 0.35 ], - "frame_incognito_inactive": [ -1, 0.3, 0.6 ] - } - }, - "version": "1" -} diff --git a/extra/Chrome/solarc-theme.crx b/extra/Chrome/solarc-theme.crx deleted file mode 100644 index f3fc5b0d3a25c6df4bd494c21af7fcb5fb727d5a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1863 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 diff --git a/extra/Chrome/solarc-theme/images/theme_frame.png b/extra/Chrome/solarc-theme/images/theme_frame.png deleted file mode 100644 index 48f841f3514b5b00cfdf4d39a276767341f8cce5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1107 zcmeAS@N?(olHy`uVBq!ia0vp^j6i&XgAGV(e(L@Tq}Y<Y-CY>|gW!U_%O?XxI14-? ziy0WWg+Z8+Vb&Z81_tKOo-U3d8lsFZn8p7vJb&@}KNC<T!zeKt2BYa<xMqX?VpfmC S7x_g%G3@E;=d#Wzp$Pz1P#?_z diff --git a/extra/Chrome/solarc-theme/images/theme_toolbar.png b/extra/Chrome/solarc-theme/images/theme_toolbar.png deleted file mode 100644 index ff91e1cdd583b6f6f47e2f7fe1149f9c5315eee7..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 170 zcmeAS@N?(olHy`uVBq!ia0vp^{6JjJ!3HGnESGu)q}Y<Y-CY>IGJIqB{+gYqA1K0E z;1OBOz`!jG!i)^F=12eq*-JcqUD+QnaR^#+O$$u-0}7dYx;TbJ9DaLxBQJvj2ZO<f y|K&#m>kgb;a(DLbbG-{i`BNgNrJ|#M8s@HIEa&$ywJ!u3!QkoY=d#Wzp$PyfC^E$W diff --git a/extra/Chrome/solarc-theme/manifest.json b/extra/Chrome/solarc-theme/manifest.json deleted file mode 100644 index fb8b6f4..0000000 --- a/extra/Chrome/solarc-theme/manifest.json +++ /dev/null @@ -1,39 +0,0 @@ -{ - "description": "Arc theme for Chrome/Chromium", - "key": "MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC6RY/VX2xN/FFEQQwi4sSHGaMxF6cARCTsKKxmPhbics9qDIkZxxBqeM4TUhHDhgsZrxZsXAplyKnIjTEIdw96XDK34uF5cqLOG5vzFRIOAdFfCyC9HNupQGg3Vd8PKSVmLZz/2Xsu5zmvx+zz3VIDtNK+HaVktMhJnO9utBougQIDAQAB", - "manifest_version": 2, - "name": "Arc", - "theme": { - "colors": { - "bookmark_text": [ 35, 35, 35 ], - "button_background": [ 0, 0, 0, 0 ], - "frame": [ 235, 235, 237 ], - "frame_inactive": [ 235, 235, 237 ], - "frame_incognito": [ 235, 235, 237 ], - "frame_incognito_inactive": [ 235, 235, 237 ], - "ntp_background": [ 255, 255, 255 ], - "ntp_text": [ 0, 0, 0 ], - "tab_background_text": [ 100, 100, 100 ], - "tab_text": [ 20, 20, 20 ], - "toolbar": [ 223, 223, 223 ] - }, - "images": { - "theme_frame": "images/theme_frame.png", - "theme_frame_inactive": "images/theme_frame.png", - "theme_toolbar": "images/theme_toolbar.png" - }, - "properties": { - "ntp_background_alignment": "bottom", - "ntp_background_repeat": "no-repeat" - }, - "tints": { - "background_tab": [ -1, 0.5, 0.5 ], - "buttons": [ -1, -1, -1 ], - "frame": [ -1, -1, -1 ], - "frame_inactive": [ -1, -1, -1 ], - "frame_incognito": [ -1, 0.2, 0.35 ], - "frame_incognito_inactive": [ -1, 0.3, 0.6 ] - } - }, - "version": "1" -} diff --git a/extra/Makefile.am b/extra/Makefile.am deleted file mode 100644 index 0703ef7..0000000 --- a/extra/Makefile.am +++ /dev/null @@ -1,2 +0,0 @@ -EXTRA_DIST = $(srcdir)/Chrome \ - $(srcdir)/SolArc-Plank diff --git a/extra/SolArc-Plank/dock.theme b/extra/SolArc-Plank/dock.theme deleted file mode 100644 index 2e0cc55..0000000 --- a/extra/SolArc-Plank/dock.theme +++ /dev/null @@ -1,63 +0,0 @@ -# SolArc theme for Plank -# Author: Horst3180 -# Adapted from the default Plank theme - -[PlankDrawingTheme] -#The roundness of the top corners. -TopRoundness=2 -#The roundness of the bottom corners. -BottomRoundness=0 -#The thickness (in pixels) of lines drawn. -LineWidth=1 -#The color (RGBA) of the outer stroke. -OuterStrokeColor=22;;26;;38;;255 -#The starting color (RGBA) of the fill gradient. -FillStartColor=53;;57;;69;;242 -#The ending color (RGBA) of the fill gradient. -FillEndColor=53;;57;;69;;242 -#The color (RGBA) of the inner stroke. -InnerStrokeColor=53;;57;;69;;0 - -[PlankDrawingDockTheme] -#The padding on the left/right dock edges, in tenths of a percent of IconSize. -HorizPadding=1 -#The padding on the top dock edge, in tenths of a percent of IconSize. -TopPadding= 1 -#The padding on the bottom dock edge, in tenths of a percent of IconSize. -BottomPadding=1 -#The padding between items on the dock, in tenths of a percent of IconSize. -ItemPadding=2 -#The size of item indicators, in tenths of a percent of IconSize. -IndicatorSize=3 -#The size of the icon-shadow behind every item, in tenths of a percent of IconSize. -IconShadowSize=0 -#The height (in percent of IconSize) to bounce an icon when the application sets urgent. -UrgentBounceHeight=1.6666666666666667 -#The height (in percent of IconSize) to bounce an icon when launching an application. -LaunchBounceHeight=0.625 -#The opacity value (0 to 1) to fade the dock to when hiding it. -FadeOpacity=1 -#The amount of time (in ms) for click animations. -ClickTime=300 -#The amount of time (in ms) to bounce an urgent icon. -UrgentBounceTime=600 -#The amount of time (in ms) to bounce an icon when launching an application. -LaunchBounceTime=600 -#The amount of time (in ms) for active window indicator animations. -ActiveTime=300 -#The amount of time (in ms) to slide icons into/out of the dock. -SlideTime=300 -#The time (in ms) to fade the dock in/out on a hide (if FadeOpacity is < 1). -FadeTime=250 -#The time (in ms) to slide the dock in/out on a hide (if FadeOpacity is 1). -HideTime=150 -#The size of the urgent glow (shown when dock is hidden), in tenths of a percent of IconSize. -GlowSize=30 -#The total time (in ms) to show the hidden-dock urgent glow. -GlowTime=10000 -#The time (in ms) of each pulse of the hidden-dock urgent glow. -GlowPulseTime=2000 -#The hue-shift (-180 to 180) of the urgent indicator color. -UrgentHueShift=150 -#The time (in ms) to move an item to its new position or its addition/removal to/from the dock. -ItemMoveTime=450 diff --git a/gulpfile.js b/gulpfile.js deleted file mode 100644 index 0ceafcd..0000000 --- a/gulpfile.js +++ /dev/null @@ -1,20 +0,0 @@ -var gulp = require("gulp"); -var sass = require("gulp-sass"); -var rename = require('gulp-rename'); - -gulp.task('sass', function () { - return gulp.src(['./**/sass/*.scss', '!./node_modules/**/*', '!./m4/**/*']) - .pipe(sass({ - outputStyle: 'nested', - precision: 5, - onError: function (err) { - notify().write(err); - } - })) - .pipe(rename(function (path) { - path.dirname += "/../"; - })) - .pipe(gulp.dest('./')) -}); - -gulp.task('default', ['sass']); diff --git a/images/preview-complete.png b/images/preview-complete.png deleted file mode 100644 index b2e679989855864be3d16b6d3d70e302a769b8b5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 703509 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%0DwF&lw9(#AaSfyFN~ryd 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≤6#5{0$MC6j!?ZFnO;ni)&<K~Z(6W^8gD)o1* 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%0DKL`>cd3Ru`>gJz@ddZeP^|;EPHc}e{6nw<VROzG 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%0D!l#>9$ICGv8ZtQYZx*Vl-Z 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%0A^=bzMYA2u(8oU!AJ^c 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�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%0DslPmt&NWuC6gnLkKJ z4D+-+WZ2NO{ZAy;(A=S$HDh5E3@jw;7eD{-@bKrq{qDEleE-Lv3(L;X1V5IAfAw|z zkN?9zyIdds??3zDH-GWN58wUv<HsMr`0VRtU2pH6KYVC?lYWEeA3E*#&%XK`y$G#E z5V+>bCtNWYfY1B7{}{pjlV{sKz@W0M%Ua6KiF|y3S^SPl=CJm^+P2NVYYe2a^gQ^r zd8Fn%BJoTydfPZ6_Fn#+m-r8&9LkKb#h|@|nl-b1@2fd8b6U|YDG``5f!?)uW#|QJ zvU?yfJaljO=X-g?auMR3n}<a(5uo*MNGKQ@etUnf50^KO4}bXcUtIbf%|Cqi!_RIv z!wRJkB7&>w_?VAmBKJ^Jj|h^$J|hzY(6i=cp~uHJpMQ4$@ki3<0MO&ZO={R!|E8do zhnWJI(Ia$Z>ZE{%g^?h@?O2ZwQdqnKRpgWTs(PFIqJV(Vu9B)xBFIu8ApK8Cc0Ar> zh;V|r;!ZaQy8FYr{QS$G{l)w3V{c#%=B`G}l?x+z@?Ic~<8dZsq(Ny~w=$Cl0x-b4 zx>@Ry5UDK1V#1yZ5Cu?nJeEN`kvv@tib}%FuBw29s0Pj2zBfZ9rp(kM;zcf81wk`e z;(QJa6;FhP(_!M4lSOWj*V~?3iri-Jt+jp6nz$Y*#b@8a*g2n^P4hlVAmBV$1T#eh z;+*mHI(OAiia8N6H}5@FxNaj4fvF}dFwhZX<|>j?019EI>3O)SscD2sq1gc*X3vqZ z<8BmyNP&P63cvwKlq!|U(tcqK`FScm3|2Y7%E?D&Ycg{`a){=30goofJZ6pi2@`rg zJfAEiG&NGc001BWNkl<Z<}EoT1LyV6`8J<6kjaRg*JZ5(x%m2!e5I<Jt?#RxI7AVO z4BL()RV9%KM~I{W50vj~wpadj1LgoA#5un!Quy4NeVWBKfN7I|m%n~0WnRT=BtBuG z5RV*5xCt`^m>Rsk7N=utOdoQzmhI^9gQG(L5+jJEknP1xH{0MmmAWYd=U1=cFf@|@ z09*zH>J!A|c${9OTKLJl^6aIWE~NPordusfzcVHJP`44fVV;4i0ALZzvXoNt)tVz? z0szLOGY4W2IOPyMqpw6*RQs_|0e35b#5^?~M_D+7^WxOrMw0B{(ACRn0(Bm~jJM;M zg3Vv{Jb6D-PypdolJ!`E9u)tfBu)Gik_CW|pcETn<ukC(A$hFnHSog#PH8lMbwEv3 z&RG{}X2_DbrL3{{eV<TvWCo@&2n9>4+UX$-h=A9zl5?g!#?5|qnEERg__#dzm4N)D z<~y%>=C6>u=SmpJK`#zCaI+LdE2!O3#yVVTiELkwFLc|siKjS!gM&mN<B86z;c~f* z>qad@`J@zZcDJn0DS#MXT&SnVIA8D=NM*zk1Tb_75P?jo15ndXk``ZV_{>6>%B8tG z&oe*!a5_CsXCvp!l<KtmnGo2-TjDYHI)@{T(SJlew)HuQJI9Hds+(Bv1h|x1kLV{H zFvh8ZfWzV!%v_4(v`=&3j+n1jwkN}MoSad4Nr^cU=OGmm;R*<uabfOsI9`#G@$(Au zb<Pe>>+7I+%!ubq=}Bx$psA@kc$8Yug98w$upBL<)<vG)K2=zfwE>V_FPF-U0S<2F zty^MSAP{5*Vt_dyT2~=KjAZJmnQ$edr>Cdu)0@3FgSg-Cx3)<sZtk}`jIj$5q{`Ji zqSTsSvvm!1bPRXhn-g{I>%--;E&|q{@7wJbY6VG<&;ro`QM-;z?Zbqzwf%OxdBiGf zEhRs)>%)UAm3zCl9gg{?xp!5B;E_W^1xqBN#sfT<m<S1gFocm9E!3g|QUl+FmdEAt z^M~z2kN0L3OT7Tp-EIB)?e)tyA8h;X`CWN)y?p*zzpMZS5Jvc&DYK*y!cLbf9{G`s zgfOxfa!7=Ob%1%lkEnr&Qc4hmM^@gEl0X0!u9wyJX6A^Hu#}3Gq(&*uaJN=3NFCvk zBM^3kR>+D3bdUbN2`_R%1p@?JAr6;DlBO7jJunBPmu0!E>r(5!?_;+oLw*JBLc<t- zj(!?FY`9_w1r>3%ZsumdRO_0lcLIkZd|g*_x7L_BjqD1eGd?m+X$pu$Bo|prU2=wP zW+T$4NVa*scS5YSGGN;q5eZ=}RYcTGO#`7|Nj3+DXB@bNM*s(%AqX@6_HwzDQVc*? z2!H`yEvM@oU;+7a7`V9xL0t+n1%ihm)*?a-3C2HH_UVlecP8$AAHxDbCbDdL36N;p zHmRl7QkV^5Z_UEhY*<W*(#Do^5OdEjDQhDQ2c{PyG;szjo#{pS|18Ur*U!=B#i0TL zA6I5*?*LdP@REpG@@q##WAli;cXNM=hx|nfOHf>vm5FD*;W<_>!%ez&JuxQFId{3B z$eHd^muxJO5;y!=xs)RYcVb3jPi#L?#ww3RIv_E-YK|-~g<s}+2)VS$swA<g`3&U9 zQdJ2&M}@iVIte-^r3C;y*KTQs4e%_T1rZdxcI`bNs1zx}B6%wWBRB@38$d)?#Zp)p z5!~wn(e{>)s2|l53nNlyoP!4=Fkysi1ek)2fzy89^P?LT>g$d7<ich%b5>@Zb>`=6 zb<R9s^&_MQxkzr9iOAfVc5pZ7>C_-W2z*@E<!4{jFMj^rUw-?|yN|N|ihZ~CY_K!X zo5#0*^6R(4|Haew_vHWY?|<Ciz5Dq7J&?1z{r-1<`{CDL?w?(s->cp3Tf^)6bS)Q( zwZckR$r03n4TN%;nZUAaIYz^HViQl8_kc8qgF6GHj>60hLIDDkB@CHSVo9+clLoYa z5p)lcpTz`c9wrDPbQ`7fpg0ddsmFP=I>eY6MI2e5#7lBTT8bbtd}MFk+(tyHSZKJZ zYoLW2te3ji21;h(W?>fO#F$!=zH7a%ORa#x#=u+lmAy50A}(mL-EY89mdh8PfA&<q zc(<6{p8dXIWlR=45&}t)BO$4Wc_8`G^8`Q~Sta>_d+wXpMV{U+Z=UqsJ-R{wLng;! z3?B&uhIuwb8LS5Z?qG8O-61F#Fhvk~TE5I!-3^d3F3QXZ2SPi)dC9DblsUQ+0tG~X ztHzNR?t^_c_NC(s$~p3Uk|K25WxYN<K7RSxTfyJizG>TatF5~%MaW#u%$u8{J6S5Q z=1Vk-?=-(;&{9NTfVJLQ6XHb*Ra%#-dA=3lv;+dUsRJP5vJ5_BK2aEfKJ4K^$Uu}t z8Y;3D$&rnFU=Wi~ad)B+;n`x*43N_f%!F8KDW$%cBgU9DdTTx@SCnvfLBz}B0|7Se z-dYy^T!vLMFRXG%w9aA7Q|URF>uK={FJ(|*^E6Xau<>sulq%~7DTPa6DL&ggKm^!Y z6H4SLE|=9k3o?ozRrj&d4geHk5mB`)VG&Uzm;;CbF%rd+3i%=3ge2=DahAV%p7;y? z>*%KfMMl&~iYqgKJy&Q=Ee;QIM$-%rlsiW7aJ1sAL(UVce(*K^KFT^FP@jml;4}xc z-VrIx!VCb-`%9*kyb>y&vs|Yg$t-g-BHX1&Z{6HL0|^9Q+PP0=a|y@`bL*N@{=;QF z=9|;#n#D#$U@hPh?xV$@dMkiZirK(eoHsG&{Nj^YUb7luVvz7{CmatI5=Ck*j$d}F zT@KA48Ce{ZC_C%o5TxYS%Ld^Y6LgGSa*{CEVJTZ+&hdG=Lo1c@I6Du7sYAzuo-^S} zXJO+U6VKv%{<5iU$$LNFwR3!7fEQst6k)x!jP%M$^hiF-e<i06MKB-@3gkjEz>dTm zh;HBm;Q|iORG9`b>NJhQGd^<W1dB*=<tQh-Zs%pg9BQBa*Lh1$`@&i46q6}|=m&$+ z5j>-unTJ^<+|0VUbp>}}3UCa>h{IPkiS^;(3BjAQu({ICzq%aXQU1(ht!Ume!1y(; zZdsN&`Ncdi2_eD|bJrCkv;+-sa@poY3{HiCxlYnt{_&%r$r*<Q0r`<Y7stfYM{-D3 zW^_1%3?i5aOTh>xo_0?nGIK`4q-QXx`uK42=W*vFX+lj;GuAXfj7fT}MMRdm<bki+ zBEZ#-t9jJt>6QY-q(A~9QtqR{+;X$-;chXmDR*;&fa6O8i&3We(04~~-SCjk9WPHl zD(R~rj~6cpbIh?$cz8-yu@qs>B3aL4#tc65W8acBLr##9s4V3qNFmHUQ!ZQs&p@;^ zSu;{3O-xNYY;E87-I_6WTiw)xgCOw?4#Aigg}HfOY7I%72L?K&ew77~Je<;2!zAWl zfyhKMHIZiFp@Ar+z!A5Q=Ti2QDVb!Xh*!$-Y#IC|s3C$VYYf1Qx*(`ws@A$VD56IQ zjZ>H0EF8@C*hv5wAKpAr=li>z5lvh4F1TLG5~Ly=?wjh~J0ckx8;SrBad6Y_VChPW zoF=ENRb$^&O8NZr&#%|ZZQp+S@ZQ6Pg@`_W_#hsaWnC^S5qGz3>*hh@?e<b6AohKS z4$-1KETvY?HJiD2EzE1F%))?_r?k6A?Ax~1C1uOG<m#$!#-(r(pkb4drAjRfQ6QXv zgh3D-)zr<2ka?k0%ySejgp3ADNvo{`I3zybx~e2-pfAFr^tRM5FVFg3tK+qL!;e4Q zpLyR%-)*-KeJ>9WSSm_MGKxD!H*K9+7}(q__1clTV`4<x4ZtC19qx?ua=snw$t2b0 zGys`Atapv@k`(^{6t0)G0odLwEH8t4xyt1MF3U#VtrPPmRv%cTz%B3{?^`!D1VjyB z#f71DYaUmWs{|D+*i}7jgbtbQ`)=9^B3B5^l&bTDT6ERcdnuw_!JPmS_n$BiGwo)u zh`BQh*V3NvuDwWEmIV;*+s6FmA0WVkZskw^h23}CTB>u@teZ9MK`85j!h3I6q=%Dm z{*xZj!;Q!huWz5EF2v%1s@ByD^OF8P)!sWGETwAiZQB<q>BaB}Kq$*n)`e=3S_1L5 z-NB5J(j+-@8373~>)=jqnf-x45!QC^-Bbg{P3GvE?Q-R(ubwV%FIWgLubkl&VIl+! z4<^P@Q4L&x2M|$_!Xm1kX7M7GSQN7C#^fYHfbJbE*0NM8h_uv|fL+u0Ob7%($>;NK zFtiRieE^c|g(zhW%d#%Zib$>XyqF>&b4WN9artPP7iLCE2Xfn+fu#b12&D=#CY?vB zESKf7UdNuU)VeHnS&^AoSPBw>(0aX;T1HTJdSZwRb75)S`e6`YmfX^@lu{R#5=49N zTknooYGo<J!}G#SBFS*{0CUrXu8WWeu`sdZ5tDaemg__a9t0qOI8&Amtya!MbH`dm z65_rrOD%<^;#k+Pd0>p~TndJXuoe*}08n>xZ>kOf!pI~?7?vZ16fD9b0qAZ;2oc;A z%$N|RKvobeTq^PSWdh0EwYB`D5|5c=Wg?c6`Nwg)-I)3D@o|!>@)A0`hjMqF|K!Ep zGvv?V=Dl0eAI-)E(NzPHMYvQVL1HxzA|y6<LdNhae61`*Z?13peZNBd?$7@W+q-}9 z&;I!FLKRzyJEON<)xf)cw#pxVb$xugidf%2eE;JQ3##?|XAkx3&)$ChvoAh;|Nfib zfB)mRx91;yzlp%(W%;aJ-eO(g@zQZ%B~Sn;$$^1D5QM?#2xx(xjEoFk@+0<$5ESU+ z$B+Box&=s8K+ST22Gta)ATx?!K9lJuLjqtDwqwIgi0iVrS$Hs_kc?b~qY+I0+JMjz zA`iNbkKx*jj3ObsNpTBPGJgPiwCLY_r{Dj$cEe3`W}m90j~|}<o-oZC!H7YOj)nwf zVW|Z$Zu@TFj=@p^$s>?4&{zlom$HzvcYV4pwIUY+L0Xs3fBwr2=zTMlr4iD~8aj~8 z-Pq%y)Teb_7||__w~;?NhOi{C8l;L;G~f2!)Ynp067L<+k;557fC8DgN)h7FL5#tO z5y=clQUK5(0x;$Dslrotpur3GylIcFCUry{hp!M3gjfoTpim$hM7reS(EQ^7+aHW4 z!Vm@yBm?i>jk$K>A8*h9*T4POKN2o)KW|a)odHB!Z|&w`K<r5QR4@y(5OI#y)1l@b zcJw6aG-<6ZwI;?QiS{(I6#*H6p@S)U2w@@4P`z4M1PC=;!4<+eC8d77Ue@c%>w>jH zWxgy}(9n{w%_1zt1G<{W__7=v!fjUqs8R@V-*=B_+8qET1svX+x*8fVpx$-@6fSO_ z`4qi13%9Ul-68gU>utvf1_X$G-^>)p!|sS6OiXBQQpCX3RKtj=_14;s2uuhOu{UyG zOA+SQ_O3k<`AjH`LL=ReiAlKij?4z$+&~zmESE*91O_q!Vb`YGnQ2|uT35ouHkiup z-T;D`0;2U6gjfWa0+H9n4=Sgcc54B->DT-@5rG&*I3>Ms;HwAXmxrsU?QP)PA%K8K zkpKjd9$Mi-C)V=hF^`C3Yi8<UL|AJ93=hkn`9P6aO5;6@CI1@Fzar6S=pih%6zghT zGq`{NQAW~8xYtq=L^WGz)3(&I)H3G5;RsF;xtuLBCh$yHB(bU)IvNOw4(`STgxIYE z<8GZ7sSk@YQlN10fY#Lm)SRUNlcfoeS)_8Qh?ElNBC^&ZOgWlN1TV8>wUB>^NI`^f zOM8(cIAIS1rm_@SDhYdxV6|-9&K9<8FPW$ukn(}F*9k_T0L&0X&(&H00t!hOxQ88h zXyJ04@<8LL!nD+m>O2u4X%RSta#Kfh&H|qN`&2<rhRz(Xq?RrJt53lH0l}4d5g;_M zppeQeY+;#xg@EWmL{&;ge6VmbSwy6iYU;wW))fQuCl8C>x~h5FVUB}0wO~296BcAL zH6)T!Qe2T0<52W4ov|rumW+i%KSHIHvMeCv5Wr()l5sk@1W7(5LZmm;!vTSX7G^MW z?XDfv(3B$FG~<#Yx@*tJH6;Tgj1X=;Ww*8DYwhDM&fwUDt>S=KBVeW|hB+fKps59- zg}2_Dc84J09K~^w{DLw<76G*NFso7s3C8d)0HPLIYAM1+7{c8Y!kG}<w70IiYU{2U z83vU53*Z0-AOLr3+Xn818N$svhBKk7n)V21gx;EKCxV(NduBhF-}}DjdUjcsDkVIC zNeb6mz-`~|)*6Io%cs_bQ-F5d$RmUi-3=f{0nX@Q+A~|g)4N^kvRqaO2sN}I4{v=z zmLM>5HKRxeJTM_s>m49$xR4|VIU4D@4R@n)=0GWo>Fgscwbr!)lPm><K)9^cJ=6>c zrIxgK(@2X01jJebnM437QylYxhyXOGNMM<=8abekfE?asAc7DP1V#`+nBu@cAS0@c zq=JkZMDtZ@B}R2JaKn%9Zu@hK7JYL9xIA2z$E9J{=wL?4rE~-L%HpaFR7)8lxrnuv zDxA(JgeXku)s=xP_SUy;yKij|@NT_na|k>-Sygp4$^{O95EqfX-7}gaAip?p&#y=O zwsH4@)SGU-MUqbmU{Jt#=70kp6Mk3iP4}(ucU4=Lb>+G}-+ui5JKb+#8>21+_Yd#4 zwu#i<_4)bch*S!%E0q#NK?KMFBvP{3>HDs|-*30=ehc>=bl;m3$+BdK?Ze}nx~xge zd?;nDMT$r%ODUzu!^1<V#Z33TTZ8+(?|TQ0Lh@K23dvQ30nk*<5wM7?>ynCxh}c_e zttE1rMYOB7UQ0>X<n{6K^7!C{UJKMB>$>&s6j;y+<yvtqyZ86+-wX3{xflis0bwo? z$>Hhoks`Kjd*1F|N~~3`>-FhT7~EPByvhZDLg>T(eD^zux!-QLAHM(Yn?L!-zy8zz z@}K<f`)~j4U;Xuu3iRd+lhs+cR77!g4iYKMg@^-@OO<5-Vh0E$17jhFXx7Y)gx1SK zLhhQw_W{7d0ovB^9%cwZIZ-ASsdc?PK1!`9;zUpjUoV$0p30jGF!gQkTSv$Bvbw|$ zyIf?&%f}DT?Y^xb*WhYIyTPV@>v0d%sK`rMxfCOGB0vZ;G-Ut-0|GY%cOeS!t?$iU z85=qgFkxa5LN(lKEzfQHusuVerLGT`s}QGkRG62#2yvK0H-Q+~+HKqPzW3IabxqVA z2^TL@h8>5be^hd%^xMbCq814dmv!B?ZQu6+;KUIXp}nVWEh{hp=&hA<DO`||n1gV+ ztQrA`8YW(?H3gk8h>6BDvy|&(hZ-K{YF*DP+rYT*I|w|yd3bp900oIW42R4LjA+1d zX142#u2rBinXsqXUYG)gUOmE_GE*@1u-0{{H6g2`Fm&&GJDcRss%B;$L#adgIoVQY z6pNcB_I2j|nkvHJKxR!ca*onGA`+%E3dh}3<8yhqE?HwqC2>%0t#wr)jL3U2cP8?Q zLxB$Gs%ke+n-a)N`SN1dYL@9B+5eA0%UBdADiM4HKGK*{Az~nyYXAbF6q&zxDWyPR zYHp6<aPWBopzk|+T<VgJ)xwk)kD9yt<#Hh|0ch^&>9ek8<KeO1)1H<q3PhG#ayFdT zTkl=XhzW>B`~y*`RR~>M7OFkrcV+dX@t)yL)0=kRwy{mh*g*t_n2}QF4Et&OpS$$I zg*lXybPD{+YkE|@Oz9^8py^gAwI;5W4?n+!n<g_}s<0a&IfDoB^Zkx2>(krvX8Fti z@OK|~cc{b*hA{c{vLH!&^ti|V41f6brItVV<yT+)yWjlH-~Il3^!V-n_wRr4$ba&y zub8fVd$+y6?fk>_LcKqDdAt4+F^X?4kE^AIZNy`Ez!<|Ffyd+jo*79n=18yzU!>f- zbsP{y%zQ@(OW{VMkYWh%UN+1pknovFfiR@#0C*;ezDk@K_}iIY3-isL9gCWoDVx^7 zKwxGr0tl_|l?phNB5SEz>w}vXE;(C7iZD<z>uvA6aTMPC1_EUf;DLI`L?qQ-%Z0hR zqnVY$f%JZVzW?;DeE-wq?HS)Z^xi+ljUTQfnJDY`QlWJ-PcuIrdG>SvZf*oYNLUI! zT<d3V@3*_g$4n5{)(C<iTM#Z>V~|tx8$gJlQeI*jnam7;q)>zn+!lfZ4(9stMPx5J zgxL`Q;c+Mjvy5Yc<i-(=t$vcXAV!cDz=%^&LkJ`gLU1-`)s8F=mx`gb-*w;QLWLNS z+&f_qBNhr^#z-xWj&PZRxfdmNh;9a>DjeM@F%v*)KLG;@=knRqOw|bv)hf`*M}s*D zg#b?L01#LV%&YYX>}1`-Q!g3aIsgN>s`kD!QCij#eG>uTpsJy;^_Hrx)E59@Z_V7$ zp?mM!?rQ1a*!Nw-5MfytN7$|BhL90igkV@iCyshvM$@0Z9ou+0a+(2<@>K?7#6SuU z4V{9N;}xbUiEX{xu>-`QVKF_>)Kbe~k=9RiI_G4SlLRS<8JUjQ6I4}mL%_tdm@7FG zkrZJ-2g8#fC{dDU4b=P_XX0K&fQP3{0AC~@c0{e6%`aym#@T~^KG3q{I7e{g-F@hx z5CN@sW-iP*r8<@_B+Sh$Aq+)Iu5e=B1sKb+WDswDceU0mz2FqjH-dg%JL85%WYGDE z2`q+B!G|6v{h&Q#gFM0y{T(s|VNhDt0>TL?3jlBjOtQK|Q2yb2yXV#Kp+mlLCK%R| zAnIdE^%6>OE`jFfeBSg7$l4JJ3O-VwV+@)R&FC1rJH+4TFyvM49)Uj5WBFyxiBD^7 zg3QhWoU`6%GH%WmvzN%ugH{$NE>gy0G*wKZp-9R4iU|NPDLnaUB={`*`IE)+RTA+r zUz@r-p%*gIxuTfbD<0v46o?GiTT6ll66q;v?h~)ps8J)rG}9DB#1R7wJTNU03B(yd zsi9m<c>w4@_YJS22pouCM6j-7sdU7T9>^i^NI4qiwrYfQoxaM7Wf%|P5Jd(6dnQ-~ zcs}u;KsmELf%)Yg=fHSDM389P_xz{jh<!Nwb`cy>k?$T32B^uE3(u2oY$5^qH7O4f zX&KKm1q2=-&a8A!XUmko0RVLc<}e3>P;hhttSn|7J;E&}5Wq*sH6pI-GLI%A0t!bD z2o|aIf@B3mmJI8N5xr<$h}~VikF1+?OwBas#24lV;?95$FQVo#987&B6A&XGZxEu? zk{jioGw357cqU2>ooP<-h66XhUnh(lNhMHR!v_#7b)_dD-7s7+9&aUx3~<V@0uVuf zs<nN$-dCv=Q!0<{9tw;U7S^mv<zVnZB_WKqZwNsEgjDiu$0HsN31e^x;YeZ~wt8k} zvfVOwqUXFDkz|})W}1VN{6K20nZ7k$VCTmpX~>hb<L1bW7R)FpB1cx(uzxxxo*`T{ z%xoAEOx;ag0obf#fQPy1e&0k$D!h5R5IF^@YU|z1()BYEY|M1b3d4f|iA6wFM|Q0t z5MM7<N}i~xP8~AI2n=5%62D=t-J;e-N@X`y?cIdeQp@$>N)?L|IP`s22qxk}=`0?E za!P<IaS<Q_1R-`+5vfv2DS%KA*XyNTF5T^BM$AEpZiH@1Mao*S7H<1mm%>yEM?{8L zlc1Sx_xtnv4|S~~LPY}65LilK26D^TPyk0aM5_@O42yPe&-+c*^7TLZ!#6+s{5QY< z>-W$1ZgJt#VT@rI*|{Vud-}W0E&PQ(R9P^<e2ndc*}5_jBdaO_5vM#Bg(z|phQtKm zfgCt0d_v~Sn+Gl;%aZoqhQ?u;$|cMk(4!#-F3?)P@#YU8#N>z_I1r7XLs+!#MB(bF z!3!5I0LB8qLQ;@92;E(~asbzA7U&UV1XN|bQ%6)<m|JtZ_f5kqVJRG7=8gnXIUUUa zuGaUy$z-@E98N@PDSiaxWl56fbW%`6q|}o6aa<+QNGW2R@hel=m_pfgT}vtLzFF57 z9?DVDrJ^{6$QiK-5p}6_!u^Jax>@u2HsYaOc85|5AgWvPZq==;%EH%&>#|nkFf>6h z^WL@fJ2T~^_FQ(1K2{hI86^T#6$w2ZH4p$;Xsx9Xv$>n6{f1)LNo<((4=6_ZLFRxg zgPG2i4O))HhQ|j1uoNN=_tyHMn+4*GGt2_RUsBbX*OWVnWcW+|?K2m42-gV#Iou4Q zyX_x86cH(fg(+tNc~?OIOdm={2>a>B`*Z{|tZket@KDv%?H``U0LJ{0kD3n-S5P=W zVC1-cn7?Lnu7@>Eu;vUIp#YJRx!2&qhl8MZb<oT*L>#ppF}Yb-ybLo&Zc^5VoEx6r zdv`l#v4lhpuy;j*Apj83FhYoAnnq&b`;p5oXBdr$JUl#@DkLunK$u5YpqAHmmaU1b z&Wd*4veQdA%F3fC&j-WIiGZ1yg;0)M$1x02@3YgGG19ZJPNSKb8LF^2!g{@4p5A`( z%U^x_o4@@1H$VK*=U=^9ifcG1P`@l!cw34?-|jzc{r<l5mCGOh>OcA7tMC8zTkhM( z_aEQC`}o<z`t<O{jxBn5ez)E3-+X8yKl_6(o<67R5<4*=fH{l|42-mU(m`bUkCL#M zXdze@k&fg5L{&rq0vy8Oa5tQj=FhH;bN_Z`=bhm}b7l&!V3+VIuI1>CW-$3kwk09} zVU&PnUCUBCgqmW|!{z$)@Km8~Kj|)}JA_#{qA(ILGoT^Ro5#oUAa?HxJ2Ts8N-;kl zci;C$<l~WcVMbSbzCZ7O`_1KtA7NeG`WAM<)h*C7@PW9N^dWcz=g+RgPUyoLa1?D! z_2C*{e73gz*=)P-sC^WB011Wn!<w1ysdNIq<Wdm_#^H|P!LCKfwfntk8d=K(001BW zNkl<ZD8?~!pWOE}6^?{#JpKh{M+gKb1fheu97E_zh=4!@Y2!u$LFe=>djRd*9=tqW z9|Q@s``*?f?5u;z>4cH<#Igu8+5b=2n>0z5WLJ83Qhm?NJtDI*3pF%>>WK{zLVDHG z3;uth2p8l6%?;R12%8vcKn<v<h;TQ1s(0Yxs;WKr>?RWnRAyy)xS2guy~8=*F<0$@ z@58t@Dar57FbZKV3zcQo@10DxZA0J;gyK?|B$Z;8xQ$t!E|{Gsrh01H&8@di1@zu9 zYUN@ark3AdfPqt7co2;!BqJazp;sebYRJXSYyjmgw0CWti=>4g0s)ij<nDnOj4Z-} z1n%LUnI0o%aJCKW>tOnz&*mlm24Q9nqb*P6FXzSrA!$~+fW+#yC@?trL1&v}a#hzE zcxHjU%L7e@2uw8f04;T$q~0)aRIRlpULgOg(VnHZ|8$X=S<EH$*%IjP=wla>xZa2W zgGH@AUx*WR@9#|C=P0yyvK>1A1qdE$mh$1L=duA1AOab0krX*zZ+T_pWC#(Z@}is| zb53~krzP~>+?k1(TI;>HIXZy|CuE+PUyOvz=oaRBG)KaCxDpmUZSLVDb%nEPK_CbO z$M9@!yAQamWWb-zIaELZ%i|3k=rpsXr~;<*f4j_>`L3SfHRm|s+y)gaGc=PPP^26z zbd8x%wCG6rV{<l?rQrF4%d&Q1zke8Aw}?eQERD{O?t^YKX#gvS&RlyxY}FvlXTP4A zc{2nUnKFYw3Y;=wfcx#9wH9aEeDbFO5s--qb5Y<r-!TN>0S<$#PsSGwkk;}fYs>KS zwYXl|iQgK_pPO7>@9Jt{Mg&<NdpHtNa1O#L05HrSz@+t!n8TnE@H3{|Gt4rlrsgXp zAfZe#TxRR%k)L@|%$)o?GgC7F#JBs`^~m+!S;XCWehO=|6_LRL;q&MK#C9A>hRX1Y zR5W;AP6#5x#GV5Ia6^t+w4ddK`L`2Y>PybKrk`hO$C$rQSzpROF~EBF2u3QzfXR6D z?2KBv0o=1D%&0*fd0cOX?78tBK7fdB78ZG}Fi{Bd$T4stl2Sn2@lh#VE|)VQcfm9P z0s~Y1oyP$>0I?)^F>4ScpDmn4@QJE%J_JVY@yI`g<lE+aKO$Tq+*?jhDDlM}W-D+l zWs3=z2oEQyQqrxr&i`DiFf+IVf=3i0DWcxHT3UQVmANt?GzAsOEb47rlp8bKwr#<V za}*U5P@C6iE{z6be*CUuASJcVI{{le+`YTwr1qr#BU5zF`-%K0&*!rh1tcdVrYba2 zL1&O&E+a(*=L%nYUmQ6E%pYZ@UAvmPYID5Z@2$1+RDyGm8X|&{UL9WLoVyE)FhfMG zn+NcaT)@8XygdOi5w+v+2uhhJ0upKOpI>i9NJ^o>5Kxjz#HADrwnKZ*a050o!E$?j zz1?1!u<WH1If96kZOdNR5e%Y73wH+Uy)%xy)Z6_oMa-<LI>giS6Hlsg>-T$WJ6(u~ z7z6yn^AkG|aXaqa?Q-1^;<()cV&6AMC&IGTbRbEsDC`vI2t<eVP%;N2r$VI`=*=;{ z`{|GW?O*=8>&K6O`1GewU%&M2+Eg3%X2C*;oJHUps%8MCiUEj_Fo_GQ=pn)d+08Qk zy>|_uu9gX)-V`tohH-*5)m#slcnPVcU=eoHp8RknYKUnA1aojRw2atOgQGkF7SX%9 zI~x|;7^p%a^Y+Q$W`1<O^0qS<B!VD{iV$JeN2Xr@BY`;qxH_Veh`Fg*sDX_gutgwJ zsb#AhA{@uv&A=i@*p`P11_;UA)5Es!8<!mMX4zy3N^qUI^kCs7(<ntm#32@_GIc{K zmLA)`Rj4g&mRg#{M8wSyLNjetIPcLc)2ozPIlU?Ynf~bkK;t_@;2LUSCO}1Gt2J^0 zXWHEzTy}Z-a4lN_ga`{vqJh~UYQ>`5pGmhdf^9GmTrfL-8p96)fW7RT5%2E6i{`|D zm~tSSfQHphFNJv?lxnv09jiGUxCe9C_N~^w?ctGEIx|-(T+1k>!y({yyQx{z&MM}v z;G_>Q<T@+Qi9#CYl%e#5%)zMPVaCFP!W_X211J=hdLID}h&2~m>(IOiODTAU$k3># zN7}Sm7A&(4epI4?h>U=UoM}{n0V8=QsX5^|7_a6YLz+&*+1q_A*;?y?^!oa`1&S2N ztt{}s$wqiC?Ni=y5{M<iEgZ*wbvlQ^!}3X6w1|m534kMQjI+R<XT2e!5FueZT3Y`H z&vGDjyzn*>1K%R;b3VInpp0}`pvv(~x|=CLQY{BWbG6>g1XN-s?k%gr{KcqSphH>` zh&L43o}c9Q^!;D_;_Ki4!~gkT|M9PW@!ij!pNc+_y|jKSxb1Z>Ka#Lrt$g~;Z~yqG z&rjw1AOGyTU;OCXig2N*vKQH#-!>|Bf4({1Z}{?u`#=8eudYA;i|aSvAtG!J6chmo zw}Y8o4%1Hf1G4)<6coZuSP&paS1&|1vCimk2%xL4I2S!X{3qx3`;FrAJivmt*;Vs@ zwT53rgi;7h3^)MDNtlWt;k_LJ<>;+VIGsod@=$MG$%6zC#@L;a_if{YZ--ZNsp8;f zMx1rCw|1D_Gm`{8tl&n%4ljTF^oL*ncKh%gm4TBqffSJ?3lb8O=GP~ApI|Txf6B>W zR)a)v+3-gnukPk>{O<QJUtXR?zyl-DB0PF15R#ODq~&xbPNP*kxMlB1y#rOoIjM{h z4kg4ibs{;y3IrU&4Ky02{rr|0rV4DJyFIbcBS=1nSpaC}>NtXh2=SYz=MR@F+%#Ih zlyb-N>Zu8!fat1C1DT0Rs=KoFI)_8G)<TWb<XAWG$d$u*447i}^N`Q9IdEih7!_LE z;~zep9x>2b?%w-xb9v>bwlh=!U_^!Ci^+Zi(9?gBL+b1t2r&nNK1bm(66la~h@q^I zuZTp15d$oRhugLd6VL$CL;#+nmsa_^0$XnPd$NRGB)!}4_?iq-*vQ@{5+;~Kb8=_F zGoAN=Seiqhb1RkOgAp?qu~Y-=)&Lk62Pbc3;pFpSUM4+v6kL4eOm2ns^`AqH^_QwL zjA<jws2WeZ8OmDUgOUZd!VSh4@r<&1d)=>>Jg|HMXUKZaFV=JhF<1l;%{|Klb5}Er z0M$}9nMRT<7;33Gjm=gk0Bl~zJypj!ZVtE~UCq=i$&o`pMFbJ9NKDM^5UvV{ycJ@x z@Z)xO_kx?u2O}%JTu<gZ<3gjUCqy6s=;5FSJ`m2H(uIid$i&T&k34srYds)mbWuK) z5NCz#BHyn`R=7uM;^uQQ$Pe8!uK^-(4xTXYo(MBPtNG3#_B2?X$Jy_cAZtp6lRJLq zc`s!9`C7qKiurmK=ehQv`(;K6JjmZ}E=7t6MjW2sg+W)(C11=9Xf6gIz|EO>u!@%! z!);O_BUMPAB|(CMi72bYp;VG3L2`EtKd*((Wb{X-B=b7-2MEI5R3ogEVs7SMYK1J? z05Y?i1K;H{uD8WK5E(I77Bmn@4wLK(h(QxhO-M{)5HlI?&2_){^!WHV-r&jB(X>Ey zW+Omg{llE`G*uQ}q_wqKe8lGFXcdu35K&l|SOI+gS&!*Yc1&}?y_jh0cR$A$46{f? zCjGr5q7o5!^rM+-k;2<nSX|XDi)~I`$8j84P3KQIJ;wQLkDdE)(KEYwK13c+ghdME zPCMUKB4!F97&z=W$3Es$T}lBo!9i-v14`Y%EdV&6KuN3>Glz{YCyskzB&?n5v|(|G z0A?vAraUe4x>mkVccYBT0q_9;O}y2_u8xQTm}cudMG%E36XckPC`2fAN^@R`9(MHT zMh@h`0ig!nr~(n@EN?v<>%LP}bAJ~mem-QD{n^~5NGYY(>N8=+-MkwhVhpUixnsaI zRKkJ`W}~;dhEfV%fdh#Mgb2}mM6b?>2G2k$<~n4dJuwC#MGDGxsSMa%A)<)Twz;dR znfcBo2s0bF)Cx?A37M&&G<sEL)6OI$P^4b=9Rc@kyDJ_UjKi#EpfJeVOc^)dTSmYY zmI8o4ISpg3(uNV)nW`|{U+=H4udlb)S_FkmhTS0PhE#+R(9I3qqN~PK?B?~6U?zn? z;pmE0AiNY&FQlEBiwKocOL^@t1enz;Ar+P+^7qzyYbb!Jk0UBu&Ae0?1ng+hOwk=3 z94mt(3SB=w{rpGY{^aLBIm~|h=@Uq~K7T}()_bS$Ad!tAe+GsFAPCZ6(817|7vczX z5(pP$(5x0r&7i3Rhx?)3BfRSM=_$8NL4ZUpzf*`wYaX1|xwdil-nx$pnQN)YVMpuU z6jb@XKUJ)ONbDg8ksBEmlnt0)kK^!uH@E{nGhHYgjV#R|W}a*v4{NHm*23I#ZWS63 zZh6QfWxZR=g%E_e6c(C3Fvfs>9I6WL=)uAd1y-bCRP}xwWvlz;qH3OGzcH<bjP1i@ zCorA!IF^?Fv8Zv+p4<mAP;=FsM!AF#0$G9J5$6}FryUhfJ}bQ+$5Bd2?>ZMDVLa5# zKn-Nz<YQ=!Bf_!p^Yz2!<5fyAaCHp?VMb!@RBJh-M&G20B%L9KS{|6AwV5S?2$15M z00=@Zl0wrAGY$Zr2U%WJ>z-!jx>bij(~;yuSh)`8Le|;t7J(64DRH?}k(MT2RT62L zgw4zu#}k>@m=Qc6EbAuD$<8V|RkdLBWQsEt8HRrVG`EZ<UA5O)jE0E91&DJ=kps%y zmOsLMB5?HpNEEP|Hg_jv%XeyqDz?_#d*VoC-y9-hRCpOss$GxU-Fjytx8c~zG>C^5 z55mHb#=d$yy@{l^OhL1S5%tKZp<KY5o4E~z$C)`50F~-ii|3{4Q;ltwgxs8e*(qQf z0J4V80tIWugb<8*Ed~G~dFnigd3#K|&bZ$*<6}KJYo%jm=9(nsQP_>yRwU?mLSC}n z;FT7dHlh*jH*%hlm=06EJmcl*`e%Oz*Yel@`M>_p|NdY7;z!>ylmg6TrZ<RQuGgRZ z{P|Ml_W4i!<?C_WE8Q+1zj@l9o=SOs`q++J;fpiw{6VS+$k!YF^FMz2&ENj!=i7(N zpMMXPArPUV1Cm41kXA8)^xumk1VqLtL#|^KZrXq)CA<*$PQCSrU!ByjwHsf>@i{l= zyx}~XBi{cSr`V~n=}I^#5rmtY1~l#6%>fMH>3S)~UHj)RpQ(wNQGgI5k_Kq+6sT^U zx{1BKzHT2X7=#W&uXa^!#9qo;6npROZg*iKlBaF|HhS;&`JaCK;V0kYcOST*^*fXe z102KAAw1mfVfWs8SQ7E`mGIC~WqP3l0dRq*Yhivyh_D{e?gy%aIT;`X7S4PF?fu@G zcMS<51P8<c7+UXYf>~Gdu+_St)w6-fw>mt>XX#JN6WB+5M^-`_L75B;oaM9U@G6lW z>Iv~q)sF!Q7q0dBa{cz{ga7ky{5Up|tLzSOG)FKDG;=lemzD!}?OjB|#)X-rjea{~ zqWwoLIB<SUL^{Es=vikcT*Ub8;3JRRRjQ_JU&F#}5N$M$FE6rDzhAAF?$J$&XxsMu z)y6txDh)N90fmr6Ho{U$S6#VF7U3Qlwkaa8ZL1&3mhw0bu4UUcm?xF1Wi7a3@7D32 ztxo=^=clKamlptFB2TFo4mMDRE#fK8WsUOl98*<O>!#*T!fSAu|Ne@w$d{0pd-jbv z-N>oIQc^sOKl%J5Qyc&Qw{4?2-U=Am3)x6(>vVP~#}Ij+$J2v8?VkHvM2d8#%#Ifj zN9+pExg<hB9LN3aDCCC&4s8mKMn#D3;qNjB&nh!vhOL@eJ_cNb^O!?SQcto@wRf-) zHwh6b^<AdORmo)SH`I<mwQPB-rXz}}6sZvb(UaXCiJBsUjwFK9$lA1Duh-=*UH8%Q z%*Nb8AwjsSnyV6}b@!o+0q{~vgr`Uf5oHQt^0nBYz>UGvuwrF1&pf(mwVXqPd5$ph zvcFtv_JNZJnL-awAooJjV?ZL(&KAPu*?(tgTtlmsl6)RVo^w~$zr4g;|4p6mJF)QE zex(4AfiNO8K?ETp;pPAiaKGPkIC!45E#H&-P`_rqcfRt5$}fK(%&8F>7y*V_SM!Md zdP#XvKN<jF0Y(&NHw(+Kk;lI0Q6C}^lL+SM(GhG^gP0$LnT2U#$vmtfH_J*U^R$qb zto|I`$joLL790b!9dNX65v5dS>DnuA5JS)r0Eh#}mjk+ZYh-S%5n!2Ox1cw(q4Nn7 z5jo+VOm}LNw34hMJQ-I<)YTkHsv4VtJ46s867|;e124p>Zi^`%%;Nd{sH_qcrea_{ zU3oArb^i}z`_M<240sfgO^RB2?tzm%Uupp~GZG;wKwOa`f=kJy&Lrp`z1`buT4b1j zn8N|g6Jd!N_B0f%p=Pv+JFef{X1?=8+WYj06V5g5dV~xxrLyiG>=qG(5J1W3U1ZWZ z7kg;*A|i}O-ENH3TZ<*IG$#N}(0^_troA+uv*dRg1P}sKce8MV;nZdr+ZXTvbYjxh z-7Poq6ktaK^MZux90=y%!AK6H1zz3LGL|NmBn2Pqe8|r+-;LgT0a+#MjL7V;Knyc5 zZHOq{2rzjH47l7m+3T&gx|CA44W}GBB3u=T9Ss7^%+<hrprA;AuwYed?k=U&DoEsN z5nf7p{_u2*Tkk2R&SyS2pwt2gKHN^;w7WYO+4n1RfeaMxT8M-Rp+Gnywfp_^%S$cw z>G_Efn|4<N1_B5VW<Ksm>z#y4-M4M;$sZsT5P-xdMX9`TCF}Q6sB;hk;nUOAJtzgm zNlj(utyFL&;_h|hFwY7H0MyO2vG%fWUWEuu8x!^30P>tN2uj081cp(VdYGA9uh;#u zb?f)m>hsQmY@WcuJPFgO=HQ6v<n9CosnGG#kbM8JfAjq}Sm^J5{p(-<?hl5%UoRaJ zyOD)$5OeDdR&EuMn|tW6O9S?l<Efcys763x?p^Q40ck>X2XiJA!00;ScMt;{Mw_13 zH#ODPTkkC+Lx}iYLPcR#>tF9*z=3u|Mpg*G4Opaj3%@%DF>&=8t@*u^q8ma3Kfu^5 z)X1T-u)rq0cLjU8K9|bWyWU@2UAPju4M7nD!oFSWzGcuy^d8+{**HDg{m|A3v6RB{ z<DUb-v)+&Y@vrW$x8B;(8WIw7VmnrOq^e8ekzc~KPg}a^b)2R1D@7<HKd$%I8l{$x zS<QSZ1&~I0Hw_ek2sygSmFyy?rbVr*X1HmQl8daP_oFv;SNEXUp0@pY1BpX#-8*Jd zggGK0#kOs$EL-!4989LJ{?XZ{Z=n{cwbYVRj8y5f2#d`4Bv7~Lw!%<WgiQ|Dr4$Vh z2q{vxDonz{bmCFDtrxg9lcxk?J0*M#^h5f^m`4?~1f>AIKtjLEz{t$RY(#46;Y5^q zA9dRTB7qt+qaKoT5i@)!3tX8_?6q51S1clGQle)HOr~1IL~r;gDwDD)0YJ=Bq|`!1 z>SaeF4_7lc3wLcjv43tRh-zwTX^=E`VU{734K+<2Y?9+kDa10}1kF<v0pa10LnwUY z6DLn0Yrt-bOE;dCqy|8SG=;knVJ6M72ol%2U-ru)`1)yY=I$9`Dz)UBu+&v6A9ww2 zesE_6)|oW1{<X=i2jaDQL5SRUJ@U)*IXbUQSFz<D2tr7ua@h+Yvy^`8*!mX!Pyg_D z^7`d}`2OQx{hL4E;?CYviwEcg4H-+hY{Y`pZ|!-1dfqNzR+t5;h`2e2RJvCB&>JCN zI+oWS9q8%fw`CuIMPi%=)xje{q<0>|H*gt<U~1MszrNhGJBuS(U^i1W)lP8AJv!wO ztwPXGqWyE(`YzS`oqrHUS^WNgG6I#&XbL_cjLdfPdOz;J{oU7p`fWA;$k&h0AHd^& zJFIzoQGGQEi4KJ-6GKF|ZeYa0m5sc63$U^kVmey8-)|neZ8gDCGd&4DeDhJtCL&Zz z2;*hjzyFRuK5G%G6>NY%hBm=;XZq%P`LJyTkQ{i#Ul7kN+=PWi5Mss=AgJl>c6U{C z3y-6<w49Mh?lWi1!q6uA9DE~T4nF5ckZxkkyATm&+H+>PHt=C01rV~4Ti^_HCm?!o zj^}5T-6jzrxv7GIWPesrDwNGw{`znJ%isL+x1H<H{`Ft#b~)Thh#69so~(<095h-k z$dHg)N)ah6L!UYxK+5EoT)7|<5)PO#b9(e}>AXD>-Sx&~H#?I&-!S*cYT*vx2D&}f z%ZF=V$S(BIhNNc%2Y#D50C|#ta<n}@h<OmZ8F)yh(Q6tNbqJ0EIa4Mw`Wp}&ge7Iy zIfYpVW482p%UrKlO8vh_P4Snxs}+&GZdpk<L^t(_+{a2O$dvJ{LXr}U8K;gh7F1A5 znH0R$kNJw<Jx`O@aN%*XLHbX@-I@5Z?@U}vT^DZMYaZhPkd?%mBxZ`DnK5w=>GIYe ziNJsnkw<-|P>)5$Jc>O4Pnl~+J0eqBG7eUl=RSPBkaZA^k8GAkYu+?L>^d5r$;Mi{ zbg3ojU|C#Z4(w=niaY|5(`q%D_X#1WB4w;YYDr%q5^ejAMC#r%x`@aYr+a2DyIDJ$ zt9jsg){`$Sw_=*g`S}3}i>B0irnXbKYBTLjRBNfVAVfRvW_sDT2*{taN=h?dtS-06 zm~dKVH}@i?mSUP6C?cS#wd1Iz?%PI)Ez1UvTC3E8b2(H?sih>9MoLMANGT;b0Ph@U zXB*&ou$8}U#ssHD=*$~EYkO^ZKi~TA&YP+Su`5I0e1r`q0euZkv@1m9w>6Wj5y0~F z2uPD46Xm?m&BJ5;Z65MPcxl}7-A>14PUZ4M3Uh6}9j!_x>qwF#kno*m`7A3#;zVWP z!jt6;F_j%NFfxOJvOwkBZ@6Ow!g%-AX_M=>DXa19VX}Mm2qaDzmWT}gRCv-P93H8T zl4e*U1n8~3zP^tANPdxJ&P`6UhDY@^QL_M0M0)RTj#<MqAMH462A9Ng_%|VB?f~-s zvJ*FBWLeA><2*S%kK6DKvuQRv0ZX@)AKVhmrie95^|979$2Bn|3Z~3L2f!@(MM~zD zum}Y7p8VMHh7VF15hB)Y+qMlUZJUsj^n`zR)9yBkjXAn~=RIFD`c=)Y<DGy~**059 z9VbuT>+@?kot5?&p}Hp)jtE6K+|WHd*Fr&zjBJD9#Vo=_ESzS~7y<XAxks&=NI~KN z%vl#ANhzt@NT<AY9Uq}P6UVE*etNN^SE@`b!sV&rMovaTemV)4PcsK4d9~4eMJs1K z|1%;o(71v!WpV;mva>({;lvODc#N2Z{0=5^`4lf}=PZkCMTadCg;<CQ79wLPQirjZ z84y%^_Ba6^?%qAROYrUM4V`-L`(>|t-S!Q3maU90ETOrl6EMqwTJ~D&akQ7OFA+`v zsU;vpH+a3>dQ)a9wGy+>(I)`x`-blAxZm56%e-1QmSS$Lch~4&t-Ulf*l1(qy{5~L zOD$5EfCv%-D=eJdYi{yuEoiZC8v<xopZQJ}ZsACb1pxyf+Hp^9goo`<d%f(Y{r;z~ zZYG5SLS0KOb>FDS%l!pq{1Hu6-GE5;vR^9|3N&P_`^HiVOIW;o`mC=v>PP?b`KLen z=70LjfA`B@{qleL-~M;MT;=1paD6gjAW6?_<swx8G2Fo;?=M0!HCM}kAJZP@VSd~X zZ9OkUGh?D!w-jh^+qP{x3;7`YM3Le&o~yhclS`fe#FVMmtpb3J;+Z^5wSgN~fem<* z01t$%)>7;J-tR|)pi=f)N>{a};K2cUJKF0#G}uWG1rnhGNFIb-f(B8#s}YwA*Kh<+ zf@-OCucZn}IE1;I4=av^H4TM?*)mCyDifv)?P&ct5>w*lYoY`={%^E%5U=;!fJS+o zFa9%e(B1F%`w5B!V9xY#Ii)9J%&R<lYuTfWwUTOvs-_Jx!>xL69wBb6HOfk8WVmL^ ziA1=CbvJcu*3qK*9V>yRaui0rdKwulXIy3)Cc8cGLBL6u$l!?BW015WPS+uxDulIS zTAG?MW3moRgXZX=t;1vosJodmlA+$!@>Qq&J3W5^LOe>4uA29Bn%m7?CS?7rV?PgB zVr1yn+ycG%cji?zK5H0`(&6};ij{TUo~dE#R_4gI_fAsQ1)Qsr+^o8zSzND|5gLLJ z$!@en@IuOoGlwocR^6?XQup1%O_hSOhXg_<K&eE;c@-hu?{_K4%;`dMh{DWF;jS7O zU@=k}fe->0M+2Fbt<PFII_tn`Gc#j`xwu;(FcaoJ{j^3qzacCGl9F|6*Iwr|bKS?I zGZ9%kz_o-tud1@!8M-PV#8B;KZstJAwZZ&sXAAb2TcwO*woDFD5EKcJ&4}-Zdf=tj z^5L8B{`_D5=0E-NKmX%z4*ZW$pYE@p*Z~-c0l>gth_|2o<jMMv(a8I?(ueztc?au9 z3o9fZ*t?rr7@5K4>H6~J_`Cn>ALw%Vi~SdupM1oCe%yJ>u603_1O7k%VuY>oR#_Uw z>|JMt#P9y)GiUvsc<R4tCp<6G{hiDk;T*Po_En89NLB*oIj03C5Kbwz)KW_IO{0UW zGcl57E@nXq3-Az<AWIOGAn|r#$0BmOA33d<T($AxGBY8RT6^#JqXWa!&O4S1kjdsn zzPNj&eAqpl%(jS5pgs)OpaTJxqd}Z#_W*DLB*B8nwAuF=l-Yj&&o7_9R`6{T)gBFN zc=FDBbeqQ%b5^voeg&J#%}A#(E=UdrsDVhBTkmRW5oO<y00RVx1T`BQ1R{)xO$6s@ zjS(Xpn+Xzwl7{}lb4?-)MZmT0|KcY<75`7|cHCcHOfKq8b}M9KM*sjI07*naR6$@w zF3th22Lw^-KC(AhqXaiA#9hrT9gd^o6v=@PtM^4;28+rP5$fh{;Z9ueEedC~D2Nz@ z-YmLtz_rwynps%u-aAR@He^Z(!dKOdcFSWS^I<(AE9`KmfFUc-o$+ZipXQzXhr}5( zjes0Oi8;cy(ygC&!NO6Ur|tLqeUq|!%Y`yrh4RX{Ng8Xe7Qj7kJBm@%`df!@J|rUb z%%@vX7%R2SPpHQ??p;EQVNy%6_ExH8RT@Djdf=MSt^xOI!iUN`{dWOt-!{}$BYlO2 zxWGNxDBV1phMWMGZOg%2lBGcvM_^)qXH|a3`dQnlg>$l8l_at%9Em)GS`d(E-!EhD zY7T=b)`ux90$5^nG+CYz5Mkz}MsS{E4Cw@_+t!YwbwvP{a%exxI`aRaM<qrU;0h-m z*#hxkmOu^;K}haF7zsop00txkKolfEO5{HSBGFdrkWkSHc5V-u$+W!#4exVAk}(00 zn2}IQ?|pC-%n49iZ-4-hX_8%ia>S69z9z2#hI|EU3Ae7}rN=qn18bPLmLezedMvfh zG7UYvPA9A28~^O-hI)u@BBArJ&Z1FPB{~*>f|7Qb9D12|*|5aUq__NI!VDv55x6`6 zVF@|i3{#krTsQadyzY<^e?eKjA`x5YJ753#dNnhgTemZ`Zs}FCs>IxNm?zMfiBKeT zOilCKac0j=9v>l4_@t_jGCar8ss5u8#lyvN?J>9)K{=~M9N;G$^%#kCH;cZoYb)k* zG$UD_O;4PNB&Blz4Wt0!IZt36gG|g)2+>uO^hgnaV8g+NXvQbs=y`H_J_OFIxK+|z zu9qQNoXVZ~)c`YNVPf*A=#h_oj=d1TAiOJbVI=fGW(&+2Ba*Nb3QS1Uwv}zWEb9i5 zlv=q+zDNK-rqugbq{k;r4TH`+xHp!01V;$M2n<Sd889J{Ady=vEq0o%5>11-k3?Eh z*0qd(NL(?7C3eCqmt2dHbOZ)0m=j_?H$~80o23L5fYQgG6Q^A9W*ai7ZNn@%;Sz!4 zMdh6i(0ku(IMFZ=QO=v#RoD;C7r``4j8Az9kRzf>1prbS&_j{5hG0I&1cS7|#8|?N zFrzpj+%ZP}z!^v~{uIO@sHJXF2GtnG$HYj$BbOw-mhPFnKoQa1(7m_&g)fyis8mb6 z>z5V05`o!)B7(a&?SROIw_U^%oDyHZzO>^|wXhB(h`>liSXjRK=G#(kfGETc!9=cR z(ZzieuC-n+7h>ij`{i=ET#@A7j@$kIdb{zfm|DL#xW{$7=3QJ$IrM0z)iHTS9LRzF z-V7tr6~e;%#sNMTOTrQe4g^BXgJADw$Nk=|1wrL4;eqZ}s)Snl0s#SpXk!U1PrF*z zuu6zT-AuSjEwWW$M==!M3LAz23X=%6eth}zRbIciD>DB6^Ow5^v$TNT8rDmgBLwB7 z9_eBGAj<VvCi_&*RD*QlA|iIzd~8ZOv{-nq^rXm0(V2Br6-g{$mT2gK0SrWhMTCI~ zC?`On8emmQy%dorcWq(K94m?N?eHk-_nF=xjkZgH>R_hLzBU2H5*$oXFI>NTIpU@P zP6cTz)XDDN-O;3qY#@Zxhz#5<gsW*pYk?s_paez<YYOq^-Oz-~D5O?LdAaPnl#F$l zN}t3)L_ku3d7R+xNK{L4wbt7GeqZJ9S)`LQ>E7Bf8q~U#x=d0z70Wx-&AWC7s9Q~o zoPn2GScD$J($V4&^S*6%bTe1f5e=CI3XlcT7Ui;Cp02b5I|X}&DCUYk0NP|6EN$ns zA%(T>?j!e=NHT(FCKb6Fr^$ROry0;a;ed!gK<zx@<jg(7+$}<TSXa&+$H*vwLQIH^ zWM;S5*ZU2HM=&$QQbqAv<7CJ#M5tLED0Eo9=+)bI)!w@>^R}&2+AxFkdkz!I!c@@- zd7Cxaqjh=5%+?epOvP-NV~v!;PA&8(_=t&#)8Lx^Jaa#yn_DvWI5&P2PFxBWk=74O z2^9j0fO`<yM6nAG$Xb{OQof0lc&y&JFcOKB2nP)0aO>^{j1(9>)O67?XJt7i8KqKA zcT+BVSod&1G`H3|IEBMw-Zx>N%$!eb0OZWL9Y=4ScF0*bL?%PP3O882?z*ba<Cyc( zzEmNC*08l64nJhv&PBDKNeVdQhuw!8CP6&F0>F+G`}IeE@h|`IfBdh1_q*T!>eH8} zC*NpuRS^UNjTUC?FI1l|SNia=zI-x@dtq`z1VdyCHv>EFq^!DQVZnN>*U#O5`S-up z9sh0p%k4uI2uM)Vpio9i-2QuiAw>95nYL00Z*CgsF+#paGTS=~;X6|D4?TeALE*bU z?hLP4ytC{{-jS^(7nKYSjO;>$(j@&^a_e2Y^}(YFAR-KKGxP+#QGf|Ba8c;@<Jj*T zBYOC8YtBCQtn4CU25uq3i0mF;USGZUZmI}&plzl7{*U#?Kl*t2s19DL0%(|8SU8w= zMs?FLgc^}-ytgkIzzH&U!T>8Vet4>g-!Z>jE?<88yW{KE<2arW>dc?bxE#;?9m4FC zmX#)^ATGPd%&K=BRh)}c*VI>q2O)$zj0rLmVhUW+zy%Qk1PksPF}R4~zz`1LVVSFu z@C7CWY^_nf{PepYZ^$qA<Nor3-+qsXtt+7;m<LDjRx4(o;GT^3Yz$iO{b>DmC&apK z$#%?UV=OrlXxg{elqXUnx4y6_EQ}|4(IYR+Jy*x9fgS}JLhWd+wYo`|`;a`$6F31b z89K%c2w?+y>iLPd=Nqb-o9W)o1#+YnsZNzz5jh}$8HBo7*Pi^aJTz+EC&lF<9m?M9 z_4U=I4s!5}1COB%={Rxbc?2aTKvPRIqKL+qh!GPa3vO_t8ZGtBqiI)t2dP=Zg1JSH z!Lg0OOX|G~jiq-2H*sAJYI)bJk%6kFjU7&X_(+K%N_$1lq_X2B=8VPwghh^DzaiB( z35JC5F3I<udSyYH7sNev*{YgLzKjy2+~K=J1iG_3om4y++*&hLH)A3khWeR=FtR=Y zJsajTh;3@wc!p)pA|VAb$-)mN1l*)ZEkRY?mRjUY2Fy9vK&cWr1bT4HOxZ+B5+*go z!@Kq=G>G0im4|{ml|JV($y8H@5hu6QVlbUudn>wkkgXt%zxd$Z4sYlHK)^h#)&%wu zB=<Hgdi@crLdZX8Z7WyPc#bAK-#ZH&aTeOVvlC7=?;9h0YOWty5cmMYze~4-xt55D z5SlZHQPP+y#GBy7m@KGFNn3N?6%LLp5J5;W;k9eE_TIC92D<0tnm;y=syVN<d}m;! zoM(hiz$wRk4#L)ZlI}Ji;T=3<MUaP{mk<*_fMyviNU1GC>uGGyW$m_YVLn?{b_^UB z&Oni7^Pk6fZpv5no&zkO<8|6Mo+&QpOi5gXd4SBwAmYO00GPIncu2+9bo;EhU(%#} zuFmrL^KkG{*sL`JM0YEtQg-0o6oE>?OqWXI!hCx34{ej*nnckYN(6+exf>#hWU9l- zn9N*j)z;^%XiUhF9tjU;xw;LZ==AO;c?m#$sNXU%$^$rCwuzn1=*4h@(<=9j+eaL6 zj-D>lq1E=}!Q~f#nDPk=grObFE{zZnSU5*#2?Z+!iE{322oxztA_5F%#*~+<byJ6M zgs%N~y`f{ZDy{BD;ZXBbIeo|9<S%9RIz%ol&Lpf6eJ~H1Sb0Hna7LL?;E~>xIE~dt zoPa+<g!4AZwwj0>!i1;@5~I4S^}MnX69*)e8>2{h6bojrq^jmU!bMoH_%S2ed)F?# zTkjpZ0C}aH&3fyt66}|Yh^R+9?0&nMY6SM?r3ONnt1Huv*UNJ)TSPSN_v1dkTtN`f zS`&<Y-}lQU5VN#{2xcjzcpDnzFzeA>{OjviKny~bLJlPe)isVV*Va0?h6hpEH{LdP z4|4$6wyl(s8c9OH$u3NG6%n8#3tcXIQii%J3wyYNH`ibQA*zK4w&&~1*Uz{69l7MU zLu4evrGSRb71RyUr7&K$Dwpl`(<fnie!4Q_Yis3l-9CKiEZsf#DliS=YUx<hJQ)QE z&B2^g{xYzG$+e;AklVy8Xh}HdKpGy}MTC$kJ1;`XJaqF20P&n*C2m%TF)&5~EIGJZ z5MdP-DPbJVx@#at<%0r>hawO}*MJrzg|P6(_psKgGXUd_(J5-Vvb^5f0qQ$ph;Z$% zrsgH66e5NVg@qNuAo{Jj8wPAr5(gO?0D*=OT!Azc2!#X#WW~?dZ3D9Gt$~n*%f6|Z zX2zMjoZ^R>h(yBte!nNiB4?=U{AK2Hq3OdX5!s~d+ZG<Ludm~~H*KpB=;6^CAe34I zf`qnxueGL<3jkPTBTBbgA%682ZOv4J$g>U?1|b5b3bNIDsaV3S;}~}s2B2d$Bx|j) zj`d+UCr;83vk*QaoX7FgI!GY`^zh`0F+)V}X?;yV%A39G5HUd{DR$6IJ7g<WS%3im zTJPZDW^UG7Lqy)Eiati75ULKI-<<28Wyz}*Un01Hs<8kh@bIn~&XIu6O6-CGaI^zX z!jlD-inq}-nX-}Uo-r&#z!?2c*npuvm=TY=4bpeHhKAh|9s_BuGWTo|#$t+?EBD^J z84(qcDmzUm2}Gzi0wfkLm8BfVQEEjbG8@;@tYZ)hM4(fIdl*`%s{p6u^${tBkBWgZ zqdngPgfe7ncE2C(wP%c5k~P;yKt$TDX$wL|w64eP4iV-x=PoHE*Qt=oM=nD#;_U!& zLD|-*CEOvGNd?k$n;WE=PfRgFs2+FZs>R*FLntr;+`WZ+00B8O?U$eZ;$QuBw_pG9 z^KU+V{x=`L3E9Xx5&#$wMVNyVYPrzIZ!Y&QU-kAXxGRxsXgJ6gBnSggt=;r?-+%P+ zX_qfwZom46-+lP@+n@g8r}eulNOSX*b@KoFm%A0AD*40Jxn$m4j))=b9k1#fDfni^ z{kFDvN5MGn53`xdo!Yr%Ji8G`$l44g0;I9t7dD97abOE<UP-7B6~6<RIhX}HQ5l(h zNN#@I`<Ktiov@hfQZE|{L>Q9IhAovK*n2akDtr-16L$Z4fBEh2`DcIj^!<-a_zPep z>pnAf(qV0?T|*)wa4<v0f)YozECd2mjogZE6_AABS%`M|{JTHA{_zjTAHQ<UnRP&J zaDdQ;H+Q_AcScSCi~v_l*Vw`jE#eO|tGR<C7^gEUx0N`5Lmxp7>+~4;=n;;QnS?RN zE(i)Jy*KCj?S~JA$d2Rw`uah*0JwLgjMo4}&INr=4OYPy5$!nI{phz_l|uWzZMAo8 z-qIj1wFUwSCJHwjVD0^(^g;B28^d>@^=s9fXAPryS7y+FP}6(kO9dW5OcUVhNZGBR z2wU!W7?DsIwD*jzGjla_K~CVYnInZ|Gx^BdGItS?QUc+A+$S{#%$$izl}r%MXw>{G zTb*dS@B1>i&BzfZq;22t+J}p6HnDl?4q*$8wK)lA!k6pl*w^8<uqp3y70wX%b%Cx- zN(aX&cyYkiTG*N<r0j?h(ZiD$vWVBJ3W%i^9NpzGeh$T!N3PAzcAk|08xg<{vEF&p zu#n+A|EqQLzDqKFgYTWMJ)8K1p|4omY~VBT87IjonKJvn8|%PTFe}pH&>>>iZsq}4 zia<thW(LoUEEpZBYHMw@vLZRay5DXi-3+m7FBe|uuH}4LU278bV?;C%0|o*HhKGlN zC&?(Oo*t29Ld@F7&fdCAKs$?}PGj-0WJ);N`fXD|c_xcTMC;8X!(JcpAVZx4NHMtq zr`Wr*d+SV?I*a~Rko2l*)(86Tf;dmI&UgAF-uk>)T7efcKxrkEoo8p23Shpg{)R=B zrP@>&<$g4u!|{um!(uJvh<4TzOtf!XM*5lR`htXq4dsw8=xe^WZ-{<#8*=_`o?LJN zKKPd7Oi;^IoD`c0Nq*^;dGI_6%n8>x^Z|(&g(JY!NC13@<1-N5Tyfw&Qq$)|n1tpG zXGlj@E^!0i3|!v9$Xe@wz-NYo52P2(G2*$ndW;1Tx*G!Y7`RsyN&k1koKeSzmqYd~ zw<A-Mvjm&#w>l3i*8{mu!c+1o0Ywl7qPc5W1~O!5gQ{}f*0Xnh>M{j8@~DCF#Q}g) zD8D$}tZWqldqj@QV@!dEXDxa4XJz{1*%<L(8ErMj)2jmt4}?sKaxkC>$T@0eEQB-Q zxsh2<-T3v9A~X}s$KEK<nE)IC#iMV<6*BYK9x+RvV>r%!56nO$oO`xZC`HOh!*T-` zP6>}kG*xh5C^L6HBK4DR7pUubws3Rv)3SLjit_pIx1LDfd}E1uz<DDEJ}e1jX6Cjg z&J%AndZi`v9J#b2jsT31E27rDbyrKtk|Q_-3OwwD02EY;tcrNw_kG{!pd)Oa4BlFA zM>h-T4T$Qt<(sLd*jh%qWe#(q*MS2)N)cx4$Dv(YLusvU8|ApxJil>SkF|Di5w3-c z1fY4C83eNM)6>(&+v}H`k$Wi{)*|8#&9tkUD}`I{-qkS5wiVxcxI$`!10%d^bY-L} z1rd*Sc=(vZ4sH-6i4qt{_<Fr;`_{qTHHo37e(zm22?{4bq5b*ta(_K;4e&*_JrL9l zGKh47P>!QPU;z-uDq;Y79M9Lwci(=z-Cpm#$$r_No<eHQbH@lv?SSLf4pWWr#0zTg zS>F=^cz|TE5hI|x7XSgQTV-Z97ZD)T7;dVhmNIZU@WUJfD1aP>bUJldGm0kXt%Ym4 zDO*3xa1&<aN;{DnSPMfTV8iDCp*X^|x7*j9$}S)XY_W5pAbkzH8&{|d)MMX-c!w%_ zgI8^4?qI=g8%ve4NoE`LMCr3s6alh^aX@&4I0SSxGpl<owL*Zb{-%`Tna{1ceKhQS zzh2{1uI2h7HwL};I7J$#4LC!`mxHO45@)8soOfgZMui%w{EJ|urW(U6Km+SC!5N8Q zNE>$63nD@(k~ULyLw6ypOoi)y84<T=YMNqy2qa_@^dZ0-QqTP5SJ`2zjD!T%)y#k} z<{D*6l`~u0RgH*Bts`Df9o#b}HW?Fj+tx%05LDd(B%^=|gc=b^M)x6+aK3NIT(%k! zTtsR~cl4;Sa?hONqnY2d`lvCunQeK#IwGnALO|eQJqh~CEW+%F0&!>uLKGgWwF%lL z2tHMKYm@wD(%_L^ah4*)E7sc0SPJ|gr)*VzY4jJs)J^H35W#>6vVFRgqqiZEMa(B= z)et+$Jb^Jyc}qu-;Xe7FnS_~5l|>N349s*arn2sz9k>mee%#xwa5|Tnh|+3{gv@0} z6s*=QBI;JReLwE^5$FKm?)P@EFqKLoT%-^u`72dZI&ZI0HmRmgEuCv+4*mx1(jG6? z!wUux*UGA<J-a@fGBIZ%AYPaKmoHx)5-pT0Js{a{ZlzXsc7qOZd3yThXFvV*Z~p0T z{`UX*kH7d2&t(HU05xqJ!5rW~as6<KR{rpt&$ssF!dz(c$TbPDFcvYVKmvnq%H43^ zpZ5LJKY#td|I6PQ*q_&b5vAkCm??xf!~t);gtL$b07yE(w%01eqv2fRlXSto<!8N9 z;17LQwt{M-$3w)SzxH=l%^@nJz>{?AaUfVO2H8ykIQ61oreICg+*G~yesQ)iLa4P0 z%Kg^3+?9M%oC3fR0E5EAn%!P+f^yyV%k@e^j@I2=9T7w-A(T?Vp&c#4kxC&(#7(`m z{`$vH$EQ#A_(>`IUMdi}n-gjhkpMiRyJomma_<8n=R{)}o}m+js$gJ%h~RkHneh3t zZQp!2K7DV0|EvDx>*v>34%kF0OR6RU!qwG!5fS0Qku^r6O$9<o#|PvMJj-WV@de$| z0_73F6f@!trW_#5XT;v5J0pO55X7k&bG3WBZ=0aeM*Pk56Pjzk>HQ`ULUcGffI3)L zA!_Cra2&_iKYf-`>b@;MJ2P)j&l!=<B3V{y?@6X`go1K55G_Fa+%LRYL@$}@a1Cz- zx|vy8s3Me+ASf(M9WO=A06~O@A{yOHfl>*W<@$(J9N!R1O<!Q9i36GkAvpjAXTXKt z?;hw5JBv7?69p47BInXOZ}3H4A7wP4Vb5D&@imA@isZ{xb5f(U)8?qvbi7g~LP;u= zdq8?g(o`}cU6VZhfIY3L**UTIJiR(Q)`tT<zp#Kv<PpqV2tAyLElj3iDiyB}Mxi;N z?YuKlJDR(X6Fymq=@ZFY-Ytx>l}harBF0-|^4U{A6H9PGNtP>f7|ldrwKsE`7BeRo z-YT||&vnlFfEgGD4~|KWJUoQbYBGP-;@<NJ6d@)s(@?aLI)mB$1*K{QJ)9-q1>Ckx zm`$y<X7_uu!0C0&mVU(`GBHLn^8p<IgOLy+`_#-n8Kj9+Mgy5!Ubesja}u;dHqL@O z$T>M71R?|x3$vPL#_Diti>O*Vjt7fV^>(|FRH{XoW0*aMQO@(3nGez`jo#oF0|0{v zU;xE!{qX#xNLZK=9z&3vN}P$4kEyXeR7gLZUY++WNry_fo15=-!}VqHD7A)%g}Ox+ zZ(~?6a#1rH3m_ols&gcfg!?rG&V;jE=qDScl;Qwk)^aw758pt3WbOm@cShPjKBE|; zw+C_yhT#qwnX!nNdz*H-a4<J?2#ge3o?ZFpiD7t_nvnu5A|&FjeHo+Bd5HWHgZ22W zykti`Cfh`FUZbj^isf<9uU_UcCzUw@m<ZZYn7K!e`RvWM><kF&+A+Y~^4Xm-co^)z z`HfBZTE6)S_RX)rIb^2RI_R<P$>&}Zt~K7u(KCzG>ka^_{eC~%aqQbhHoYqJu(ht2 znLmFaQx;kH>FMcQJTtR)<svx@ZK~Egj}Ru#U=^T8?BL2(jMIVmMzFcQVvMA7W{cxH z7bATuJfeuiyaHCN$4qqxL`;?~I(PuH<kLPgsm9|nA4E(AMj(>q?t5gahG(KT;8?X# z*EV=nfq~dnGfbU}1O^tD%T}*@bSJ>;hyD8D%DWuYhKg+r$uWs5K!|g^Uuvb(SbPnz z@=1tH;dIN9Zqkr_&cv;&2s1Je2aUwxM<Oawtu=?jW7@qIatK5a?%+nuT)-wyRKsUH z<FIi?QgpchfT|OT6y_q)0SSxnzL$2~*JgpG03(aAFc9w7t3%{6p&boTYAH<M<^r@; zDNGR1RhwCv(Y<Px9ep05YQ{oG*V}O*V%fHB+e)d~hcFWs6loqVB740EN+PveYs6S; zDHgBob~}z^J2t)UPnSS+z{u~5h4wxK3rM9_g&+bhoSwam42lux>OjCm9*%@fyQ%)a ze7)I{EytCfxhD6By)*L+00@#2StXey(@k4nw6#o+pjXx_NEb4hNo{3Pw}vXQNT7-! zhI2A^g!>wFu{?Z7CfEhT1&JY%xii9j4gdfB>ejszh#_bwgGd!A1daE-NvY_uz1*Ik zKT{1TuI55in8FB#UlDRc@$~MOUwrkYn*Q+oyqR7Qfl0VDcLG8Px88c}eILJABtmSh zNm{(Kf)Y-`01{G2AtC^(1rg2dW#0x1WdNWM2}k@4p>;i2fyZ_~U%wQ|2RWgXvWPfX z*Zyg{Mekl~mAb%%L~i|M@4ZwRSa$*t^zJC)4%P!b*hx1P5YWId?o^1PgEk-pZPuw{ z>?I5sf*mc;3C+X0?K?)uLZxCf-F0^jXdMu_GBGh=SC`FETWg*9t6wF=o&K-?8xTl{ zQnV4CkntS2!U0`+mCvP}kfcai>awnbPC}SO$|4Bi5rzOnsI9fOrybQzK{YoOB3w&$ zM?esqr#}lg*w8ybzC0`vfIT!Ynsx#zSir!VijcYP?RI^)T)(JKAFodKvcG^xL}a=q z2D!(sd)m6yl!c@)V5Fs7%^a~?_;6=~n`2<*BEjA>d9x6*nRl~5vIrltW?WIggOJ^P zDGMQI<VOIihnWkPWXB*9u>ha}1T!%^g6Bkl$=r##URGkZ@W^><W?=@Hx_1i;VPO^w zFa!tm1QU`VQh1m;1TxFAu5(C#^aD6osR}?WL`=k`)NC_Ht}aQKb4G+PXO^g`_13j( zxD%jc6_rz@L%|D(T!c6i13jUmfRH>F^O03gFyz0?CCmW{h=Dm$eoSm0W{yba(YvY| zv8>C5Sy(C}SrSW$VzeO+j7YRDOA*e?F{jIJnyys`<XTu5MR=_qk<#JJ=bDhegiPmW zXx*(_7%+=Ra1k!W+_LVJB3z`ans!E#1F@V`<1|^AdygLB%*X)N8zx>pEGU5Bdbz?0 z!_Oym7-4dta_7o`C|UKo<=5ET4gm+%HB7a)4iVW7bDm8IK|&&oxDv5DLKLD;fAiNb zfBg2tMgH~w@h_jmMW2^q-C7iG1|>lER=6-wShTITTU%u5Tj!t$sRe)>!l4Il0S%e2 z@2NgvRCcmk1NDdNdU;q`IMBkQlo}2QfupxI1Ru>~MtNkuE0@nrf4FU*)jE+80k8vx zBZbdK;0-w<b%k=!aMLs{EJB=Beu}8GUmX(Mkv*Cr29}T|Gfl<v7{i1!ga}bMo3TL& zSeUSF_QNOp(~talzZ#OoBK6(%Nl^CZ{_<&Sn;{mnD8vA9=tQh*ua|OtcUd1-uH4)9 z^88uNSV}^>i-<5{IOX1%QBAumm(r8kec=zk`U0=gOLZh9>gr2f1ZiQq3O`<!hq_Q8 zWysF_6ELYr97yg0n6@`W0wSmtYK>*ZhsWU6%DRQOzK3>(cwAR-5ENHOP}7FsRhS9; z-XKCqm;@ZcL6D0uVe(~x#)KlLAp{r}iEma9GjPBF3_xTb9ZoJ(lTDHx4=_0)Gg1UQ zP!J=lMO~L7ytnpm|J}d;e%me|KRo{87bfC>>;M2D07*naR4TRe(u{gD?+sgnW@z5F z&DDg35cOEIua|X-r-$RiZCRFlD@BB*M1ZPAfJpHe!2})<fTflZ&j$cZK*-Dx0OkmQ zLX3h2>{Lqy;_hKW<$95aRZI9m1Sdg2FxP-UCPG3dQ^!ETe1?<V86FTwH4!?8Y=?xA z$&XyEX6E3`lv<?B>LNlCR#P>N0JG3;-VFj6S%|?QQyQg=P!1LW5_LBRWI-uhO0KN~ z&;!(5)si4ymc?p?BF<z0HW;-`NcmG{aX<AJQ`K@b|NU&lPegiRtlf-R7<2!~4uCA0 z@<V1IB1Q&uwR}a2h=?#!hFKsG;ozO89mfMSpTY<yv~-eW%=}0`pd<Sg-dJYt{{w)4 zk_w!Y#FUTB?1aQN9URcnw%MJyCy=_%krZEvIHe4n_d8N4wbqr8w5c_9^*peeD-J6m z=2#=Y!Q5n3F0KZiz8_*_Lb7hAhD1Rqb@2dI%MyhpYZd6dn{{DaYN<ttP>Q&RrZ+gy zOfi5nTO?PK$DbaM`D0yG&81XK_jp2Sq^2c*%q!za$UUeNWm%7GWhADf`hygd$z>s7 zNAR#5za|XSRZYzhWvPdJ#tC5Lco70&SItsBDZk0!&zG2q1qlI!xa73aJhB)g@(8LD z00uxKrP_-WCIa(-P_u5DX)^<teE1HK#^*DgTxV1k6BSICQGf#h3dv=;AdssUDaj`t zMl=9$$O&|YKDZ1BJVGFWxgr7qWCaj0z9KRihPrxqU=WiqL5v8~e82%yl^=m%p(Au6 zb)jYnZBELYo2hni2R8;N!Vo#V1rN*ZvLhg4AX<#Lx0rf-^O-@E1K(p(4DKGD+^cYK z7DkFeFGcUxxl~VGR<;&{Uo-lB#a`CpVO!fXOdY~=^c$vuK>&<M0B%YEu9|-(Aoy4x z65_fnBQU+SoXN5bO>l%~wI1QBJ;G}d2GrJb%T55{J`zZBL(p1=ZgUYSLU@4o4`lE; z$!D6lbBNYkW8wt#<WZKk(3H^?mdfniwwIT_?MtngsPELj9c3pm)uqm-5ecOf^UftD z52cD!5n%>*cf*Vc4iM%Hb2NA4ymT=lNa$>mHM3m*k6V&Up0!L|q(H*_a?>2h7CaPz zoZ2xiVi?U0nJ(*<SePZR6$FBGF?kd&W^lVT0Ftr-iWvY2vLF>eHi!tcp@;<{Uh0a0 z)-!tt^QbaYH^rO)!-!GV-k2!sf!sf3S_?1-l9_b3z3+}%ALZjO-!G4au8ftOftMAC z&7+$IB6G<uCi4pj83OZ}Em9)@AuCEu35OrYLSg~JoyNMteeYq$DS(Y|v&*vPjv*q< z9EdU!OQfU)6h)lL0R>rD1O)=k1Ja@tKtPNvDNF{)G>j@0>BwV5LXjfXn#JC2Z?^4y z?;e0$%H?5s|G>2>M2k*~1Vvq!)N(SAIMnox6Cgresv|acU@n&x5Hzz4X*?GPNRGlo zY5^qkun44*oYk~KTetqw`nJ0{1iHFqy@61Q6fP^v?fGSUxe4H<)LP2AUY2!5VPYaf z#@s@MQ#9+&U|`O$Tq+Q)*DDhJ^!Zb>jzY^?9v)XB*l$~JZULEfSk`)dxYQ+MQAxW} zivrB4cnzpUE|;}~I=F!oA_j-CMAe(=^VVKo{_!t=@h|?_Uw+<R{=<L$FW-LtMAvnF z_n{jgGCD!`XcoPzcb1Vz+}fTmB_L!{iy=uVYTniAvJf#9;Zl*=5qoc$O<8K~s)3Lf zcO25NmezaWgFFhz6a(5wQaBJCf~6o*LALIoP<a&*3)9}wVd1iH36FihIeSQufJyJH zy+o|ElN(@f-Mg|ASO^yiTB%kO`>eH7>B1ZF4K7rc#`06tAMj~gKiK0_U-5J3PmONA zHe8gr0q?dL$xW{vo;qG$wEom24kd)DB7iJQa^1Jsde_#ip16Y(zdCN^%&i;=$i6H~ zKQ_8?vi*B_u7GHYrxBNBNxds>I{<JgNq0j)0@}JVhal!MhDR+*0pMZXn~xHZfVkAM zdDBp-ygsbUB7vqJ9zg&>3_#|gO?%%pl!qY(&q*k`pxC;)HS-=sU^zMk3KwP}w&TWB z)ux@;>$=osDF9Y%4RGxdfedvi0T5w*sA<v#fS7J=K(!7Nk^%ulLM12DSpy=aRP~Mo z7GWkPCL3=}cxxieT!(Zv0tX)czSYc8$lU0jIV0{)fRzOhGi6zb4)|h5-ro0$=X{WJ zi1_qq(8)$|Mkh>p?X2V+0^H{=hH!)g#qf7WKR^{z8ZfVXKp^1cUncIfURE7MTyqE> z$|i9400;9#8Q#;KisZ<I2<uYa+(HvfGQztK*Ua3sj|;nig_{nUT9zgrv2EJ~B~GgA zY{>{15LJT?ZFMbGReS5!n=JKmxtQIdu#@;W=2-}ZiWD)m-WmXyE8Um6fDSVe362QJ z!+c>l0uEA3hlSV^$Kc>BU;g?p{{FB2)BpVakN@A_{NdOC{39cTdpfL{UAu}Dz%I-3 z<=0Q!r}lR*pLYEzkN^R>SOYcoxFB)12Ivtzgc)Gj_wA3r|05Lt3;N9$zxl}5C4AH7 zgcO)BdNzRm2JW6tY+<Qo;oe;h&~i2z@s^%-2h*HQm#<TPCZ!2p?*>z*K9%;2M8t_s z;k=2N9Z<%;D$Tw~km=7Og^QSi2*R?X%guDUI*B89(u4a&gb>Bcb-7e2OIZprSUi9J ztloJkW|F){59<l43xFWAZXRX<5$;`Y>YqMuKm8<MKJ42|=jtMa$i!v6R_l1Q3IMMh zgk$6occ?|C(%h$kM3@oFrLKQ@dHDG8^0YpGQ|$Zi+pTYVmq0?mNc73bz&eXG6PA?O z8ft@$k}CbQntFr;10f-1(;EorXy_yTjg~YD=7E*dhp}uV(l7{5^0m1~Fi57q_YaQ` zzy0+u|JTdbUOu&#&v1D}BxGPI-gnc^P>86On&SaPijmg?h*)and>-6-*GQ67DLydC zi4ca_fK87^+9s!)Y;cQ^0)a#jF&1K{Kr!EX?;6&^eYd*z#bKnyW|N2`RV={4!N_g5 zX`Y(r(mi|LW32g;lPm)6e2^>MVs7}E$N+oNCsThnG|_>;mhVEMwIXCBAwrTtBBIs> zScW`-$lRF^KlqX1eFXMJ2KjL&J)2<wBLjf;9(~v!hI!D=UeTE3pmUhx$?yx|5R?Jo z;1L9wT{99Qgd`A=1hJcYS0e}_1Y}{dgI_Z@;X~|$1nFUsdt}%f<WK_0CV2jp3^@%a zr<-otB(pWmaPFxzQPpV|ALz&9nw$ShN-d_L3=Sz=%G>DxX4g_lc)}3U>2|lay_RuJ zQ(M*|fHC#I0I;kJBZa$|)mm<C&vqRnfZ~8jC&rOL!{S~Bys>E~k#pvz5#^D9%*?{3 zugp;AxSMnU+<iktgmKTMVNNc|jJ<osmLekNiBp)r!8cCxHx{rXdm0iqlfx-<2g;t& z7%|l-X^-7|M-LG(GCVjz<d)2ud~zm|Vm##LXOnw=X!D0U6euvVVIp!alM6YWX~G#S zSj&NaM<8@iaEAzk;3=EGd*$*qiEawxxDGn1hMdv7%JadYtb*B59}c_3#|%-V4bD-* z;K4loy7{~fG!X;`=aiP2;Usn=h%=IM+qOBuLBt@)IWHF}OZ5nhKn@5L;JFTraCBUj z#b&;_DHHV82(i}M_ubUWkROaZruplh4!+~N%AsVq83H<cYi+-62v|$8JkozgA((HO zz%kVJ0E8r<dnQZJuo(_{zk};|Y_g!W*8;uSS>&%~T~`2L;~CpGQ6A|O$zMcaiQ-|7 z)4WXNM+V<HlxDtnv@8>p<^iq-0}2)*>;dy}Jx3^J(JP0UCO`Q&$oC_n(R@a@POZc6 zLS{fy1}OmqlewdN(zppRN5&95pHCd*;V?_;3A)25uILUb34naC;1EBi5q`ERZ=9HC zLrFxe%koB7>u@ytfaPJmScI8At_$P45AVvQ#sWz0jD#En<W5JlLV8620ZDSnokz5Y z<j5v<#QrlL>nq(~#<H7Xj2g9;nupu{>WSQ6n?s1mU}APv)l02eevH9o+7#T=nt*Nr zn8MU>S4}G}x`(PG!mdW)B*cY)(Zbx(%wdQ~$jCL+n{i1cIHm?4!T<w^3QMUqpXv*f zx-pV>?a|Y(H!izFzGr5ERM%w^B*Q~P$F0|`_kHi1?qP0VTyR;}HNed+DX2sgZniZo zJ25@Hd!p+FwDtU!vZcwvUs8(zNQjsgDI{Xn)m7atWg+2_(}>P2b)f)nZ686MlC&~d z*Ge_5L2gZhz`N?+x_0G`LUpOb<HN+n>cPxUPmfgicfb4FzyI!!fDl0YwyATo@D5-` z4vd(Au!$cvGm%n9l+%vP0w_gB6y5>ogu`k>G%R7JYHr?xg!3QESGd+9EQn~W!vS_l z#R>y4u@g9sXOioMu4qkDZR+l|RwiPkA~J3!j1bTQ5vYc=gVtEe;xEAh{@iZ2XWrqu zuFJY!mP$o#x0l|7z!yXykxzi6wmUY*!1c<8M!tb<3Q%h;wP<g*ee05XSwyK4;O)e~ zvT#Oft@XY2*2a^BgVBJ5YRb&{mYWYx#5fZtg^?(YH(};u?>JCXctiyy00=ZYkWqh> zB8=Fq=Q|n1Imh8t66XqcNP{>mzb6i)Fo-}PT-LQbEbHU7UL<Ru9IX*k9&O!v>#Zy- zr>r9Fn#+l7$8h3Eh!3`)Y1c3}x85CQ-Z>E>Fp*>>8UUt=I`#++M<g{>vuwZ^tDD^& zR0yfPk8F9tXSOt+AP&Rg!32mv#D&o*Q>!wr6_^}?Mh_KPM&!*stAy#)I9E~Ax<#j) zl=-)gdgT>wXtqyjy_wE}H^FV^7^(b%`E0b-#+Mx{>BtDegKdx+nT+b=b7s)Qh33S@ z+<AIKQrHrn)nw)eCN<W~AWV=ltvvgIA^-^Pp`KbwHZ?O%trN4H`4?}9l9-9G?xsdW zbt$!0Gw;1iVeM@w#{p%KDQr&V(kzg_`jO?qq~U1-xBgOCCfaP?wMWFDXX<dKC18M@ z+$C9N-Tg|X%y_i~D-YZO5Cw$fkvhosPhb6d{rL5F&wu=X{`=qjtAF|h1-9M*d-f^8 z3P@@<0KdGu{_-zAwBBES>{OVjJ@@ad1I7gfLW}m``hI00U<_WCwZiga`~LTT{jG^p zrH{Y<fXI#pWh|y32+$6a>?;aZxK}CHW#R256L*I&BHkj&--adGD|b)!9w+YXTXFl@ zLPbad=s7VTN;e7?BWEI~zyPKo3kDLzS}QDz)~e|X%huOC4ANIC0%%-Ouqy&GvSTQ* zIiQ7rEV2aK!}S3Ls0uIzI)FofnqxS#)Kby`4~ziFfS|U2dU^iS_h0<xmna^nZfG88 zMmggEcC}PK{6ny@*L2=j>Js5tg5Ez|<?B*#EAsjG-+tb=E7eLAt|9`M7uhjMfgxZa zmZV}&3s~N@S(PT!go_Xn&>%j*nFX6QY$k1`N&*2X(~MY<Fw9K@2t9Lm2@t{J<HwJ` z`s&Mvzx}3}g{mN0Zvj}C>2eJqan2~oV}4C(gn|fDEiyt{w|&cvdY&8RUWhVq`drhW zi(`*)RX0u21T%v<xMu)%2n!1>)pm7LAQ6O(S`T9pWTKKyBLrAibyIV5!!Rc((~s6# zJ3hmh+4JY~_MR0h!T?h5cC8tUb|;H-+B1=G6w|$HX2~NRS2j^@0vrftOgoE(P6~2< zR&zjOX5^Oa+_>*Ec$h;^=@Z$g&*9gdpnQDK)37;5Fgf5mk~GKvo)c;d2WDa_%R*hl zMmANRhqrw@<G`o%Bmbx)Ux@%B^MA9^PA?=J|CLE!IxmFIla%wqX1W)1A%%cU6o>2M zygxh7Q${OzqH`X^meE57VJU?~qDq2h=7)baNzF~hc}R57g2_YY#^AuEjWDhmgr%zC zVGu|nQpac>?VP)J?sbn<RzLT>Z+v#?a2pl#VH%1%e2S*=Gjdv**5ORgWX?~2&N}lK z5X>TC!gJO1bM*L}$h@*Ojln?@SPy2ry9i^Tn&n50%vnom?<3?Vhw5<ON}hl9=f&PR z?BxwdDTsUTcmS}bp=`QVMI_DM*~a(1WgOvv8_3;<<p(cp3=0tfJTH<QV`W8z5oXrR z5s;7q<0!pO&NvT}`#dFogK6o?ITyhxpujLCavuJ3T>TXOpFWdUM5nVIkC{ox)KZS> zg!$~HRxy1Zak{505wwyDmD*!-^HM7><gGi7H#ARe%q*rq2P{i@DMi?b3mN0QTFPZz zyBWgUH+0UM%nV>`RdZxxaHnenlfd0lnyY1+iN+`8_`FcgEH*#Axzl=?A6-UL<iDO% zstF1N04Xx5uJast^|Rw0%awRqoZzh}fd(VOYgjAhc>Rnj&u=Duj>9txAf@K6Fu(YG z62_;UvswVAw8wiQdh!fcRpgP`b(H$|7dgL^Hz2|{^&gykuj$k~^Zw@DJ==;o%A6<p z@X^oWAJMz>TAsdqU*Me}mde1c6hJAPL^@ep=6H0j>d*Gf>FCUWi=1RnwFk@)k7EWm zzes+axz9jEpnIGbXs+sE9*iD=NiLgL?Z|D;r}ADCdfvav5n!g{w<)?hU!>OS#py=} z2Lm5RS*F!Pvrz5G5_AuRbV4WO%uOgVob|xy79PE|WS|CO*UrHXz(q({JR)LQ763?t z?K#xtC?wFsnrSqXbzxx-1cG(BlxE9PnOM8_);0X;i;ogOh#cb}fB*w`_hnrS!>pUx z-r8DfDFW!kWA4U6K9Kf4@L0&^dQZ}TKtK`MBUF1=v)-wSn`+;?HZLwH5CMFkrO-_G zt}Ul1fB3^U-+lkX^}|<$v~7FHYTev`QYnsDL>wZHTP9;w^I7HGrl@6uxvOT;k_90V zNqV6WBO=$X8KsScW*!ttZ(|~qF*mSGvG7pvKuALEFwEz)-J-XaTk&OCSlGMnyYAc8 z+P*9cG2?>-5IAZz+XJu6Ys7>2Gj8Aa`njQC1GVPRInV%&41`IDr8}6T3L611Z`?o$ zs9;qB*r}peFSpws<RKhPurM$Skem;J+>vxs3$LX}tsbeY7->yBcqQX!V=39y%Msi& zK%Hh`UYLZa)^Y%wm<F@0fycEjqfg0E5FiVq<>;MhkpqSS2v9_Z2o?Ycx(fm_77PM{ z2I?Hwr-$|Zl`f1zj)9C6Xy82ddB{At*K*>jA_C?>nqs87BGept?k$rwAl%ei>)po2 zyp&Rl074p0@&?GVBL^YGDb0W!Fdf-Uk@EXQHQk}z=IY~$%GJR%#t&{E=gt%iAQ@ha z$hA_$IX5I{Y<+JTAv_jM9p}S6=VEzGCusT1__$}5AF7sfO*RkE$-2rSJL{WSoSiD~ zSG(3puFYm6kMx8V<+3G>^%>LjhM0T5V}@lHJjM_+XIPo(9)vKe0ZqX$Ny%l`F!__a znz>u5qeoFTihD#l$7WAt)x88KaPx?SLi0fBMU1eU!P2_-NMj4lTnZzCb&c@CQc9`o zVh}CoXRQbO*`Isfj=Fiai}}|X>D*0Su2(wk1}FRMkb_YgC&MEk%v6X0!N6}le*KUC z^5N^>{Qf`xumAX0|4skRzYbe`2Zpe=0J1<$zjGxJ4DXH(<QVwyarxpOt&Tr^`thad zr>CcP{8(1GkUc(s;?}`!uVIUDkThkcc&zXK?&alg|N9@7OD$F2ef7k31q$mnsX>31 z>>dzn;fJ->pOA7LA^;hm<Zp=Y{%U~rx{IJw>E;l0g1*n`!!Zg3PIyI(Kgod^9n+$L zkjo|vz`#tm6#<d4QHNk*M$WXo03asJ1XslT=P7fbExM{d+jU>X9{}-sy~@IdacjGp zu4`RN^`&ZSjKu4@^=1M{9D!icK%X7-$Csk96jTI*aO;W)s@V43CAwn}{KEsRH-C&g zjqzI2!xD?)<wF%jfVS_qZ~iFY9F73yL5%Lvb<itwrH3(KC^SKAOw0mAGQ*p}MpsHy zU=Za;wU;$6ArU&JD>womhukA}K7i)$86{;x9<Y}3)%$l(m->mI5>RFTyr}^&Fhmdn zpqW`XF(*`_B&E)M-?m^&q_o>XiaAIwQY%hI(w`%*Awbv&P0Y^I+`OrGB_<ETiZuud zqf1>x3PikQvf<ztP8rJx10PzZGZ1RdO=e?^ghPsgNQhmP?h$Wf<|zqjt%=BTpaAmQ zPH8X<b24VqNN&1?$vvz!VkTlUYr1hMh3W*FMQFB0*;l-hAgKY^333ks!!PRLnWJ*P zAYM2BuUeGW_BSs(5haJmBU?wDOOXsyFQruC9<cY#-FrYWo4`Roh@5Y-<cgGYTFXET z&cU}QKy`d{S%}cstEFlcXGc15?Aaw^PIku#42qO_y=L2ao<(L5%6SNK1RWwVms%oU zu_986C%NNi5qLuuVfV)P+@!gusovrE8MFP4<FOYZ@xp~U&5W6POk(b8DqL$VXNAr= zR2LBw{67Me56#F_uF*h`jjGR%1DVsv4~KqrBE4hKwa1x!_m{#LQ0B2941E6>e;(^G z+silb#FS|h@;yY1iI^bJ-P9~&=5loFW}#!Qno20Cg@s+?JUctfJq`)`tJ`^glNp71 z{^Lx_ms;i%nCYV6!*q#&M^?=+EZ#ZjA`#)P!+My05avjvznPg6;GDybD42o0Mn7$L z_z3En=MMldlH)yMbBK#_#BkIeXJz!Coi@-Z$#guxgn;B|LF9x@dn!G%c+MOeL;|?~ zyGLkW0E9q}o_*}R(}R?=rF5{J3aXieuBt#(I79eYd(UywvaB`VO2no+oi?fG7fmA~ zfQj>FA);evpJKRRk-LV}T#xhlY*N9K<n2rc8}9|*!{1N5qoEwnPGtVRvPxtb1gj}F zJey`BBI$+s=7M>q9?Z}uKzJ2TbVwSHsmkFDIKH1j^c!z(u7~}6(vEi)$rBRcNk@cC z`z0hGR8<et0L;X8cOg!xj=M7v5G@C)?5usB%KEb@Bu}I~g5Cs-=7&G=j=gunn1y$q z#&e5c6y1?mSss^_2;KK~Yo>+}hzcOD7pQa6H-9_xR6n%tSPv&t3z+q45&$xN)gyqC z155KqNU_3{c_tucoFU<v2oJ|1!MdVI`n&JxI>*DGU+O$rc6R_BNz)cxdm)mwk~7r; zMZnz&EP^v)z7+3vR4S=5f{gb8!XVU0#<jVRe%T=$6BZigwzoZB<V6-1Mi1~fXZ22w zWd6V`BDI84AcjHKSILQ9)}^9JsoGor{>T0KxxRa(Z@+!e2G{BU1S8`a0`pKMa06?t z_waJP)TKzpWvw1Ag^;OhZ*4Q}+8u$AF+7mRX=ZsT0)~4EK*L>#O0H7fIYP#XjOhqf z-&=28dw1RT{nMvUs?J=(Ved^~K_sE{VVkwo7!nZyQZ_vOIGRMH9>okH9SI*}Cjlp9 z;izvB2$EbI44KKDW%bAxN*!Og6LAjj(^oDct#|E)J{Nj{2xhu%2BQxR7Ai%gvI!tX zIP~xcQ@~QBDp<uXWE>WISnL#ntY8F4%*nK^%G9|cuXSaRmwn5fj8y6v28<31*Y^)k z>WWMN>7OcfsrLa^4rW3vlh<Szv*nzjFb#LJPtH=?BD8lJB**}daNpWqOUW$1-g{Z@ z9L>ys&3fI<_tqRha75A&(>-}5i{;icw8FzZOt?6ZAcH|5D0nliXt6+4bZ`PfCWgU~ ziUFM}fYAGGKmku%i+Rxsku%rAOmMTNdt)RKiOh}049$zQ&nL4Z!ib5H)HNG`lu;z> z8W|YSA!?CG=5yp?EJyK?IG7p0kqeC+35_ZrLNOdbBWo(_tr7EOT}!QLvp+7X;Tg;s z$5@oXtH8B$##6!<EG#p{m}uKKW`?s9;S@Ns99ViY%X3gfE|<%)EHguA-e<E?If(v{ z9)~=AEWCGgu;UvWeN>$6huKU9+-bh~ZI`7$fQBbDv8(1(GA#f&GNcClc;9ysnn?mV zQF1liS~4A^)_Pe|=m)3m;ym2%JG5hGo)<uV0%zmi-0Do{=9nb`5OD&;!Cgjf4iHi0 z8WDT6?EDYc$qC+>>Az;oysoRN4tbq>`Va>d;`q;{W+5%HIeG^GP1YnjIy7yu@92&w zetmlU)o;J~FaPns{(k@FhnEjuJfQu=pb^FhL8Pw4$PA%-fdAqjJ(d-oeiS!+cX_|c z(^9^K+rxK%a3uQnyM5n(y1f6A7;oKLx2G?jnztXe@BaF){^sF&sdZUDT+JF59`c}c zcfT24Aw;+^S1ttr%>XUTlI6tkX9igJH7~qkj=ZuXA;fE`Q9h6}$SKF7=n-}VY{p1> zKC;UIJ;>d{ZMX%!_rC4h6_^KdK2!RFjtmzM<s>=)g@dVrLEm+M>DqewtunUO%vx`V zvDQUI`nES~2ykn=BS|UXNEjR*FZ=DgANu#7WT}kEiOE9@LIYHDJ=(y3P=NJXq;OO@ z8Hm#v9HL6Wk5A&hZnu}8o}&i@F$jbS&zv9$_i^$8AOaJjFa_msyjd3z3)ew^c8#D^ z4GbL+%&b8W02&vqyQkU|nUD#DOfzvYk{=O>rp6Ku27CX-yQc@H7wh7-h<x?o!}l*Q zrkV)6ecy-S@fc5MgVS2u_kFipU51FAgtG}xUq-0~0`A(SpTYhKQHYp{>d-&BSyOj_ z7?F3bfQ}f#QVU*6H-`b&L^U(FJnuy$FOU?Ix_Z9OS&>i1@YJ6MrLv!yIW0MfYekPk z+=iJeKOglmP|zcq1O`9K-AM!ih!GSlx41`;Vpi$y0iei~wutE;zpp(GP-`B2nTs@< z#bgS4ys7xlA7=0U+|Fgh*u0f_@ooSBAOJ~3K~%F^AB^OIA3Z(cY1#!OM2-k`V5!l& zxv2+Po+{&qO$YkfUo%VR`6<o8&;ax2dBSoZV;$dE^ZmRWngg<J+qP|cc(|M&l|k@5 z5f9&t@Me!qL_(aG6edNP*&<Z6nHoe{m$UNj>`i-hhaRGUxspj8T>Q*lcML{Z+imVY z5{gYknmXm9l^q|N>hLm59Cg@ix6U`_7=I{>$RN!{3@9~omg;~6bl*u#<=_Bvx6Z<Z z2uK}<3(SMu-NN}8xXe1|=L)Q|sA1mh08k|D<4nS7aUw+2Fx7r)rE0C{1H3TaJZ46L zf#V;UeRx9kzv1!cgO>`ONaj<%&dij*yM)@M9nvj3n%=v0<uL>W0&w*6iVFeFEYKl1 z=1&L5o)5vyGJ=+n5;p!O_;@}5nXoj=t@&z9O^pcA(5+5gb0A`2L1s056UufLTiwOZ zM`&7(T~rl=47|HZ5oS*L!+6sPfk|6CK1N2wlv*F(!&rRuZI2ARJ2{#MZ2P>{Iz<pV z1hGgdnc9(!VlE^1eUH;z>CKHf?w~-zQ0*DPbbWf{<MDQcWm)D67+|bCV_Wl~obsr% zWpB{I4#iD=x7(Hyvogjjhe#^_xLht%r^C!;S%yXCB!!#rAi_Q58aW7%j&4XwK^8q7 zgZBhs5fN#9%TnKtsIK{T5OeExghIkux8?3;>Z%ZlMgd8aJ47K876i<jF42;2UfxW1 zz<Iw=(%ueq{FouWN|)aEJ=G%1vh4eQiUEl;(!|WlQcmBbolnky00A>l@>^JMJAm(@ z5x`Uc&?4y6?3@R(F<dzJh17_(g)kURt_MLv;1MibaKND$DU*w*&1DY0BcivyKfet7 z808zPa0EHu9X7{zlH-X){mgTZ4qY^h#6iBNWMo?~2#N$peYnVF?Y6twcDuE0;|mE> z){6UW_YxH7<`@h@l!jSVZMN;Zx|Le5*DDcmDf_m)?0PUQ0w5eh(-(T!<?;%iKkPU^ znMEW@;=_h;TS}2qJp6z&LSpY&<oWp-FU#X~ks{iRh=Kr-A{Twg<V<58igm4tZ&g*G zJX*AAH&bl}4j^Q1Bc+Tv5Ig_~$|5Y7pbR1^!onzyz_dsKz@ThGt?9n?=Zt?3hpr)5 z!>Mo9Er1lcqzz2f`o8zw)@3QR;`oiXecz99Hkp|p6<5BPGZezz@%4*fs;<_L9cTIj zgg8>t8_|0Y8@FfQ8&K|_d5$~5qvW6*J^zZT7UEJDDI}I;KlQ!?a|ASPUAxNyW$mtw zHn{53<+AU+J?|=eg@Oeu2xCDg7~FqQ>P|=w0pO+7t@j{Tf(E8y-L)*GJh0n<>jwv3 zxD>e$uq+&X*s1abNaz4E35thzHxWsHfw>V8*Wz8fwp>XS<{14sZ>{Gtf7`blg!JAa zBKvAr%TV)7F;F*;*t8*2daZ~F0<`sU60K`pR}XKk0fQ`s0;KY--2g+1U?EtD7NUjK zcQOPd&pAd)_ag$F8LeZogz~tb0e>l32XqmNux;CQ-+F7jt`QpM#8gTAP$4DHKW{rM z#lhXXn>rx^yxcw~DJ^$9j09%rkV1k0A0SEQFxTGQOpl3ArtMCG6^8RtwD(jaW<sPy zwB8dPibu6Hu9?b-kj(G1o61rCPCH4AwJMp8{2D?)4?)5JIEsTj6Z7@R6!|$tn$wmX zX3Y`jTq)0+VD5qEg_p=GJpNWH%lV+u&f!Aj)-mAxii!vcx7N&!gi9$F-rc|r#`M@{ z=x=u&HgAZdx`lAJy|vpdEOON|0@@-s)Ax{?*4o*E;c8|E9+Z28uCAvF+dYlzS^w#{ zjHjk7tG98PnORr_kJzqtSzYf;$2V#VJW|ev-T{yiv!={9f=?^2(LW!7HCdSz1jl1f z7ST=7+-mJqpT7PzJv@H%ryu{{-+l8>KmNLskYTd79U^%k#F-}rfd1jD`uM)M24krJ z7z$(`zrIpkZnpQ>y1ozz;<~Q2@A~oKLp--1e)|5K|MBg*Tz&;CPb-jlG#JngM@)tq zA0b4}NZsvH%0<dW?3TcF<^W6~>p21am9U%<Ag!<AZjq4OT=@Zbcz%@UfSyzA{aEPE zJ^z$#Q_y(DJSYdFrnh~E)|zT!gWSET5-v+!tj3Ey=linXc9EK$2>~z51%p28r|o&$ zp7%?=0EDVK!K?-M*1Y%ac5C~NQhFFlNs=rwxpk&upKk3>Kh-b4sD$0Li1ctSmCaTA z)^$)vJaS5sB`+S%!8k^2_cGCa2C<tN6n3D!n;^>jck5SQJv}%5=I^!pr4%$eP{lNg zr<AB*2AB?I-E7f!YjY7gHYl953rkp=A2J7I>84#Z+idS%)+PJx3<OLOE;u-Vn;}VW z4Y*iuzx?>&H(!7C?H~TA+e__jxz=T=dzd!srhfD`Sr6TDb;OMH(l*FAHW7!>T907L z!>n;05a<6LO@dmYE?6Xu0DapTsVwW(b_&qmbCZUI3W4GI*?CuTAx1M}kt}DEfQSf; z6wEme$b0j=NRJ3J&AuXA6i(#U;WSy7b(ZXTl+8MRj8PDC%iVjo-U%>|3xW_LHOv{J zh=4<>HLn0Yja}w@G*5m=bzWjX4r9B8YjQG><+y$34Kl?_?#_&76aCrzo`n6;8VO~W z2t?T-5D^4&sp_u1b19C-hebYbm$QP{Px(-}6$tb2Bz<H_;OSc4dy5DN#uyh?3Uk0C z_sny0G<&w$_9tj&=$!}5#inbF5Itbu_jzb%fhZ!mtH{*gi0G;;JYWKjJ<Ki0q?D49 z?b+nyVs=Ui#`wc5Z|d>=ySLVGpbui-_gZTTLVVEWED$!`FY9Glmc423O{COi>CGJB zK9D+gC-=L)*7L&b=T;h3U6zH2wry*zl~QW0<2Q07Df1BylfvQbUEOr=eT?VKNqESv z4Fp+=z)8n+mW`hUS(8&aEB+MPP@0-yjA}=&+_4rKFP(d>bs!obLlHddVO5)F!a1qX zj}=#bg?xp_K?h)NUHj#7sq3<B+c-`ME!^ByCv(-u3I>shkO>h@dm0MzoXw%RLrO1A zwQD#Mp^P-QDkWtgj0l95FJLZyhJN3MnCs}7(?<OYqXs}z$4UgkaLj{L_2+_=d^iWH zIr9Zh>!tG^MO7V{n9f4WMB5ysXYg(seM-Z|SLTu7MnGyBYQvZoF;1!gf{4?1l|NAq z&QhDdZ5smg-rKgN4)-2Od{S=CLodI9w(m=+5Mbt0jhhd%nl|lo+6xiQTRMmDdeswm z=|0tZome-$X{oo(hQ-XXR?JsBf0jH$YOU+K*m2IE(QJsgt}79R>l99=_=S)2s?>VM zGoAHc^P`)ChB>IpJ7|Jy?_$Oi(=fwQ^7C{AcQ3V?nX5U`TFT9uyVGR&sOe;kz~GeS z9@>xf@NnJ{9rEb#6Ci)Ou;;$v4Q=Y|s-Coy{BaJc8aV(EH1A=C9Ho>B+*Hk@RDmOj zCV#*wMn24m%16e1esNVDz%}<UJzLR-XCHA{7Vw}5H=moK3CqtWWjOs+IZKYLj?7ay z!%}hp+O_AvJrf?YW6e`2PnBg|>asM`ZQIO@g$c0K!iHPlm$E!OJ-+|Y{<MD&9=bPE z-CkZ6sDY8r)7$4~0;;6~fOcbu`5Q+fgvj<V_h(4NN7P6WNfSdpRlQs9ZGyJXW|Vve z0)d#Qh<6KsQmPatW~r5fT?p2K@1Dx#vRp2-7GxU8Yy{Pg2wb_=l6W6xrjSx=y%Zws z=B1RT8#1le3o|-}cH80x5n$$S;gm*Z!vNP(D?MJd+pcZjw;Ba7g!xietI1T<0FuP( z7pj#y0T61$^UDoU3Kcg8M{P=lJS^o82vJ$UW4~>HSc)Vo7AXBRh=}{`mRrfxfleJR zi)`C=PEpU3!Ocw-3At7(;7B<v_O4)_L6WJ@h29x~nR4Sh20IBMFEp}uljd;fGjfuk zO_2zh1feVvVL%;3aZxC-i9i3ew`eQG<02&(fB~q7_YVA7r2sILf{eI%Z-q9Bn`jr) zMJ@WXKXWM^o4P9bdcD{~#7PBtXo%AdMa0DJu5NLp>L!?tm@_gqiN(3u$&%uByAdF; zWI7QJx1FS%N>%w-Lj_X5ZFvx8WQCcjIxyB{5#bzMdyEf^T4Ux^OHweEKtOHHyL#B= zVfDqY@1N@9MWYvRKy(iSvyqbR6o3p%T?oAI``AND$(I~s)Z74QsutmDhkYP&Hh~CK z#`X!o5z)J)%p9^|wjME%X%eVrkQ8AUj4d0uhd=^TBLE8@wqz8G$h6%o<)_9w5TN(5 z^~wyIf@y@zU(?8U$n!UkZ@5oq+4M~7IKwG=?}u#V&Qf_rXXiUp1Ak^SoSWX9F3Dl1 znv36gmgNF|#;mAz59ec7<K`v*$zxkJ0VQYr<h|S((LKS4ETW0l!Vx!;aWFoky9bsr z4qjmDlnfovgONA@9o!v>j`}&yu!FlPKrPI)cO)tzo}#(Qtw`r|S0eJGZYabNVO<>~ zM!tl)S~49WG7rcFOBy<|BAF6*5h+A05-{jyX10_{M`4iz>8!J-!~d*BA9qP)9*O7u zA+@?`1G|}C-hZ*a|MKPUzW;B(`@8;s{u6@2$h9nC8-i4(aL~OYv1%tM$S8zZ5V7lS zq{za{)AgOKzpd|o|M&LO{@ryEs3j8HOnjBAFZ%uOe<<|3$GU!yB^WaU21XLNzhyHy z5TPJc;)O_&GET;ZChgUx{p`0*#pMuNAq<2nj3WJP)0n^FG0g#V$a(@Z?a}QtgETeH zs6<b0BZrsX*foVk7S_F^MMxzkDTSEad)s&4jlq?UP7l+0jQieSUYa~qqaJ2dg_$pM zi7@S5TQfJ#1C(lp)Ou?WP>}$owTMqIwdtkS=B|t&qGlMeyYFhZu1j5}L-WtNIsX6t z$dVJ?0noVw2ETuI{l)(Iw%xw}!A%#Eu}sb{OXM)-2qJ>RvN@1&*$pC7_Df(&Nh1aX z#NPW5G!Iy;Lt6E5C=dyTk(>f%9039ldhba*cEI3(-~Q_B-+ujz|NPA#pMUti?l&*1 z^|tT3w%yF~$!DTazuj)NR)}Dvf`p~w!z-sxH{17pS(aLgx@p_VID4M_FsHmf;W(o- z2SB!M+q`RK5h;cEW!r;1NCYS_ymtWY)P>oa3S{mQpa)=R?`j>wGeen<#lw7br#@)T zBhK)hv&r#|wC8MvMno<W5IH80h_>%z$Bl>x*6y9Ns;UD^Io_He%7qI|S!;H@2XP}@ z&BH+?$5pv#Il3~&*Fwl?F{9%Io-()D*BzejL98dFtS*N1BBxQw6EuSeP8GwTP3A)d z2POz70%rDy>AJ~}*m@6uFdLh5^R7x{Arg{NU+8Md!bqR+8(qm{+o$`Fkr>Is%|opl z_V7TWQi})PZnxfht+kZ$^71k+j#6^ZH?AJ{-W@aGvWUi<sN5yeDKtPFbfi>p%yH*b zekBRs%tkajQC1y89zLQ%xs;N`g`>>_q;cME+m_vO9-&z=&#t@hy_}dG_#77JOtY{s zvy1iC1{1*CA)(|0;{sEQoliAUZ#}h3EDVTcsW32hbR+}en?coGLw7u2Q_^ylQgRt$ z(!4L=XpD0xpQ=JrHB}v{#l-2`gJ`|$YkJZ7Mav^%lDTubalW(0=tra;gTL7TOBoC- zOG4HGdT;=YP&1xqb*_EXfC8BF@$P0MnVDQhs`^;eLSY7CcOSU%{O=x&Dm(G)-e?lR zgOD7Z;_y4sNJL7I2*m63gA<Hm>PheR$>|beCg80rkGprSoH3G>=fQ-?fS%<XwANGk zmB|iOh>00MkM-x>?uS6fQZR4)j8o59WDEj8E-GM36z3=t|J?0)-{ZnqIR}h6zLYY? zqY<~;?bMAUBIK+mKU;l0^2h<l+(Q?USxXbqx~}KFrX4%Wvncp@e(=2HIJ@VjyBv<i z48}mqPx0p2l``i+aGHqa`I)=D^S_cYNXW0WsAmC}Q#L!yGV0?|mYe6_dc)$(G@hXY zCC-Xq{tOXgQB8mtcQxyI^_wr<G=iJ~ZRc#L`KZqqGY%i92t_ssgzf=(9H!F+3kx{h z)r&bV8~3$v<<$0-Ic%N35k%Aj3Wf-PU=TS=OD7qsrIoTBH0pU(soG^-^TdIyJ$U?D zg_CjniU2s{U;5r6qVhfaa@?vxIcB=bMUbp(a-5P2R7)+(5(?<i_g){0Fgutq>%I$f zk-Bh2pa!0?B)NinEX8arCK<`RFD$_cV=_r=PBO?nu#`y?J0H%>%)o9C9U7_Kf&~br zUe;0s2)bzy@LI1Q-ud-<T`$XJ<)z|Umvw1wWNGV-JT}8!U5SaAm+QK$Ygvlz76h1i zy+T}g<;A-8#a+$7HO|o=5r{!hFPC!Ls1hl2WnP39VG86h$|PY#L@H1g=8Ct_hsW#Q z`}6ZN0#{k0ULpYNYCz}~7^PG!VhM&!6B^S|myO*U1uj{Pd06Xh#AFMg=chdo6lSW* zkTK>IfYvo~Q4Js>vMf&QHgb|V<q@1jpNOf_Jrt~}eOUH6Gnz8!%!YbTBO%2oj0EcH zeMeUzr^?UKx5W&D3HRbiKx0A!v;(YKi94usXEH@=CAI>e$zO2e2SCOM1oF1`ecu!v zu1Jpzfbt4>41os+a*RvzDLm#Ha#Cyo;?`Q2GxH)P%&m1s%H@%&mL=`POpL8Hp8!H; z49It;o0eKhSeW$KV^k?ztGR=jlaob?m}45PJ2R1c=g4;kfB*$p&;r_~XyF8gVByHs z+`FnE72;YeM!X76!ZA!?#BSF1J@5IPF-1~iBLGk`r(8`{!J!r&xPBZ&y>LeeAr7K2 zLwD?I?gpS1c_Nsawtjng5$5aVdc9m~DKC4AqmBW9EDBE<e<mV~907uuxCaaXH7e`~ zXSbTF@?9QIf--BkIc7SJLS?CGjyQ&NI1|d^1cg1RRK`$gUcLBwLp6`-`5($j*+e** zSyy#%EJRtWsj`e;<00+VxzU~L>$4O;A3tVBVbDPe!{b%YQ{E3G3V_E*K?aBbb3$CC z0OZP%@-O<&+#GMfka^Abt|AP_=K1WDJZDtR$}DwKZa{%VnB1{6oX`K3y3P-7LI=iP zI^26lx>x9<5Kl{yc}lMHFJ_YFxvLqK+}NutltN6)vUn6wzioD1*Y)ZBpZ+&x@77~U za%JhQeKB`G5t&u2BCC060h$>MFc72{JqUvS|DTZ1gOR$~O|r>mv8pmN;<($s=wX}N z@rV+nRu+n2W<|z1;m6%<+umz^i~Jw|@TbpvD7T0Tk#mlw(#(7B)}$b8y_V4gl7h4m z8N`wf&Ujw7UoQIn=RD%oAQ93;81&TEwSDuq&+*eAfB5J2d+YY?|L}LbD(Zen7v=Zu zD-Z*XX)9WIrWeB_p(hIOI^MsYRfbgKtnl(@og2Q2tLOX^85v3fVT|f0hBsuyaTk3q zC<7VORU|5+f{wx-sf)0lX~!Os#2i4+aL;1r6np&M@A~q(9;-f)yN5y60;Y19m-1z6 z3rRy02lk^^6sxE-U80Bo@R@%4yxne}+*y(YVCs}d<~`yy>=$$!u<ZZ;4J_$FIg~;W z(9_fUt8eV(%a`Lzf6ZnXnkWK+B2YFI)jBhbR&Z^*P1@ttGvh$*pu|E+NA^0gRP8l# zw1fbZ20P8Iri%&Mw7Oyf$#Ok{(+Yt~zxm}i|NU=&^Yp*}!;fEnioPQ{GQzEN5UR_z z-jrp(-;aHNeSIAi`g3w_(_}%Tt5UkBzI$dSk3NOFzrMa+Ys#h#XP7)Fq|&@*x$K32 z2oh!{&j=5sQ&9Gf+;BEo!tFSY;@1#qjb5%DsCQWzT)dvyMx>c0Np$hn%>`kiVZp>+ z!RbWA<<G?k+F?+#3dOJj0uULZ&NEOcuIJJ#sGDdka1*fQ5ksayg`lP@^{zIEOS40! zo3B2UsobeYV=VP^GkPnSuM&cZK{dLdv%LkCN@T)2E7{BsnHP47l!wCZswWzNyK#Gr zfdOGo(dQAx$1SH?;iQ?v$AOV9BqG{WxXmU}32b}sudlB|_;z-4$_}R7D#eB!fjG(I zLrO4>VB^)#_govXp6a}z0%NZCBg|`C3Mf3UjA~O=rxL<c&y?e&9ZiVDbe3JkDd{<J z)D!RZC>_0k9T+7W%OK}hxqd|-!~+Tm9;TH7z$<h#cA2K8^4);#>KuG0Z<%MLhrEae z#V&H(T_u*Jg6-#s0`v$jQ#mCu_=KFii?n{j=1<J9wkl>OP65EOt$ByJcQaLu@S;K! zvmlEXHr}&4kGKiH)?+i*8-T^t*_zppycBFaiSH3@T{*Gud(GG<9y?1id8Rtd#2z^( zWR*=R#NaYjXJZ}en6sr`gNNC{ypXm;7n=H=X`Oo*=n|aCQ7iixZzRGp(?gdQga|qt zvX7`lJB&kEk+nx7r<!I8?%sI-=RG`QjfqH9C|iAMTttg1oi2jD*~cj#UwUMz`)lo; zcr3T$ID9|eq$^zJqwl0`@9eJCT9~@jOPpUaKNLpSSb+J)x^)Ln5Y?3_elE*?meV3c zo|uWH89_44#rgKvcwX|sw7nKxC!So2&2)XmN6N&R!6l~x?u|BTT$%xry<(f_)M%f< zsWgBEwWAe@_|mPr8b#luPA`awGb|#9o8jzaU15T(6)WMxtjIKvOH3rp<;I=G_B{JA zQSi_VpXC6E$-4Ux7@mf<bLSmv8c`xL`t@dr3uZCGl`C$D2M{=`*ESB16HZTOJv?RO zL?pO0(ab=kO)JwgJd~(`gEAxg(Yb)^Bo-FkD)mxTGu=fG<|fOkOVh?A=tlw>qpQm- z0`~OGjBZN8ts;zl@9x&QQKB*jAECXE5@nt=wF%ns()a#qJ=V6avZ_jCdMVn#w6^Wz z2YB4tvfggIwop!C^UlJIv2z8X_ik>~SX7v)Elr#F-Fx37BjAZ37EactDpHJ-UPbL- z@Qyq$-k8>gMdLV(0by>E9AFQkg*WC3A##v!PaD2^{`l3$mzOVJKEJ4ZwXRROtnMkx z+7oH;2#^cNJqSsW%%m*IPzX+cv30vfWR$pm_Sp;CSc%f!jYT-Jln{I89TDzF?*JBU zWeBQuV_9k-gg8@i3TYwr?1a15>+-U+=$0ACAc6=t(N2MCPKdA&A>6u~DV1Ue>!K;# zSViHmj_lEcoPuOyXLw{F8Z)h8x9lqpihH<zkhX|Go3^~u=kH%Eo#@EWMCx_vED)`` zdwA1Ez_KjedTmyf{+5~LlTy`6Q5@r=!{oyUA&$dd<K?Q@)VeP(IV^?ow=<TAn3rWq z=LBl@sH$=v)R_&!tu=Qq!!}2%@NwJ=*x_cvf()}A5-dc-HTP5^M<NmlPwzIQwqqc9 z0`|@pkJ-_~Eej2aWIFo{1ZGxYZhAzx8<m6Etl}OrqGX@oh>FSvs9LE#BMbDoD$?Eh zvG-#Sk+n6#)|PhfR=YywXAiI3={vCAwR)(d#|NS`vkEPM(4)b0F3nS4eWj>Qv_#FI z>Iy^zUH1D~fkh_F>tuN?3TIE}I{d#Lldj#a>z`lYChyS2L!WhNNnB6e^Ly5I=<c8g znZ5!qYMN0aoj7?7B2tJ=2-j?o5D}e4WMSfP_na_SdJ70UUv#LZ&&{b&;q}dH(GP@^ zGqZ~3l2^0+FhwRZ&p`w+MiMaN45>(WCZ0(&bx>@r)&1!i+M3ER3KdjtARC1z1-&@U z<Aymyvd`S5%m_s6_d7ATaWed{n=1)DJ%9ML;g5g){BJ-0^z}DuW($s_CehM_A_P&C zG)A#=Ga|rEm06LyAMqM`AniB*;kVz=$AA5|&wu>O>wP!9eNbJ6*!K8({rGZx`QcB0 zOHTRq_WaA|Ws?cbxuTempiBlD%c_m3F#na31?6#$z20flGoM4tLzHw)XM5Lvy`m7V z_bP-T5<q%*7B7iUkU`B4M<KQntxfcHvvtdLC36M`5E0$`ew=q8%d)L3=^j-sP$Gr2 zHS%6xb<^h7i*0Ofz3*Y3Zj0)=ETqkm#amrORTL@-ir0Pr;gkRH(^ubp*OHDZ{gi^a z6ZZ7GJ24^NBt!js8(5i?;9zHjAV8#zpPsgFzwTdt-0cTHoKnExks}^7`icca7~}3* zD73Y?OdwKEXG-OPo^vIc1sW0LL^X$dl9#^n#J?t=Ef5g_DKiHtC2dWA@!|Qyw*JuF z_M`86#!%}hlU8;r*HNk+uXjIT%uKwUvl(|k(bzKukBC%MuF<Pksp)OqasVtS3ER3I z*hl5tO-=>b5R?)1H1gztA9m_MC}X@_L=fh5J!cjEZb&dr+Lb~w&Jr{M*en8nk3WBu z^#Czrj0r0RxYc7&zTRbBtoH;2Dk5NwbHNrBKkc{gL@u?Ahrby%jKzwmTmX4?o!)U0 z>quEp&Do2gOO_S@;$?zwM`$`f2=~mANM@1Jy++mcRC?^7bbDOPac35>D3Um@E%YlU zsZ@~Hr(<S8jxRV-%~L*He|=e&MVnBLZDM$-r1)et$I?}<27gtpVb2&~MD`jV5>u0r zaxe+67seS67>ZByQblFg;pc5?&0xU!iT@v|VU<BSIQplGiUP%~ug%gO$?Lk--7=}< zSKhpNpH;`ZJERtt0-I)pyA_XC&O$;?6!GZy%|wrC01;J~Pg|CU(4+R*cUiP^p7*oW zehT`oDDnDu%BE2U%%RxL3?`1p`=4Nh$SBrn_0eWj@in#PBwJ_2T()JYn|yMVm)6S6 zWnO6yr7@|)(k08KfT=VppQ_DjzBM$h8SkKSs_RH0%q-bj5Lf@CxLPGRn%I<ip&}}2 zo~LA~>YQ%}Avgd4AOJ~3K~!<+GHb;a;wfrQq8YfXE0x3Xx-ZYdvL;p60KV%-CUp`> zP$V))c&Kh8JR-)FYv|CX-rwDNKcZ7MpFFS9!pzo5U4g3-=h0*-4A}{?xT^CW&Cv7y znIG%?Z_E<zeE!Ay0<(f*`9;9UknnETVD46q>^JTEN6$qrpsuTwvTmW}3<sPnl({?f z<49@O2G)GVu|C8@JexJEbf+_k3oLjWB5}p!ncHkJ%(h_twhTJ?vq;?ePG-4l?l7Br zrLmZsdqxr`rMpwsZOEvOf5c3B!Nqzxv!s9SUaTuQAGhoH=ju1Sjx;7>Wy06_42`cW z+JR;t$pu~;?mJ`hd1G?|rPrSyTy557#>ql_P1YJMiPQfJ^Ne`c?>>KI3U@9j1hQs@ zffVK@YPFu!N{-Y1(mNAv+or0=>&yLqkBHWqWSIMct+jT$-TJYoK}DH3fOHp9stMfT zA*SW{ISZ8{lHB)wzaLGSyI1~Og_yNvscF53hX*I-n19&ZJSf*<f+Rma*=fNk7jrGh zX7=gxr+Cff<Jy)+#AdxH>qn_9w<Wu|a8cyV1CHJ8rW==sDw872%@B%Vm?`g$SvR+& zkw5Gn=GOaRM^BI1UB(lXVc|(h#3@XR^4k0bhxZ=6_%bCxQ*A(|mF36RZT;#u-+}Pg z@4vtAhu(yekE7p@zN!M85pZ|6$Z!i0X*BdPO`9We-j;7ex@3gf)6ibmeLQe9%yn91 zfLNM@2a*u(M`m;@L9~i2<^3w<SIiVsQW0gQL}l<)=&A@aBt1@#b>%X)D0XWSh#l13 z07rt&8>^B)g)rvxb?)}G1l?{QM6(|qW}zZ$vo-w|p-5;KPLYKun{uw}b|dQ|4Mc^^ zeRQvoDWJo8MizTWfI3<LNGo0A2uTIeQlyDuF=lvpVd~8+&3RR3)}~EWn;!d7X>GbJ z3#*Bcs)ZGWnnVg>_gFMb8qOq;by-?lI$QOXl~ti%_8xFpYFj^i_^RF3dvr^ag5E%j z%6UHy6%vvx#D)zaQib3Qhfw0cK|oc&EXoPPV-;Xxsyv!1w#>68RF#o&YFQ)Fk4}+b zvT!<W57nnTj>C>#I@sIoR@r#>``yacD`IAMvm7J~QW0}UX1JGjI!{tkWZH3fgn+Qf zW1f@I)+H>?c;mb-k+{&Zs!@2qA0w1dM*eA@*xDF&r#JHBt3H1gZC57IJE_zaEBipX zmseJ#vYc79Tn$7i%&M%i4x6Fyq}9v-k#2EyC5&>pDBPK>6ywc^3Y&GVh#NX%yCO@; zT<Z4##%ww1>PWxtkrC0mNoAVyiBqx>JX?S3>1ittO;4CvbWbv`u}s}SjYUX^(xaGs zXXr>aU8n+0d$-<I#Cxyt0v<KQDCNO0_gN^^6gtbvTbz`P${xxDBbi4~V*N!Aiyls4 zy9IAhS-<+Aw-0~%{{ELwum9;+-(;>9oxw=*-kE5T#qG#Jbp|M@WcdzC5A;auen04S zyV1w5KlE+++wqqlKYv<Wx3+K+Cq>Gl+i~oF`u$&)zyJ6f<)&XTw=5YAxDNj~gS7|{ zMiX8|_9SPHkwJIj2}=gWi~_We<8=+Hrx|2inZ$sVPUB&zitEf?_q9_}g*KjJN<O7Q zL<9?_0_;M8#!#2GEZmx~L>jBC+qz&;*ByOMWVK09x_P%A5nx(xP1>r|hZP$%F{tLl zcFrtqX>DD*$8j8AzPv={hxJ*QEz`~W{Uv_-^nBlMtQ*jUUx|A8l-=%T_uiAhm$ai% zu2G&4P5O6qvXBX<T$Tnq_;%x`r`NxHuMtQzQet8uA#Df%Dnh7Uqd!<D7y3zhwBgM1 zbXf18p_9o{y%oCUguIS;vPdu(@NQWPss{oQu1#1f2;-oPt?6x97`fkH_T?#bIVEM3 zk=@M6gV0(-WLPm%hzNmvoZ>Qt*b$YPTf_fKR4hJDlQt7J3O-dbbw3puZ%)^>NV*d- zoMhpwn%2Vh&OwwEqg|JC4pC>twveP;PknD>gP9UJW(<iDaeHn?c{zGrm*tXw(%A{B z)=gWMdeIv8h-xidqOz>Fd9I8S8q?6n&tCa#y@`l&6J}{|fLwI}MFb=KaQu%_V-@0I zD6Y}^*r3lX<6-~7fFB1(t@8ELp2rdpk+#On{WuDVI8Irocm)?g^#~^}BQrRM!5_k+ z1>->g+*qh-<Z0qQJ0K5<uF92jR1^3a6Ujt&^nM(XsVehqma{t(nLM;?!_AjD89jT2 zrL?vvv#R@ui&7Sjht@zuD*5qD72x@JGjm*GMyfmI@ETva`)<RWjtVXm0jOe^qovZq zl+1Mi4gylh!$p*Z+tPfL0paD%r`%eb0Ks|0eK41+w@4J3?MzIoKcDd??jAJtQ=_Rm zpggMDG*2!-X|k^A9CRI&UVBL=OMZUYT%)G3jn9k_N|YuSmPI0~X7|)h7vRD(b!n5K zS?A>I=<$)VcPd<l^Pu;2S=@|(YM%)68SY&-yo1@gyBjm9wlUcmoIzYwMfGj_aS#wg z7&!L)av)~KI1U0mUS3`nX^Cv2O|<fq8I*vZ!pXVR%p<*-Q6^<!=2?icl24g4=5W*m zN_F#BFL<`9GrO6a555@DFn{t;RA-!_+l5%Ekj;oR58%Gvhs&`pbq%e7Fn2Q~f(2(U zJG#Zd>7sf%)yt^HYu$}wPF!t;Q^<7Q2`D2<0IYPCO<iZVMATM2?oqMCgrsx(AmNo) zPVnrfRCdIvSgdB<2ty2Cm$fVfqxLwPUo2-QF{5_uQr(s`P=x1YcMl@4l&9M97KL%1 z4iN6;{w^{XvD8LTPnM`0p7M6EH@tp8$&SMOs9hVht_y(<k4i&BspLH>cy)GQhnh(w z-1B6^4Wfcaz+zl^&r0(3I5j-whwTOFWkOxjcsr20dL-u<;5d$X!aw>^v`sE0L@jqS z<sB$$XPK?4V-g4eVOC-YVg|8$FXqXBCgV+9_|yxJrf_>0S8G!kc0wf1)T|-7%JJI- zM#)hRbp)Tny19HY5$8EB^zfN_?or*`kq%GXREOWwtjUn@m|H1)Nm!`$-goQky0VN6 zqV8tqaN5q5Au^)sXXcF9@B8a<cUWsJ9sSt7yX&g0rAN4zc&G1s0sCwG-|vSA59I_= z>4pXx%-t+XL`ER@UMHGb3yE<*_LJx6){Sn^Cd4q?`+j(4lj2h}X71r`ZU`32OkyOD zY^Wk)Dzm6~#^FJw0H#_$q*4fr0^Pgc?{`X&GE+ST5gwWDoFlw`Y0J8biiIDQQo|^r zmZwn?=ZM=Arf<Ia_T^>&x9@+rn{Pp{NB?~6KkfT7aaP+u91$>M78MB~!uoM+w~Yvn zOu!?WYGvQm7T+pZ#;a^D70qx{Ez827bU%)RKu7N(RD%I{7@|mIbRqo}g=?fX4$&7Q zGIB)mu<+8_DQ~C9Km<G-Vj1b-#0=`k?%lK$WNy^GM5>Y5(}^jHr$IpsGz=|dx(l-L z(cmp;!NPJlx#z1HJhS(12uB8SN@j@s>NfyB*j@jZ|8)_yqa%|6WofEHT!<(En&_ep z5uDiCvMtLhyf)<~B*cpVdGs9_3_NX{uI={m12Kc?FymF*ZQDLRx2Ibu>9Vxj+MaH0 zTV-jiLZ@GhfTT3*{n$@ERAyM3Q-*-H<;mRs`u$)2?O%WY$$s2^vHtEq{#KqBT9sR2 zVzJ-%<9<*;!K*CWvI>cH@0k!GRj7cq7@;5%ZR_nxm!&P+q6<S5O0_A-!lGuLOc@#7 z(^Ei8TZDv?(zE1RMfB|9kLgosBbU~;O+;$|+O(;(1liz7Mm6RlJkv|3gbeo{?g&q- z*0I&SSt%`G(xrjPGcS?Yqg9gx&-CzqbV{g*imGTvR(G-jT8P-n?6591*&&r+a-n%< zt97i(L@$CyL}U`^+UR)$&$`4^Pwl`}PPLFKi?Aq@GFd+|j3`B!DJYz)n-Njn@p}7U z>fJ4SAd=G4Bb|`KM1U}@Z4naHRhyECXA*IQBangYj@{DiIQsqAU%fj6P2z0EG0W7K z%`D!+eDvPEyGq-(+q!P$9Ag&uuxg1Cwq<Ee0SHl%p-a;)=TcH-evQk*U4^%{E~@6{ z$8p?W$$eB<)+1eoby1O~tx=Id`vDLMnfu-kN2-u02c=Osb1EMmhq=YLfH;-0k;x*< zvWlpCrsuloH{X2h_ZRg2`#=8kZ@>Nc_kZ{8FP;~T-S#g?BXWXM23LW}Af{kSV#Gq& zA{H|xZ+%B*qvt36)i0iY^WE*MU%c-7mzS5<dly+q8|$L$4YC|PzW?*z{MB#ECd^Q- zD3=(Jjc6=2eF7smzr5ame0_yzN+aT=I0N${5nur68G*<Q%VPOcA~T#aYwxK8u1cf9 z8)qR=X@t@4E@_=GXQXwDNNtN~<Fe00(H1=%1*b;D7KtCf9Dn}afB1CEIs@?5*08vL z-oO0##dq6uQxSJdkMOAO01KI!hk@e5$7kJmUDpcB%k*_!w%f978!s!V66F5!>gG@D z_Wa>F6nEHb-+Mo9&ri#*zWe&uzdl%Ah`gx<(oHiO@|VvazI*-(;W^;DAj+f+L~sO! zfPa<%nS&Ts<T%dMbjjrOa3Mi*8vXeFr}*;v+?smI0Q43fA}Nfzxu;uXMBTe2TFv_M zzX(evj&A#Yn7MbqZ8v7I!^`W+HPWB*C?*vy&@595fk_x#wx-iLU>5zJ`RAWL{U87Q zhwt6<!&m(D(OFfu``r+fOhK@40=8{k*R?H8TP?;7^GqVL=(4RVfx24&x-Hz4Ma;ds zRl}gIOA@+!AfS@M7H;OkJT3-N>GMh1kVgg367!<<qJeae?P+UmRTT?k<>1(EYciPy zlhp1M>6uZjx*|0YLxd4jd`T4MAh5sgOuV)=yl`z1waSaMWvSOC=Ck8X6ciTW#Vlv{ zJi2+pfu4XUwMMd3B1+ZD=PZ*>HIK%Kg^b7&9-g8wI{ne5vLQl7p-VuV%n$*yCk#}~ z!b<pQODmjkq7H0QZDl5<Q*lO2K@WT<3v=*bGu5nqpk!J>kIo(eGE!8eX#k#ic;Ans z$6;ZCWFci%6#*92Mc8|{V-GjVat+hEwC%QfMz=$BhzF<MXExxfT@@MHq-_mC<`x-A z$zx#`uvA1zjWi0@Yi1QFDNT#_G!C4R<+dXaCQ6TEKZHe?t=B&3wYk@wTncv(S-A$P zyC+hl_Hxno-Xrtq-6KR*T1zHrE32|D#3H(g=(IorNh+Rh;elio61H$Kl@_VBw%u;J zv>G7{!$q~xBO_y3R}zT~qAD$vg=<z{Sd-ChrnE3e74_jXwT0toTh&NpiWIj{ug36q zK%Z+O+iX6*AIo8sNkv0bW=>*2i8)aqGbRoXK2M)S)cpXD9VaqC@N^67-aQ-)R#ufn z?8lynuwG(KL@bbnWD!*nB%}_p5pGVPbY!F-o}NO&EKx3cR0@SuAEzJ3fMgNNDV_7< zh-xKx2x!rE?0e-2RHo|Q4^h3{Zp4HUQ<zOuRAgQ6y$7(gRYbKd8AvM&H3xGr2O)?e zVdeK76fE}M%WRn*VUFtUV5r&xNo8cHYQHH9gDIInRO*RN2qvgNc!b*Wn3z@RD$<r^ zRZ;<SLcuDH7hSfs>fuDXnX)L0kTB5Aj(rEvYHsbm-|v;8K%;FTG)P-xL}nGx;0_iC zA_3xM-Lx&lLLw}hL<SG0AgVe8OcfL&O_#Q`v+t0ZO|_H`W4|gjB{GmCtV?5N3rj+G z1Jb;gPm>sJU6y5Oi?+43rRaDT$I*}7t(Wd`(Msq{WkIGeE!(Ophj&met%aNK`*xa| zYbCS{5(z@jFeIsFcx^F2Qbf9QWlp+>^=jtQsnH$}OI5s7G0aI+fp>E{H|*&`+(hdJ ztxu;s6eZ-r7*-VtFK9^ZihYqtY;9H1@Gx_p!)B@85+*#cTHLd177>=7AZe{_%d)Pu zg;|(oc!Ux$XdzJ+ad2d~3$u!3%_}TGB-|)KNp)LH*NGk7ZCG}!TM<%o<W8c(C~6=? zDix+o!Vw`(7@8kY5-Q*;kx2q3LL&EL-;ccxcXo8^z0?~*+56G^5#i>xANOttF|o3F zFAvzdEFyB>_oH_(ZQIt?B{E+=zq*IEWqW#V>vov+ZZ$6@RwjPA?~V*YTbBgx`|;_g z&;2lI%h%t1v)oou4me5mYB2H*0gnVhTU*w3Y&0=KpOLwcw8}<rjYV{6$rSa-ElPr< z^e_u2f-c%r+R{`-h~vQh^ZoVnD?A$s8<1{&@5dc(3gW=Rs?6nSKNtB><-6T2IxAIF zPDO&WZIf+XpPoN_d}iSvfBNCaAOFUUK7RG#>Gn)S?l|_m|8%c$(XuQNzHFikJDeMc zAy7_<BhoUDAaH`#ZR;69)!8xil*3>C`eVHGU;pCQaqvI>)1Q9$)VHsHDNncE%{jlk ze7V2AP)39u_uabbWSb7t2ea^T^!vUKze9MW*FCWBcX#u!M6gg)lgBJPm}oza;$+lP zBTd`VYCC2TRE)A&0Ebz@D_FU$t*P{559^f48QyzztJX&`hBMMVJR`v*Ok77paD9@8 zQBtc=W6Pj~N-7)0;odWrZPR68(Y9<#O_hZR%zY96uzYUb*F=l(Lzw!0X9_S5J3!Dy zwQ2FnE)1+lB3eW#PMeT>Ip1jLys0AC&XAQ+nlKYogxL<$b!80;L?R+uj8^*g{50Zt zy*hNT>WLD~FbTbAVym8e2*2HDv%Q8As<Pe|y0;Yj@bNi04%;ERu3G?Q_?n!BsH_P0 zj5vCirb!TpfVQWb>{4=80K|f*)AXQ%N7n8v(nwf}=U<G8fm)kxjtnmTd;|%%rUWEY zjo`f-fwV4OWK$I)D`mc!uIs1~Ba1{nMZX@QED_=6#kU+WJu2mm-~`2(w-OMCMHQON zP22r=O?lw1r$n>FJ7wOigsGbBIi?Sb2{bbVhwSb$nVFe=GezZ{G#77${Z|G-E&Am{ z9z^^oU{Hb>gZ7!3h?=~Noosa7rucTgfl-nU!sU1!QMG=QUMfBE*l{=rqLPGkJF?Ol zSev%WZ_b!M<{Y2aPte*TGxz$OX=`h7A_6O%KFkSJ!cKQ5co`G&)cUfDg;y$q=pZZ> z+#M)NuT~u1NSP$5J#TnJ%DT%HK$!qVcp^QyTTdY?8@ezh1e7Dh-Xh}p`FVsDvQSHd zf8Ouy`NP-0{`JfMx%}7P|Ka%G{>K1`t|`Jujx)p{3(L(VmkL0M0Y;Hki5jz~oA-p% zim!kB&F{Yaj#+;C*DtUA{^8a<Da<qJ<M!2`fB54c{^3tg>+N^{<u|Lgr0OBl;IluX zxFJM!z;OgcfEhSXXgMGmbt_U9$o~v3AtsUZ;PY$vOsyswqKp&MO6SxyfCr7s-1#Ip z<mhvcmCpkfab!wOAx=+I0Np*h_3BK!Tl6w(3>D#E>O+KS;5@((fFiOV`yThFr?st5 zo_Sbz<VH<ZZ$xcbSe4V5gbmE_<2YVkvG?`ElVl$I9zvBXKtxID?=0dt=@yju_aL$8 zbj%WyFanS!>uq^@rk_4VCNoi_TMtG`GDDMC*)3TasBu<$KQf~D`b2CIc_tFLM{61p z45rL?DCR3vuh5x@^y4T#O`d1j1ThFe3*4$t(}RdfIaH5i)t0?8%ea$?G_$Pgx#Ykz zhqJViBhh<eC=rt25i%s5iYebXLEs74={g()5OcnqwFz8N3pGHm?-K-ak1*@*hXLv7 zS;5<7CsrZihjb<1z}yD2W-v{V9!VTNQnx08?Ml(Ux~L)ok;DCTIus^_dL#)-ZOCLN zk?`RFh(LG0`x{t~VgwZ+9KCa<qo8LZ1I`t(EGr(V_Cdrd!Xl3Ja1bRw2-2!+j5lAo ztf^WP1!mTFc-jGVANU7QCPn=_B=q%=6Nri3jrftygP?l#k)c^>Zl`DpnI2vOdk_tQ ziIlsGPn1&(n+fYx4sb#26@!)QwqDnDS(bMw{izz5v5YgqrILT={yXPGQM;gzsFo{3 z=V~ImYL06DKY`*`#CQ#9s);tx9>qceXO<l2!3wOrHxc%vJVhB->WmO6KL`fbO!|5! zN}N|dbS5%}M^VMiacXynDQl)tDU-;7C}u8E{Nx=JN#@Fem@KMy+VIDNbHU}jvDVJy zxgn0L9s9IXA<OZ1g<c`E+%dtZllBb2$;{FsWd!4V(U`kVhWUhQgC2X&`EpE5A#qig zoVNi~>UbahIBY*6qKQhyE0_`Fk-5e^h!|C>jjW8Ji>!uesRCPT!E}$1a!t3!AUpcQ zfnFUyxmftm3wyP94f{`(G2<#BGFod%Z%Ct$$`CMf5^iTpaVWp41d14b+4DfBr+|({ zR?(0Y)zKvfw(W!{mB{GS*-c8(br}hdN>e1E$%lP}Bodg!tAt22mH^GIG)lC1g@2c! zspKmDc)0=8oY(3cGh=X}v&T4lmrPp#k4aB^eE$M$dGB@{11JorvTD`#MbH2-rx-3? z&I<ey5yWr`MT8eb39xWVCS%0~pb>*QH&V9i^U6^W@?bsI`$u8q%6|hQR(aSqnKDyq zl2|zcKqYd{VtcmsJkw7r*?C%V;WagIBC;$KOe6n9hVA!yw3(PN4+mHmEz7Nko7=?p zSKpauJy{_C@iPKM$y`X*cx#BR=O{g{Q~BxlEK#=Pl|z3qaVJD1`cNwQDUln?5fDHf z04J35vNcng4~Aer96d^NTe}ROs>5rJWIeeSL7CiSqfORjy=~gsk{(Q@U0|ZPcUdjN z(>?0s$^;o&o7a7R%4ZQ(XlX8#&d{Eyh6t5lWpoINcF)qbRT>aMDym8mghY5`QXOOx ztWs_C!bv@XCDW^mu(U=BLf-egyVU}`G(om3JBItQ@5HRj(B34&yPX8%M_pOz#BFJr zLujH+YNA;XbdizL6X#|iQU&TbVnBw6L0FnJv}BOfm>5jVNj}_!kzqzji!Odg@44Kb zx2I>W>8=dUcx#GCPncODR%^d@3uH1zI815zuQ`L)4LUMGoS8yQvoN4agv7`|y$DT; zeRf!{B6bn3Swciq58FMu_edZ@i0uSBR^1uMEHoHFnSv<XYe6aN5Q4zOqN2o2i6{=B zJl9R@2T#j;bWTzxUYOgmBZu7yG2mk|9O#J=Jydlg-lPy(Bt_ZIGm##aJ(8|*^;a>i zyT9%`geBUT?k<f8=<fHsb>r0TrXubG=Q&j^%v}58^_jntLHB<Aoai>IaL*9d4_|+U zC35i(zxX<V&tE>nbjh1!ToW|>{B`P~F0oA|<P~P;3ad`bjD$Otf`BC*ffOPUB|>-e zvMimZ%gi89BndH#G-03Fa07n?0Q<{bn5#`vz6(lHkTch_2ck#vV6~`DU;S7&<3Sj$ z8Qk1N`C|F0^kooflg45f7slLC>gc81w3Ne@A<g9ObABr#JhFgz`b6l`Jeq3%YgXX9 z$>-I*_%73=BCdE)g{q0*!~jbUj&BkOmA5Eb2Nh=a^q&t`ADG5M&xBLKZ-|nI2GS#y zS%;Wn^cWH;D$BMm>ss1_iDoFZ{{+dCz4^K7r!H=K?>m6f$47(+i%Jo<>P~paY$`D7 zOwaAThdDe-K49)<c7!K^Rai%9E6ht<goQvuPnXW_XOJq)49w+>V<Jf`${Bn`KRguI zB98d+{`&QYr`zv-`@^@t{QbZ6*X}_J^TKGEM?{uDbSQ9hqM-+*dZbi?m^dBYEh9)o zx8-;L>9<TA{x3iN=~Mq~i>%5jtSY+k^OqmL{Qe*QrHB3YKmXlV-#yc&G@{K?hVR}3 zP}OB=A{1#sk}R-CfAlguuLRK=<cv2dTv;Fw<3R;%o!Bu)1s0x=FnSwO<L+_dIUkAI zRQFdsvQccvZgzB2(q*{L-;go}{{f_YW;Y?234wleJ1jyOf{|;nvq07*D#?N9!!N$0 z8$N&j{KMb=X5as{ZR_&!d0SQoUXT9r*T4Ss{rB>;Eh?NIX2nSb!y`w@!bCn?nFF7k z`2TKSoqd7%+<`$&+tcm&>yP*E|9XGj8!1`$?r54Ph@CR1(y*CGILbvEgMq4`X_T8J znzQ!}AV-7va<&<@Bl95VgheE?N?R}>!NZWn#82z`VO!h1TR37gFP?6<gE={isXQ}D zSu2+q6?<HrPOEYKL9#S%T1n4S{4vi1wd}OkCO@SDzZtMdT>ALBXeB9mTqLppB7Nwx zEjfGi<RB%ov1iml<L7>;D}#1U4ra?^o($W`Ny(r6iipYJm{Cm=PF$__2`HIi?eE;^ z^<&hRsWJ<hb!J9tu`BbmpHDYsL{Qeip6EPg2=jc#N*rL_EKb&*dlH0&ghv-(tUgtT zj-b%mX~QFff`_}X{3_{Q0K{wL2!iIxK~<$OYTQN4#QS~s-b*|Z=|SKTX*yb7V+^3m zmtO;-+<Tl@nFuURuA9cPtaBQaiG<H*VfI$03b@7<^E^M|<mU4-ukD2;^bW{UZJpUE zd*DTMgb&t_KSASsx>~Mum^a^+>7BNEc2&+a-l!WU-_p&m8TMCu{wyh(*}CB@%7{-t zAo6;1R$DSgN8|ea-&}!rd1}{OOM2KP9znx#iFLcOX(BSJO>haXysGUU4Uv4G(F~xw zpIt!~X6rpNYIQ6TT&3qF!859sxKvG}M|>W?YDbIFKwx4f5ebnf=TvLTY$YDQ5bKFK z{LO8^tyK@h-6shC)T5y^I@R(R^;MpYxy&>7g02XmN1o%UZmX(kvN%Va_uC|qH*i%V zNsLvCxxhWOiPy1w5X#EX07_iK3TjN^Mi>vvvMgp+v=9((x2IO#x%1<@_8khDH+#E+ z8fJ$803ZNKL_t*T0=z2|-@7_?_Hif@9?YVpiG36XzQa0^oRxM(WiT!`Au|)%1zwhy zC3hsrr61ku*4nlez&VIF*vL7pWq;eYxdOO*CZmF?F4K!S*{UP@`1p#lKtm?=F2yL^ zmF4O~yn1!#Q!~5dGvTyi*Y&hq*2S4i&`2&iasHFueQhkxC+Hjon7eWEq*V=61d@_i zh*PG^yBATEi7MNTFp#om9_aiKg*n|E$(b@fg(z=+P?9hwUoWhxmeH>s6|-YL2y-$~ zNEQ_t+g*LE#DQw#W|0;QK2HQcN0iPJF)~|gl(0D8ya#1ejvkDT-V2q}TC1Jd4xcd^ z)ufn=MI>&|&%;V5l1%Nkl{lG%m$rD)6T!{;u}c9%o3aSP_kF+LUytL^jcZW1+m5y{ z;nLAgCQy#9T%D0wcxkIDdLNCFi8CAZ1GCC98Zi+Sf>5O%07@wf0kcqHy3Oq9EWECb zS*;}G=HY%E2bj2NC<nv+Y^D%13y`g;WmMmUI1^z#+`Bg2wzZA)a8wR&TNW=%Bk~c! zp}|cd9KCcmvb2Rk+=!VGh;&e<M0pik<8@tQPZ4?DU%K^=A3i)iJ#|1;kz4`IrQBb& z`7vx+ecuC#CX+-_W^K<m3-1*}>1F{E(F<0x65T3KP#k$>0po31%Zw=5V{w^9AQ|1@ zK_FI9jL4K6d=C<!@cVR*c`*0o)7Ye{x|9|cGuf;(LlI%!_PZftF=?sLFe0d=AeicO z*;*^T!HA>5BfaF&zzVa#Fo~UkbPpo<T%;ZoU8Er>5$;@k_j8-grbV@|4EOB&v93$q z05j7h>YwUcgd;J}*!#YFKC}-LGjt|)AG>)o4)*oK)AseUeYmCM(GQP)c)zV}HZ=;1 zK8HdjTJ}p1t}UvfXsEeIcSAL{O48<$Ze~U*3<(T>dy$NA_9DkJL@9pa7>ZYioKu%{ z-;V>C(v~nkj=O+{OP|Qy<x;9%YoN?j(K>ET1r|odHZ&o0hCPoz;RosZ8cR1z?Yh(= z%%Y-N;U8t7s}bQiUV2=^da7Q(Hn856fbaT@KM%CNR>L`>pfe(`)K5$BNDz%mBdaEx zpS3b4U-0C(mfCeH@KU0ki3F4>U=ct>l~qMl$ta1Y#U=}cnKV0wr|G)aF*PDQqbBb& zp4nr-*NNFNkox7$>}C&O4G)C;tel9sAc7VBPH!TG$ozp|@4ZWsYGnwhuuKRs5xHfi zQ>2Q7NH4!2ScnV#bR4}xXRiF|x$qex&7PaAAHVwQw}1cgPyg*-|MvO6{OY?vV_v-< zlvQ;Nz5_9p28xI?e9*%(GvE$4#~4W&=-$5BejUF|B=Qe``_oUc+qOIlH{0!ler#C2 zeE;eHy8n}h|A+kh=fC?%Ppi_AX-K1Fb59~sSyyES(u(vL7h31zdZIk()ZIW4BX@}- zeK3g6#wH+VMn{Phrvr#4OlN-cHwUc}aS<gA<o}78i{m)<{a9peZFt8|tW^ynC^L8r z_TcW^h=t>b{kXrrzTCP<vZ%Cd;!*}8(N;p#`~8&?FJHd=;g5g(^y$;LfA`(5<TuNQ z+ihK6kNeBte)#b(fBx#*ucbXNOs@eE5hjG~W*#o{w#=c@{P%*~=P?6_EHEV?Oxt?< z_#vKe`^%RN1hY&BrLdwV<q<S;JI=BOndkl%L~Oz5xZ<7g2P40Rujkt;4`pP|5l)j7 zDjs$uQ^7JtmXEimZ$5l@`gH%?ExSR3*w<}|4EKX-iK{vFIs3H?LwZI<QI>fGz;fH# zw#nM0>AMW<Ssc`9zjlrKZFEyr@7*WH-V0AB_0XhyKf?3yFvz)Tc|k;i9H1;QfSU)! zwe>%?&a*ZZZr3hDkqzgmplHffwfEkOCso&0Rp|_%;S&^f4gJXQ>v?1D8rPaTBOEm1 zDMV_FLPXUyesdOjll74ik#3I%`P`3CL2qZ9m_%CBQrJ|<D=ZOF@4KLZB?GTB9y<Wk zkzuG#BGbLp;L2yF+}q@=8fBB9yl&NEwv59K5hWypaE#{f0KwK`uoXIFgoZsBtJi+t zxj&EK!q#ZclIEdkDxt2|ZD!TS88vh5V9rNn2KHS$m6L!wsh9JJUL%=yYP;&GoF&$f zX(z5T-fQDB3GOqO8T0&kHlZFIqWNF1DyL;xu6X|c2T*j({J|6OJY@cSjRml9lED!l z+_BcKhroHouJZ8t<kp3qFZw{UUw}2&M3?#F)H5>Ev}+N&en3}GV!@b-e^l)^A@;Nq z>zWxNYd7(X!+QOAk3LV0o<_!BWE3>InrLQrjyBIH^b+Ficq_Rwx7lxvh$d3Ps{)UX zK`+qJlOWs1#K*oL_kHxO9?vR7NC$vP-i<2jR-eYqYk*Jb{oOs^Za<I4BA_f59`1ZD z(M5=VjG*WdKz#IG`j^NI;P4|N)@4x<cjuam%8-4ow^cFnk*>|nu?RGsEtPi?Eg}*q z6V+j5+yfCb%*ZjA&!8HxR@3L$_Zi^$D7*zY6K|(iAkDApn~K944@*QQhsSXo{W#<T zX06W4G|KfpViV{QJlX*GNxLseZIw7)=h8t50A&gZ31_9CipIre!6Jh>`WBHstNp<+ zy0j?=Cb)(|c4h?zgUEPfO4PSHjw3IK-l+n<u3)nz8r@MH%mK8d)0PpG>E$bDVsH$+ z$xvvD2%SdG>tSSEWa99VGRREA?4Do>q{SNz!S(P`Zge3IqPQf$&dszAxq*Cy)v8v7 zFT#<DS{UEz79RoY=Y@SFjg(xeo4W<5@#qPTsX)^aN>%~HJi_TF@_${|M>X5DKC+(9 znJgkpvyAReY(!|wLPF-9gh8TBb!li?8?{C3);+DRMaA+)1i%)abx^2ES!H1|Hx|*R zl&D$#$lu`VcWd<oF+k}sLq<kqcn~NRR0QK1%(5scGCi#1mG05a-MsQKRn;>B*?V`S zA-4}3FmiPxLR%Zsg;Mh&59?;egtI(|Qu&n%zFcS-(Wtf7L?wiBc#ml)u7t^XqD})| zo|3W@iO9OFhuHnT|Mb(3`@a9;o3B~K`@zf<k4Io>O_nuRe|dd%vu+(sjaz0~x8y;8 z%b$6h&Ws`Hy~7fm*KOz=2vy6qUkkJAVNgUsfy_WwnqL!<reWSQIG|_yTU0#)SphFx zwj@|t<>IXP#<n{;usk%sb(+3r-I%*&9O<aUN@t>lo5n&3lR%v;JiIJu^U19x^wPlU zmYGEvpYm*7mZFtU7t)kUB@n)6hMc+AQSpUM*N;!aa=hLt;qI@;4yKiP5iQ~9%gf7@ ze3x;kh!5JDXMhR*_;{w=y;h3u7L>;xA^mn+m#39i;f1v+@i0(SIXE*!Ygt*>RhO1! zV5|0jf<ftLadSfbN~qOX`o33|1i1@SjihQZ>i50QV^K|?NXkHgOPLp1XePuFAyZhq zTbe_X5`OdmthyE~bZfQK)b#Rd0qDKAwYApjL9U0hFcvfh-A-qUdes5fGS1EX(ps8B z-OOZ`N>DPlbS!h$bmknTKhBmjENQA?)87>9@8+NLr1$eNZ1oFDf#vRJbvOJOVJ;Uq z&pDYHV!E2h)yFqSH|ICcVwBT>rKh>?uXiOd3)AShnZwUzx2+3D=+Z=_o4G&wv-3&2 z#G*?8=LSC>iZSR8*CIWhbEJLWrwqPMQzI2S)7_6g*!itBQc+}ps+y@aVj<#7koHv> zbQRN?8J}`0QH8~1_ZE}Gtrr)0o*(87M#9}YB<~4fTEG3(=YRQc|M=&>eg2Q%eWkj{ zO8#1@K+K>s*y0RH%IpSMdWI()-XpCrAcp8EMrzBq>+hD|s!GN`efsN*XJ=l`V7o7E z^NdeF{qV>C`mb^Le|P`;Z-4g<Em|1$3Xuhqpg;*!bEksn43skyW8yrA1Z#$zQX*@? zz4*~)nE2@?pr*?-XMl0Njcc`;`p^PKkMaVe=^2@I_AoPt_B{3wzxNW(JR-CbT#)XF zh-iiKi8%KCe!us=Zn>x^c-gR7bnBf}TWiO0eE$6Twr(r~7;)V9{pB?ox~-a!-tEUv z{^cb%<wY3~8keQ_?jtpGglg6NG{)TZ|E+12!z6Y^xfi(`P~ml1K0d$v^{-A4CQa#H zoe3(ED6b37e#dp<J-oN!!<AkTncin{`E$oHok2g5DWHl|$?}1Mm^mss!y_`A($}}A zZ=b(<UOw$f0T^Y^AW944^9a{-6v|fhceU)92T8pS|LgMf;ko9MNtl-A8Q3&S;okdU zeKa>Sz4w}0&jYg`U8E5UWAItR(|rdy&seL6O|s@xoB$XjzV4!3%}awox8-WvsUuUJ z#40T5-BIn4c0|<oBQtTC^vuBfd9Jt$XU=LquAJ=f!nuH1@=Q02Qvr&zzko}?t(3MP z0%w8F<BKUX{V<4vgjiK*o&ZM|jHw)DLmfEU<wO5Mkixw|>zi}&XsFIMOpmz>-b6<c z(Qf<5fUCD({>So2*1;fAG8rWHeJ?`lFyDDzKbP9qB8J+?d~`!12?6uLA0r-%z@_`c zS9jqxm8l-0YZlcz=l*rueR#M|8~e0GT@@(Tz`i=S&jZ`ly!&%OleyRN<Jtrqr7%HM z+@&sBWzO)-H3V3tYQlN(=Z`#i>N%#UL>TdoH9NV;6HaDmrEH8_Q8eFi+^@6ccZtT= z+_!lTT*VZ1xu#tDI{%wX*6C-I-K-x+6%50|Ghbx@ExY$#44^Picz}-k{<N&Z0wO!L zPFY69ku!Dr4Kgy(yPr33X3}x&W2}32L+1IvM)BjrGAoqwP#V_sdy=7J*s|O`%!54% zO_@rW;vK*u8d(`RN#&(Ei@+;pVII6^65l(ZMCAhK&*mqO>M^O`cW0hn4V<Qf7+*;Y zaH8g$#6(p6+}Qh(_DBOfKQF48V;!5XCXe}UBSKG;=DT-33+6e_oP4EGLPv5UtXQm~ zs)YfB2RsPa_q`U?)>_dQrh<u1x8qgHbd6akX2msAsHB}0K?sl8dM<+ARdU;wC4oIG z=@e*`Ml7QD&L_*IoOCrDeRm$7z2)P+<1#I-B;VN<f461V34zW8gE-^+YNhDjXMg|N zMXKEGt4DIe>>jQ2L5fPE<PrsVB%u@|RX9J6>zDtpst~T1nCF+g7&%W~%=n|zFIgiI zjv7(dJ{2)lft*OejCs8VL<|n&X~p+$GbT$1HrFkos@F$h)|uCw_v)6KS#ixU<TDgV z%0SY{K0fipa1)4X^9XXz2v!MXabGi0DTm0k@H%mOW-_P8Vcp#|AuN$;8D4Z)mF2c= zAA*T*&(B2ybxLXav^^v8xbNMKzyYZta4AJ}SwPgSCqb7M=D~183Gm@)tu4#amPQ0i zKMmPchX?`8BD|<>ywIU8ENE?&4V*{rm;6ntouz4`>P0rStQ-tl))iwQQ4^ycVID^^ z)j_tzeV2TZsL;#mxdZSFawHYB4pC8oOe<QBe3;D4zISfCxU!OnIA@q0?waD^nepk< zryqX!;r@EhU!<G$-lgdyxfoy&i_Y;(qc&?KbAyivk!sad70<+Gh6q+DvE|4~N2E5b zP_JZ4q6*-;%JAP$88f9Z&bS<8!cs+&(0ixIU^%B)5tJS|-$rI`+h)DHSvPaHMVGUv zt-{8;_1TtP*Y#0tE|gnq*%*M8Z<n|!D+Pp-*R~PZdf#)eBs(T51tNnU5O?~Y{^!i> zN3V#@+qS7{@*~)oh}L!4w%cgBXSA)Ai3pM2JB>`@Km`jjS6)oH(@PIo71jUU*ts@I zl2m8<+}tBFtD9klivS^MS1XzA<^TVdm25F-kpV)$Ff(*lW`_H@?1$s-8C77rJD)HZ zx~noH+|T8GpZC+JPd@T^DF@!12lII7m62+#GNa8A@p2h|FB0)y6|6(sKGrXP{Qdf2 zJG{$QN)?g9G$bl1o?M?))^iy`k=vNelJIFTETw=92dNO5+Ho9a10(Md#F$~RrV4}z zkYinQ7iL0Ee+wW2Bv+{dU^7bt5iNR{J3Mz~z)T>ijpnl{;5qI|r!i4iy+0liakMrv zfYcHi@-AX_Exd2{`}si3&t!~FXehTb*J30|O<hWolFkvc=bdc|4fBRxX@IGLUw7Nm z1>~*2+9we~&-E<TJik;CA=TR2J0URftowtABVf2P1DdwpdnqLyyr)QPbPMoly#X-O z_Be#_dbw07$Nh$g79l0E=qRPseUs<v8@Fv+vBc*v>0x3bl2TYC7xT%sPZ-d6sYFsG z+j>7TCQ^ips9RUfm)RycVp!!xAi_;uHQmmO%#s1mVL=1Uf{BV8iW+l-5X9qnbX8_4 z+vetlOO+x?T$;E8I<4$RanIPnSTK6OO11mz?d#uedix*$`R6}+snPDPHzME+>F^N) zoJ=<&BuBymQN7jZ8^<;HN-rPxFTbKMK1N00Kp+Hvxn8-*>!;73KYa$kDkY2%scyAO zy??$Rx5w@Ee%&wIenqYjhDbmh0fwLex87e{Hwux`yAfa_QDr`n;hrOQCQ5T9BZUV> zWL5wszfUrCXL^nR0zia`$;@&Bw`#Y1s#oMWEUF@bFi8ZpW4|Bm4}bJ;{&dmUrGiI) zG;yxD*~9y-gHz#BNJc~&Ga=Tk0L1-xy&t#jQm<cb-~Yk)fgCX`^!~U3(Y{~mwhiEm zhlqUf#TP&R@sDdM-84bhFCRYghuwr<e)I$Q_;Q25y*6!(P#^^0uReUdY$ZdNiwqLp zP+>(-@Sn5lo_pM|M7u3r3X`PWfWx8PkI$ds(O#rzYsBPX-ZfOiUFW+%38xyylL2Kd z$dS-7h<B|fC*AWLDm2n0v*?E~102k5Bu+?1mi^#CB*FEcfAyPx`qgj0bGZKKudG%j z(uk(59c|j#Jgd4SF{v9&|6}&gB1MW=gaagDy7j&mA!~iKS|DbYnQt{<&L@r@M)a<k zo^iB(v;*9kkr)D;b}4(QmqLX|$ioAIkcA}|kLQSt#Y@Ttua<4Cv+}fD294I5n&to6 zTFZOtsd7~%q-FKW`hIm#%=61SS^M)($Sfz}A|goWZoRj~s>tzH#OS=U$gp`KQTm}Q zK^crp3(pbrmkLXw7Uy|29}EJ(h+I6WnYkI5gGXivxp}Bvq)_S|BY>c*5~rm#Ox3I> z(lHHa`(?-ZSGc>mX2?cTu@QhLG%9mT(mR*@dlvCoiX}n+40Fk6W39vkp=(d0Ix%(a zDNgrrHQVZzlc~Hk^RzkZWS3iKiR04rl(_A5*Pgv>XLrE4NX^SVbFzBxEVM+X+0U-e zTtr&ys{+YyFMDG%Q#T?iwJg=Z3f&v(B-6Bwlv;^7Bj+;CvXp`m+V$+RJP(p^=*WR) z0eLbrLy9=_a-Wd3vr&%E-S0V7W~t9sA$0co@yX!7EQD`({L|ezilV7w8fO$lI}Yug ziT1kfbxTleUO*!=H$aF>Dd9ng8PZAsRmwOa0U)25$(;azk|)4$rdgUNO)U$6G~41d zc{8()Jid@@*XE$D)Vg2xveo<$h{#&c5pzlgm>D89Txjmyb)h5)AkoOC9da@)e16Q% zY^l6n&fB%)IP!0-wIX5uYD=B;j3{-Fh{w@v?!uR&HZgEHaiN)(mGc5-X5pYzB?Q47 zL<02IdhZZWN<pU9+VTspIKuo(_k9;B`6w>1!&%IjeNBpPa&nSYM>Y=m`<{o$OP7~& z#WgM6O3jCCNgbQ^VFY_Sc!d#8jQMwEI72P<cpQYZZ+jNWxr)w`dyGit9I9v969ORV zY%yj&fVTT12S#(itq7R;YCM1UiQ8KXlsOhp7u8(N<|p>th^KvtN4ny^Z?%*aaG!LZ z^@lGBcAj|a4Ec*ga|RaT@CbOSO()_24I)2x5>7wexZj0`Vdbs2`g|<7DlV$yQ0xr_ zmq$n`0il*34!fDQMuGXg<cYV`n(6XhCx3=x5>u+@vbz}%03sm|*8BWG&atgL@hrMp zR5bu7QtDQjP)ZpVpTUllvX#VR0bo*YO0C<zNhvJcdVd@b&B00UV_m_N0m?pMn%Q?m zc%m>0RWM|fFxd9}^2J3q334ZAVJbXKv49z1!6JZ=sbW&3ZdE;(<=j<0JgMR4CPl6< z*KMm9;BGA3dTXsg0Fxl_R`<((EwUj<DD;Q6N4LZD&`Z6PQUM|*IosvBZCfcdzgZUH z!lO@N+AbI2@m@1iK-}9+!@0_bmlqNG^!dAQzx&$VF4w)(l9Tb)`|GFM?Yp~~v2b8e zp?ay?%f%=xwFOWxz`M1_@wna9IuJ@_sUlkmf^e@HCDwGK!VbUs<*)wq-RBP<zu<a7 zVa;V`M1K1T><%BG<hpNl-v<<8Fbl_3k~=&?5*AaF36mbdX!%;XC#p3SdD&?$iEei5 z>nzQgkB1`@7ZDK>5n%|huG+h*78WTbZ>tnGEpbM82#LG5<7h`iq$1_1b{c$SJ4dPH zcqg^RrCfH|N-zQe5r4dNRKrdJTP?M0ku)yttvC0eYyddXLQf?k1w`F9SIeb`FuPjJ zHPjkI#FW{g;-zk`rbkQM1dcFlKeQJSW-j~2fWmUz?)TeGZ#PD|Ua!Q2CpnK<nrt6q zTy?#!<9H2UM(4mJg$q|M{POXIFXh%Bx5o`DZTk-H0nfuRot9Z>-tYIiRdvridm`eL z)Xp?LK<JcFfcZ{3GmrQm0FO}9G$9I<;lBvT)&&8qJ8@ykJX(=bf!JNc;V`?_Qu3Da z2#vM&CuU%3y~9a&owe+8sidX99le_c1kuDo<w`%_0mpnt$3AVY%ImhBtFheG4BNta zSpk5=s_G-b-HAv_JzG@P?qUtUmpW+)>3u8@pIZ9!{d5*5#|R8gXmXG6QkWP^EulI9 zCjf|e90#Iiem2v%9@5;mcFRk8L%Bl-OrQLvZkXY|xk}B2aEe-G%#sq&%ar|#u9{=X zo#vhA=UwiKcu$@kx&=hb`$2oUhG^x;LM$`RVneJyc_7<iD%S{;uNer;6rM75$Qg?D zp03zZ%C;3#4G$0NtyzBHy*n5qF=46I!&1j*v!NY4I}8yLl5*v6qmSQ%kKh0GcYpZi zVXsklEL93+cDK)b=p;Wl0HA;ajQIvQh0~nIJA@;VyCDYcg=_gK|J2R?#sBx`KYZ%i zKEC`&n}PdQ_FC(w`*(l%)i>6D@$>I~_OpNdTiyjOA{0Ve1irmJ{BTmMytxJg@+=U~ z1c78)Ppo@V5@4C;2rv*mETI#`fG8O+Xr}HI;EB~(PjxnXt8{C<O+7~l0TnK#Z2KOU zt6eVj0py5jl_!ZdSAqfV;ih3T;_A6nM1s^|HC4^r)yHvY*TOt8QgnaZuG_Y6dj=!{ z0JQ^{tCYfga|csATJaDjbk6`CK(K(Os$R0APklE`7_I-mAXqVVThp72%Tj1Uu@z@* z;f_#C9puJA7YZN`_8^1QNC(oKQy_*no#5K=lLBRB+mGQ^>Sx_f%%gdxj6>4${u?Ya zGXbcGUtV8cO0~!F&F}xvzVKt)tcrsR5qemR=O3onK82^=)Vl=$3g<J{w0DRGmPO?R z9^vvk3@kz|9&U3@&4A%=7F@N~67V?M{r2eQNX}Fev)^?{A#zyR{OCth?QY@h;2@jK zDG4mA*V4nD9oc80>nNbzACE^iIZxO2+%7P24(reP8%v49WxQhRh+89-r;LkGwdX4X zz!TZSkWh1ay29b9g2}MCl8E<Iz>UblnWB3nBpb%Xx_BNq%lg^lA<x-IF|)3q-6H@a zBgMvkJpd_)0iEWLI#dbiT^~IyP`Z}DogA3yytC=1Fk<Gy!WpU5>Sm9}gPB?CGN7H! zQ=`qp>HrSpKmlI1J%#{KSM6vM)_ZmcuG>E=&a;w;c#2jK<8)gs4iQdcOMYwTM`e{m zXLZcB?eB7gml!1f?=iEDa;JTc@H>uU#KXHE#{u9-2uuc{;lP=VLnw?y(e-TBJ73?b z>S`Y2X-O=|^r<}6tVx_mRB+JqGx5-O<M^|d?Oc%1)c8Evw<ihMnh~#Rdxk~O8K$u+ z((I@&mrM4p=UE2jA`<}_Q=H;q?g2!Z+9pV;2TXOdnT`A@Oi@N()0%AE0XT0TWFV<) z{DU5?HSmCCo|;8F%q6S4bsb`m^<HOXFdkhPsX=NMVVPx6gb|@If+0j8LVAK$#L)S% zXJ*7WZ(j2b9km|<GebP#-0O4Bi4q}Y%tG4#OST(6<Te<Q%LjAorbN_CDP07$CUk~o z_Un|Y<tzpy?F*Bvl;i$&Bxa@k&M2_vN?hw1HF!QJA(I3NAs{1eQ*MNWBDL&WH9L-@ z_g+LqBn^6N1n+M6mgANeN|tcpP7oxL$Uy5or}+Iia{jx%;xve@%`r1ahGZ52L`P87 zK=P%a90^ViBOe3W;|PSy<swL!*{M_W6?0H~<|?dz&hWUzm00iAq32<0o@ByMOE~m; z0neC`cl^HmyHcPu0w2r?f-oTn*`B0)EGXBHr4FCe+J~*5b|nVRmp6G~t8~O7VIFGg zW~!-q2}*vGK~OdodD;#yZ>XhkOf_4Z)dan9qRb43q2j?I^U5E|RqZr|%s#*Mo(&o@ zosBGJQ@DgfpEcrQJVSfywr?3SXeqb=KxPslk%+h-$L)6Oy$kcTY+d_|!^-qF&y`XN zB!kca0g#a0!U@&wemub9qkUjz-lQXfjC7L-&v@cA{ElyvFoh}4<XB-)1V>~RqB7P1 zVX7V$=pxd)9>*ahRW^vhq9Wo$AFXv&^V|f~4F{XM;Y@?&EVk3=C>#*s6pX6o5U2qI z1nXvo49tj}$^nh={II(=b0w43w6$h#ZjJ;jRJLuqUdq0yhld5+da=X+02hx*L_t(Q z>rGr7LCx-uJA!j%>z$3-ama_Q5OH@<+qMmQ``xeq<Ms7cYsrN~=KiFeKgSd)eK1uA za5vMCH2|59uP>BsF5Xn#4Ca4HM38&FF*h85(pqcgfW0Guo-N+FX^98|0wy7X2n5`= z$^qIt1xUssCl}ky;R%xOz1v*8E!lX2HO$Pwh-jOY!}<X-Dg=~L(USFwK8^+k?8U>} zn|5v5TFYbK-7LcA9QKq#C@e%+AOk!5{YEq>-pfJY=b3Q?BVFrm*l$ON2o4mWAnIX0 z-h?poW-d4`V>d$rVWv99q6rk#AweJRj8q9{w_i%hYGa6aYq|HPWZPED%dQxoZm*y3 zpZ3^GEpCSNMk$(icG4fzt!~@UPcj!`;6NC$O=AGf99<vXLJcEWq?XOId}3gcgz@EJ zv<v|ealKwGmIM2lfFq?4xte0esWK1%6>-FHS4iKipII>H(aBPR9K9h^-L`$-6Av^@ zOe+KpQ6MtDx|_v-_TVy;FRAKiV~Emf?}HJC!^biq!HRlbX0DrlRk~RlttVu4IBRYD z7b&wbH&Iy<jYYS07%h+_Xc;E;Fs17N!OXSP;3s|K+{les7t8#hNR1mITC-dGT#y0$ z$aerj!&7-5Z{oS*Y)*Way|tu>d9CIRlYhH=u#|8;gTU6>+yS<IpPhLO13zL~aA?ZA zG9V^Awz_+`<Or;Y9=gVb=LV99Fu=@tq0_qZR-=czB8!mZmMn|oXYZG8g31~P0s@Hv z(#uD<e*E?C{`J@2eESbS+>4Yj@o3?IK8Oi1qW^N8h8dDQId4<V3=Uvmj+r1F8WFV9 zPyYTV5%A0Z^>4Rt9=G_6%!P_a=%M7|hko<#-}XoAxAxWFeE;REmvXJJ0g-$tFIV1n zYAxvKL*WuQj5>)DNM|52XEh1KIXB24IkjQJjOR>o8!#fW*-}rW+wh6}TWM1w!osV? z^@wiv=vG=o!foH$ww2Ae2V-odUSM;DM?G5U2t*lmv)phV5e^i>vhRDXTd5@?nznR~ zlv>xSL{;lnJ>qe{r#j!=!Q8_8;|K(B@cUhFuNB~0>pdF}qO?w^TWTN30e$)g;{@aX zzq$yARO^IwPo5SEVG(C?*A9GP3XNpi#zfnCSC0vqR*e%FCC1VT&Y3>z#aYaa^}5+4 z-R4UNV``NE@9=^1Kr^fE1@VVpeDUS=C4T=cdk9fyf+CwR3xc_8<RwzKjfK@Ljj2+^ z17PSD<Iqmb<+`KD{di>gxc0~APCx)023eDtnK;06vM`63k=X@BtdvR&QiUbd4^Vjh z^r>9S{>8p+8ya{R>R_n-xdG}dS~=Ut@)%s!u;I?|A<xPE$EqsM{LU3}w^nnbph0+- zo%F=YCM6n?2umquWeEE)5_vm4k?<~V5Admc#1Repgk+62Dbh|Al7Ww73WX!&DrW3& zR;y-iCM@8gM{AG!{c(ig<>SZta!C_HQYw*o#@ObSD#vkXj2i^p$sH|m??8lMZZSa^ z%%yJQ_%q`noWT@vpDV&;Jbx0AQY1A=^J!5>jNG9Rake3=MLgrBpH8I{w*L%bvoU|@ z3!8nO*Q5|^scx4PeORTy;xEAj&kClu5M@hs7%}(WL*X6jXgx^oCV!S2v*sP>Z~oF% zPv$R@K216~fQH5*hNwD^M0Y1ifb28I(c`W4cz#@KVX!0~XTjP@MhE8*gVe;0PZi&I zInP`z%UKVl%N?}$JcyFdF%&napb(u^KBq7P$2{d|t!Xc%<dcy?V4BBt0+*i2i0*)a zPU#ym)leG~UL0FDo;TMRZI~IvQubZThNlB+#^l8~d?DN{zzM+tg_sa?8xKTKq}G}< z@$BA{3bIOza}j%%Xc040tTpEvY%L?UP>EC0Vw$Jgag4tRfDo%l%1lbFO?y}6DGwy( z{J+5Trs4E2k4fWvJNA8FI5r=xH@^FF*V((3GD4xoGn|f#f!PFJ-`C*u`za|q-`}Ms zJCA;5EXf<}=9^5U-px%_ANRYerhs6Lp3@Nb4nmiMEoLS`03aWV(dpw(x{#;F9}yW) zL_(ysma5_2yAYm--8zk#%TPI8BjbHv);T5;5;Id%a7P4F4d&#l1OTAJNy)fuiSOq= zr%waNy9_0De-TIsVQw0p&g~icwru!s<!t7D2JQWMNV=5bs67S5ktNlPHO^p~%)Sgn zfXlv1pj#@Ra9z7=jC)QV8v}$fhc)zM>u32A)^zzihWjT0)T-y7cKpe6bTyJUE05@s z!6ahh$tTGyta;8ak9OWBTdf;cFz@DQfezjc5CjPbfZ1p2Yw~KCL@uS(W)Noj=xq-d zDhOz9y|=uAGb)s1LrLPekH@0--n*2dZpaM6`E6kU4G41At`Uv_lJqx15h;?1PlbpH zxE*S05g;suH@85TshBbR=0juR9uVl_2t73r$N_V$4d$4gX}w-AwHBIDA*E)j2_rH9 zG9wA4_>GYOY4H2!*xFnXD;EI+;n9(Thnq8TH`A_#(9G;OxT`%LzxmB?RQp$7{Ak;E zWF`o3Tgv66szLI<&<FoMf62Gz_j65nwrP)h&BIh%Z-Gz%>b_BkFVWFkN%Fa)^u-&Y z;RSZHz@Q>b%m;hx#4M$xIC1n<2rNQ#&r@q<Vt@>P98YXVEF0tLP05>R%yYQpiwXhh z+B@7$tpF9~yj73ZkK=#{CfYB1c2cJ5s&5ro7=i?d>h`$bBVwzUCx~v|^vjM^gu$IW zYW~n_-n%&}L~z=?$<*8|kfP~xGy@^d0YI}n${Vh3RaneSAIJH)IfvZ@!0mAlflIki zk;D3-En((~HVS|4A>R#9Obs?zG!{gZA_S<YdGld{Ha)C$oQyz5EF!^JDnmeP&BOD= zHSkQ2PIW!A)J=#O2t0pm1aLHOJ{E|^%ucZFo0(bH>=<MMHQogbFHFpcBds-e^%l`` zC~Zc}Bt%51&|yImMiVu4^DsZN+n4+&&6t>+tF#RYPy0Ro`OUg6;L`>kR)A4H5_x^D zVmBgctvGAPGjszjkk-bSnE5y$VtCo}*2o>Xx|su!0|K_@1`4_!hWx}<O;3qv%5ln^ z>zQe5tp}Du>P}4E6ne{;iJWGNj7Y{+w&s#{T>~kfe#ex-sdTV(wh}&bolKJzK}3PL zZJW;u5)g<v#}*67!bDim)pDPaev_1-FZg;E@o64OTYl>u&1e!^29^>%Yfy{OIrv)( z<Q2SCrFi0p0`BH7^>X?0tFQkB{^u|M?Z5u`<;x#z*eDFbJUhry%CAUq^Anl?AaG9b z102wkRpb_?b`;*~4?g@g|1}c+>R<o;cfbCo(EdU%f+YYpz6h0Id;R0>pFaKK<L|Ej z_}~Bj$A9}XEE_pW$ctQy-|qJ#h<V@4U1uLl<1rd*p8&9UlUq8{Y9=VeN6IFow`k5E zH6N(+68_ENk-0E=*EDilc<a4u&wc}D!BI-tc`H_M=ej*gY3@Wof@H&86=nt;9-jVw zBI>O_9*?FEE>KI6LK<#r=Ao*WvLE+{w#G<R3LsG8MghUi53~E@c>P?|m@>K6%^=(z zs4oIHBIL7hR#^T2;oP&U9QoN8NCZs0721krZf?G_!{Zmk5UFAhjSPb`&9?wX8kN68 zI4@BH08kRs7pgUR6KjK-V`L=2In|DZE`(5X=wE*P-d7*LSHJ$0N}|T(2uM_^c-LfJ zh)CTk5II7a=GTG3l^6n!`@OYRF8lTRLPgZ=al5Z!P>QP7#7Czd<Vn&c!U&%|{G&If zf<*hiLl6}tMj-PbLi}`lEw9^$_MyC7iFw;L<V4L;XpBImw+z9hhSu(@0eIJz6A`2Q z#l*Dp3T{bh@(;;gG=J=+)mp{$67P&O;aUhWr(?{VH3;Iu(#_Ja6kLGwumwedb-A2^ z83EX%C*m#{&1nh%Gj|JnGr(dZHwX0a(4*ZyzaGaS`vxB(QUp3pT+h}&f92E@%^hTz z6#%s0q`w7#TgH?YDI`d>CVW2A#Ds-TMh`+tsQDS(J}wc2)}2NZ%c&%aA!#Jey1{hy zw{K$3-p1#xyvXNJNuLA9bMC=8$e5?iFmLK*aq`f2ecg#1M5hcsf2U3&CJ`A%!cxwg zmFX?&%UXK|OJ}PqK<7#5J8l=9-lI4HXqWHoU0?U+$)C`%r50Sn0(^^zdKWlzzSHyH zJoBDM@bUa-=m+QbHRK^k;gREpd_kBQ7~E1FiZSS%))I;|Qs0J4or#x%hSQlFfe^x! z$21XUPz4TdwP84xdP>)g0m^~r)4sT_z4xUy9ilvmRR-kgs;Xfw%!p8sSvV&e8j2L) zK^f}IEHW0)E4E_I)|VvbJPLe<{R#X0Qr4(w`A^L(Ka(f=)~vU-7H{T3iN_Y%nYa{# z=#NJt@CAWknWOV}B{x@77WP!w%xCO!xhzRt3SJf}Zb`|Wr>?!#pC%kBPfcMTX1}ST zA_OFNgK+IukQSOM@hr<V1~bC-JP2Of(>ga;;eI@hOpQqW0t`F$7=7k!E48%GVR8B% zTBN;0M0jkcpKEeEnwjkpW#5v;VQL;>Fgoh7L_uPHPM2cD7f7uvB8d=LLo^r|K>|wX z=b{si1hMl!XBO2tFy|crYqcV+^@yM#he*I_USp;mOU()02wR(<MNDk&S@U%sU=95* z5eqv2`3#lMPOy{#Uyle2urd2{)dT>Qt*%?_d={;_eBK&>$Vg@up6vM%u64e7S6oIu zE#SkVuG17eA`9G2&CBS0QhbnH!srku3f`F?&CL70Gjk!bTZ66%&mjP0@(3i7T0~eQ zd>{}MnFxHBEn~hkM##Fk8<>K2?fH$DQkcuOU4ckPMU*$2c2yD%Hy{GUR8@nyc8$zf z_VjMxh#+ScE&xa*%wp!P9goMuEX9^A!Lu^t2xn%;8JLX#0O~H8DW1`$K61?v9dH;w z>sI!C-)hMgkqAmDQt~XCxbc~6n_ro`x8AWeMGYR)CFeK=xN?r&Ybg+Tm{JVL!tK-N z``6#Se*5iZ``-0>skQ2CU`^E?kA2@uDFo<Ek<fh#8qP~f7KBU@^D|`Q{9q#@BRexG z=@_eUG<3`_dMq~13*&VXVg}RWGffF20*zRR0nF9i!ZEqAW<HkN$ihX0dIE9<0nF@x zM+~u4m>DWy#98^Zgis!armjqBy(bDHXRlIfp)hM<&yxYbBV-j?05USX0J^HHmCLnC z$p*yL(>NUof}T6)<S3=ivE3i8nxbbW4uJ3g0wFHLpJ;BTVK_4f(SwoI3{RLLm|{@_ zQ&ldK>XLT!-g_;Dn2=FbACKm2K`5JSdpXdF=w-j|wFpum9Bv*yOp?OvoP%~2?kOHt zu$jYZW`Q&|nE-@Bg^3uXkU(oKa3mcO5=-f-8Dhvqn1#9$01@_X{m}>skb^kFQ^+YS zTv8KJdOLDJ4iQBpYsoAdS!COG5wXa{0x%0EQq9~zNtjV+u4Koe1EALG2vQ`EvrIE2 zBndx`qaQ8(RwPWs!(tZ%5CjP#5j1lEWD*f`XGEBzms-lm#XSMbM<+8b5L_#@{1;M1 zuY=`gt+zyL<BZM7EqW=;$U3l&Su2}|Qy>u&ON7Iao9AUgk>oPy!B5ZtGq={fYi?SA zVyjmt4+0Ob!3Yqggep29k}x8Z`jFC$Xaa};s8c4)jFKHnxG<Gch-Jyn-^G3nMVqNM z-S(~4B0^|nM*tx(a$(}qO_LXJP6!^Ay($t3QVN>P!}A=kq7m8~C`1BZ07<wXhbO-R zB0LzPV8KBr2Q<%3gym!|EGInY)jBd0vxS!;_BhN!En?fh|C7J@djI&(zx?fg{Fk5n zx1au9G=X3Yp!@<T%e5G32bL-wOoi3}HV=M>1F@T$84#3RFvuP^`EdQ&Km2^V>>Bj? z?fvuXpElSobP*s_A`w-4{q*^d_QziYeEs`xe(<v&{O~{hL~4DJk2~FO3Z?E%I8@a- zP7z|jV1xk<Z(JrzVu~r&)s|_?nTh8PfNov{ow4_DSM4Dp*+MY#Ip#7vY~+~%05S4) zzibAA;K&yKI1V(t>_Q0Oj>JR7J{DyJlkbwBRCu_#ski&XKhejpKGw2rR{@FJ@wvA{ zRk;)<dVPHb4;I;^Y_;C*cV?z4MI-<OfnDu(kK-PXB9-s%8qVe+*j3fNWbJCUOo*er zn?KU}4^M*o5IBt?7X~6th&^I3^M2X)D{LFIz|`So`G`mk3MrwrQ&VkEL~AOQgx7xl zSsy>eUZc2Vma)%+07nha%$hm4gcIBu%*}ec6#01BccFBhF|)A{adZd5tfs@gw?5cs zW}Y^syyn$z?eGZgU9}fUfSQ}TBIe2!r^ZB8)ieMYiILDltqZY7xLVH!gP?0CDTvfn z>t2BXIRb-NDA>%jtE)Nq*cbysK9Tq)Q~b>g!rk;Ks9a~!)BJ@`kIWhWG4%v=_J*H1 z-@W&o$hha?iXM-{-9;E7a_|=6sy)EXQ>*ABe2C_PpNV7yFy!~!dUp@bIgU9HrVeGm zHxjZQ=$3n0RPAP7OJ!k<=%yLmkYW?cAYcyzG_%KX5AeE|>lZI|lXg6)il_a|13l26 za=%0oQH&jZsHs|+1Y&bXBmkp;++DQ{s~rnn0vy^C-ZpF9@y*mA%ilah5Lqf`CU;Wg z&pC1KAdt%G_ZfokLVM3cu{C1~^d-D{mZ5W4bGcq@tU5gleRRy9KY!1W;q}(blf%R! z<^03svyr3Q3?cG1=)!JJh^A(Mc?;q2d3it-DWwPmWaO?zSQx?VjFE&{Cl{ig=D&F? zWpt*b`3n(*JlWMu#N4z26UWkhpD02BrkVr3TtDP#bDpiN!C7l9xl|rGS|T?Ch*bT7 zj}XuG>cy$~Oko(B#r(>;_CbI~@G%IO8!wL)2P`5?{CdA<ca+_7Rs!jTpR)Mpd1$Jz zLJv;O|8w0qJ$P=O;f6#MX05fl)j~ota?y^~%CzAVQE#oaX06v!60N{Q#N>$KBLqDE zJ0fo3-k*rHHDFp>{YC0M3#<|>=nxFNEUs(&m}bMU7y&MG9=evJ0B}4G>)NH4lv+n5 z#6Ob=A@}8TVUvj;dB=idN$z-P!t5W9M<y`L0@CtcI7<;>u0K;`67FM?IOh0+h}XPL zTo^)tnvO>c!p(Yn47FNP%uaf!a0g^eY(FAIm|E^`bJT?n;D|wtjEvX)GH5vFj1)|G z0<o=~>zE;;sGFKGA~O{!1OPUJK}8@-)<o|$+-gnK{YXpkq1HAv;*npLmql(kvZ6}L zbwD_T5E65H90Y)b5cJd@;;_WU+fB?lyn>k%+m)uRoIk8oTm%9e-DB=_DKmD7-CfN& zB5&_$D5Fg4&aZn!Z>2VBK2A&FWph--NE9h?a*q(gB4ydDT+O>~ECXJwHW@Bs$3Tc~ z2JRVXuDxS~YxYfqOy+?^2$a5<OnpQ|5k`dLc=VonMsg3Bk0RknOHV}<6MJ|!ldTjf z6uIDcbF=P1Oh_4h5HUT}5d^Rm0fgQfg%eUG&gxW;*3AN8j|(xAh>nnE*RZ`}ky<ZX z-D|E+Q_B<q0WnbA9tp?j+ED}$n2ANYSw2X4rgim^#SGEA_12syb+cTU3qOvBc1Pge zw1?v+p>!Pm{`q#iHta!xnC^R?m_Q@|?50DZtz*7Mh`|KO^aG>_M9#Xg_hz98AVNqq zvkbx!00Wu89c}csj2JSqYg+5IcTfolWFkaHVj(P8_w91I=y7B&P_l^%3jvhE!2J1f zeEZF}VJ@YbMNdvG3anmURdNwNO?hQz6Ne803Kxnf;qj->pO!i#+wJ_V^FhsAvOqxX zFgF3(I+r0&i4!$qNkn7hw(*Q=A_OYJ-GY$`K-q#c(R;*fYFs7dLU{#<Q!<wb$;@i4 znbthkJOMPw%Pd6}j+T)a#X7jUH+4k-lIt}m(Tt?=6qF1NEQAnBDFup|`zv3e@x4NE SMLHV;5O})!xvX<aXaWGkbO&Al diff --git a/images/preview-dark.png b/images/preview-dark.png deleted file mode 100644 index 57fbd70b2ad8535850f3a6f120a39de42eaa838d..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 67642 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 diff --git a/images/preview-darker.png b/images/preview-darker.png deleted file mode 100644 index decbc1977426ebd0c022184449f2125cf6d66701..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 67621 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 Ef|iHEF8}}l diff --git a/images/preview-light.png b/images/preview-light.png deleted file mode 100644 index 8263befca65f4da45c526526c10d2194cf261d74..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 71202 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 diff --git a/m4/arc-enable.m4 b/m4/arc-enable.m4 deleted file mode 100644 index a34e8c1..0000000 --- a/m4/arc-enable.m4 +++ /dev/null @@ -1,19 +0,0 @@ -# ARC_ENABLE(VARIABLE, FEATURE, HELP-NAME, DISABLE/ENABLE) -# ----------------------------------------------------------- -AC_DEFUN([ARC_ENABLE], [ - AC_ARG_ENABLE( - [$2], - [AS_HELP_STRING( - [--$4-$2], - [$4 $3 support] - )], - [ENABLE_$1="$enableval"], - [AS_IF( - [test "x$4" = "xdisable"], - [ENABLE_$1="yes"], - [ENABLE_$1="no"] - )] - ) - AM_CONDITIONAL([ENABLE_$1], [test "x$ENABLE_$1" = "xyes"]) - AC_SUBST([ENABLE_$1]) -]) diff --git a/m4/arc-gnome.m4 b/m4/arc-gnome.m4 deleted file mode 100644 index 11a25db..0000000 --- a/m4/arc-gnome.m4 +++ /dev/null @@ -1,38 +0,0 @@ -# ARC_GNOME() -# --------------- -AC_DEFUN([ARC_GNOME], [ - GNOMEDIR="$srcdir/common/gtk-3.0" - PKG_PROG_PKG_CONFIG() - AC_ARG_WITH( - [gnome], - [AS_HELP_STRING( - [--with-gnome], - [GNOME minor version] - )], - [GNOME_VERSION="$withval"], - [PKG_CHECK_EXISTS( - [gtk+-3.0], - [GNOME_VERSION=`$PKG_CONFIG --modversion gtk+-3.0`], - [AC_MSG_ERROR([Could not determine GNOME version. Install GTK3 and its development files (libgtk-3-dev for Debian/Ubuntu based distros and gtk3-devel for RPM based distros).])] - )] - ) - - # Trim version extras - GNOME_VERSION=`echo $GNOME_VERSION | cut -d. -f-2` - - # Extra major and minor version components - GNOME_VERSMJR=`echo $GNOME_VERSION | cut -d. -f1` - GNOME_VERSMNR=`echo $GNOME_VERSION | cut -d. -f2` - - # Evenize the minor version for stable versions - AS_IF( - [test `expr $GNOME_VERSMNR % 2` != "0"], - [GNOME_VERSION="$GNOME_VERSMJR.`expr $GNOME_VERSMNR + 1`"] - ) - AS_IF( - [! test -e "$GNOMEDIR/$GNOME_VERSION"], - [AC_MSG_ERROR([Invalid GNOME version: $GNOME_VERSION])] - ) - AC_SUBST([GNOME_VERSION]) - AC_MSG_RESULT([Building for GNOME $GNOME_VERSION]) -]) diff --git a/package.json b/package.json deleted file mode 100644 index 2f2b367..0000000 --- a/package.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "devDependencies": { - "gulp": "^3.9", - "gulp-sass": "^2.2", - "gulp-rename": "^1.2" - } -} diff --git a/solarc-theme-upgrade b/solarc-theme-upgrade deleted file mode 100755 index 1eae585..0000000 --- a/solarc-theme-upgrade +++ /dev/null @@ -1,148 +0,0 @@ -#!/bin/sh - -# Script to upgrade/install the solarc-theme - -#URL -theme_name=solarc-theme - -# Theme name -download_url=https://github.com/apheleia/$theme_name/archive/master.tar.gz - -# for test purporses only (the repo needs to have this script) -# download_url=https://github.com/leoheck/$theme_name/archive/master.tar.gz - -# Tempdir -tempdir=/tmp/$theme_name - -# Directories -lightdir=/usr/share/themes/SolArc -darkerdir=/usr/share/themes/SolArc-Darker -darkdir=/usr/share/themes/SolArc-Dark - -userlightdir=$HOME/.themes/SolArc -userdarkerdir=$HOME/.themes/SolArc-Darker -userdarkdir=$HOME/.themes/SolArc-Dark - -userlightdir2=$HOME/local/share/themes/SolArc -userdarkerdir2=$HOME/local/share/themes/SolArc-Darker -userdarkdir2=$HOME/local/share/themes/SolArc-Dark - -#Functions -show_error() { - printf "\033[1;31m$@\033[0m\n" -} - -check_root() { - if [ "$(id -u)" -ne 0 ]; then - show_error "This script has to be run as root" - echo - exec sudo "$0" "$@" # Instead of exit, just re-execute as root - fi -} - -check_command() { - fail=false - - for i in "$@" - do - command -v $i >/dev/null 2>&1 || { show_error >&2 "This script requires "$i" but it's not installed."; fail=true; } - done - - if [ "$fail" = true ]; then - echo - echo "Aborting." - echo - exit 1; - fi -} - -check_directories() { - dirfound=false - - echo "Checking if theme is installed..." - echo - - for i in "$@" - do - if [ -d "$i" ]; then - echo "Found $i" - dirfound=true - fi - done - - if [ "$dirfound" = true ]; then - echo - echo "The above directories will be overwritten." - fi - - if [ "$dirfound" = false ]; then - echo "Theme is not installed." - fi -} - -install_theme() { - # Clean tempdir - rm -rf $tempdir && mkdir $tempdir && cd $tempdir - - # Get the sources && Remove current installation only if download and unpack are successful - wget $download_url && tar xf master.tar.gz && rm -rf $lightdir $darkerdir $darkdir && cd "$theme_name"-master - - # Build and install - ./autogen.sh --prefix=/usr - make install - - # Install this script - if [ -f $(basename $0) ]; then - if [ ! -f /usr/bin/$(basename $0) ]; then - echo - read -r -p "Do you like to install the $(basename $0) for future upgrades? [y/N] " response - case $response in - [yY][eE][sS]|[yY]) - echo "Installing $(basename $0) on /usr/bin/" - cp -r solarc-theme-upgrade /usr/bin/ - ;; - *) - echo "Aborted by user" - exit 0; - ;; - esac - else - echo "Upgrading $(basename $0)" - cp -f $(basename $0) /usr/bin/ - fi - fi - - # Remove the sources - rm -rf $tempdir - - echo - echo "Installation complete." -} - -# Main part -clear -echo '####################################' -echo '# SolArc Theme Install Script #' -echo '####################################' -echo - -#Check available commands -check_command automake wget pkg-config autoconf make tar - -#Check if we are root -check_root - -#Check if theme is installed -check_directories $lightdir $darkerdir $darkdir - -echo -read -r -p "Do you want to continue installation? [y/N] " response -case $response in - [yY][eE][sS]|[yY]) - install_theme - ;; - *) - echo "Aborted by user" - exit 0; - ;; -esac From b35c02d33d1596879c6c184d36cc08d1cbce65b0 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 27 Feb 2019 17:12:35 +0000 Subject: [PATCH 18/76] Removed autogen flags disabling theme builds for unity, metacity, gnome-shell, cinnamon --- solarize.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solarize.sh b/solarize.sh index 75401bb..79c62f6 100755 --- a/solarize.sh +++ b/solarize.sh @@ -10,7 +10,7 @@ BUILDDIR="`pwd`/build" GTK3VER="3.22" # Theme types to actually build (or rather, not build =P) -AUTOGENFLAGS="--prefix=${BUILDDIR}/usr --with-gnome=${GTK3VER} --disable-transparency --disable-cinnamon --disable-gnome-shell --disable-metacity --disable-unity" +AUTOGENFLAGS="--prefix=${BUILDDIR}/usr --with-gnome=${GTK3VER}" # Pull the Arc source wget "https://github.com/horst3180/arc-theme/archive/${ARCVERSION}.tar.gz" From 6e802ace0d27f7f303d6e004de02aa30a90bb6e8 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Mon, 15 Apr 2019 20:35:09 +0100 Subject: [PATCH 19/76] Fix for inactive/disabled GTK2 widget colour --- solarize.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/solarize.sh b/solarize.sh index 79c62f6..7ef083f 100755 --- a/solarize.sh +++ b/solarize.sh @@ -61,6 +61,7 @@ A_ASSET_DARK2="313541" A_ASSET_GREY="bebebe" A_ASSET_BORDER="2c303a" A_ASSET_LIGHTER_BG="3e4350" +A_ASSET_LIGHTER_BG_FIX="3e4351" # This seems to be an upstream bug A_ASSET_VARIOUS_DARK1="262934" A_ASSET_VARIOUS_DARK2="2d303b" A_ASSET_VARIOUS_DARK3="2d323d" @@ -70,6 +71,8 @@ A_GTK2_TOOLBAR="70788d" A_GTK2_TOOLBAR_DARK="afb8c5" A_CLOSE_BUTTON_GREY="f8f8f9" A_LIGHT_BG="f5f6f7" +## RC +A_GTK2_INSENSITIVE_FG_COLOR="7c818c" # Solarized colors ## Common @@ -92,8 +95,8 @@ S_BASE2="eee8d5" S_BASE3="fdf6e3" FILETYPES=('scss' 'svg' 'xpm' 'xml' 'rc') -ARC_COLORS=( "$A_BASE" "$A_TEXT" "$A_BG" "$A_FG" "$A_SELECTED_FG" "$A_SELECTED_BG" "$A_WARNING" "$A_ERROR" "$A_SUCCESS" "$A_DESTRUCTIVE" "$A_SUGGESTED" "$A_DROP_TARGET" "$A_WM_BUTTON_CLOSE_BG" "$A_WM_BUTTON_CLOSE_HOVER_BG" "$A_WM_BUTTON_CLOSE_ACTIVE_BG" "$A_WM_ICON_CLOSE_BG" "$A_WM_BUTTON_HOVER_BG" "$A_WM_BUTTON_ACTIVE_BG" "$A_WM_BUTTON_HOVER_BORDER" "$A_WM_ICON_BG" "$A_WM_ICON_UNFOCUSED_BG" "$A_WM_ICON_HOVER_BG" "$A_WM_ICON_ACTIVE_BG" "$A_WINDOW_BG" "$A_DARK_SIDEBAR_FG" "$A_ENTRY_BORDER" "$A_BLUE" "$A_WHITE" "$A_GREY" "$A_DARK" "$A_DARKEST" "$A_DARKEST2" "$A_DARK_BUTTON" "$A_LIGHT_BUTTON" "$A_OTHER_LIGHT_BUTTON" "$A_MODAL" "$A_ASSET_DARK" "$A_ASSET_DARK2" "$A_ASSET_GREY" "$A_ASSET_BORDER" "$A_ASSET_LIGHTER_BG" "$A_ASSET_VARIOUS_DARK1" "$A_ASSET_VARIOUS_DARK2" "$A_ASSET_VARIOUS_DARK3" "$A_GNOME_PANEL_BG" "$A_GNOME_PANEL_BORDER" "$A_GTK2_TOOLBAR" "$A_GTK2_TOOLBAR_DARK" "$A_CLOSE_BUTTON_GREY" "$A_LIGHT_BG") -SOLARIZED_COLORS=("$S_BASE03" "$S_BASE0" "$S_BASE02" "$S_BASE0" "$S_BASE3" "$S_BLUE" "$S_ORANGE" "$S_RED" "$S_GREEN" "$S_RED" "$S_CYAN" "$S_YELLOW" "$S_RED" "$S_ORANGE" "$S_RED" "$S_BASE03" "$S_BASE00" "$S_BLUE" "$S_BASE03" "$S_BASE1" "$S_BASE00" "$S_BASE1" "$S_BASE3" "$S_BASE02" "$S_BASE00" "$S_BASE00" "$S_BLUE" "$S_BASE3" "$S_BASE2" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE02" "$S_BASE02" "$S_BASE03" "$S_BASE03" "$S_BASE02" "$S_BASE00" "$S_BASE00" "$S_BASE02" "$S_BASE00" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE0" "$S_BASE00" "$S_BASE02" "$S_BASE2") +ARC_COLORS=( "$A_BASE" "$A_TEXT" "$A_BG" "$A_FG" "$A_SELECTED_FG" "$A_SELECTED_BG" "$A_WARNING" "$A_ERROR" "$A_SUCCESS" "$A_DESTRUCTIVE" "$A_SUGGESTED" "$A_DROP_TARGET" "$A_WM_BUTTON_CLOSE_BG" "$A_WM_BUTTON_CLOSE_HOVER_BG" "$A_WM_BUTTON_CLOSE_ACTIVE_BG" "$A_WM_ICON_CLOSE_BG" "$A_WM_BUTTON_HOVER_BG" "$A_WM_BUTTON_ACTIVE_BG" "$A_WM_BUTTON_HOVER_BORDER" "$A_WM_ICON_BG" "$A_WM_ICON_UNFOCUSED_BG" "$A_WM_ICON_HOVER_BG" "$A_WM_ICON_ACTIVE_BG" "$A_WINDOW_BG" "$A_DARK_SIDEBAR_FG" "$A_ENTRY_BORDER" "$A_BLUE" "$A_WHITE" "$A_GREY" "$A_DARK" "$A_DARKEST" "$A_DARKEST2" "$A_DARK_BUTTON" "$A_LIGHT_BUTTON" "$A_OTHER_LIGHT_BUTTON" "$A_MODAL" "$A_ASSET_DARK" "$A_ASSET_DARK2" "$A_ASSET_GREY" "$A_ASSET_BORDER" "$A_ASSET_LIGHTER_BG" "$A_ASSET_LIGHTER_BG_FIX" "$A_ASSET_VARIOUS_DARK1" "$A_ASSET_VARIOUS_DARK2" "$A_ASSET_VARIOUS_DARK3" "$A_GNOME_PANEL_BG" "$A_GNOME_PANEL_BORDER" "$A_GTK2_TOOLBAR" "$A_GTK2_TOOLBAR_DARK" "$A_CLOSE_BUTTON_GREY" "$A_LIGHT_BG" "$A_GTK2_INSENSITIVE_FG_COLOR") +SOLARIZED_COLORS=("$S_BASE03" "$S_BASE0" "$S_BASE02" "$S_BASE0" "$S_BASE3" "$S_BLUE" "$S_ORANGE" "$S_RED" "$S_GREEN" "$S_RED" "$S_CYAN" "$S_YELLOW" "$S_RED" "$S_ORANGE" "$S_RED" "$S_BASE03" "$S_BASE00" "$S_BLUE" "$S_BASE03" "$S_BASE1" "$S_BASE00" "$S_BASE1" "$S_BASE3" "$S_BASE02" "$S_BASE00" "$S_BASE00" "$S_BLUE" "$S_BASE3" "$S_BASE2" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE02" "$S_BASE02" "$S_BASE03" "$S_BASE03" "$S_BASE02" "$S_BASE00" "$S_BASE00" "$S_BASE02" "$S_BASE02" "$S_BASE00" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE0" "$S_BASE00" "$S_BASE02" "$S_BASE2" "$S_BASE01") CWD="`pwd`/arc-theme-${ARCVERSION}" cd "${CWD}" From ad953bdab8bca816c9be3c4c4a0da1f7862b2a3c Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Mon, 15 Apr 2019 22:36:34 +0100 Subject: [PATCH 20/76] Changed source to new upsteam, and fixed unpacking for .xz etc. --- solarize.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/solarize.sh b/solarize.sh index 7ef083f..701da5d 100755 --- a/solarize.sh +++ b/solarize.sh @@ -1,7 +1,7 @@ #!/bin/bash # Github release to base from -ARCVERSION="20170302" +ARCVERSION="20190330" # Directory to spit the clean themes out to BUILDDIR="`pwd`/build" @@ -13,9 +13,9 @@ GTK3VER="3.22" AUTOGENFLAGS="--prefix=${BUILDDIR}/usr --with-gnome=${GTK3VER}" # Pull the Arc source -wget "https://github.com/horst3180/arc-theme/archive/${ARCVERSION}.tar.gz" -tar -xzf "${ARCVERSION}.tar.gz" -rm "${ARCVERSION}.tar.gz" +wget "https://github.com/NicoHood/arc-theme/releases/download/${ARCVERSION}/arc-theme-${ARCVERSION}.tar.xz" +tar -xJf "arc-theme-${ARCVERSION}.tar.xz" +rm "arc-theme-${ARCVERSION}.tar.xz" # Arc colors ## SCSS From 47adfa2ddeb1e24457c03f585f742e9e6b1596b2 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 17 Apr 2019 16:59:32 +0100 Subject: [PATCH 21/76] Added gnome (shell) version flags, and plank & openbox disable flags (no support yet) --- solarize.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/solarize.sh b/solarize.sh index 701da5d..18738a7 100755 --- a/solarize.sh +++ b/solarize.sh @@ -9,8 +9,11 @@ BUILDDIR="`pwd`/build" # 3.22 has to be used to target 3.24 GTK3VER="3.22" +# Gnome shell version, if not autodetecting +GNOMEVER="3.28" + # Theme types to actually build (or rather, not build =P) -AUTOGENFLAGS="--prefix=${BUILDDIR}/usr --with-gnome=${GTK3VER}" +AUTOGENFLAGS="--prefix=${BUILDDIR}/usr --with-gnome=${GTK3VER} --with-gnome-shell=${GNOMEVER} --disable-plank --disable-openbox" # plank & openbox not patched atm. # Pull the Arc source wget "https://github.com/NicoHood/arc-theme/releases/download/${ARCVERSION}/arc-theme-${ARCVERSION}.tar.xz" From f7dad2e6a0fa562f4ca30c6d2d3106b3e6d1afc8 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 17 Apr 2019 17:02:04 +0100 Subject: [PATCH 22/76] patched Arc->SolArc in configure.ac --- solarize.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/solarize.sh b/solarize.sh index 18738a7..872507d 100755 --- a/solarize.sh +++ b/solarize.sh @@ -161,6 +161,7 @@ cp common/gtk-2.0/assets-dark/menubar_button.png common/gtk-2.0/menubar-toolbar/ for PATTERN in "Makefile.am" "index.theme*" "metacity-theme-*.xml"; do find "${CWD}/common" -name "${PATTERN}" -exec sed -i "s/Arc/SolArc/g" {} \; done +sed -i "s/Arc/SolArc/g" configure.ac; npm install gulp gulp-sass gulp-rename # NOTE: gulp below requires these node modules From a19653a75962b0192d1738008ee0afe7ca78dcfa Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 17 Apr 2019 20:06:17 +0100 Subject: [PATCH 23/76] Reworked find/replace arrays to assoc array (bash v4+) --- solarize.sh | 63 ++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 57 insertions(+), 6 deletions(-) diff --git a/solarize.sh b/solarize.sh index 872507d..2169009 100755 --- a/solarize.sh +++ b/solarize.sh @@ -98,8 +98,59 @@ S_BASE2="eee8d5" S_BASE3="fdf6e3" FILETYPES=('scss' 'svg' 'xpm' 'xml' 'rc') -ARC_COLORS=( "$A_BASE" "$A_TEXT" "$A_BG" "$A_FG" "$A_SELECTED_FG" "$A_SELECTED_BG" "$A_WARNING" "$A_ERROR" "$A_SUCCESS" "$A_DESTRUCTIVE" "$A_SUGGESTED" "$A_DROP_TARGET" "$A_WM_BUTTON_CLOSE_BG" "$A_WM_BUTTON_CLOSE_HOVER_BG" "$A_WM_BUTTON_CLOSE_ACTIVE_BG" "$A_WM_ICON_CLOSE_BG" "$A_WM_BUTTON_HOVER_BG" "$A_WM_BUTTON_ACTIVE_BG" "$A_WM_BUTTON_HOVER_BORDER" "$A_WM_ICON_BG" "$A_WM_ICON_UNFOCUSED_BG" "$A_WM_ICON_HOVER_BG" "$A_WM_ICON_ACTIVE_BG" "$A_WINDOW_BG" "$A_DARK_SIDEBAR_FG" "$A_ENTRY_BORDER" "$A_BLUE" "$A_WHITE" "$A_GREY" "$A_DARK" "$A_DARKEST" "$A_DARKEST2" "$A_DARK_BUTTON" "$A_LIGHT_BUTTON" "$A_OTHER_LIGHT_BUTTON" "$A_MODAL" "$A_ASSET_DARK" "$A_ASSET_DARK2" "$A_ASSET_GREY" "$A_ASSET_BORDER" "$A_ASSET_LIGHTER_BG" "$A_ASSET_LIGHTER_BG_FIX" "$A_ASSET_VARIOUS_DARK1" "$A_ASSET_VARIOUS_DARK2" "$A_ASSET_VARIOUS_DARK3" "$A_GNOME_PANEL_BG" "$A_GNOME_PANEL_BORDER" "$A_GTK2_TOOLBAR" "$A_GTK2_TOOLBAR_DARK" "$A_CLOSE_BUTTON_GREY" "$A_LIGHT_BG" "$A_GTK2_INSENSITIVE_FG_COLOR") -SOLARIZED_COLORS=("$S_BASE03" "$S_BASE0" "$S_BASE02" "$S_BASE0" "$S_BASE3" "$S_BLUE" "$S_ORANGE" "$S_RED" "$S_GREEN" "$S_RED" "$S_CYAN" "$S_YELLOW" "$S_RED" "$S_ORANGE" "$S_RED" "$S_BASE03" "$S_BASE00" "$S_BLUE" "$S_BASE03" "$S_BASE1" "$S_BASE00" "$S_BASE1" "$S_BASE3" "$S_BASE02" "$S_BASE00" "$S_BASE00" "$S_BLUE" "$S_BASE3" "$S_BASE2" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE02" "$S_BASE02" "$S_BASE03" "$S_BASE03" "$S_BASE02" "$S_BASE00" "$S_BASE00" "$S_BASE02" "$S_BASE02" "$S_BASE00" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE03" "$S_BASE0" "$S_BASE00" "$S_BASE02" "$S_BASE2" "$S_BASE01") +declare -A REPLACE +REPLACE[$A_BASE]=$S_BASE03 +REPLACE[$A_TEXT]=$S_BASE0 +REPLACE[$A_BG]=$S_BASE02 +REPLACE[$A_FG]=$S_BASE0 +REPLACE[$A_SELECTED_FG]=$S_BASE3 +REPLACE[$A_SELECTED_BG]=$S_BLUE +REPLACE[$A_WARNING]=$S_ORANGE +REPLACE[$A_ERROR]=$S_RED +REPLACE[$A_SUCCESS]=$S_GREEN +REPLACE[$A_DESTRUCTIVE]=$S_RED +REPLACE[$A_SUGGESTED]=$S_CYAN +REPLACE[$A_DROP_TARGET]=$S_YELLOW +REPLACE[$A_WM_BUTTON_CLOSE_BG]=$S_RED +REPLACE[$A_WM_BUTTON_CLOSE_HOVER_BG]=$S_ORANGE +REPLACE[$A_WM_BUTTON_CLOSE_ACTIVE_BG]=$S_RED +REPLACE[$A_WM_ICON_CLOSE_BG]=$S_BASE03 +REPLACE[$A_WM_BUTTON_HOVER_BG]=$S_BASE00 +REPLACE[$A_WM_BUTTON_ACTIVE_BG]=$S_BLUE +REPLACE[$A_WM_BUTTON_HOVER_BORDER]=$S_BASE03 +REPLACE[$A_WM_ICON_BG]=$S_BASE1 +REPLACE[$A_WM_ICON_UNFOCUSED_BG]=$S_BASE00 +REPLACE[$A_WM_ICON_HOVER_BG]=$S_BASE1 +REPLACE[$A_WM_ICON_ACTIVE_BG]=$S_BASE3 +REPLACE[$A_WINDOW_BG]=$S_BASE02 +REPLACE[$A_DARK_SIDEBAR_FG]=$S_BASE00 +REPLACE[$A_ENTRY_BORDER]=$S_BASE00 +REPLACE[$A_BLUE]=$S_BLUE +REPLACE[$A_WHITE]=$S_BASE3 +REPLACE[$A_GREY]=$S_BASE2 +REPLACE[$A_DARK]=$S_BASE03 +REPLACE[$A_DARKEST]=$S_BASE03 +REPLACE[$A_DARKEST2]=$S_BASE03 +REPLACE[$A_DARK_BUTTON]=$S_BASE03 +REPLACE[$A_LIGHT_BUTTON]=$S_BASE02 +REPLACE[$A_OTHER_LIGHT_BUTTON]=$S_BASE02 +REPLACE[$A_MODAL]=$S_BASE03 +REPLACE[$A_ASSET_DARK]=$S_BASE03 +REPLACE[$A_ASSET_DARK2]=$S_BASE02 +REPLACE[$A_ASSET_GREY]=$S_BASE00 +REPLACE[$A_ASSET_BORDER]=$S_BASE00 +REPLACE[$A_ASSET_LIGHTER_BG]=$S_BASE02 +REPLACE[$A_ASSET_LIGHTER_BG_FIX]=$S_BASE02 +REPLACE[$A_ASSET_VARIOUS_DARK1]=$S_BASE00 +REPLACE[$A_ASSET_VARIOUS_DARK2]=$S_BASE03 +REPLACE[$A_ASSET_VARIOUS_DARK3]=$S_BASE03 +REPLACE[$A_GNOME_PANEL_BG]=$S_BASE03 +REPLACE[$A_GNOME_PANEL_BORDER]=$S_BASE03 +REPLACE[$A_GTK2_TOOLBAR]=$S_BASE0 +REPLACE[$A_GTK2_TOOLBAR_DARK]=$S_BASE00 +REPLACE[$A_CLOSE_BUTTON_GREY]=$S_BASE02 +REPLACE[$A_LIGHT_BG]=$S_BASE2 +REPLACE[$A_GTK2_INSENSITIVE_FG_COLOR]=$S_BASE01 CWD="`pwd`/arc-theme-${ARCVERSION}" cd "${CWD}" @@ -108,15 +159,15 @@ echo "### Replacing arc colors with solarized colors" for filetype in "${FILETYPES[@]}" do echo "## Replacing in ${filetype}" - for index in ${!ARC_COLORS[*]} + for K in ${!REPLACE[@]} do - find . -name "*.${filetype}" -exec sed -i "s/${ARC_COLORS[$index]}/${SOLARIZED_COLORS[$index]}/Ig" {} \; + find . -name "*.${filetype}" -exec sed -i "s/${K}/${REPLACE[$K]}/Ig" {} \; done done echo "## Replacing in gtk-2.0 rc" -for index in ${!ARC_COLORS[*]} +for K in ${!REPLACE[@]} do - find . -type f -name "gtkrc*" -exec sed -i "s/${ARC_COLORS[$index]}/${SOLARIZED_COLORS[$index]}/Ig" {} \; + find . -type f -name "gtkrc*" -exec sed -i "s/${K}/${REPLACE[$K]}/Ig" {} \; done echo "" From f3f5ca359236f3d9d6aba9de6df6ff08ae648b6b Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 17 Apr 2019 20:53:33 +0100 Subject: [PATCH 24/76] Note & comment out duplicate replacements --- solarize.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/solarize.sh b/solarize.sh index 2169009..3770ff5 100755 --- a/solarize.sh +++ b/solarize.sh @@ -49,11 +49,11 @@ A_WINDOW_BG="353945" A_DARK_SIDEBAR_FG="bac3cf" A_ENTRY_BORDER="cfd6e6" ## SVG -A_BLUE="5294e2" +A_BLUE="5294e2" # Duplicate of $A_SELECTED_BG A_WHITE="f9fafb" A_GREY="e7e8eb" -A_DARK="383c4a" -A_DARKEST="2f343f" +A_DARK="383c4a" # Duplicate of $A_BG +A_DARKEST="2f343f" # Duplicate of $A_WM_ICON_CLOSE_BG A_DARKEST2="2f343d" A_DARK_BUTTON="353a47" A_LIGHT_BUTTON="2d323f" @@ -125,11 +125,11 @@ REPLACE[$A_WM_ICON_ACTIVE_BG]=$S_BASE3 REPLACE[$A_WINDOW_BG]=$S_BASE02 REPLACE[$A_DARK_SIDEBAR_FG]=$S_BASE00 REPLACE[$A_ENTRY_BORDER]=$S_BASE00 -REPLACE[$A_BLUE]=$S_BLUE +#REPLACE[$A_BLUE]=$S_BLUE # Duplicate of $A_SELECTED_BG REPLACE[$A_WHITE]=$S_BASE3 REPLACE[$A_GREY]=$S_BASE2 -REPLACE[$A_DARK]=$S_BASE03 -REPLACE[$A_DARKEST]=$S_BASE03 +#REPLACE[$A_DARK]=$S_BASE03 # Duplicate of $A_BG +#REPLACE[$A_DARKEST]=$S_BASE03 # Duplicate of $A_WM_ICON_CLOSE_BG REPLACE[$A_DARKEST2]=$S_BASE03 REPLACE[$A_DARK_BUTTON]=$S_BASE03 REPLACE[$A_LIGHT_BUTTON]=$S_BASE02 From 3208f81ba4439e86f77d6f4820d7de23c03fc6c2 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 17 Apr 2019 20:54:06 +0100 Subject: [PATCH 25/76] Removed dupes from REPLACE array --- solarize.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/solarize.sh b/solarize.sh index 3770ff5..f642364 100755 --- a/solarize.sh +++ b/solarize.sh @@ -125,11 +125,8 @@ REPLACE[$A_WM_ICON_ACTIVE_BG]=$S_BASE3 REPLACE[$A_WINDOW_BG]=$S_BASE02 REPLACE[$A_DARK_SIDEBAR_FG]=$S_BASE00 REPLACE[$A_ENTRY_BORDER]=$S_BASE00 -#REPLACE[$A_BLUE]=$S_BLUE # Duplicate of $A_SELECTED_BG REPLACE[$A_WHITE]=$S_BASE3 REPLACE[$A_GREY]=$S_BASE2 -#REPLACE[$A_DARK]=$S_BASE03 # Duplicate of $A_BG -#REPLACE[$A_DARKEST]=$S_BASE03 # Duplicate of $A_WM_ICON_CLOSE_BG REPLACE[$A_DARKEST2]=$S_BASE03 REPLACE[$A_DARK_BUTTON]=$S_BASE03 REPLACE[$A_LIGHT_BUTTON]=$S_BASE02 From 55e6b62348f403184988050e65696c2ca8bf11cb Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 17 Apr 2019 22:20:51 +0100 Subject: [PATCH 26/76] Tweaked GTK2 insensitive BG to match GTK3 theme --- solarize.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/solarize.sh b/solarize.sh index f642364..f1fe5ed 100755 --- a/solarize.sh +++ b/solarize.sh @@ -136,8 +136,6 @@ REPLACE[$A_ASSET_DARK]=$S_BASE03 REPLACE[$A_ASSET_DARK2]=$S_BASE02 REPLACE[$A_ASSET_GREY]=$S_BASE00 REPLACE[$A_ASSET_BORDER]=$S_BASE00 -REPLACE[$A_ASSET_LIGHTER_BG]=$S_BASE02 -REPLACE[$A_ASSET_LIGHTER_BG_FIX]=$S_BASE02 REPLACE[$A_ASSET_VARIOUS_DARK1]=$S_BASE00 REPLACE[$A_ASSET_VARIOUS_DARK2]=$S_BASE03 REPLACE[$A_ASSET_VARIOUS_DARK3]=$S_BASE03 @@ -148,6 +146,9 @@ REPLACE[$A_GTK2_TOOLBAR_DARK]=$S_BASE00 REPLACE[$A_CLOSE_BUTTON_GREY]=$S_BASE02 REPLACE[$A_LIGHT_BG]=$S_BASE2 REPLACE[$A_GTK2_INSENSITIVE_FG_COLOR]=$S_BASE01 +# GTK2 tweaks +REPLACE[$A_ASSET_LIGHTER_BG]="033441" +REPLACE[$A_ASSET_LIGHTER_BG_FIX]="033441" CWD="`pwd`/arc-theme-${ARCVERSION}" cd "${CWD}" From 0be88044483b9cd7d73fe555103f3afceffbf553 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 17 Apr 2019 22:24:40 +0100 Subject: [PATCH 27/76] Tweaked GTK2 button/widget colour to match GTK3 --- solarize.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solarize.sh b/solarize.sh index f1fe5ed..3e9bae4 100755 --- a/solarize.sh +++ b/solarize.sh @@ -130,7 +130,6 @@ REPLACE[$A_GREY]=$S_BASE2 REPLACE[$A_DARKEST2]=$S_BASE03 REPLACE[$A_DARK_BUTTON]=$S_BASE03 REPLACE[$A_LIGHT_BUTTON]=$S_BASE02 -REPLACE[$A_OTHER_LIGHT_BUTTON]=$S_BASE02 REPLACE[$A_MODAL]=$S_BASE03 REPLACE[$A_ASSET_DARK]=$S_BASE03 REPLACE[$A_ASSET_DARK2]=$S_BASE02 @@ -149,6 +148,7 @@ REPLACE[$A_GTK2_INSENSITIVE_FG_COLOR]=$S_BASE01 # GTK2 tweaks REPLACE[$A_ASSET_LIGHTER_BG]="033441" REPLACE[$A_ASSET_LIGHTER_BG_FIX]="033441" +REPLACE[$A_OTHER_LIGHT_BUTTON]="003340" CWD="`pwd`/arc-theme-${ARCVERSION}" cd "${CWD}" From 7a865c880e526ff39cf3af224b6785b4c3c9467a Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 17 Apr 2019 22:28:06 +0100 Subject: [PATCH 28/76] Added GTK2 tweak for insensitive widget stroke --- solarize.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/solarize.sh b/solarize.sh index 3e9bae4..ea3ca8a 100755 --- a/solarize.sh +++ b/solarize.sh @@ -74,8 +74,9 @@ A_GTK2_TOOLBAR="70788d" A_GTK2_TOOLBAR_DARK="afb8c5" A_CLOSE_BUTTON_GREY="f8f8f9" A_LIGHT_BG="f5f6f7" -## RC +## GTK2 A_GTK2_INSENSITIVE_FG_COLOR="7c818c" +A_GTK2_INSENSITIVE_STROKE="303440" # Solarized colors ## Common @@ -149,6 +150,7 @@ REPLACE[$A_GTK2_INSENSITIVE_FG_COLOR]=$S_BASE01 REPLACE[$A_ASSET_LIGHTER_BG]="033441" REPLACE[$A_ASSET_LIGHTER_BG_FIX]="033441" REPLACE[$A_OTHER_LIGHT_BUTTON]="003340" +REPLACE[$A_GTK2_INSENSITIVE_STROKE]="052932" CWD="`pwd`/arc-theme-${ARCVERSION}" cd "${CWD}" From 47186351b7daf9d9b256821a3097851a92052091 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 17 Apr 2019 23:25:08 +0100 Subject: [PATCH 29/76] GTK2 tweak for (non-in)sensitive widget stroke --- solarize.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/solarize.sh b/solarize.sh index ea3ca8a..a4cad94 100755 --- a/solarize.sh +++ b/solarize.sh @@ -75,6 +75,7 @@ A_GTK2_TOOLBAR_DARK="afb8c5" A_CLOSE_BUTTON_GREY="f8f8f9" A_LIGHT_BG="f5f6f7" ## GTK2 +A_GTK2_SENSITIVE_STROKE="2b2e39" A_GTK2_INSENSITIVE_FG_COLOR="7c818c" A_GTK2_INSENSITIVE_STROKE="303440" @@ -150,6 +151,7 @@ REPLACE[$A_GTK2_INSENSITIVE_FG_COLOR]=$S_BASE01 REPLACE[$A_ASSET_LIGHTER_BG]="033441" REPLACE[$A_ASSET_LIGHTER_BG_FIX]="033441" REPLACE[$A_OTHER_LIGHT_BUTTON]="003340" +REPLACE[$A_GTK2_SENSITIVE_STROKE]="041f26" REPLACE[$A_GTK2_INSENSITIVE_STROKE]="052932" CWD="`pwd`/arc-theme-${ARCVERSION}" From 41daa13db69929957b1e3c398ee78e8904f034b0 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 18 Apr 2019 01:21:16 +0100 Subject: [PATCH 30/76] GTK2 tweak for hovered buttons/widgets --- solarize.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/solarize.sh b/solarize.sh index a4cad94..52b44de 100755 --- a/solarize.sh +++ b/solarize.sh @@ -78,6 +78,7 @@ A_LIGHT_BG="f5f6f7" A_GTK2_SENSITIVE_STROKE="2b2e39" A_GTK2_INSENSITIVE_FG_COLOR="7c818c" A_GTK2_INSENSITIVE_STROKE="303440" +A_GTK2_BUTTON_HOVER="505666" # Solarized colors ## Common @@ -153,6 +154,7 @@ REPLACE[$A_ASSET_LIGHTER_BG_FIX]="033441" REPLACE[$A_OTHER_LIGHT_BUTTON]="003340" REPLACE[$A_GTK2_SENSITIVE_STROKE]="041f26" REPLACE[$A_GTK2_INSENSITIVE_STROKE]="052932" +REPLACE[$A_GTK2_BUTTON_HOVER]="00475a" CWD="`pwd`/arc-theme-${ARCVERSION}" cd "${CWD}" From 38e9dec90b7eab58bbf253a862e590f4981a8293 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 18 Apr 2019 03:12:05 +0100 Subject: [PATCH 31/76] GTK2 tweak for scrollbars --- solarize.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/solarize.sh b/solarize.sh index 52b44de..87b9149 100755 --- a/solarize.sh +++ b/solarize.sh @@ -79,6 +79,9 @@ A_GTK2_SENSITIVE_STROKE="2b2e39" A_GTK2_INSENSITIVE_FG_COLOR="7c818c" A_GTK2_INSENSITIVE_STROKE="303440" A_GTK2_BUTTON_HOVER="505666" +A_GTK2_SCROLLBAR_BG="3e434f" +A_GTK2_SCROLLBAR_FG="767b87" +A_GTK2_SCROLLBAR_FG_HOVER="8f939d" # Solarized colors ## Common @@ -155,6 +158,9 @@ REPLACE[$A_OTHER_LIGHT_BUTTON]="003340" REPLACE[$A_GTK2_SENSITIVE_STROKE]="041f26" REPLACE[$A_GTK2_INSENSITIVE_STROKE]="052932" REPLACE[$A_GTK2_BUTTON_HOVER]="00475a" +REPLACE[$A_GTK2_SCROLLBAR_BG]="002731" +REPLACE[$A_GTK2_SCROLLBAR_FG]="395c64" +REPLACE[$A_GTK2_SCROLLBAR_FG_HOVER]="2c525b" CWD="`pwd`/arc-theme-${ARCVERSION}" cd "${CWD}" From b60ee92dcd53c30bc7fbff72c6d2fad7ac111fe2 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 18 Apr 2019 04:07:34 +0100 Subject: [PATCH 32/76] GTK2 tweak for slider stroke --- solarize.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/solarize.sh b/solarize.sh index 87b9149..e1faaf4 100755 --- a/solarize.sh +++ b/solarize.sh @@ -82,6 +82,7 @@ A_GTK2_BUTTON_HOVER="505666" A_GTK2_SCROLLBAR_BG="3e434f" A_GTK2_SCROLLBAR_FG="767b87" A_GTK2_SCROLLBAR_FG_HOVER="8f939d" +A_GTK2_SLIDER_STROKE="262933" # Solarized colors ## Common @@ -161,6 +162,7 @@ REPLACE[$A_GTK2_BUTTON_HOVER]="00475a" REPLACE[$A_GTK2_SCROLLBAR_BG]="002731" REPLACE[$A_GTK2_SCROLLBAR_FG]="395c64" REPLACE[$A_GTK2_SCROLLBAR_FG_HOVER]="2c525b" +REPLACE[$A_GTK2_SLIDER_STROKE]="041f26" CWD="`pwd`/arc-theme-${ARCVERSION}" cd "${CWD}" From 10df579c208500d1fcec5955bfeded01c62a8ed6 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 18 Apr 2019 13:14:19 +0100 Subject: [PATCH 33/76] Solarized GTK3 switch bg for the 'off' position --- solarize.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/solarize.sh b/solarize.sh index e1faaf4..de43174 100755 --- a/solarize.sh +++ b/solarize.sh @@ -74,6 +74,7 @@ A_GTK2_TOOLBAR="70788d" A_GTK2_TOOLBAR_DARK="afb8c5" A_CLOSE_BUTTON_GREY="f8f8f9" A_LIGHT_BG="f5f6f7" +A_SWITCH_OFF_BG="5b627b" ## GTK2 A_GTK2_SENSITIVE_STROKE="2b2e39" A_GTK2_INSENSITIVE_FG_COLOR="7c818c" @@ -152,6 +153,7 @@ REPLACE[$A_GTK2_TOOLBAR_DARK]=$S_BASE00 REPLACE[$A_CLOSE_BUTTON_GREY]=$S_BASE02 REPLACE[$A_LIGHT_BG]=$S_BASE2 REPLACE[$A_GTK2_INSENSITIVE_FG_COLOR]=$S_BASE01 +REPLACE[$A_SWITCH_OFF_BG]=$S_BASE01 # GTK2 tweaks REPLACE[$A_ASSET_LIGHTER_BG]="033441" REPLACE[$A_ASSET_LIGHTER_BG_FIX]="033441" From 2ac5921f84306f7e3e5fd67941d25ba200ff1256 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 25 Apr 2019 01:36:10 +0100 Subject: [PATCH 34/76] Tweaked GTK2 light insensitive widget colours --- solarize.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/solarize.sh b/solarize.sh index de43174..11de381 100755 --- a/solarize.sh +++ b/solarize.sh @@ -84,6 +84,9 @@ A_GTK2_SCROLLBAR_BG="3e434f" A_GTK2_SCROLLBAR_FG="767b87" A_GTK2_SCROLLBAR_FG_HOVER="8f939d" A_GTK2_SLIDER_STROKE="262933" +A_GTK2_LIGHT_INSENSITIVE_BG="fbfcfc" +A_GTK2_LIGHT_INSENSITIVE_FG="a9acb2" +A_GTK2_LIGHT_INSENSITIVE_STROKE="e2e7ef" # Solarized colors ## Common @@ -165,6 +168,9 @@ REPLACE[$A_GTK2_SCROLLBAR_BG]="002731" REPLACE[$A_GTK2_SCROLLBAR_FG]="395c64" REPLACE[$A_GTK2_SCROLLBAR_FG_HOVER]="2c525b" REPLACE[$A_GTK2_SLIDER_STROKE]="041f26" +REPLACE[$A_GTK2_LIGHT_INSENSITIVE_BG]="f0ebd9" +REPLACE[$A_GTK2_LIGHT_INSENSITIVE_FG]="8c8c88" +REPLACE[$A_GTK2_LIGHT_INSENSITIVE_STROKE]="a2aca8" CWD="`pwd`/arc-theme-${ARCVERSION}" cd "${CWD}" From 3aa8b72963e0bd569addff2caf0eaad511754233 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 25 Apr 2019 03:22:45 +0100 Subject: [PATCH 35/76] Tweaked light GTK2 scrollbar colours --- solarize.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/solarize.sh b/solarize.sh index 11de381..b415058 100755 --- a/solarize.sh +++ b/solarize.sh @@ -87,6 +87,9 @@ A_GTK2_SLIDER_STROKE="262933" A_GTK2_LIGHT_INSENSITIVE_BG="fbfcfc" A_GTK2_LIGHT_INSENSITIVE_FG="a9acb2" A_GTK2_LIGHT_INSENSITIVE_STROKE="e2e7ef" +A_GTK2_LIGHT_SCROLLBAR_BG="fcfcfc" +A_GTK2_LIGHT_SCROLLBAR_FG="b8babf" +A_GTK2_LIGHT_SCROLLBAR_FG_HOVER="d3d4d8" # Solarized colors ## Common @@ -171,6 +174,9 @@ REPLACE[$A_GTK2_SLIDER_STROKE]="041f26" REPLACE[$A_GTK2_LIGHT_INSENSITIVE_BG]="f0ebd9" REPLACE[$A_GTK2_LIGHT_INSENSITIVE_FG]="8c8c88" REPLACE[$A_GTK2_LIGHT_INSENSITIVE_STROKE]="a2aca8" +REPLACE[$A_GTK2_LIGHT_SCROLLBAR_BG]="fdf4de" +REPLACE[$A_GTK2_LIGHT_SCROLLBAR_FG]="a6a49b" +REPLACE[$A_GTK2_LIGHT_SCROLLBAR_FG_HOVER]="b8b5aa" CWD="`pwd`/arc-theme-${ARCVERSION}" cd "${CWD}" From 970f832b516df874569ed5916a0298271bb4d6e3 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 25 Apr 2019 16:20:06 +0100 Subject: [PATCH 36/76] GTK2 light slider stroke tweak --- solarize.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/solarize.sh b/solarize.sh index b415058..45a3286 100755 --- a/solarize.sh +++ b/solarize.sh @@ -90,6 +90,7 @@ A_GTK2_LIGHT_INSENSITIVE_STROKE="e2e7ef" A_GTK2_LIGHT_SCROLLBAR_BG="fcfcfc" A_GTK2_LIGHT_SCROLLBAR_FG="b8babf" A_GTK2_LIGHT_SCROLLBAR_FG_HOVER="d3d4d8" +A_GTK2_LIGHT_SLIDER_STROKE="cbd2e3" # Solarized colors ## Common @@ -177,6 +178,7 @@ REPLACE[$A_GTK2_LIGHT_INSENSITIVE_STROKE]="a2aca8" REPLACE[$A_GTK2_LIGHT_SCROLLBAR_BG]="fdf4de" REPLACE[$A_GTK2_LIGHT_SCROLLBAR_FG]="a6a49b" REPLACE[$A_GTK2_LIGHT_SCROLLBAR_FG_HOVER]="b8b5aa" +REPLACE[$A_GTK2_LIGHT_SLIDER_STROKE]="908f89" CWD="`pwd`/arc-theme-${ARCVERSION}" cd "${CWD}" From 33003fb79ae792255d1fb5a167b95d42c8c79961 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 25 Apr 2019 16:56:00 +0100 Subject: [PATCH 37/76] GTK2 light tweak for tab border/stroke --- solarize.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/solarize.sh b/solarize.sh index 45a3286..e82f581 100755 --- a/solarize.sh +++ b/solarize.sh @@ -91,6 +91,7 @@ A_GTK2_LIGHT_SCROLLBAR_BG="fcfcfc" A_GTK2_LIGHT_SCROLLBAR_FG="b8babf" A_GTK2_LIGHT_SCROLLBAR_FG_HOVER="d3d4d8" A_GTK2_LIGHT_SLIDER_STROKE="cbd2e3" +A_GTK2_LIGHT_TAB_BORDER="dde3e9" # Solarized colors ## Common @@ -179,6 +180,7 @@ REPLACE[$A_GTK2_LIGHT_SCROLLBAR_BG]="fdf4de" REPLACE[$A_GTK2_LIGHT_SCROLLBAR_FG]="a6a49b" REPLACE[$A_GTK2_LIGHT_SCROLLBAR_FG_HOVER]="b8b5aa" REPLACE[$A_GTK2_LIGHT_SLIDER_STROKE]="908f89" +REPLACE[$A_GTK2_LIGHT_TAB_BORDER]="e1d6b4" CWD="`pwd`/arc-theme-${ARCVERSION}" cd "${CWD}" From 214fcfc2f9a82f00d42bf3fa0bad80779832d00b Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 25 Apr 2019 19:39:47 +0100 Subject: [PATCH 38/76] GTK2 light tweak for active/clicked widget --- solarize.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/solarize.sh b/solarize.sh index e82f581..c39dafb 100755 --- a/solarize.sh +++ b/solarize.sh @@ -87,6 +87,8 @@ A_GTK2_SLIDER_STROKE="262933" A_GTK2_LIGHT_INSENSITIVE_BG="fbfcfc" A_GTK2_LIGHT_INSENSITIVE_FG="a9acb2" A_GTK2_LIGHT_INSENSITIVE_STROKE="e2e7ef" +A_GTK2_LIGHT_ACTIVE_BG="d3d8e2" +A_GTK2_LIGHT_ACTIVE_STROKE="b7c0d3" A_GTK2_LIGHT_SCROLLBAR_BG="fcfcfc" A_GTK2_LIGHT_SCROLLBAR_FG="b8babf" A_GTK2_LIGHT_SCROLLBAR_FG_HOVER="d3d4d8" @@ -176,6 +178,8 @@ REPLACE[$A_GTK2_SLIDER_STROKE]="041f26" REPLACE[$A_GTK2_LIGHT_INSENSITIVE_BG]="f0ebd9" REPLACE[$A_GTK2_LIGHT_INSENSITIVE_FG]="8c8c88" REPLACE[$A_GTK2_LIGHT_INSENSITIVE_STROKE]="a2aca8" +REPLACE[$A_GTK2_LIGHT_ACTIVE_BG]="e1d6b4" +REPLACE[$A_GTK2_LIGHT_ACTIVE_STROKE]=$S_BLUE REPLACE[$A_GTK2_LIGHT_SCROLLBAR_BG]="fdf4de" REPLACE[$A_GTK2_LIGHT_SCROLLBAR_FG]="a6a49b" REPLACE[$A_GTK2_LIGHT_SCROLLBAR_FG_HOVER]="b8b5aa" From a8f0e04a2e68a4e40107f8cfad7c9b7c95b76933 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 25 Apr 2019 21:37:22 +0100 Subject: [PATCH 39/76] Tweaked light version menubar & window decoration --- solarize.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/solarize.sh b/solarize.sh index c39dafb..61851e0 100755 --- a/solarize.sh +++ b/solarize.sh @@ -51,7 +51,7 @@ A_ENTRY_BORDER="cfd6e6" ## SVG A_BLUE="5294e2" # Duplicate of $A_SELECTED_BG A_WHITE="f9fafb" -A_GREY="e7e8eb" +A_LIGHT_MENUBAR="e7e8eb" A_DARK="383c4a" # Duplicate of $A_BG A_DARKEST="2f343f" # Duplicate of $A_WM_ICON_CLOSE_BG A_DARKEST2="2f343d" @@ -94,6 +94,7 @@ A_GTK2_LIGHT_SCROLLBAR_FG="b8babf" A_GTK2_LIGHT_SCROLLBAR_FG_HOVER="d3d4d8" A_GTK2_LIGHT_SLIDER_STROKE="cbd2e3" A_GTK2_LIGHT_TAB_BORDER="dde3e9" +A_GTK2_LIGHT_MENUBAR_STROKE="d7d8dd" # Solarized colors ## Common @@ -144,7 +145,7 @@ REPLACE[$A_WINDOW_BG]=$S_BASE02 REPLACE[$A_DARK_SIDEBAR_FG]=$S_BASE00 REPLACE[$A_ENTRY_BORDER]=$S_BASE00 REPLACE[$A_WHITE]=$S_BASE3 -REPLACE[$A_GREY]=$S_BASE2 +REPLACE[$A_LIGHT_MENUBAR]=$S_BASE3 REPLACE[$A_DARKEST2]=$S_BASE03 REPLACE[$A_DARK_BUTTON]=$S_BASE03 REPLACE[$A_LIGHT_BUTTON]=$S_BASE02 @@ -185,6 +186,7 @@ REPLACE[$A_GTK2_LIGHT_SCROLLBAR_FG]="a6a49b" REPLACE[$A_GTK2_LIGHT_SCROLLBAR_FG_HOVER]="b8b5aa" REPLACE[$A_GTK2_LIGHT_SLIDER_STROKE]="908f89" REPLACE[$A_GTK2_LIGHT_TAB_BORDER]="e1d6b4" +REPLACE[$A_GTK2_LIGHT_MENUBAR_STROKE]="e1d6b4" CWD="`pwd`/arc-theme-${ARCVERSION}" cd "${CWD}" From c3217c733ac52b7136be2127146549acc1920302 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 25 Apr 2019 21:44:01 +0100 Subject: [PATCH 40/76] Tweaked light version fg/text colour --- solarize.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solarize.sh b/solarize.sh index 61851e0..365b250 100755 --- a/solarize.sh +++ b/solarize.sh @@ -47,7 +47,6 @@ A_WM_ICON_HOVER_BG="c4c7cc" A_WM_ICON_ACTIVE_BG="$A_SELECTED_FG" A_WINDOW_BG="353945" A_DARK_SIDEBAR_FG="bac3cf" -A_ENTRY_BORDER="cfd6e6" ## SVG A_BLUE="5294e2" # Duplicate of $A_SELECTED_BG A_WHITE="f9fafb" @@ -75,6 +74,7 @@ A_GTK2_TOOLBAR_DARK="afb8c5" A_CLOSE_BUTTON_GREY="f8f8f9" A_LIGHT_BG="f5f6f7" A_SWITCH_OFF_BG="5b627b" +A_LIGHT_FG="3b3e45" ## GTK2 A_GTK2_SENSITIVE_STROKE="2b2e39" A_GTK2_INSENSITIVE_FG_COLOR="7c818c" @@ -143,7 +143,6 @@ REPLACE[$A_WM_ICON_HOVER_BG]=$S_BASE1 REPLACE[$A_WM_ICON_ACTIVE_BG]=$S_BASE3 REPLACE[$A_WINDOW_BG]=$S_BASE02 REPLACE[$A_DARK_SIDEBAR_FG]=$S_BASE00 -REPLACE[$A_ENTRY_BORDER]=$S_BASE00 REPLACE[$A_WHITE]=$S_BASE3 REPLACE[$A_LIGHT_MENUBAR]=$S_BASE3 REPLACE[$A_DARKEST2]=$S_BASE03 @@ -165,6 +164,7 @@ REPLACE[$A_CLOSE_BUTTON_GREY]=$S_BASE02 REPLACE[$A_LIGHT_BG]=$S_BASE2 REPLACE[$A_GTK2_INSENSITIVE_FG_COLOR]=$S_BASE01 REPLACE[$A_SWITCH_OFF_BG]=$S_BASE01 +REPLACE[$A_LIGHT_FG]=$S_BASE00 # GTK2 tweaks REPLACE[$A_ASSET_LIGHTER_BG]="033441" REPLACE[$A_ASSET_LIGHTER_BG_FIX]="033441" From 1176b9ffd8d7d493237c38544df366ae81db62db Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 25 Apr 2019 21:47:06 +0100 Subject: [PATCH 41/76] Tweaked GTK2 light sensitive widget colours --- solarize.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/solarize.sh b/solarize.sh index 365b250..5586003 100755 --- a/solarize.sh +++ b/solarize.sh @@ -84,6 +84,8 @@ A_GTK2_SCROLLBAR_BG="3e434f" A_GTK2_SCROLLBAR_FG="767b87" A_GTK2_SCROLLBAR_FG_HOVER="8f939d" A_GTK2_SLIDER_STROKE="262933" +A_GTK2_LIGHT_SENSITIVE_BG="fcfdfd" +A_GTK2_LIGHT_SENSITIVE_STROKE="cfd6e6" A_GTK2_LIGHT_INSENSITIVE_BG="fbfcfc" A_GTK2_LIGHT_INSENSITIVE_FG="a9acb2" A_GTK2_LIGHT_INSENSITIVE_STROKE="e2e7ef" @@ -176,6 +178,8 @@ REPLACE[$A_GTK2_SCROLLBAR_BG]="002731" REPLACE[$A_GTK2_SCROLLBAR_FG]="395c64" REPLACE[$A_GTK2_SCROLLBAR_FG_HOVER]="2c525b" REPLACE[$A_GTK2_SLIDER_STROKE]="041f26" +REPLACE[$A_GTK2_LIGHT_SENSITIVE_BG]="f1ecdc" +REPLACE[$A_GTK2_LIGHT_SENSITIVE_STROKE]="a6a49b" REPLACE[$A_GTK2_LIGHT_INSENSITIVE_BG]="f0ebd9" REPLACE[$A_GTK2_LIGHT_INSENSITIVE_FG]="8c8c88" REPLACE[$A_GTK2_LIGHT_INSENSITIVE_STROKE]="a2aca8" From f3771da1da1c03da87451f6386f804c24ff56f27 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Sat, 4 May 2019 15:15:24 +0100 Subject: [PATCH 42/76] Tweaked GTK2 light scrollbar border --- solarize.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/solarize.sh b/solarize.sh index 5586003..5e21160 100755 --- a/solarize.sh +++ b/solarize.sh @@ -94,6 +94,7 @@ A_GTK2_LIGHT_ACTIVE_STROKE="b7c0d3" A_GTK2_LIGHT_SCROLLBAR_BG="fcfcfc" A_GTK2_LIGHT_SCROLLBAR_FG="b8babf" A_GTK2_LIGHT_SCROLLBAR_FG_HOVER="d3d4d8" +A_GTK2_LIGHT_SCROLLBAR_BORDER="dbdfe3" A_GTK2_LIGHT_SLIDER_STROKE="cbd2e3" A_GTK2_LIGHT_TAB_BORDER="dde3e9" A_GTK2_LIGHT_MENUBAR_STROKE="d7d8dd" @@ -188,6 +189,7 @@ REPLACE[$A_GTK2_LIGHT_ACTIVE_STROKE]=$S_BLUE REPLACE[$A_GTK2_LIGHT_SCROLLBAR_BG]="fdf4de" REPLACE[$A_GTK2_LIGHT_SCROLLBAR_FG]="a6a49b" REPLACE[$A_GTK2_LIGHT_SCROLLBAR_FG_HOVER]="b8b5aa" +REPLACE[$A_GTK2_LIGHT_SCROLLBAR_BORDER]="e1d6b4" REPLACE[$A_GTK2_LIGHT_SLIDER_STROKE]="908f89" REPLACE[$A_GTK2_LIGHT_TAB_BORDER]="e1d6b4" REPLACE[$A_GTK2_LIGHT_MENUBAR_STROKE]="e1d6b4" From d26627ea1879d67db69bf3c8370e97c9f6665924 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Mon, 6 May 2019 01:08:13 +0100 Subject: [PATCH 43/76] Removing gulp steps as new upstream uses sassc instead --- solarize.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/solarize.sh b/solarize.sh index 5e21160..22ed12f 100755 --- a/solarize.sh +++ b/solarize.sh @@ -256,11 +256,6 @@ for PATTERN in "Makefile.am" "index.theme*" "metacity-theme-*.xml"; do done sed -i "s/Arc/SolArc/g" configure.ac; -npm install gulp gulp-sass gulp-rename # NOTE: gulp below requires these node modules - -echo "### Regenerating css" -gulp - # Configure, installing to build dir ./autogen.sh "${AUTOGENFLAGS}" From da1e4fe3d380954ef9ebd548ecb37b0d1e1b13de Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Mon, 6 May 2019 19:43:57 +0100 Subject: [PATCH 44/76] Updated GTK3VER to 3.24 --- solarize.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solarize.sh b/solarize.sh index 22ed12f..8582441 100755 --- a/solarize.sh +++ b/solarize.sh @@ -7,7 +7,7 @@ ARCVERSION="20190330" BUILDDIR="`pwd`/build" # 3.22 has to be used to target 3.24 -GTK3VER="3.22" +GTK3VER="3.24" # Gnome shell version, if not autodetecting GNOMEVER="3.28" From 7be34ba83fd9c808f9d02e53b87de3786e5f88d5 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Mon, 6 May 2019 20:47:55 +0100 Subject: [PATCH 45/76] Regenerating assets is no longer needed with new upstream --- solarize.sh | 38 -------------------------------------- 1 file changed, 38 deletions(-) diff --git a/solarize.sh b/solarize.sh index 8582441..4540e8f 100755 --- a/solarize.sh +++ b/solarize.sh @@ -212,44 +212,6 @@ do find . -type f -name "gtkrc*" -exec sed -i "s/${K}/${REPLACE[$K]}/Ig" {} \; done -echo "" -echo "### Regenerating assets" -ASSET_FOLDERS=("gtk-2.0" "gtk-3.0/${GTK3VER}" "xfwm4") # NOTE: Skipping old gtk3 versions for build time -echo "## Deleting old assets" - -for folder in "${ASSET_FOLDERS[@]}" -do - rm -f common/${folder}/assets/*.png -done -rm -f common/gtk-2.0/assets-dark/*.png -rm -f common/gtk-2.0/menubar-toolbar/*.png -rm -f common/xfwm4/assets-dark/*.png - -echo "## Writing new assets" -for folder in "${ASSET_FOLDERS[@]}" -do - echo "# Writing assets for ${folder}" - cd common/${folder} - ./render-assets.sh > /dev/null - cd "${CWD}" -done - -echo "# Copying assets for gtk-2.0 menubar and toolbar" -cp common/gtk-2.0/assets-dark/button.png common/gtk-2.0/menubar-toolbar/button.png -cp common/gtk-2.0/assets-dark/button-hover.png common/gtk-2.0/menubar-toolbar/button-hover.png -cp common/gtk-2.0/assets-dark/button-active.png common/gtk-2.0/menubar-toolbar/button-active.png -cp common/gtk-2.0/assets-dark/button-insensitive.png common/gtk-2.0/menubar-toolbar/button-insensitive.png -cp common/gtk-2.0/assets/entry-toolbar.png common/gtk-2.0/menubar-toolbar/entry-toolbar.png -cp common/gtk-2.0/assets/entry-active-toolbar.png common/gtk-2.0/menubar-toolbar/entry-active-toolbar.png -cp common/gtk-2.0/assets/entry-disabled-toolbar.png common/gtk-2.0/menubar-toolbar/entry-disabled-toolbar.png -cp common/gtk-2.0/assets-dark/entry-toolbar.png common/gtk-2.0/menubar-toolbar/entry-toolbar-dark.png -cp common/gtk-2.0/assets-dark/entry-active-toolbar.png common/gtk-2.0/menubar-toolbar/entry-active-toolbar-dark.png -cp common/gtk-2.0/assets-dark/entry-disabled-toolbar.png common/gtk-2.0/menubar-toolbar/entry-disabled-toolbar-dark.png -cp common/gtk-2.0/assets/menubar.png common/gtk-2.0/menubar-toolbar/menubar.png -cp common/gtk-2.0/assets-dark/menubar.png common/gtk-2.0/menubar-toolbar/menubar-dark.png -cp common/gtk-2.0/assets/menubar_button.png common/gtk-2.0/menubar-toolbar/menubar_button.png -cp common/gtk-2.0/assets-dark/menubar_button.png common/gtk-2.0/menubar-toolbar/menubar_button-dark.png - # Correct index.theme metadata & output directories for PATTERN in "Makefile.am" "index.theme*" "metacity-theme-*.xml"; do find "${CWD}/common" -name "${PATTERN}" -exec sed -i "s/Arc/SolArc/g" {} \; From 3628f1f9bd751e8749cce2bad7cb5d8fabcccfd0 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Mon, 6 May 2019 22:54:06 +0100 Subject: [PATCH 46/76] Removed Makefile.am from Arc->SolArc replacement --- solarize.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solarize.sh b/solarize.sh index 4540e8f..97401cd 100755 --- a/solarize.sh +++ b/solarize.sh @@ -213,7 +213,7 @@ do done # Correct index.theme metadata & output directories -for PATTERN in "Makefile.am" "index.theme*" "metacity-theme-*.xml"; do +for PATTERN in "index.theme*" "metacity-theme-*.xml"; do find "${CWD}/common" -name "${PATTERN}" -exec sed -i "s/Arc/SolArc/g" {} \; done sed -i "s/Arc/SolArc/g" configure.ac; From c5de3336a1a70c5cf6a6df57aaa602635cc9052f Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Tue, 7 May 2019 01:59:48 +0100 Subject: [PATCH 47/76] Moved $BUILDDIR from autogen.sh to make step --- solarize.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solarize.sh b/solarize.sh index 97401cd..471d130 100755 --- a/solarize.sh +++ b/solarize.sh @@ -13,7 +13,7 @@ GTK3VER="3.24" GNOMEVER="3.28" # Theme types to actually build (or rather, not build =P) -AUTOGENFLAGS="--prefix=${BUILDDIR}/usr --with-gnome=${GTK3VER} --with-gnome-shell=${GNOMEVER} --disable-plank --disable-openbox" # plank & openbox not patched atm. +AUTOGENFLAGS="--prefix=/usr --with-gnome=${GTK3VER} --with-gnome-shell=${GNOMEVER} --disable-plank --disable-openbox" # plank & openbox not patched atm. # Pull the Arc source wget "https://github.com/NicoHood/arc-theme/releases/download/${ARCVERSION}/arc-theme-${ARCVERSION}.tar.xz" @@ -222,5 +222,5 @@ sed -i "s/Arc/SolArc/g" configure.ac; ./autogen.sh "${AUTOGENFLAGS}" # Make & install to build dir for packaging, etc. -make install +make DESTDIR="${BUILDDIR}" install From 2403da840cfe0f334db7724afe5db413ad9006de Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Tue, 7 May 2019 14:03:00 +0100 Subject: [PATCH 48/76] Removed autogen flags disabling plank & openbox themes --- solarize.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solarize.sh b/solarize.sh index 471d130..8d00fa8 100755 --- a/solarize.sh +++ b/solarize.sh @@ -13,7 +13,7 @@ GTK3VER="3.24" GNOMEVER="3.28" # Theme types to actually build (or rather, not build =P) -AUTOGENFLAGS="--prefix=/usr --with-gnome=${GTK3VER} --with-gnome-shell=${GNOMEVER} --disable-plank --disable-openbox" # plank & openbox not patched atm. +AUTOGENFLAGS="--prefix=/usr --with-gnome=${GTK3VER} --with-gnome-shell=${GNOMEVER}" # Pull the Arc source wget "https://github.com/NicoHood/arc-theme/releases/download/${ARCVERSION}/arc-theme-${ARCVERSION}.tar.xz" From 1b06e71411c01af88f434ee3a570813c7d8b2880 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Tue, 7 May 2019 14:12:21 +0100 Subject: [PATCH 49/76] Actually process openbox & xfwm themerc files --- solarize.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/solarize.sh b/solarize.sh index 8d00fa8..508df63 100755 --- a/solarize.sh +++ b/solarize.sh @@ -212,6 +212,12 @@ do find . -type f -name "gtkrc*" -exec sed -i "s/${K}/${REPLACE[$K]}/Ig" {} \; done +echo "## Replacing in openbox/xfwm rc" +for K in ${!REPLACE[@]} +do + find . -type f -name "themerc" -exec sed -i "s/${K}/${REPLACE[$K]}/Ig" {} \; +done + # Correct index.theme metadata & output directories for PATTERN in "index.theme*" "metacity-theme-*.xml"; do find "${CWD}/common" -name "${PATTERN}" -exec sed -i "s/Arc/SolArc/g" {} \; From 736c305a97dcd2c4d2385e0463746aafe055b4a2 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 8 May 2019 00:20:55 +0100 Subject: [PATCH 50/76] Patch openbox menu item colours --- solarize.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/solarize.sh b/solarize.sh index 508df63..465352a 100755 --- a/solarize.sh +++ b/solarize.sh @@ -98,6 +98,9 @@ A_GTK2_LIGHT_SCROLLBAR_BORDER="dbdfe3" A_GTK2_LIGHT_SLIDER_STROKE="cbd2e3" A_GTK2_LIGHT_TAB_BORDER="dde3e9" A_GTK2_LIGHT_MENUBAR_STROKE="d7d8dd" +## Openbox +A_OPENBOX_MENU_ITEM_BG="454a54" +A_OPENBOX_MENU_ITEM_FG="a8adb5" # Solarized colors ## Common @@ -168,6 +171,9 @@ REPLACE[$A_LIGHT_BG]=$S_BASE2 REPLACE[$A_GTK2_INSENSITIVE_FG_COLOR]=$S_BASE01 REPLACE[$A_SWITCH_OFF_BG]=$S_BASE01 REPLACE[$A_LIGHT_FG]=$S_BASE00 +# Openbox +REPLACE[$A_OPENBOX_MENU_ITEM_BG]=$S_BASE03 +REPLACE[$A_OPENBOX_MENU_ITEM_FG]=$S_BASE0 # GTK2 tweaks REPLACE[$A_ASSET_LIGHTER_BG]="033441" REPLACE[$A_ASSET_LIGHTER_BG_FIX]="033441" From dc3b0f8efa82f17ac36bbf526d574aa9e87ef688 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 8 May 2019 00:46:18 +0100 Subject: [PATCH 51/76] solarize.sh now optimises the SVGs a little (inkscape vacuum-defs and plain svg export) --- solarize.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/solarize.sh b/solarize.sh index 471d130..7eca43d 100755 --- a/solarize.sh +++ b/solarize.sh @@ -218,6 +218,9 @@ for PATTERN in "index.theme*" "metacity-theme-*.xml"; do done sed -i "s/Arc/SolArc/g" configure.ac; +echo '## Optimising SVGs' +find . -name "*.svg" -exec inkscape {} --vacuum-defs --export-plain-svg={} \; + # Configure, installing to build dir ./autogen.sh "${AUTOGENFLAGS}" From b417895eacdf38dba7f77c6e40068501a8cb49be Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 8 May 2019 00:46:18 +0100 Subject: [PATCH 52/76] solarize.sh now optimises the SVGs a little (inkscape vacuum-defs and plain svg export) --- solarize.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/solarize.sh b/solarize.sh index 465352a..1d7137e 100755 --- a/solarize.sh +++ b/solarize.sh @@ -230,6 +230,9 @@ for PATTERN in "index.theme*" "metacity-theme-*.xml"; do done sed -i "s/Arc/SolArc/g" configure.ac; +echo '## Optimising SVGs' +find . -name "*.svg" -exec inkscape {} --vacuum-defs --export-plain-svg={} \; + # Configure, installing to build dir ./autogen.sh "${AUTOGENFLAGS}" From e2bb4f53cb49a1f1f7928604e27968237607ae47 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 8 May 2019 02:50:33 +0100 Subject: [PATCH 53/76] Patch openbox menu title bg (& window border) colour --- solarize.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/solarize.sh b/solarize.sh index 1d7137e..4e8e558 100755 --- a/solarize.sh +++ b/solarize.sh @@ -101,6 +101,7 @@ A_GTK2_LIGHT_MENUBAR_STROKE="d7d8dd" ## Openbox A_OPENBOX_MENU_ITEM_BG="454a54" A_OPENBOX_MENU_ITEM_FG="a8adb5" +A_OPENBOX_MENU_TITLE_BG="2d3036" # Solarized colors ## Common @@ -174,6 +175,7 @@ REPLACE[$A_LIGHT_FG]=$S_BASE00 # Openbox REPLACE[$A_OPENBOX_MENU_ITEM_BG]=$S_BASE03 REPLACE[$A_OPENBOX_MENU_ITEM_FG]=$S_BASE0 +REPLACE[$A_OPENBOX_MENU_TITLE_BG]=$S_BASE02 # GTK2 tweaks REPLACE[$A_ASSET_LIGHTER_BG]="033441" REPLACE[$A_ASSET_LIGHTER_BG_FIX]="033441" From 8206f00856212b4221e4d3e60ced96a3795442cd Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 8 May 2019 19:38:00 +0100 Subject: [PATCH 54/76] Quiet wget when pulling source; echo to user to note download --- solarize.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/solarize.sh b/solarize.sh index 4e8e558..0843338 100755 --- a/solarize.sh +++ b/solarize.sh @@ -16,7 +16,8 @@ GNOMEVER="3.28" AUTOGENFLAGS="--prefix=/usr --with-gnome=${GTK3VER} --with-gnome-shell=${GNOMEVER}" # Pull the Arc source -wget "https://github.com/NicoHood/arc-theme/releases/download/${ARCVERSION}/arc-theme-${ARCVERSION}.tar.xz" +echo "### Downloading Arc source" +wget --quiet "https://github.com/NicoHood/arc-theme/releases/download/${ARCVERSION}/arc-theme-${ARCVERSION}.tar.xz" tar -xJf "arc-theme-${ARCVERSION}.tar.xz" rm "arc-theme-${ARCVERSION}.tar.xz" From c3a78a4d8d3df06ac41e3d4ff1ca3f7e46419b68 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 8 May 2019 19:43:27 +0100 Subject: [PATCH 55/76] Changed # indent on optimising svg message --- solarize.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solarize.sh b/solarize.sh index 0843338..117e50c 100755 --- a/solarize.sh +++ b/solarize.sh @@ -233,7 +233,7 @@ for PATTERN in "index.theme*" "metacity-theme-*.xml"; do done sed -i "s/Arc/SolArc/g" configure.ac; -echo '## Optimising SVGs' +echo "### Optimising SVGs" find . -name "*.svg" -exec inkscape {} --vacuum-defs --export-plain-svg={} \; # Configure, installing to build dir From 3f061e7fbddc455ad31e39364861f0caff3384fb Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 8 May 2019 22:07:16 +0100 Subject: [PATCH 56/76] Moved *rc replacement into main replace loop --- solarize.sh | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/solarize.sh b/solarize.sh index 117e50c..8dee20d 100755 --- a/solarize.sh +++ b/solarize.sh @@ -124,7 +124,6 @@ S_BASE1="93a1a1" S_BASE2="eee8d5" S_BASE3="fdf6e3" -FILETYPES=('scss' 'svg' 'xpm' 'xml' 'rc') declare -A REPLACE REPLACE[$A_BASE]=$S_BASE03 REPLACE[$A_TEXT]=$S_BASE0 @@ -206,26 +205,17 @@ REPLACE[$A_GTK2_LIGHT_MENUBAR_STROKE]="e1d6b4" CWD="`pwd`/arc-theme-${ARCVERSION}" cd "${CWD}" +FILETYPES=('.scss' '.svg' '.xpm' '.xml' 'rc') + echo "### Replacing arc colors with solarized colors" for filetype in "${FILETYPES[@]}" do echo "## Replacing in ${filetype}" for K in ${!REPLACE[@]} do - find . -name "*.${filetype}" -exec sed -i "s/${K}/${REPLACE[$K]}/Ig" {} \; + find . -type f -name "*${filetype}" -exec sed -i "s/${K}/${REPLACE[$K]}/Ig" {} \; done done -echo "## Replacing in gtk-2.0 rc" -for K in ${!REPLACE[@]} -do - find . -type f -name "gtkrc*" -exec sed -i "s/${K}/${REPLACE[$K]}/Ig" {} \; -done - -echo "## Replacing in openbox/xfwm rc" -for K in ${!REPLACE[@]} -do - find . -type f -name "themerc" -exec sed -i "s/${K}/${REPLACE[$K]}/Ig" {} \; -done # Correct index.theme metadata & output directories for PATTERN in "index.theme*" "metacity-theme-*.xml"; do From c2ade99050ece8128726d0c6a8ba5fa34da29b6b Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 8 May 2019 22:46:56 +0100 Subject: [PATCH 57/76] Moved SVG optimisation step --- solarize.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/solarize.sh b/solarize.sh index 8dee20d..07676b3 100755 --- a/solarize.sh +++ b/solarize.sh @@ -205,6 +205,9 @@ REPLACE[$A_GTK2_LIGHT_MENUBAR_STROKE]="e1d6b4" CWD="`pwd`/arc-theme-${ARCVERSION}" cd "${CWD}" +echo "### Optimising SVGs" +find . -name "*.svg" -exec inkscape {} --vacuum-defs --export-plain-svg={} \; + FILETYPES=('.scss' '.svg' '.xpm' '.xml' 'rc') echo "### Replacing arc colors with solarized colors" @@ -223,9 +226,6 @@ for PATTERN in "index.theme*" "metacity-theme-*.xml"; do done sed -i "s/Arc/SolArc/g" configure.ac; -echo "### Optimising SVGs" -find . -name "*.svg" -exec inkscape {} --vacuum-defs --export-plain-svg={} \; - # Configure, installing to build dir ./autogen.sh "${AUTOGENFLAGS}" From b5f55e104cabf2d0189ceab93b2fe16f168cf204 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 8 May 2019 23:09:48 +0100 Subject: [PATCH 58/76] Stripped automated autogen.sh & make steps, along with associated variables --- solarize.sh | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/solarize.sh b/solarize.sh index 07676b3..325ba0b 100755 --- a/solarize.sh +++ b/solarize.sh @@ -3,18 +3,6 @@ # Github release to base from ARCVERSION="20190330" -# Directory to spit the clean themes out to -BUILDDIR="`pwd`/build" - -# 3.22 has to be used to target 3.24 -GTK3VER="3.24" - -# Gnome shell version, if not autodetecting -GNOMEVER="3.28" - -# Theme types to actually build (or rather, not build =P) -AUTOGENFLAGS="--prefix=/usr --with-gnome=${GTK3VER} --with-gnome-shell=${GNOMEVER}" - # Pull the Arc source echo "### Downloading Arc source" wget --quiet "https://github.com/NicoHood/arc-theme/releases/download/${ARCVERSION}/arc-theme-${ARCVERSION}.tar.xz" @@ -226,9 +214,3 @@ for PATTERN in "index.theme*" "metacity-theme-*.xml"; do done sed -i "s/Arc/SolArc/g" configure.ac; -# Configure, installing to build dir -./autogen.sh "${AUTOGENFLAGS}" - -# Make & install to build dir for packaging, etc. -make DESTDIR="${BUILDDIR}" install - From 6941868822042f25942f93920c8f78fbfad206ab Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Wed, 8 May 2019 23:15:07 +0100 Subject: [PATCH 59/76] Moved downloading code after variable declarations --- solarize.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/solarize.sh b/solarize.sh index 325ba0b..67e94d0 100755 --- a/solarize.sh +++ b/solarize.sh @@ -3,12 +3,6 @@ # Github release to base from ARCVERSION="20190330" -# Pull the Arc source -echo "### Downloading Arc source" -wget --quiet "https://github.com/NicoHood/arc-theme/releases/download/${ARCVERSION}/arc-theme-${ARCVERSION}.tar.xz" -tar -xJf "arc-theme-${ARCVERSION}.tar.xz" -rm "arc-theme-${ARCVERSION}.tar.xz" - # Arc colors ## SCSS A_BASE="404552" @@ -190,6 +184,12 @@ REPLACE[$A_GTK2_LIGHT_SLIDER_STROKE]="908f89" REPLACE[$A_GTK2_LIGHT_TAB_BORDER]="e1d6b4" REPLACE[$A_GTK2_LIGHT_MENUBAR_STROKE]="e1d6b4" +# Pull the Arc source +echo "### Downloading Arc source" +wget --quiet "https://github.com/NicoHood/arc-theme/releases/download/${ARCVERSION}/arc-theme-${ARCVERSION}.tar.xz" +tar -xJf "arc-theme-${ARCVERSION}.tar.xz" +rm "arc-theme-${ARCVERSION}.tar.xz" + CWD="`pwd`/arc-theme-${ARCVERSION}" cd "${CWD}" From 9fcf350d4fd389d29fafe494554bbbee931adaa0 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 9 May 2019 00:06:03 +0100 Subject: [PATCH 60/76] Updated main theme description in README to match upstream --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 38c26ed..f7851dc 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # SolArc Theme -SolArc is a flat theme with transparent elements for GTK 3, GTK 2 and Gnome-Shell which supports GTK 3 and GTK 2 based desktop environments like Gnome, Unity, Budgie, Pantheon, XFCE, Mate, etc. +SolArc is a flat theme with transparent elements for GTK 3, GTK 2 and GNOME Shell which supports GTK 3 and GTK 2 based desktop environments like GNOME, Unity, Pantheon, Xfce, MATE, Cinnamon (>=3.4), Budgie Desktop (10.4 for GTK+3.22) etc. SolArc is a fork of the Arc theme: https://github.com/horst3180/arc-theme From a5cac290ef4acd50d7b5d320af6196c25f2d4917 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 9 May 2019 00:06:31 +0100 Subject: [PATCH 61/76] Updated upstream repo url in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f7851dc..2e48fe9 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # SolArc Theme SolArc is a flat theme with transparent elements for GTK 3, GTK 2 and GNOME Shell which supports GTK 3 and GTK 2 based desktop environments like GNOME, Unity, Pantheon, Xfce, MATE, Cinnamon (>=3.4), Budgie Desktop (10.4 for GTK+3.22) etc. -SolArc is a fork of the Arc theme: https://github.com/horst3180/arc-theme +SolArc is a fork of the Arc theme: https://github.com/NicoHood/arc-theme Colours are based on the Solarized colour scheme by [Ethan Schoonover](https://github.com/altercation): https://github.com/altercation/solarized From 2e04e2f4178ddd52eba278643dc383f9338b2fd7 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 9 May 2019 00:22:38 +0100 Subject: [PATCH 62/76] Updated README requirements to mirror upstream --- README.md | 53 ++++++++++++++++++++++------------------------------- 1 file changed, 22 insertions(+), 31 deletions(-) diff --git a/README.md b/README.md index 2e48fe9..02d90f6 100644 --- a/README.md +++ b/README.md @@ -20,31 +20,6 @@ If you like SolArc and want to help improve it, please get in touch! I don't hav ### SolArc-Dark ![A screenshot of the Arc-Dark theme](https://github.com/apheleia/solarc-theme/blob/master/images/preview-dark.png?raw=true) - -## Requirements -* Gnome/GTK3 3.14 - 3.22 -* The `gnome-themes-standard` package -* The murrine engine. This has different names depending on your distro. - * `gtk-engine-murrine` (Arch Linux) - * `gtk2-engines-murrine` (Debian, Ubuntu, elementary OS) - * `gtk-murrine-engine` (Fedora) - * `gtk2-engine-murrine` (openSUSE) - * `gtk-engines-murrine` (Gentoo) - -Main distributions that meet these requirements are - -* Arch Linux and Arch Linux based distros -* Ubuntu 15.04 or newer (**Ubuntu 14.04 and 14.10 are not supported**) -* elementary OS Freya/Loki -* Debian 8, Testing or Unstable -* Gentoo -* Fedora 21 or newer -* openSUSE 13.2, Leap 42.1 and Tumbleweed - -Derivatives of these distributions should work, as well. - -If your distribution isn't listed, please check the requirements yourself. - ## Installation ### Arch Linux You can install the AUR package: [gtk-theme-solarc-git](https://aur.archlinux.org/packages/gtk-theme-solarc-git/) @@ -56,14 +31,30 @@ You can install the AUR package: [gtk-theme-solarc-git](https://aur.archlinux.or rm -rf ~/.local/share/themes/{SolArc,SolArc-Darker,SolArc-Dark} rm -rf ~/.themes/{SolArc,SolArc-Darker,SolArc-Dark} -To build the theme you'll need +To build the theme the following packages are required * `autoconf` * `automake` -* `pkg-config` or `pkgconfig` if you use Fedora -* `libgtk-3-dev` for Debian based distros or `gtk3-devel` for RPM based distros -* `git` if you want to clone the source directory - -If your distributions doesn't ship separate development packages you just need GTK 3 instead of the `-dev` packages. +* `sassc` for GTK 3, Cinnamon, or GNOME Shell +* `pkg-config` or `pkgconfig` for Fedora +* `git` to clone the source directory +* `optipng` for GTK 2, GTK 3, or XFWM +* `inkscape` for GTK 2, GTK 3, or XFWM + +The following packages are optionally required +* `gnome-shell`for auto-detecting the GNOME Shell version +* `libgtk-3-dev` for Debian based distros or `gtk3-devel` for RPM based distros, for auto-detecting the GTK3 version + +**Note:** For distributions which don't ship separate development packages, just the GTK 3 package is needed instead of the `-dev` packages. + +For the theme to function properly, install the following +* GNOME Shell 3.18 - 3.32, GTK 3.18 - 3.24 +* The `gnome-themes-extra` package +* The murrine engine. This has different names depending on the distro. + * `gtk-engine-murrine` (Arch Linux) + * `gtk2-engines-murrine` (Debian, Ubuntu, elementary OS) + * `gtk-murrine-engine` (Fedora) + * `gtk2-engine-murrine` (openSUSE) + * `gtk-engines-murrine` (Gentoo) Install the theme with the following commands From 80f355d3d86847f60e8fd01a85b5747ac16bbc30 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 9 May 2019 00:24:57 +0100 Subject: [PATCH 63/76] Added wget to README requirements --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 02d90f6..ed63005 100644 --- a/README.md +++ b/README.md @@ -34,6 +34,7 @@ You can install the AUR package: [gtk-theme-solarc-git](https://aur.archlinux.or To build the theme the following packages are required * `autoconf` * `automake` +* `wget` for pulling the Arc source * `sassc` for GTK 3, Cinnamon, or GNOME Shell * `pkg-config` or `pkgconfig` for Fedora * `git` to clone the source directory From 1914d59cf4b322dd807f5a677a366e75caaa5e79 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 9 May 2019 00:34:52 +0100 Subject: [PATCH 64/76] Updated build/install instructions in README --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index ed63005..ba8bfc5 100644 --- a/README.md +++ b/README.md @@ -65,8 +65,13 @@ If you want to install the latest version from git, clone the repository with git clone https://github.com/apheleia/solarc-theme --depth 1 && cd solarc-theme -**2. Build and install the theme** +**2. Download & patch the Arc theme source** + ./solarize.sh + +**3. Build and install the patched theme** + + cd arc-theme-[version] ./autogen.sh --prefix=/usr sudo make install From 24403bf32e0d78647212c2aa3bf3e87be1d3f79b Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 9 May 2019 00:41:38 +0100 Subject: [PATCH 65/76] Updated autogen.sh flags in README --- README.md | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index ba8bfc5..83eaad0 100644 --- a/README.md +++ b/README.md @@ -77,21 +77,24 @@ If you want to install the latest version from git, clone the repository with Other options to pass to autogen.sh are - --disable-transparency disable transparency in the GTK3 theme - --disable-light disable SolArc Light support - --disable-darker disable SolArc Darker support - --disable-dark disable SolArc Dark support - --disable-cinnamon disable Cinnamon support - --disable-gnome-shell disable GNOME Shell support - --disable-gtk2 disable GTK2 support - --disable-gtk3 disable GTK3 support - --disable-metacity disable Metacity support - --disable-unity disable Unity support - --disable-xfwm disable XFWM support - - --with-gnome=<version> build the theme for a specific Gnome version (3.14, 3.16, 3.18, 3.20) - Note: Normally the correct version is detected automatically and this - option should not be needed. + --disable-transparency disable transparency in the GTK3 theme + --disable-light disable Arc Light support + --disable-darker disable Arc Darker support + --disable-dark disable Arc Dark support + --disable-cinnamon disable Cinnamon support + --disable-gnome-shell disable GNOME Shell support + --disable-gtk2 disable GTK2 support + --disable-gtk3 disable GTK3 support + --disable-metacity disable Metacity support + --disable-unity disable Unity support + --disable-xfwm disable XFWM support + --disable-plank disable Plank theme support + --disable-openbox disable Openbox support + + --with-gnome-shell=<version> build the gnome-shell theme for a specific version + --with-gtk3=<version> build the GTK3 theme for a specific version + Note: Normally the correct version is detected automatically + and these options should not be needed. After the installation is complete you can activate the theme with `gnome-tweak-tool` or a similar program by selecting `SolArc`, `SolArc-Darker` or `SolArc-Dark` as Window/GTK+ theme and `SolArc` or `SolArc-Dark` as Gnome-Shell and Xfce-Notify theme. From ea59e26bff22626193a1fca07b1569fec50bae85 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 9 May 2019 01:40:32 +0100 Subject: [PATCH 66/76] Updated activation details in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 83eaad0..1d034d7 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,7 @@ Other options to pass to autogen.sh are Note: Normally the correct version is detected automatically and these options should not be needed. -After the installation is complete you can activate the theme with `gnome-tweak-tool` or a similar program by selecting `SolArc`, `SolArc-Darker` or `SolArc-Dark` as Window/GTK+ theme and `SolArc` or `SolArc-Dark` as Gnome-Shell and Xfce-Notify theme. +After the installation is complete the theme can be activated with `gnome-tweak-tool` or a similar program by selecting `SolArc`, `SolArc-Darker` or `SolArc-Dark` as Window/GTK+ theme and `SolArc` or `SolArc-Dark` as GNOME Shell/Cinnamon theme. **Uninstall the theme** From 0942f45aefae1b398312f54c14455bcb2b52cbc0 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 9 May 2019 01:42:18 +0100 Subject: [PATCH 67/76] Added explanation of -solid versions to README, mirroring upstream --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 1d034d7..5523175 100644 --- a/README.md +++ b/README.md @@ -98,6 +98,8 @@ Other options to pass to autogen.sh are After the installation is complete the theme can be activated with `gnome-tweak-tool` or a similar program by selecting `SolArc`, `SolArc-Darker` or `SolArc-Dark` as Window/GTK+ theme and `SolArc` or `SolArc-Dark` as GNOME Shell/Cinnamon theme. +If the `--disable-transparency` option was used, the theme will be installed as `SolArc-solid`, `SolArc-Darker-solid` and `SolArc-Dark-solid`. + **Uninstall the theme** Run From b4b252a5b6c0c27a14eb0b5c0a72f7dbc5b177ee Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 9 May 2019 01:48:34 +0100 Subject: [PATCH 68/76] Tweak uninstall instructions in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5523175..0ac98e7 100644 --- a/README.md +++ b/README.md @@ -106,7 +106,7 @@ Run sudo make uninstall -from the same directory as this README resides in, or +from the patched Arc source directory, or sudo rm -rf /usr/share/themes/{SolArc,SolArc-Darker,SolArc-Dark} From 633902e0fa76c28858a8725f9ea5c85ce919ad63 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 9 May 2019 02:50:53 +0100 Subject: [PATCH 69/76] .nvmrc no longer needed --- .nvmrc | 1 - 1 file changed, 1 deletion(-) delete mode 100644 .nvmrc diff --git a/.nvmrc b/.nvmrc deleted file mode 100644 index 2bf5ad0..0000000 --- a/.nvmrc +++ /dev/null @@ -1 +0,0 @@ -stable From 9e8eaab9bee369f7f458695835c110581c2ee691 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 9 May 2019 02:54:38 +0100 Subject: [PATCH 70/76] Removed old .gitignore entries --- .gitignore | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.gitignore b/.gitignore index 4cfb933..e69de29 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +0,0 @@ -node_modules -Makefile -Makefile.in -aclocal.m4 -autom4te.cache -build-aux -compile -config.* -configure -install-sh -missing -.idea/ -*.iml \ No newline at end of file From 416e9ce5dd5a09b89b166b5844f48f86099c1087 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 9 May 2019 02:57:39 +0100 Subject: [PATCH 71/76] Added arc-theme-* dir to .gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index e69de29..a527872 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +arc-theme-*/ From 09d1fde53de6249a87e6234a1c72015e466b86bd Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Thu, 9 May 2019 17:54:11 +0100 Subject: [PATCH 72/76] Added echo notifiying user that patching is complete and that they can now run autogen.sh and make --- solarize.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/solarize.sh b/solarize.sh index 67e94d0..d8927fb 100755 --- a/solarize.sh +++ b/solarize.sh @@ -214,3 +214,5 @@ for PATTERN in "index.theme*" "metacity-theme-*.xml"; do done sed -i "s/Arc/SolArc/g" configure.ac; +echo "### Patching complete! You may now run autogen.sh & make in arc-theme-${ARCVERSION} as you wish" + From fa85ab034880992da533ff2f1f6c1d2ce600b893 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Sat, 11 May 2019 01:58:44 +0100 Subject: [PATCH 73/76] Fixed GTK2 light frame border with patch file --- gtk2_png_assets.patch | 138 ++++++++++++++++++++++++++++++++++++++++++ solarize.sh | 5 ++ 2 files changed, 143 insertions(+) create mode 100644 gtk2_png_assets.patch diff --git a/gtk2_png_assets.patch b/gtk2_png_assets.patch new file mode 100644 index 0000000..301ee1c --- /dev/null +++ b/gtk2_png_assets.patch @@ -0,0 +1,138 @@ +diff --git a/common/gtk-2.0/light/assets.svg b/common/gtk-2.0/light/assets.svg +index df631ee..6344349 100644 +--- a/common/gtk-2.0/light/assets.svg ++++ b/common/gtk-2.0/light/assets.svg +@@ -4879,26 +4879,38 @@ + id="rect5648-1-9" + style="display:inline;opacity:1;fill:#5c616c;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" /> + </g> +- <image +- y="-179.63782" +- x="287.00043" +- id="line-h" +- xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAAAsRAAALEQF/ZF+RAAAAB3RJTUUH3wECFwIHDe6ntQAAABVJREFUCNdjYIACxvv37/9nYGBg AAAXYQOeFmwcNwAAAABJRU5ErkJggg== " +- style="image-rendering:optimizeSpeed" +- preserveAspectRatio="none" +- height="2" +- width="2" +- inkscape:label="#image5739" /> +- <image +- y="-179.63782" +- x="283.0004" +- id="line-v" +- xlink:href="data:image/png;base64,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 " +- style="image-rendering:optimizeSpeed" +- preserveAspectRatio="none" +- height="2" +- width="2" +- inkscape:label="#image5750" /> ++ <g id="line-h"> ++ <rect ++ y="-179.63782" ++ x="287.00043" ++ height="2" ++ width="2" ++ id="line-h-pad" ++ style="display:inline;opacity:0;fill:none;fill-opacity:1;stroke:none;" /> ++ <rect ++ y="-178.63782" ++ x="287.00043" ++ height="1" ++ width="2" ++ id="line-h-line" ++ style="display:inline;opacity:1;fill:#dfdfdf;fill-opacity:1;stroke:none;" /> ++ </g> ++ <g id="line-v"> ++ <rect ++ y="-179.63782" ++ x="283.0004" ++ height="2" ++ width="2" ++ id="line-v-pad" ++ style="display:inline;opacity:0;fill:none;fill-opacity:1;stroke:none;" /> ++ <rect ++ y="-179.63782" ++ x="283.0004" ++ height="2" ++ width="1" ++ id="line-v-line" ++ style="display:inline;opacity:1;fill:#dfdfdf;fill-opacity:1;stroke:none;" /> ++ </g> + <g + id="menuitem" + transform="translate(-7,1.9999974)" +@@ -5324,36 +5336,45 @@ + x="441.00043" + y="-87.637817" + inkscape:label="#rect6297" /> +- <image +- y="-39.637821" +- x="421.00043" ++ <rect ++ style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#dfdfdf;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" + id="frame" +- xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wECFwQljtRB1wAAAB1pVFh0Q29tbWVudAAAAAAAQ3Jl YXRlZCB3aXRoIEdJTVBkLmUHAAAAKklEQVQY02O8f//+fwYiAAsDAwODgoICXkUPHjxgYGIgEoxM hSywcCIEABzqCVThoNl8AAAAAElFTkSuQmCC " +- style="image-rendering:optimizeSpeed" +- preserveAspectRatio="none" +- height="10" +- width="10" +- inkscape:label="#image6307" /> +- <image +- y="-37.637821" +- x="436.00043" +- id="frame-gap-end" +- xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAABCAYAAAD0In+KAAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wECFwUBq8yURwAAAB1pVFh0Q29tbWVudAAAAAAAQ3Jl YXRlZCB3aXRoIEdJTVBkLmUHAAAAEklEQVQI12O8f//+/5+/fjoCACBdBssq+XOrAAAAAElFTkSu QmCC " +- style="image-rendering:optimizeSpeed" +- preserveAspectRatio="none" +- height="1" +- width="2" +- inkscape:label="#image6318" /> +- <image +- y="-34.637821" +- x="436.00043" +- id="frame-gap-start" +- xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAABCAYAAAD0In+KAAAABmJLR0QA/wD/AP+gvaeTAAAACXBI WXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wECFwUNonrYbAAAAB1pVFh0Q29tbWVudAAAAAAAQ3Jl YXRlZCB3aXRoIEdJTVBkLmUHAAAAEUlEQVQI12O8cfOGAzsb+34AFAwDnr/nIb8AAAAASUVORK5C YII= " +- style="image-rendering:optimizeSpeed" +- preserveAspectRatio="none" +- height="1" +- width="2" +- inkscape:label="#image6329" /> ++ width="9" ++ height="9" ++ x="421.00043" ++ y="-39.637821" /> ++ <g id="frame-gap-end"> ++ <rect ++ style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke:none;" ++ id="frame-gap-end-left" ++ width="1" ++ height="1" ++ x="436.00043" ++ y="-37.637821" /> ++ <rect ++ style="opacity:1;fill:#d7d7d7;fill-opacity:0.25;stroke:none;" ++ id="frame-gap-end-right" ++ width="1" ++ height="1" ++ x="437.00043" ++ y="-37.637821" /> ++ </g> ++ <g id="frame-gap-start"> ++ <rect ++ style="opacity:1;fill:#d7d7d7;fill-opacity:0.25;stroke:none;" ++ id="frame-gap-start-left" ++ width="1" ++ height="1" ++ x="436.00043" ++ y="-34.637821" /> ++ <rect ++ style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke:none;" ++ id="frame-gap-start-right" ++ width="1" ++ height="1" ++ x="437.00043" ++ y="-34.637821" /> ++ </g> + <g + id="menubar_button" + inkscape:label="#g5032" diff --git a/solarize.sh b/solarize.sh index d8927fb..839ebbe 100755 --- a/solarize.sh +++ b/solarize.sh @@ -81,6 +81,7 @@ A_GTK2_LIGHT_SCROLLBAR_BORDER="dbdfe3" A_GTK2_LIGHT_SLIDER_STROKE="cbd2e3" A_GTK2_LIGHT_TAB_BORDER="dde3e9" A_GTK2_LIGHT_MENUBAR_STROKE="d7d8dd" +A_GTK2_LIGHT_FRAME_BORDER="dfdfdf" ## Openbox A_OPENBOX_MENU_ITEM_BG="454a54" A_OPENBOX_MENU_ITEM_FG="a8adb5" @@ -183,6 +184,7 @@ REPLACE[$A_GTK2_LIGHT_SCROLLBAR_BORDER]="e1d6b4" REPLACE[$A_GTK2_LIGHT_SLIDER_STROKE]="908f89" REPLACE[$A_GTK2_LIGHT_TAB_BORDER]="e1d6b4" REPLACE[$A_GTK2_LIGHT_MENUBAR_STROKE]="e1d6b4" +REPLACE[$A_GTK2_LIGHT_FRAME_BORDER]="e1d6b4" # Pull the Arc source echo "### Downloading Arc source" @@ -193,6 +195,9 @@ rm "arc-theme-${ARCVERSION}.tar.xz" CWD="`pwd`/arc-theme-${ARCVERSION}" cd "${CWD}" +echo "### Applying patch(es)" +patch -p1 < ../gtk2_png_assets.patch + echo "### Optimising SVGs" find . -name "*.svg" -exec inkscape {} --vacuum-defs --export-plain-svg={} \; From dc095fb8d9e09bcf4a3982a5fb58c713356ef475 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Sat, 11 May 2019 02:33:06 +0100 Subject: [PATCH 74/76] Remove A_ASSET_LIGHTER_BG_FIX workaround --- solarize.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/solarize.sh b/solarize.sh index 839ebbe..413232f 100755 --- a/solarize.sh +++ b/solarize.sh @@ -46,7 +46,6 @@ A_ASSET_DARK2="313541" A_ASSET_GREY="bebebe" A_ASSET_BORDER="2c303a" A_ASSET_LIGHTER_BG="3e4350" -A_ASSET_LIGHTER_BG_FIX="3e4351" # This seems to be an upstream bug A_ASSET_VARIOUS_DARK1="262934" A_ASSET_VARIOUS_DARK2="2d303b" A_ASSET_VARIOUS_DARK3="2d323d" @@ -161,7 +160,6 @@ REPLACE[$A_OPENBOX_MENU_ITEM_FG]=$S_BASE0 REPLACE[$A_OPENBOX_MENU_TITLE_BG]=$S_BASE02 # GTK2 tweaks REPLACE[$A_ASSET_LIGHTER_BG]="033441" -REPLACE[$A_ASSET_LIGHTER_BG_FIX]="033441" REPLACE[$A_OTHER_LIGHT_BUTTON]="003340" REPLACE[$A_GTK2_SENSITIVE_STROKE]="041f26" REPLACE[$A_GTK2_INSENSITIVE_STROKE]="052932" From 0eb2edf252b07f6863100d63c9eea38f84d1d7a3 Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Sat, 11 May 2019 02:34:08 +0100 Subject: [PATCH 75/76] Added patch to workaround upstream bg colour bug --- solarize.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/solarize.sh b/solarize.sh index 413232f..2a711c4 100755 --- a/solarize.sh +++ b/solarize.sh @@ -195,6 +195,7 @@ cd "${CWD}" echo "### Applying patch(es)" patch -p1 < ../gtk2_png_assets.patch +patch -p1 < ../gtk2_dark_colour.patch echo "### Optimising SVGs" find . -name "*.svg" -exec inkscape {} --vacuum-defs --export-plain-svg={} \; From 31b7ee2dab131d66306040528bb55dc014f286cf Mon Sep 17 00:00:00 2001 From: Joey Sabey <GameFreak7744@gmail.com> Date: Sat, 11 May 2019 02:36:01 +0100 Subject: [PATCH 76/76] Added gtk2_dark_colour.patch file --- gtk2_dark_colour.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 gtk2_dark_colour.patch diff --git a/gtk2_dark_colour.patch b/gtk2_dark_colour.patch new file mode 100644 index 0000000..16b618b --- /dev/null +++ b/gtk2_dark_colour.patch @@ -0,0 +1,13 @@ +diff --git a/common/gtk-2.0/dark/assets.svg b/common/gtk-2.0/dark/assets.svg +index 00aeda5..87238e3 100644 +--- a/common/gtk-2.0/dark/assets.svg ++++ b/common/gtk-2.0/dark/assets.svg +@@ -990,7 +990,7 @@ + height="21.999998" + width="22" + id="rect7903-6" +- style="opacity:1;fill:#3e4351;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> ++ style="opacity:1;fill:#3e4350;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0" /> + <rect + ry="2" + rx="2"